/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/************************ Baseline ************************/
.resources {
  width: 100%;
}
.section-wrapper {
  width: 100%;
  max-width: calc(1140px + 2rem);
  margin: auto;
}
#resources .dnd-section>.row-fluid {
  padding-left: 0;
  padding-right: 0;
}

/************************ Hero ************************/
.hero {
  color: #fff;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 4rem 1rem 6rem 1rem;
  position: relative;
  min-height: 400px;
}
.hero__inner {
  max-width: 640px;
  width: calc(100% - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 1rem;
}
.hero__inner * {
  text-shadow: 0 0 10px black;
}
.hero__page-title {
  position: relative;
  margin: 0;
  padding: 0;
  padding-bottom: .5rem;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.hero__page-title:after {
  content: '';
  width: 90%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
}
.hero__resource-title {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  font-style: normal;
  margin-top: 3rem;
  margin-bottom: 0;
}
.hero__resource-description {
  padding-top: 1rem;
  font-size: 16px;
}
.hero__resource-link {
  font-size: 16px;
  display: block;
  margin-top: 1rem;
  color: #fff;
}



/************************ Resource Cards ************************/
.resources-wrapper {
  padding-bottom: 4rem;
}
.resources__inner-wrapper {
  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;
  min-height: 200px;
}
.resource-wrapper {
  width: calc(100% / 3 - 1px);
  cursor: pointer;
  padding: 1rem;
}
.resource {
  -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,.2);
  box-shadow: 0px 3px 6px rgba(0,0,0,.2);
  border-radius: 10px;
  display: block;
  color: #1D3764 !important;
  border-bottom: none;
  position: relative;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  width: 100%;
  text-decoration: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media(min-width: 620px) {
  .resource {
    height: 100%;
  }
}
.resource:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0px 5px 10px rgba(0,0,0,.2);
  box-shadow: 0px 5px 10px rgba(0,0,0,.2);
}
.resource__image {

  border-radius: 3px 3px 0 0;
}
.resource__image img {
  height: auto;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.resource__type {
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: rgba(246, 139, 32, .9);
  color: #fff;
  padding: .5rem 1rem;
  padding-right: 2rem;
  font-weight: 500;
}
.resource__name {
  text-transform: uppercase;
  font-weight: 600;
 min-height:150px;
  padding: 1.5rem;
  padding-top: 3rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0, 1)), to(rgba(0,0,0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0,0,0, 1), rgba(0,0,0, 0));
  background-image: linear-gradient(to top, rgba(0,0,0, 1), rgba(0,0,0, 0));
}
.resource__info {
  padding: 1.5rem;
  background-color: #F8F8F8;
  height: calc(100% - 200px);
  border-radius: 0 0 3px 3px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex: 1;
}
.resource__desc {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #414142;
}
.resource__link {
  font-weight: 500;
  color: #000000 !important;
  background-color: #FFE04D;
  position: relative;
  width: 100%;
  border-radius: 10px;
  transition: .3s;
  padding: .5rem;
  text-align: center;
  margin-top: 1rem;
  display: block;
  text-decoration: none !important;
  max-width:300px;
}
.resource__link:hover {
  transform: translateY(-3px);
  background-color: #E8A40C;
}
.tags-icon {
  height: 13px;
  width: auto;
  display: inline-block;
  margin-right: 4px;
}
.tags-icon path {
  fill: #404040;
}
.resource__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 1rem;
}
.resource__tag {
  font-size: 13px;
  display: inline-block;
  margin-left: 4px;
}
.resource__learn-more {
  font-size: .8rem;
  margin-top: 1rem;
  display: block;
}

/************************ Topics ************************/
.topics {
  background-color: #F8F8F8;
  padding-top: 3rem;
}
.topics__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.topics__title {
  width: 100%;
  color: #1D3764;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
.topics__filter {
  color: #1d3764;
  font-size: 14px;
  margin: .5rem;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  border-bottom: 2px solid rgba(0,0,0,0);
  border-color: transparent;
  background-color: transparent;
  padding: .5rem;
}
.topics__filter:hover {
  -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,.2);
  box-shadow: 0px 3px 6px rgba(0,0,0,.2);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  border-bottom: : 2px solid #005d78;
  color: #fff;
}
.topics__filter.selected {
  border-bottom: : 2px solid #005d78;
}
.select-filter,
.select-filter option {
  text-transform: capitalize;
}

.upcoming-courses__filter {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: .1rem 0 !important;
  color: #121212 !important;
  position: relative;
  margin: .5rem 1rem !important;
  font-size: 20px;
}
.upcoming-courses__filter:before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px; 
  background-color: #005C7A;
  transition: .2s;
}
.upcoming-courses__filter.selected:before {
  width: 100%;
}
.upcoming-courses__filter.selected {
  color: #005C7A !important;
}

