body{
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}
body,
html{
  overflow-x: hidden;
  position: relative;
}
html{
  font-size: 62.5%;
}
*{
  box-sizing: border-box;
}

a{
  color: rgba(41,46,126,.7);
  transition: color .4s;
}
a:active,
a:focus,
a:hover{
  text-decoration: underline;
}
a:hover{
  color: rgba(41,46,126,1);
}
img{
  max-width: 100%;
}
ol ul{
  margin-bottom: 25px;
}

.break-word{
  overflow-wrap: break-word;
}
.display-block{
  display: block;
}
.display-inline-block{
  display: inline-block;
}
.display-none{
  display: none;
}
.object-fit-cover{
  object-fit: cover;
  width: 100%; height: 100%;
}
.m-auto{
  margin: auto;
}
.m-0{
  margin: 0;
}
.m-0-15{
  margin: 0 15px;
}
.m-10-0{
  margin: 10px 0;
}
.m-30-auto{
  margin: 30px auto;
}
.mb-0{
  margin-bottom: 0;
}
.mt-0{
  margin-top: 0;
}
.mt-5{
  margin-top: 5px;
}
.nowrap{
  white-space: nowrap;
}
.opacity-30{
  filter: opacity(.3);
}
.p-15{
  padding: 15px;
}

.p-15-nb{
  padding: 15px 15px 0;
}

.day-group {
  margin-bottom: 6rem;
  width: max-content;
  min-width: 100%;
}

.day-group:last-child {
  margin-bottom: 0;
}

.workshop-group {
  display: flex;
  flex-wrap: wrap;
  border: 3px solid #00843d;
}

.workshop-group.session-transition .card-header{
  animation: sessionChange 0.5s ease;
}

@keyframes sessionChange {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flex-4-lg {
  border: 1px solid #ccc;
  border-top: none;
  border-left: none;
}

.session-header {
  text-align: left;
}

.session-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
}

.session-item-border {
  background:#ffffff;
  border-radius: 1rem 5rem 0 0;
  padding: 2px 2px 0px 0px;
  position: relative;
  margin-right: -1.5rem;
}

