/*Imports--------------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans|Raleway:400,700,800|Roboto&display=swap');

/*Site macro layout----------------*/
html {
  overflow-y: scroll;
}

body {
  background: rgb(255, 255, 255);
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #4b2e11;
  font-weight: normal;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

.content.container {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
}

.card-container {
  margin-bottom: 6em;
  width: 100%;
  display: inline-block;
}

.card-container.hero {
  margin-bottom: 3em;
}

@media screen and (max-width: 800px) {
  .card-container.hero {
    margin-bottom: 0;
    max-height: 80vh;
  }

  /*
  .card-container:nth-child(1){
    margin-top: 20vh;
  }
*/
  body.home .card-container:nth-child(1) {
    margin-top: 0;
  }
}

/*Sitewide styling-----------------*/

* {
  font-family: 'Open Sans', sans-serif;
}

a {
  color: #F27600;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.5;
}

/*Sitewide interactions & addons---*/

.display-none {
  display: none;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.flex-container-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card-container:nth-child(1) .flex-container:nth-child(1) {
  margin-top: 150px;
}

.flex-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
}

.flex-card-full {
  width: 100%;
}

.flex-card-1-2 {
  width: 50%;
}

.flex-card-1-3 {
  width: 33%;
}

.flex-card-2-3 {
  width: 66%;
}

.flex-card-1-4 {
  width: 25%;
}

.flex-card-3-4 {
  width: 75%;
}

.arrowed:after {
  content: '\276F';
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding-left: .5em;
  opacity: .6;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.arrowed:hover:after {
  padding-left: 2em;

  opacity: 1;
}

a.register {
  -webkit-transition: none;
  transition: none;
}

a.register:hover {
  opacity: 1;
}

a.register button {
  background: #DB6627;
  border: none;
  padding: .5em 2em;
  font-size: 1em;
  color: white;
  /*  text-shadow: 0 0 5px #4b2e11;*/
  font-weight: 600;
  -webkit-transition: .25s all;
  transition: .25s all;

  -webkit-box-shadow: 0 15px 25px 5px rgba(6, 15, 34, 0.1);

  box-shadow: 0 15px 25px 5px rgba(6, 15, 34, 0.1);
}

a.register:hover button {
  cursor: pointer;
  color: white;
  background-color: #4b2e11;
  -webkit-box-shadow: 0 5px 10px 0 rgba(6, 15, 34, 0.3);
  box-shadow: 0 5px 10px 0 rgba(6, 15, 34, 0.3);
}

a.not-register {
  -webkit-transition: none;
  transition: none;
}

a.not-register:hover {
  opacity: 1;
}

a.not-register button {
  background: rgb(234, 203, 172);
  margin-bottom: 32px;
  border: none;
  padding: .5em 2em;
  font-size: 1em;
  color: black;
  font-weight: 600;
  -webkit-transition: .25s all;
  transition: .25s all;

  -webkit-box-shadow: 0 15px 25px 5px rgba(6, 15, 34, 0.1);

  box-shadow: 0 15px 25px 5px rgba(6, 15, 34, 0.1);
}

a.not-register:hover button {
  cursor: pointer;
  color: white;
  background-color: #4b2e11;
  -webkit-box-shadow: 0 5px 10px 0 rgba(6, 15, 34, 0.3);
  box-shadow: 0 5px 10px 0 rgba(6, 15, 34, 0.3);
}

.gacp-section-header {
  text-align: center;
}

.gacp-call-to-action-card {
  text-align: center;
}

a.gacp-call-to-action {
  display: block;
  margin: 0 auto;
  -webkit-transition: none;
  transition: none;
}



/*Header---------------------------*/

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(75, 46, 17, 0.32);
  z-index: 10;
  -webkit-transition: .5s all;
  transition: .5s all;
  will-change: background-color;
}

.header.cover {
  background-color: white;
  -webkit-box-shadow: 0 8px 15px -2px rgb(0, 0, 0, 0.15);
  box-shadow: 0 8px 15px -2px rgb(0, 0, 0, 0.15);
  border: none;
}

body.home .mainnav h1,
body.home .mainnav a {
  color: #4b2e11;
}

body.home .mainnav .divider {
  background-color: #4b2e11;
  /*
  -webkit-box-shadow: 0 0 15px 1px #4b2e11;
  box-shadow: 0 0 15px 1px #4b2e11;
*/
}

.header .mainnav h1,
.header .mainnav a {
  color: #4b2e11;
  text-shadow: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header .mainnav .divider {
  background-color: #4b2e11;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header.cover .mainnav h1,
.header.cover .mainnav a {
  color: #4b2e11;
  text-shadow: none;
}

.header.cover .mainnav .divider {
  background-color: #4b2e11;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mainnav {
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mainnav .multisite-logo-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mainnav .multisite-logo-div a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.mainnav .multisite-logo-div a h1 {
  font-size: 1.5em;
  padding: 0;
  margin: 0;
}

.mainnav .multisite-logo-div .divider {
  height: 3em;
  width: 2.5px;
  margin: 0 1em;
}

.mainnav .multisite-logo-div a:nth-child(2) {
  display: none;
}

@media screen and (max-width: 900px) {
  .mainnav .multisite-logo-div a h1 {
    font-size: 1.1em;
    max-width: 9em;
  }
  
  .header .mainnav ul a {
    font-size: 0.85em ;
  }

  .mainnav img.multi-logo-link {
    width: 100px;
  }
}

@media screen and (max-width: 600px) {
  /*
  .header {
    background-color: white;
    -webkit-box-shadow: 0 8px 15px -2px rgb(0, 0, 0, 0.15);
    box-shadow: 0 8px 15px -2px rgb(0, 0, 0, 0.15);
    border: none;
  }
*/
}

@media screen and (max-width: 500px) {
  .mainnav .multisite-logo-div a h1 {
    max-width: 40vw;
  }

  .mainnav img.multi-logo-link {
    display: none;
  }
}

.menu-top-header-container {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  max-width: 50%;
}

.multi-logo-link {
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.mainnav img {
  width: 120px;
  height: auto;
  opacity: .8;
}

.mainnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .menu-item a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 16px;
  font-size: 16px;
  display: inline-block;
}

.header .menu-item:nth-last-child(1) a {
  -webkit-transition: none;
  transition: none;
}

.header .menu-item:nth-last-child(1) a:hover {
  opacity: 1;
}

/*
.header .menu-item:nth-last-child(1) a {
  background: #DB6627;
  border: none;
  padding: .5em 2em;
  font-size: 1em;
  color: white;
  font-weight: 600;
  -webkit-transition: .25s all;
  transition: .25s all;

  -webkit-box-shadow: 0 15px 25px 5px rgba(6, 15, 34, 0.1);
  box-shadow: 0 15px 25px 5px rgba(6, 15, 34, 0.1);
}
*/

/*
.header .menu-item:nth-last-child(1) a:hover {
  cursor: pointer;
  color: white;
  background-color: #4b2e11;
  -webkit-box-shadow: 0 5px 10px 0 rgba(6, 15, 34, 0.3);
  box-shadow: 0 5px 10px 0 rgba(6, 15, 34, 0.3);
}
*/

.header .menu-burger {
  z-index: 10;
  height: 2em;
}

.header .menu-burger:hover {
  cursor: pointer;
}

.header .svg-burger {
  height: 100%;
  fill: #4b2e11;
}

body.home .header .svg-burger {
  fill: white;
}

.header.cover .svg-burger {
  fill: #4b2e11 !important;
}

@media screen and (min-width: 800px) {
  .header .menu-burger {
    display: none;
  }

  .header .multisite-logo-div,
  .header .menu-mainnav-container {
    width: 50%;
  }

  .header .multisite-logo-div a:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.menu-burger {
  z-index: 20;
}

@media screen and (max-width: 799px) {
  .header .menu-mainnav-container {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background: white;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 13;
    -webkit-transition: all .3s cubic-bezier(.99, -0.01, .43, .99);
    transition: all .3s cubic-bezier(.99, -0.01, .43, .99);
  }

  .header .menu-mainnav-container.visible {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .header .cover-all.visible {
    opacity: .5;
    pointer-events: visible;
  }

  .header .cover-all {
    pointer-events: none;
    z-index: 10;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: black;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  body .header .mainnav .menu-item a {
    font-size: 1.25em;
    text-shadow: none;
    color: #4b2e11;
    padding: 10px 20px;
    margin: 10px 30px;
  }

  body .header .mainnav .menu-item:nth-last-child(1) a {
    font-size: 1.25em;
    padding: 10px 50px;
  }

  body .header .mainnav a.menu-burger {
    margin-left: auto;
    z-index: 13;
  }

  body .header .mainnav .menu-mainnav-container ul {
    padding-top: 6em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  body .header .menu-mainnav-container .menu-item {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    -webkit-transition: all .5s cubic-bezier(.15, .41, 0, .99);
    transition: all .5s cubic-bezier(.15, .41, 0, .99);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    opacity: 0;
  }

  body .header .menu-mainnav-container.visible .menu-item {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }

  .header .menu-item:nth-child(1) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
  }

  .header .menu-item:nth-child(2) {
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
  }

  .header .menu-item:nth-child(3) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
  }

  .header .menu-item:nth-child(4) {
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
  }

  .header .menu-burger.visible {}

  .header .menu-burger.visible path {
    fill: #4b2e11;
  }

  .header .menu-burger path {
    -webkit-transition: all .5s cubic-bezier(.15, .41, 0, .99);
    transition: all .5s cubic-bezier(.15, .41, 0, .99);
  }

  .header .menu-burger.visible path:nth-child(1) {
    -webkit-transform: translate(-50%, 50%) rotate(-45deg) scaleX(1.41);
    transform: translate(-50%, 50%) rotate(-45deg) scaleX(1.41);
  }

  .header .menu-burger.visible path:nth-child(2) {
    fill: #FF8000;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }

  .header .menu-burger.visible path:nth-child(3) {
    -webkit-transform: translate(23%, -5%) rotate(45deg) scaleX(1.41);
    transform: translate(23%, -5%) rotate(45deg) scaleX(1.41);
  }
}

/*Landing page content*/
.hero-banner-img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 50%;
  object-position: 0 50%;
  height: 80vh;
  position: absolute;
  z-index: -5;
  opacity: .5 !important;
  min-height: 500px;
}

.hero-banner-img-div::after {
  display: block;
  position: absolute;
  /*
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(75, 46, 17, 0.46)), color-stop(90%, rgba(255, 128, 0, 0.5)));
  background-image: linear-gradient(to bottom, rgba(75, 46, 17, 0.46) 0%, rgba(255, 128, 0, 0.5) 90%);
*/
  height: 80vh;
  min-height: 500px;
  width: 100%;
  z-index: -3;
  content: '';
}

.gacp-hero-banner {
  max-width: 1024px;
  height: 80vh;
  min-height: 500px;
  margin: 0 auto;
  font-size: 1.25vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gacp-hero-banner .hero-svg {
  width: 100%;
  height: 100%;
/*  border: 1px solid blue;*/
}

.gacp-hero-banner .flex-card-1-2:nth-child(1) {
  width: 25vw;
  height: 25vw;
/*  border: 1px solid red;*/
  max-height: 300px;
}

@media screen and (max-height: 700px) and (min-width: 800px) {
  .gacp-hero-banner .flex-card {
    margin-top: 100px;
  }
}
@media screen and (max-width: 800px) and (max-height: 800px) {
  .gacp-hero-banner{
    padding: 0 10vw;
  }
  .gacp-hero-banner .flex-card:nth-child(2) {
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) and (min-height: 500px) {
  .gacp-hero-banner {
    font-size: 1.5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20vh;
  }

  .gacp-hero-banner .flex-card-1-2:nth-child(1) {
    max-height: 35vh;
    width: 70%;
  }

/*
  .gacp-hero-banner .flex-card {
    width: 70% !important;
  }
*/
}

@media screen and (max-width: 600px) {
  .gacp-hero-banner {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 1280px) {
  .gacp-hero-banner {
    font-size: 14px;
  }
}

.gacp-hero-banner h1,
.gacp-hero-banner h1 span {
  margin: 0em 0;
  white-space: pre-wrap;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;

  /*  text-shadow: 0 0 15px #4b2e11; */
  color: black;
  /*#4b2e11; /*used to be white*/
}

.gacp-hero-banner h1 {
  font-size: 3.75em;
}

.gacp-hero-banner h1 span.orange {
  color: #b56f00;
}

.gacp-hero-banner p {
  font-size: 1.5em;
  margin: 0.5em 0;
  font-family: 'Raleway', sans-serif;
  /*  text-shadow: 0 0 5px #4b2e11; */
  /* text-shadow: 0 0 5px #4b2e11; */
  color: black;
  /*#4b2e11; /*used to be white*/
}

.gacp-hero-banner .all-caps h1,
.gacp-hero-banner .all-caps p.slogan {
  text-transform: uppercase;
}

/*svg*/

.hero-svg {
  /*  stroke: #ffaa55;*/
  stroke: #a7a9ac;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
  height: 50vh;

  will-change: opacity;
}

.svg-cloud-left,
.svg-cloud-right {
  fill: white;
}

.svg-ga {
  fill: none;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-grad-stop1 {
  stop-color: #FF8000;
}

.hero-grad-stop2 {
  stop-color: white;
}

.svg-ga {
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;

  -webkit-animation: ga-draw 4s;
  animation: ga-draw 4s;

  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  will-change: stroke-dashoffset;

}

@-webkit-keyframes ga-draw {
  0% {
    stroke-dashoffset: 1300;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ga-draw {
  0% {
    stroke-dashoffset: 1300;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.svg-sun {
  stroke: #ff8000;
  stroke-dashoffset: 260;
  stroke-dasharray: 250;
  -webkit-animation: sun-draw .7s 3s forwards;
  animation: sun-draw .7s 3s forwards;

  will-change: stroke-dashoffset;
}


@-webkit-keyframes sun-draw {
  0% {
    stroke-dashoffset: 250;
  }

  100% {
    stroke-dashoffset: 0;
  }
}


@keyframes sun-draw {
  0% {
    stroke-dashoffset: 250;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.svg-sun-rays {
  stroke-width: 0;
  stroke: #ff8000;

  -webkit-animation: sun-rays .7s 3s forwards;
  animation: sun-rays .7s 3s forwards;

  will-change: stroke-width;
}


@-webkit-keyframes sun-rays {
  0% {
    stroke-width: 0;
  }

  50% {
    stroke-width: 0;
  }

  94% {
    stroke-width: 11;
  }

  100% {
    stroke-width: 10;
  }
}


@keyframes sun-rays {
  0% {
    stroke-width: 0;
  }

  50% {
    stroke-width: 0;
  }

  94% {
    stroke-width: 11;
  }

  100% {
    stroke-width: 10;
  }
}

.svg-rain {
  stroke-dasharray: 10, 40;
  stroke: white;


  -webkit-animation: rain 1s linear infinite, fadein 5s;
  animation: rain 1s linear infinite, fadein 5s;

  will-change: stroke-dashoffset, opacity;
}

@-webkit-keyframes rain {
  0% {
    stroke-dashoffset: 50;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes rain {
  0% {
    stroke-dashoffset: 50;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.svg-cloud-right {
  opacity: 0;
  -webkit-animation: bounce 4s infinite alternate, fadein 1.5s 0.5s forwards;
  animation: bounce 4s infinite alternate, fadein 1.5s 0.5s forwards;
  will-change: transform, opacity;
}

.svg-cloud-left {
  opacity: 0;
  -webkit-animation: bounce 6s infinite alternate, fadein 1.5s 1.5s forwards;
  animation: bounce 6s infinite alternate, fadein 1.5s 1.5s forwards;
  will-change: transform, opacity;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate(0, -2%);
    transform: translate(0, -2%);
  }

  100% {
    -webkit-transform: translate(0, 2%);
    transform: translate(0, 2%);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translate(0, -2%);
    transform: translate(0, -2%);
  }

  100% {
    -webkit-transform: translate(0, 2%);
    transform: translate(0, 2%);
  }
}

svg .bg {
  opacity: 0;
  -webkit-animation: fadein 1s 2s forwards;
  animation: fadein 1s 2s forwards;
  will-change: opacity;
}

.svg-land {
  fill: #ff8000;
  stroke: none;
  /*  stroke: #F4DDBA;*/
  /*  stroke-width: 20;*/
  opacity: 0;

  -webkit-animation: fadein 1.5s 2s forwards;
  /*, landfade 1.5s 2s forwards;*/

  animation: fadein 1.5s 2s forwards;
  /*, landfade 1.5s 2s forwards;*/
  will-change: opacity;
  /*, stroke-width;*/
}

@-webkit-keyframes landfade {
  0% {
    stroke-width: 20;
  }

  100% {
    stroke-width: 0;
  }
}

@keyframes landfade {
  0% {
    stroke-width: 20;
  }

  100% {
    stroke-width: 0;
  }
}

/*General card settings*/

.landing-cards-div {
  font-size: 1.75vw;
}

.landing-cards-div p {
  line-height: 2em;
}

@media screen and (min-width: 1168px) {
  .landing-cards-div {
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  .landing-cards-div {
    font-size: 16px;
  }
}

/*What is card*/
.gacp-what-is-card {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10vh !important;
}

.gacp-what-is-card .flex-card:nth-child(1) {
  width: 25vw;
  height: 25vw;
}

.gacp-what-is-card .flex-card:nth-child(2) {
  padding-left: 5vw;
  padding-bottom: 2.5em;
}

.gacp-what-is-card img {
  border-radius: 50%;
  width: 25vw;
  height: 25vw;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
}


/*Meet our speakers*/
.gacp-meet-our-bios-zone {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gacp-speaker-bio {
  text-align: center;
  padding: 3em 1em;
  width: 30%;
}


.gacp-speaker-bio h2 {
  font-size: 1.2em;
  font-weight: 600;
}

.gacp-speaker-bio h3 {
  font-size: 1em;
  font-weight: normal;
  color: #4b2e11;
  opacity: .8;
  line-height: 2;
  max-width: 80%;
  margin: 0 auto;
}

.gacp-speaker-bio h3 a {
  color: #4b2e11;
  border-bottom: 1.5px solid #4b2e11;
}


.gacp-speaker-bio img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.gacp-speaker-bio.gacp-speaker-bio-detailed,
.gacp-speaker-bio.gacp-speaker-bio-small{
  width: 20%;
  margin-bottom: 3em;
}

.gacp-speaker-bio.gacp-speaker-bio-detailed h3,
.gacp-speaker-bio.gacp-speaker-bio-small h3{
  line-height: 1.9;
  opacity: .75;
  font-size: .85em;
}


@media screen and (min-width: 600px) {
  .gacp-speaker-bio img {
    width: 25vw;
    height: 25vw;
  }

  .gacp-speaker-bio.gacp-speaker-bio-detailed img,
  .gacp-speaker-bio.gacp-speaker-bio-small img{
    width: 15vw;
    height: 15vw;
  }
}

@media screen and (max-width: 800px) {
  .gacp-speaker-bio img {
    max-width: 320px;
    max-height: 320px;
  }
}

@media screen and (min-width: 1168px) {
  .gacp-speaker-bio img {
    width: 320px;
    height: 320px;
  }

  .gacp-speaker-bio.gacp-speaker-bio-detailed img,
  .gacp-speaker-bio.gacp-speaker-bio-small img {
    max-width: 15vw;
    max-height: 15vw;
  }
}

@media screen and (max-width: 800px) {
  .gacp-speaker-bio.flex-card-1-3 {
    width: 40vw;
    font-size: .8em;
  }

  .gacp-speaker-bio img {
    width: 30vw;
    height: 30vw;
  }

  .gacp-speaker-bio.gacp-speaker-bio-detailed img,
  .gacp-speaker-bio.gacp-speaker-bio-small img {
    width: 25vw;
    height: 25vw;
  }

  .gacp-speaker-bio.gacp-speaker-bio-detailed,
  .gacp-speaker-bio.gacp-speaker-bio-small {
    width: 28%;
    margin-bottom: 3em;
    font-size: .9em;
  }
}

@media screen and (max-width: 500px) {
  .gacp-speaker-bio.gacp-speaker-bio-detailed,
  .gacp-speaker-bio.gacp-speaker-bio-small{
    width: 40%;
    margin-bottom: 3em;
    font-size: .9em;
    padding: 1em;
  }
}

/*Ticketing-----------------------*/
.gacp-how-can-zone {}

.gacp-how-can-card:nth-child(1) {
  -ms-flex-item-align: center;
  align-self: center;
  padding-right: 2em;
}

.gacp-tix {
  border-radius: 1em;
  padding: 2em;
  margin: 0.5em;
  -webkit-box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.1);
}

.gacp-tix h1 {
  margin-top: 0;
  font-size: 2.5em;
}

.gacp-tix h2,
.gacp-tix .gacp-early-bird {
  font-size: 1em;
}

.gacp-tix p {
  color: #9b8c7d;
  font-size: 1em;
}

/*Who are we--------------------------*/
.gacp-who-are-zone-div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gacp-partner-links-div {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gacp-partner-link {
  text-align: center;
}

.gacp-partner-link img {
  max-width: 15vw;
  -o-object-fit: contain;
  object-fit: contain;
}

/*Our sponsors----------------------*/
.gacp-sponsor-links-div {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gacp-all-speakers .speaker-desc {
  font-weight: 600;
  line-height: 1.5;
  padding: 2em;
  display: none;
}

.gacp-section-header-card,
.gacp-call-to-action-card {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  width: 100%;
  display: block;
}

.gacp-call-to-action-card {
  margin-top: 3em;
}

.gacp-sponsor-links-div .gacp-sponsor-tier-card {
  margin-top: 6em;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 0.5em;
}

.gacp-sponsor-links-div .gacp-sponsor-tier-card h1:before,
.gacp-sponsor-links-div .gacp-sponsor-tier-card h1:after {
  content: '';
  border-bottom: 1px solid rgba(75, 46, 17, 0.3);
  display: inline-block;
  margin: .25em 1em;
  width: 10vw;
  height: 1px;
}

.gacp-sponsor-link {
  text-align: center;
  max-width: 25vw;
  width: 25vw;
}

.gacp-sponsor-link p {
  font-size: .75em;
  margin: 1vw 0;
}

.gacp-sponsor-link img {
  max-width: 18vw;
  -o-object-fit: contain;
  object-fit: contain;
}

.gacp-sponsor-link .gacp-sponsor-tier {
  color: rgba(75, 46, 17, 0.57);
}

.gacp-ack-card.flex-container {
  margin: 0 auto;
}

.gacp-ack-card .gacp-ack-names-card {
  padding: 1em 0;
  -webkit-column-count: 2;
  -webkit-column-width: 150px;
  column-width: 250px;
  column-count: 2;
  text-align: left;
  margin: 0 auto;
  font-size: 0.75em;
}


.gacp-ack-card h1 {
  padding-top: 0.4em;
  font-size: 1.25em;
  margin: 0;
}

.gacp-ack-card span.ack-name {
  color: #4b2e11;
}

.gacp-ack-card .a-name {
  color: rgba(111, 88, 65, 0.63);
  margin: 0;
  line-height: 2em;
  font-size: 1em;
}

@media screen and (max-width: 1024px) {
  .gacp-ack-card .gacp-ack-names-card {
    width: 33%;
  }
}

@media screen and (max-width: 800px) {

  .gacp-what-is-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /*
  .gacp-meet-our-bios-zone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
*/

  .gacp-all-speakers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .gacp-how-can-zone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .gacp-ack-card.flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .gacp-ack-card .gacp-ack-names-card {
    padding: 1em 0;
    -webkit-column-count: 2;
    -webkit-column-width: 150px;
    column-width: 250px;
    column-count: 2;
    text-align: left;
    width: 90vw;
    margin: 0 auto;
  }

  .gacp-ack-card .a-name {
    margin: 0;
    line-height: 2em;
    font-size: 0.9em;
  }

  .gacp-how-can-zone .flex-card {
    display: block;
    margin: 5vw auto;
  }

  .gacp-how-can-zone .flex-card:nth-child(1) {
    padding-right: 0;
  }

  .gacp-tix {
    max-width: 40vw;
  }

  .flex-card {
    margin: 0 auto;
    width: 80vw;
  }

  .gacp-hero-banner .flex-card,
  .gacp-what-is-card .flex-card {
    width: 80vw;
  }

  .gacp-what-is-card img {
    width: 60vw;
    height: 60vw;
    max-width: 320px;
    max-height: 320px;
    display: block;
  }

  .gacp-what-is-card .flex-card:nth-child(1) {
    height: 60vw;
    width: 80vw;
    max-height: 320px;
  }

  .gacp-what-is-card .flex-card:nth-child(2) {
    padding-left: 0;
  }

  .gacp-who-are-zone-div .gacp-who-are-card,
  .gacp-who-are-zone-div .gacp-partner-links-div {
    width: 80vw !important;
  }

  .gacp-who-are-zone-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .gacp-who-are-zone-div .gacp-partner-links-div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    margin: 4em 2em;
  }

  .gacp-partner-link {
    width: 40vw;
  }

  .gacp-partner-link img {
    max-width: 40vw;
  }

  .gacp-sponsor-link {
    width: 40vw;
  }

  .gacp-sponsor-link img {
    max-width: 30vw;
  }

}

/*Footer Styling---------------------------------------------*/
.footer {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(32, 33, 36, .9);
  overflow: hidden;
  padding: 1em;
  text-align: center;
}

.footer .multi-logo-link {
  width: 150px;
  padding-top: 16px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer ul.menu {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  margin: 0 auto;
  max-width: 1280px;
}

.footer ul.menu > li {
  margin: 0;
  padding: 1em;
}

.footer ul.menu li {
  margin: 1em 0;
}

.footer ul.menu li a {
  color: #dadada;
}

.footer .gacp-partner-links-div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .gacp-partner-link.flex-card {
  width: 100px;
  margin: 30px;
}

.footer .gacp-partner-link a img {
  max-width: 120px;
  min-height: 50px;
}

.gacp-page-banner-card {
  width: 100%;
  padding: 0;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: #FF8000;

}

.gacp-page-banner-card a {
  color: black;
  font-weight: normal;
  text-decoration: underline;
}

.gacp-page-banner-card a:hover {
  text-decoration: none;
}

.gacp-page-banner {
  margin: 0 auto;
  font-size: 1em;
  padding: .5em;
}