/************************ Filters ************************/
.filters__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem .5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.filters__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.resources__empty-list {
  display: none;
  margin: 4rem auto;
  text-align: center;
}
.filters__type,
.filters__search,
.filters__topic {
  margin: 1rem;
}
.filters__search {
  flex: 1;
}
.quicksearch {
  width: 100%;
}
.filters__filter-name {
  font-size: 14px;
}
#resources input,
#resources select {
  border-radius: 3px;
  border: 1px solid #1D3764;
  width: 278px;
  padding: .75rem 1rem;
  text-align: left;
  font-size: 14px;
}
#resources select {
  -webkit-appearance: none; 
  appearance: none;
  background: transparent;
  background-image: none;
}
.arrow-icon {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.resources input,
.resources select {
  padding: .5rem;
}


@media(max-width: 1023px) {
  .resource-wrapper {
    width: calc(100% / 2 - 1px);
  }
}
@media(max-width: 900px) {
  .filters__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .filters__filters {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media(max-width: 620px) {
  .resource-wrapper {
    padding: 0;
    margin: 1rem;
    width: calc(100% - 2rem);
  }
}
/* Announcement */
.announcement {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.announcement--collapse {
  margin: 0 1rem;
  position: relative;
  background-color:#005C7A;
  color: #fff;
  padding: 2rem 10%;
  font-weight: 500;
}
.collapse {
  position: absolute;
  right: .5rem;
  top: .5rem;
  cursor: pointer;
  color: #fff;
}

/* Wave Divider */
.filters, .resources-wrapper, .announcement, .topics {
  background-color: #f1f1f1;
}
.custom-shape-divider-top-1641231532 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1641231532 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.custom-shape-divider-top-1641231532 .shape-fill {
  fill: #f1f1f1;
}


/* Load more */
.visible_item{
  display:none;
}


/* Event Detail Styles */
.dynamic-event__hero {
  width: 100%;
  margin: 4rem 0 2rem 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.dynamic-event__hero h1 {
  background: linear-gradient(to left,#005d78,#00232f);
  height: 250px;
  width: 100%;
  margin: 0;
  padding: 2rem 2rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
.dynamic-event__details {
  background-color: #fff;
  width: 100%;
  padding: 2rem;
  padding-bottom: 1rem;
}
.dynamic-event__detail-item {
  display: flex;
  align-items: center;
  color: #707070;
  font-size: 20px;
  font-weight: 600;
  margin: 1rem 0;
}
.dynamic-event__detail-item svg {
  fill: #707070;
  display: block;
  margin-right: 1rem;
}
.dynamic-event-page .section-wrapper {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
}
#dynamic-event__register {
  width: 100%;
  border: none;
  background-color: #f1f1f1;
  color: #121212;
  padding: 1rem 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-size: 16px;
}
.dynamic-event__register .hs-button {
  background-color: #005c7a;
  color: #fff;
  border-radius: 10px;
  padding: .75rem 5rem;
}
.dynamic-event__register h2 {
  width: 100%;
  margin-bottom: 1rem;
  color: #005D78;
}
.dynamic-event__registration-col {
  width: 33%;
}
.dynamic-event__register {
  margin: 4rem 0 3rem 0;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
}
.dynamic-event__related {
  width: 100%;
  margin: 0;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
}
.dynamic-event__related h3 {
  width: 100%;
  text-align: left;
  color: #005D78;
  margin-bottom: 2rem;
}
.dynamic-event__related a {
  display: block;
  margin-bottom: 2rem;
  width: 100%;
}
.related-products ul {
    list-style-type: none;
}
.related-products li {
    padding: .6rem 0;
}
.dynamic-event__event-details-col {
  width: 65%;
}
.dynamic-event__seats {
  width: 100%;
  background-color: #005D78;
  padding: 1rem 2rem;
  color: #fff;
}
.dynamic-event__details-block {
  padding: 2rem;
  padding-right: max(2rem, 6%);
  margin: 3rem 0;
  background-color: #fff;
}
.event-container {
    display: flex;
    flex-wrap: wrap;
  }
  .resources {background:#f1f1f1;}
  .footer path.elementor-shape-fill {
    fill: #f1f1f1;
}

/* Product Details Layout */
.event-details svg {height:27px;width:auto;margin-right:15px;}
.event-header, .product-section {
    border-radius: 11px;
    background: #fff;
  margin-bottom:20px;
}
.event-header h1 {
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    color: #fff;
    background: linear-gradient(to right,#005d78,#00232f);
    display: block;
    padding: 20px;
    width: 100%;
    font-size: 2rem;
    text-transform: uppercase;
  margin-bottom:0px;
}
.event-details, .signup-form, .inset-padding {padding:20px;}
.description.product-section {
    padding: 20px;
}
.detail-item {
    display: flex;
    align-items: center;
  padding-top:10px
}
.availablity-details {display:block;padding-bottom:5px;}
.detail-item span.icons {
    min-width: 50px;
}
.descriptor svg {height:.7rem;margin-right:6px;}
.descriptor {
    font-size: .7rem;
    display: flex;
    align-items: center;
}
.event-availablity {background:#005D78;color:#fff!important;border-radius:11px;margin-bottom:20px;}

/* Impersonation Mode */
.contact_item {
  display: block;
  background-color: rgba(255,255,255,1.0);
  border: 2px solid #005c7a;
  border-radius: 4px;
  color: #005c7a;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}