.session-item {
  font: inherit;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  display: flex;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: 
    background-color 0.2s ease,
    color 0.2s ease;
  padding: 2rem 2.75rem 2rem 2.75rem;
  border-radius: 2rem 4.8rem 0 0;
  background-color: #e4e4e4;
  border: none;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.session-item.active {
    background-color: #00843d;
    z-index:5;
    border-bottom: none;
}

.session-title {
  margin-top:0px;
  color: #2e2e2e;
  padding-right: 1rem;
  border-right: 1px solid #ccc;
}

.session-time{
  margin-bottom: 0px;
  color: #2e2e2e;
  font-weight: bold;
}

.session-item.active .session-title,
.session-item.active .session-time {
    color: #fff;
}

.position-relative{
  position: relative;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.w-100p{
  width: 100%;
}

.btn{
  border: 2px solid transparent;
  display: inline-block;
  font-weight: bold;
  outline: 2px solid transparent;
  text-decoration: none;
}
.btn:active,
.btn:focus,
.btn:hover{
  text-decoration: none;
}
.btn-lg{
  padding: .7em 1.4em;
}
.btn-md{
  padding: .5em 1em;
}
.btn-1{
  background-color: #fff;
}
.btn-1:active,
.btn-1:focus{
  border: 2px solid rgba(41,46,126,1);
  outline: 2px solid #fff;
}
.btn-2{
  background-color: rgba(41,46,126,1);
  color: #fff;
}
.btn-2:active,
.btn-2:focus{
  border: 2px solid #fdb713;
  outline: 2px solid rgba(41,46,126,1);
}
.btn-2:hover{
  color: rgba(255,255,255,.65);
}
.card-body{
  padding: 15px;
  padding-top: 0;
}
.card-header{
  padding: 0 15px;
  padding-bottom: 15px;
}
.checklist-item-body{
  background-color: #f7f7f7;
  border-left: 1px solid #e7e7e7; 
  margin: 10px 0;
  padding: 15px 25px;
}
.checklist-item-body>:first-child{
  margin-top: 0;
}
.checklist-item-body>:last-child{
  margin-bottom: 0;
}
.container{
  margin: auto;
}
.container-lg{
  max-width: 1600px;
}
.content-bar:before{
  background-color: #fdb713;
  content: " ";
  display: block;
  width: 100px; height: 10px;
}
.content-default{
  margin: auto;
}
.content-default.pb-0{
  padding-bottom: 0;
}
.content-default+.content-default{
  padding-top: 0;
}
.content-default h4{
  line-height: 1.1;
}
.content-default p small{
  color: #999;
  display: block;
  line-height: 1.3;
}
.content-full-width{
  padding: 40px 0 10px 0;
}
.content-xs{
  max-width: 500px;
}
.content-sm{
  max-width: 768px;
}
.content-md{
  max-width: 1000px;
}
.content-lg{
  max-width: 1600px;
}
.content-xl{
  max-width: 1920px;
}
.filter-data{
  list-style: none;
  padding: 0;
}
.filter-data input[type="checkbox"],
.filter-data label{
  cursor: pointer;
}
.filter-data label{
  display: inline-block;
  vertical-align: top;
}
.jumbotron{
  border: 1px solid #ccc;
  padding: 30px;
}
.list-group{
  border: 1px solid #ccc;
  list-style: none;
  margin: 30px auto;
  padding: 0;
}
.list-group>li{
  border-top: 1px solid #ccc;
  padding: 5px 8px;
}
.list-group>li:first-child{
  border: none;
}
.overlay-gradient{
  position: absolute;
}
.section-carousel{
  margin: 40px auto;
}
.section-carousel h3:first-child{
  margin-top: 0;
}
.section-carousel>ul{
  margin: 0;
  padding: 0;
}
.section{
  margin: auto;
}
.section-default{
  max-width: 1600px;
}
.section-lg{
  max-width: 1920px;
}
.section-header{
  margin-top: 4rem;
  position: relative;
}
.section-header:before{
  background-color: #fdb713;
  content: " ";
  display: block;
  margin-top: -5px;
  position: absolute; top: 50%; left: 0;
  width: 100%; height: 10px;
  z-index: -1;
}
.section-header h1,
.section-header h2{
  background: #efefef;
  border-left: 20px solid #fff;
  border-right: 20px solid #fff;
  color: #2a2a2a;
  display: inline-block;
  margin: 0;
  margin-left: 20px;
  padding: 5px 10px;
}
.section-img-content{
  background: rgba(255,255,255,.5);
  padding: 5px 10px;
  position: absolute;
  z-index: 0;
}
.section-img-content h2{
  color: #fff;
  margin: 0;
}
.section-img-content-left{
  left: 20px;
}
.text-cta{
  font-weight: bold;
  position: relative;
}
.text-cta:after{
  font-family: "Font Awesome 5 Free";
  position: absolute;
  transition: all .4s;
}
.text-cta-1{
  padding-right: 30px;
}
.text-cta-1:after{
  font-weight: bold;
  content: "\f30b";
  right: 5px;
}
.text-cta-1:hover:after{
  right: 0;
}
.video{
  display: block;
  max-width: 100%;
  position: relative;
}
.video:active .video-play,
.video:focus .video-play,
.video:hover .video-play{
  background-color: rgba(0, 0, 0, 1);
}
.video:active .video-play,
.video:focus .video-play{
  outline: 2px solid #fff;
  outline-offset: 6px;
}
.video:hover{
  cursor: pointer;
}
.video .video-controls{
  height: 100%;
  position: relative; top: 0;
  z-index: 3;
}
.video .video-controls img{
  position: relative;
  z-index: 3;
}
.video iframe{
  opacity: 0;
  position: absolute; top: 0; left: 0;
  z-index: 0;
}
.video-caption{
  background-color: rgba(0, 0, 0, .8);
  box-sizing: border-box;
  color: #fff;
  font-size: .8em;
  max-width: 90%;
  padding: 5px 2.5%;
  position: absolute; top: 15px; left: 15px;
  z-index: 4;
}
.video-play{
  background-color: rgba(9, 111, 174, .75);
  border-radius: 50%;
  box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
  color: #fff;
  outline: 2px solid transparent;
  position: absolute; top: 50%; left: 50%;
  text-align: center;
  transition: all .25s;
  z-index: 9;
}
.video-poster{
  display: block;
}
.video-full{
  width: 100%;
}

#thank-you{
  border-top: 5px solid #fdb713;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  color: #fff;
  position: relative;
  z-index: 10;
}

#hero{
  margin: auto;
  max-width: 1920px;
}
#hero+#information-sessions{
  display: block;
  margin-top: 15px;
}
#hero+#register{
  background: linear-gradient(180deg, rgba(0,132,61,1) 0%, rgba(0,0,0,0) 25%);
}
#hero h1,
#hero h2{
  color: #fff;
}
#hero h1{
  font-weight: bold;
  line-height: 1;
  margin: 0;
  margin-bottom: -.5rem;
  position: relative;
}
#hero h1 span{
  color: #f6b120;
  font-family: proxima-nova, sans-serif;
  font-size: 1.5em;
  font-weight: 800;
  text-transform: uppercase;
}
#hero li,
#hero p{
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 3px 9px rgba(0,0,0,.35);
}
#hero :last-child{
  margin-bottom: 0;
}
#hero .overlay-gradient{
  width: 100%; height: 100%;
}
#hero-carousel{
  margin: 0;
  padding: 0;
}
.hero-img-content{
  position: absolute;
}

#header .btn{
  margin: 15px;
}

.section-default .overlay-gradient{
  width: 100%; height: 100%;
  z-index: 3;
}

#register{
  margin-top: -6rem;
}
#register h3{
  color: #fff;
}
#register .form{
  background-color: rgba(41,46,126,1);
  padding: 15px 5rem;
  padding-bottom: 5rem;
}

#contact{
  background-color: #00843d;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 30px;
}
#contact h2{
  color: #fff;
  margin: 40px auto;
}
#contact .display-flex>div{
  align-self: center;
}

#sessions .card{
  height: 100%;
}

#footer{
  background-color: #202122;
  color: #fff;
  font-size: 1.2em;
  padding: 20px;
}
#footer .social-media a{
  color: #fff;
  font-size: 20px;
  margin: 5px;
}

@media screen and (min-width: 1500px) and (max-width: 1699px){
  #logo{
    margin-left: 20px;
  }
}

@media screen and (min-width: 1500px){
  #logo{
    margin-top: 5%;
  }

  #hero h2:first-child{
    margin-top: 2em;
  }
  #hero+#register .form{
    margin-top: -70px;
  }
  .hero-img-content{
    bottom: 5%; left: 15px;
    width: 100%;
  }

  #register .form{
    position: relative;
    z-index: 10;
  }
}

@media screen and (min-width: 1600px){
  .content-default{
    padding: 40px 0;
  }
}

@media screen and (max-width: 1508px){
  .session-item{
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 4rem 1.5rem 4rem;
  }
  .session-title {
    padding-right: none;
    border-right: none;
  }
}

@media screen and (max-width: 1499px){
  #hero h2:first-child{
    margin-top: 1.5em;
  }
  .hero-img-content{
    bottom: 20px; left: 20px;
  }
}

@media screen and (min-width: 1200px){
  body.homepage{
    background: url('images/bg-hero.png') repeat-x top;
  }
  h2{
    font-size: 3.6em;
  }
  h3{
    font-size: 2.8em;
  }

  .content-default h3,
  .content-default .text-lg{
    font-size: 2.8em;
  }
  .content-default h4{
    font-size: 2em;
  }
  .content-default li,
  .content-default p{
    font-size: 1.6rem;
    line-height: 1.4;
  }

  #hero h1{
    font-size: 6em;
  }
  #hero p{
    font-size: 1.8em;
  }
  #hero .text-lg{
    font-size: 2.8em;
  }
}

@media screen and (max-width: 1200px){
  .hero-img-content{
    left: 5%;
    width: 90%;
  }
}

@media screen and (max-width: 1199px){
  #register h3{
    margin-top: 40px;
  }
}
@media screen and (max-width: 1237px){
  .session-item{
    padding: 1.5rem 2.75rem 1.5rem 2.75rem;
  }
}  
@media screen and (min-width: 961px){
  .text-center-lg{
    text-align: center;
  }

  .btn-lg{
    font-size: 2.8em;
    line-height: 1.4;
  }
  .btn-md{
    font-size: 2em;
    line-height: 1.2;
  }
  .section-default .overlay-gradient{
    background: linear-gradient(220deg, rgba(0,132,61,1) 0, rgba(41,46,126,.8) 20%, rgba(0,0,0,0) 40%);
  }
  .section-img-content{
    top: 20px;
  }
  .section-img-content-right{
    right: 20px;
  }
  .video-play{
    margin-left: -50px;
    margin-top: -50px;
    width: 100px;
    height: 100px;
  }
  .video-play i {
    font-size: 2em;
    line-height: 100px;
    margin-left: 5px;
  }

  #footer span{
    display: inline-block;
    margin: 5px 0;
  }
  #footer .social-media{
    text-align: right;
  }
}

@media screen and (max-width: 960px){
  .btn-lg{
    font-size: 1.8em;
    line-height: 1.4;
  }
  .btn-md{
    font-size: 1.4em;
    line-height: 1.2;
  }
  .content-default li,
  .content-default p{
    font-size: 16px;
    line-height: 1.4;
  }
  .section-default .overlay-gradient{
    background: linear-gradient(20deg, rgba(0,132,61,1) 0, rgba(41,46,126,.8) 20%, rgba(0,0,0,0) 40%);
  }
  .section-img-content{
    bottom: 20px; left: 20px;
  }
  .video iframe{
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
  }
  .video-play{
    margin-left: -30px;
    margin-top: -30px;
    width: 60px;
    height: 60px;
  }
  .video-play i {
    font-size: 1.2em;
    line-height: 60px;
  }

  #footer .social-media{
    margin-top: 15px;
  }
}

@media screen and (max-width: 1018px){
  .session-item{
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
} 

@media screen and (min-width: 871px) and (max-width: 1499px){
  #logo{
    margin: 20px;
  }
}

@media screen and (min-width: 871px) and (max-width: 1399px){
  #hero h1{
    font-size: 3em;
  }
  #hero .text-lg{
    font-size: 2em;
  }
}

@media screen and (min-width: 871px) and (max-width: 1199px){
  h2{
    font-size: 2.8em;
  }
  h3{
    font-size: 2.2em;
  }

  .content-default h3,
  .content-default .text-lg{
    font-size: 2.2em;
  }
  .content-default h4{
    font-size: 1.8em;
  }
  .content-default li,
  .content-default p{
    font-size: 1.6em;
    line-height: 1.4;
  }

  #hero p{
    font-size: 1.8em;
  }
}

@media screen and (min-width: 871px){
  .text-center-md{
    text-align: center;
  }

  #logo{
    width: 275px;
  }

  #header .btn{
    margin-top: 30px;
  }
}

@media screen and (max-width: 870px){
  h2{
    font-size: 2em;
  }
  h3{
    font-size: 1.8em;
  }

  .content-default h3,
  .content-default .text-lg{
    font-size: 1.8em;
  }
  .content-default h4{
    font-size: 1.4em;
  }
  .content-default li,
  .content-default p{
    font-size: 1.4em;
    line-height: 1.4;
  }

  #hero h1{
    font-size: 3em;
  }
  #hero p{
    font-size: 1.4em;
  }
  #hero .text-lg{
    font-size: 1.6em;
  }

  #header .btn{
    margin-top: 15px;
  }
}
@media screen and (max-width: 945px){
  .session-item {
    padding: 1.5rem 1.75rem 1.5rem 1.75rem;
  }
}

@media screen and (max-width: 766px){

    .day-group {
        width: 100%;
        min-width: 0;
        margin-bottom: 3rem;
    }

    .session-header {
        width: 100%;
        overflow: hidden;
    }

    .session-list {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;

        gap: 0.5rem;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 1rem 0.75rem;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .session-list::-webkit-scrollbar {
        display: none;
    }

    .session-item-border {
        flex: 0 0 auto;
        margin-right: 0;
        padding: 0;
        background: transparent;
        border-radius: 0.75rem;
        scroll-snap-align: start;
    }


    .session-item {
        clip-path: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
        min-width: 8rem;
        background: #e4e4e4;
        border-radius: 0.75rem;
        box-sizing: border-box;
    }

    .session-item.active {
        background: #00843d;
        border: 1px solid #00843d;
        border-bottom: 1px solid #00843d;
    }

    .session-title {
        margin: 0;
        padding-right: 0;
        border-right: none;
        white-space: nowrap;
    }

    .session-time {
        margin: 0;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .workshop-group {
        width: 100%;
        display: block;
        border-width: 2px;
        box-sizing: border-box;
    }

    .workshop-group .flex-4-lg {
        width: 100%;
        max-width: 100%;
        flex: none;
        box-sizing: border-box;
        border-right: none;
        border-left: none;
    }
}
@media screen and (max-width: 649px){
  #hero-img img{
    height: 500px;
    object-fit: cover;
    object-position: 40%;
  }
}

@media screen and (min-width: 551px) and (max-width: 870px){
  #logo{
    margin: 15px 5%;
    width: 180px;
  }
}

@media screen and (min-width: 551px){
  #hero .overlay-gradient-1{
    background: linear-gradient(300deg, rgba(41,46,126,1) 0, rgba(0,0,0,0) 69%, rgba(0,0,0,0) 70%, rgba(0,132,61,1) 100%);
    z-index: 3;
  }
  #hero .overlay-gradient-2{
    background: linear-gradient(15deg, rgba(0,132,61,1) 25%, rgba(0,0,0,0) 50%);
    z-index: 4;
  }
}

@media screen and (max-width: 550px){
  .mobile-br{
    display: none;
  }
  .text-center-sm{
    text-align: center;
  }

  .filter-data label{
    font-size: 12px;
    margin-top: 8px;
  }
  .filter-data input[type="checkbox"]{
    margin: 5px;
    width: 20px; height: 20px;
  }
  .section-carousel-img{
    margin-bottom: 15px;
    width: 100px;
  }
  .section-header h2{
    margin-left: 5%;
    max-width: 90%;
  }

  #hero .overlay-gradient-1{
    background: linear-gradient(300deg, rgba(41,46,126,1) 0, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 50%, rgba(0,132,61,.95) 100%);
    z-index: 3;
  }
  #hero .overlay-gradient-2{
    background: linear-gradient(0deg, rgba(0,132,61,1) 5%, rgba(0,0,0,0) 65%);
    z-index: 4;
  }
}

@media screen and (max-width: 507px){
  #register{
    text-align: center;
  }
}

@media screen and (min-width: 321px) and (max-width: 1649px){
  .content-default{
    padding: 40px;
  }
}

@media screen and (min-width: 321px) and (max-width: 870px){
  #hero h1{
    font-size: 2em;
  }
  .hero-img-content{
    bottom: 18px; 
  }
}

@media screen and (min-width: 321px) and (max-width: 550px){
  #logo{
    margin: 20px 15px;
    width: 150px;
  }
}

@media screen and (max-width: 320px){
  .content-default{
    padding: 40px 20px 10px 20px;
  }

  #hero h1{
    font-size: 1.6em;
  }
  .hero-img-content{
    bottom: 5%;
  }

  #logo{
    margin: 15px;
    width: 110px;
  }
}

/* IE10+  */
@media all and (max-width: 550px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #hero-img{
    background-color: rgba(0,132,61,1);
    height: 300px;
  }
  #hero-img img{
    display: none;
  }
}