:root {
  --color-blue: 56, 135, 219;
  --color-cyan: 78, 199, 231;
  --color-green: 115, 191, 67;
  --color-orange: 243, 118, 85;
  --color-teal: 34, 183, 139;
}

.row {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.eq-height {
  align-items: stretch;
}

.row.auto-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.start-xs {
  justify-content: flex-start;
}

.center-xs {
  justify-content: center;
}

.end-xs {
  justify-content: flex-end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 481px) {
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .start-sm {
    justify-content: flex-start;
  }
  .center-sm {
    justify-content: center;
  }
  .end-sm {
    justify-content: flex-end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 769px) {
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .start-md {
    justify-content: flex-start;
  }
  .center-md {
    justify-content: center;
  }
  .end-md {
    justify-content: flex-end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 993px) {
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .start-lg {
    justify-content: flex-start;
  }
  .center-lg {
    justify-content: center;
  }
  .end-lg {
    justify-content: flex-end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 1201px) {
  .col-xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .start-xl {
    justify-content: flex-start;
  }
  .center-xl {
    justify-content: center;
  }
  .end-xl {
    justify-content: flex-end;
  }
  .top-xl {
    align-items: flex-start;
  }
  .middle-xl {
    align-items: center;
  }
  .bottom-xl {
    align-items: flex-end;
  }
  .around-xl {
    justify-content: space-around;
  }
  .between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .show-xs-only {
    display: block !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 481px) {
  .show-sm {
    display: block !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .show-sm-only {
    display: block !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .show-md {
    display: block !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .show-md-only {
    display: block !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 993px) {
  .show-lg {
    display: block !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .show-lg-only {
    display: block !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1201px) {
  .show-xl {
    display: block !important;
  }
  .hide-xl {
    display: none !important;
  }
}
body,
button,
input,
select,
optgroup,
textarea {
  color: #414042;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Roboto Mono", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}

h1,
h2 {
  color: #f37655;
  font-size: 1.8125rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}

h3 {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}

p,
ul,
ol {
  font-family: "Roboto Mono", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-family: "Courier 10 Pitch", "Courier", monospace;
  background-color: #d4d4d4;
  overflow: auto;
  margin-bottom: 1.6em;
  padding: 1.6em;
  max-width: 100%;
}

code,
kbd,
tt,
var {
  font-size: 0.9375rem;
  font-family: "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  cursor: help;
}

mark,
ins {
  text-decoration: none;
  background: #d4d4d4;
}

big {
  font-size: 125%;
}

a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(243, 118, 85, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #f37655;
  border-color: #f37655;
}
a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(243, 118, 85, 0.2);
  color: #f37655;
}

.section-color-blue a,
.section-color-blue a:visited {
  color: #3887db;
}
.section-color-blue a:hover,
.section-color-blue a:visited:hover {
  color: #2674c7;
}
.section-color-blue a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(56, 135, 219, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #3887db;
  border-color: #3887db;
}
.section-color-blue a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(56, 135, 219, 0.2);
  color: #3887db;
}

.section-color-cyan a,
.section-color-cyan a:visited {
  color: #4ec7e7;
}
.section-color-cyan a:hover,
.section-color-cyan a:visited:hover {
  color: #1ca7b2;
}
.section-color-cyan a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(78, 199, 231, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #4ec7e7;
  border-color: #4ec7e7;
}
.section-color-cyan a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(78, 199, 231, 0.2);
  color: #4ec7e7;
}

.section-color-green a,
.section-color-green a:visited {
  color: #73bf43;
}
.section-color-green a:hover,
.section-color-green a:visited:hover {
  color: #438817;
}
.section-color-green a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(115, 191, 67, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #73bf43;
  border-color: #73bf43;
}
.section-color-green a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(115, 191, 67, 0.2);
  color: #73bf43;
}

.section-color-orange a,
.section-color-orange a:visited {
  color: #f37655;
}
.section-color-orange a:hover,
.section-color-orange a:visited:hover {
  color: #b2573e;
}
.section-color-orange a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(243, 118, 85, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #f37655;
  border-color: #f37655;
}
.section-color-orange a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(243, 118, 85, 0.2);
  color: #f37655;
}

.section-color-teal a,
.section-color-teal a:visited {
  color: #22b78b;
}
.section-color-teal a:hover,
.section-color-teal a:visited:hover {
  color: #378359;
}
.section-color-teal a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(34, 183, 139, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #22b78b;
  border-color: #22b78b;
}
.section-color-teal a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(34, 183, 139, 0.2);
  color: #22b78b;
}

a {
  transition: color 0.2s ease-out;
  color: #f37655;
  text-decoration: underline;
}
a:visited {
  color: #f37655;
}
a:hover, a:focus, a:active {
  color: #b2573e;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
a:hover {
  transition: color 0.015s ease-out;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.75rem;
  line-height: 1;
  border: 1px solid;
  border-radius: 3px;
  padding: 0.6em 1em 0.4em;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  border-radius: 3px;
  padding: 3px;
}
textarea {
  width: 100%;
}

.wFormContainer {
  box-shadow: none !important;
}
.wFormContainer fieldset {
  border: 0 !important;
  border-bottom: 1px solid #dddbda !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.screen-reader-text {
  word-wrap: normal !important;
  border: 0;
  overflow: hidden;
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
}
.screen-reader-text:focus {
  color: #414042;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  display: block;
  top: 5px;
  left: 5px;
  z-index: 100000;
  clip: auto !important;
  padding: 15px 23px 14px;
  width: auto;
  height: auto;
  clip-path: none;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  margin: 0 auto;
}

.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-content::before,
.site-content::after,
.site-footer::before,
.site-footer::after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-content::after,
.site-footer::after {
  clear: both;
}

header.site-header {
  background-color: #fff;
}

.touchevents header.site-header nav.top-navigation,
.touchevents header.site-header nav.main-navigation {
  position: absolute;
}

header.site-header {
  padding-top: 62px;
}
header.site-header nav.top-navigation,
header.site-header nav.main-navigation {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(34, 34, 34, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.top-navigation,
  header.site-header nav.main-navigation {
    background-color: #383839;
    box-shadow: none;
  }
}
header.site-header nav.top-navigation .menu-header-menu-container ul,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul,
header.site-header nav.top-navigation .menu-mega-menu-container ul,
header.site-header nav.main-navigation .menu-header-menu-container ul,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul,
header.site-header nav.main-navigation .menu-mega-menu-container ul {
  font-weight: 400;
  font-family: "Roboto Mono", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.menu-item,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.menu-item,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.menu-item,
header.site-header nav.main-navigation .menu-header-menu-container ul li.menu-item,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.menu-item,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.menu-item {
  margin: 0;
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.menu-item > a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.menu-item > a,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.menu-item > a,
header.site-header nav.main-navigation .menu-header-menu-container ul li.menu-item > a,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.menu-item > a,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.menu-item > a {
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
  margin: 0 10px;
  padding: 10px 6px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.top-navigation .menu-header-menu-container ul li.menu-item > a:hover,
  header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.menu-item > a:hover,
  header.site-header nav.top-navigation .menu-mega-menu-container ul li.menu-item > a:hover,
  header.site-header nav.main-navigation .menu-header-menu-container ul li.menu-item > a:hover,
  header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.menu-item > a:hover,
  header.site-header nav.main-navigation .menu-mega-menu-container ul li.menu-item > a:hover {
    color: #f37655;
  }
}
@media only screen and (min-width: 993px) {
  header.site-header nav.top-navigation .menu-header-menu-container ul li.menu-item > a:hover::before,
  header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.menu-item > a:hover::before,
  header.site-header nav.top-navigation .menu-mega-menu-container ul li.menu-item > a:hover::before,
  header.site-header nav.main-navigation .menu-header-menu-container ul li.menu-item > a:hover::before,
  header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.menu-item > a:hover::before,
  header.site-header nav.main-navigation .menu-mega-menu-container ul li.menu-item > a:hover::before {
    content: "";
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
  }
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.menu-item .menu-item-description,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.menu-item .menu-item-description,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.menu-item .menu-item-description,
header.site-header nav.main-navigation .menu-header-menu-container ul li.menu-item .menu-item-description,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.menu-item .menu-item-description,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.menu-item .menu-item-description {
  display: none;
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.menu-item > li.current-menu-item a::before,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.menu-item > li.current-menu-item a::before,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.menu-item > li.current-menu-item a::before,
header.site-header nav.main-navigation .menu-header-menu-container ul li.menu-item > li.current-menu-item a::before,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.menu-item > li.current-menu-item a::before,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.menu-item > li.current-menu-item a::before {
  content: "";
  border-bottom: 12px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.contact.menu-item a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.contact.menu-item a,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.contact.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-container ul li.contact.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.contact.menu-item a,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.contact.menu-item a {
  color: #f37655;
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.my-ced.menu-item a,
header.site-header nav.top-navigation .menu-header-menu-container ul li.search.menu-item a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.my-ced.menu-item a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.search.menu-item a,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.my-ced.menu-item a,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.search.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-container ul li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-container ul li.search.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.search.menu-item a,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.search.menu-item a {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 16px center;
  margin: 0;
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.my-ced.menu-item a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.my-ced.menu-item a,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-container ul li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.my-ced.menu-item a {
  background-image: url("../img/icons/user-white.svg");
}
header.site-header nav.top-navigation .menu-header-menu-container ul li.search.menu-item a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul li.search.menu-item a,
header.site-header nav.top-navigation .menu-mega-menu-container ul li.search.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-container ul li.search.menu-item a,
header.site-header nav.main-navigation .menu-header-menu-side-items-container ul li.search.menu-item a,
header.site-header nav.main-navigation .menu-mega-menu-container ul li.search.menu-item a {
  background-image: url("../img/icons/search-white.svg");
  background-size: auto 25px;
}
header.site-header nav.top-navigation {
  display: none;
  width: 100%;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.top-navigation {
    display: flex;
  }
}
header.site-header nav.top-navigation .header-menu-flexbalance {
  flex: 0 0;
}
@media (min-width: 1261px) {
  header.site-header nav.top-navigation .header-menu-flexbalance {
    flex: 0 20%;
  }
}
header.site-header nav.top-navigation .header-menu {
  flex: 1 80%;
}
@media (min-width: 1261px) {
  header.site-header nav.top-navigation .header-menu {
    flex: 1 60%;
  }
}
header.site-header nav.top-navigation .header-menu-side {
  flex: 0 20%;
}
header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu,
header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu-side-items,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu-side-items {
  font-size: 1.0625rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
@media only screen and (min-width: 1201px) {
  header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu,
  header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu-side-items,
  header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu,
  header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu-side-items {
    font-size: 1.125rem;
  }
}
@media (min-width: 1261px) {
  header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu,
  header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu-side-items,
  header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu,
  header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu-side-items {
    justify-content: center;
  }
}
header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu li.menu-item,
header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu-side-items li.menu-item,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu li.menu-item,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu-side-items li.menu-item {
  margin: 13px 0;
}
header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu li.menu-item > a,
header.site-header nav.top-navigation .menu-header-menu-container ul#menu-header-menu-side-items li.menu-item > a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu li.menu-item > a,
header.site-header nav.top-navigation .menu-header-menu-side-items-container ul#menu-header-menu-side-items li.menu-item > a {
  text-align: center;
  padding: 6px;
}
header.site-header .menu-header-menu-side-items-container ul#menu-header-menu-side-items {
  justify-content: flex-end !important;
}
header.site-header .menu-header-menu-side-items-container ul#menu-header-menu-side-items li.contact.menu-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
header.site-header .menu-header-menu-side-items-container ul#menu-header-menu-side-items li.my-ced.menu-item a,
header.site-header .menu-header-menu-side-items-container ul#menu-header-menu-side-items li.search.menu-item a {
  text-indent: -9999px;
  background-position: center;
  padding-left: 6px;
  width: 50px;
}
header.site-header .menu-header-menu-side-items-container ul#menu-header-menu-side-items li.search.menu-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 82px !important;
  padding-right: 10px;
}
header.site-header nav.main-navigation.toggled .menu-mega-menu-container {
  transition: opacity 0.2s ease-out;
  opacity: 1;
  top: 0;
}
header.site-header nav.main-navigation .menu-mega-menu-container {
  background-color: #383839;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  position: absolute;
  top: -99999px;
  left: 0;
  z-index: 100;
  padding-top: 4rem;
  padding-right: 1rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  width: 100%;
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu {
  font-weight: 500;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
@media only screen and (min-width: 481px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu {
    -moz-columns: 2;
         columns: 2;
    -moz-column-rule: 1px solid rgba(255, 255, 255, 0.15);
         column-rule: 1px solid rgba(255, 255, 255, 0.15);
  }
}
@media only screen and (min-width: 769px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu {
    -moz-columns: 3;
         columns: 3;
  }
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu {
    -moz-columns: 4;
         columns: 4;
  }
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item {
  page-break-inside: avoid;
  padding-top: 1.5rem;
}
@media only screen and (min-width: 769px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item {
    padding-top: 6px;
  }
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item > a {
    padding: 6px;
  }
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu {
  font-size: 0.9375rem;
  font-weight: 400;
  text-transform: none;
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item > a {
  color: rgba(255, 255, 255, 0.75);
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item > a {
    padding: 4px 6px;
  }
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item > a:hover {
    color: #f37655;
  }
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item > a:hover::before {
    bottom: 0;
  }
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a {
  position: relative;
  padding-left: 20px;
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a::before, header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a::after {
  content: "";
  background-color: rgba(243, 118, 85, 0.75);
  position: absolute;
  left: 6px;
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a::before {
  top: 16px;
  width: 1px;
  height: 6px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a::before {
    top: 10px;
  }
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a::after {
  top: 22px;
  width: 9px;
  height: 1px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu > li.menu-item ul.sub-menu > li.menu-item ul.sub-menu a::after {
    top: 16px;
  }
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu li.my-ced.menu-item,
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu li.search.menu-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 6px;
  padding-bottom: 5px;
}
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu li.my-ced.menu-item a,
header.site-header nav.main-navigation .menu-mega-menu-container ul#primary-menu li.search.menu-item a {
  padding-left: 65px;
}

header.site-header nav.top-navigation li.menu-item.ced-color-blue > a,
header.site-header nav.main-navigation li.menu-item.ced-color-blue > a {
  color: #64b5f6 !important;
}

header.site-header nav.top-navigation li.menu-item.ced-color-cyan > a,
header.site-header nav.main-navigation li.menu-item.ced-color-cyan > a {
  color: #1eacb7 !important;
}

header.site-header nav.top-navigation li.menu-item.ced-color-green > a,
header.site-header nav.main-navigation li.menu-item.ced-color-green > a {
  color: #73bf43 !important;
}

header.site-header nav.top-navigation li.menu-item.ced-color-orange > a,
header.site-header nav.main-navigation li.menu-item.ced-color-orange > a {
  color: #f37655 !important;
}

header.site-header nav.top-navigation li.menu-item.ced-color-teal > a,
header.site-header nav.main-navigation li.menu-item.ced-color-teal > a {
  color: #22b78b !important;
}

body.admin-bar header.site-header nav.top-navigation,
body.admin-bar header.site-header nav.main-navigation {
  top: 32px;
}

header.site-header nav.main-navigation.toggled .menu-toggle-container .site-logo {
  transition: opacity 0.2s ease-out;
  opacity: 1;
}
header.site-header nav.main-navigation.toggled .menu-toggle-container .site-logo a {
  background-image: url("../img/ced-logo-white.svg");
  display: block;
}
header.site-header nav.main-navigation .menu-toggle-container {
  min-height: 70px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-toggle-container {
    min-height: inherit;
  }
}
@media print {
  header.site-header nav.main-navigation .menu-toggle-container {
    padding-bottom: 40px;
  }
}
header.site-header nav.main-navigation .menu-toggle-container .site-logo {
  position: absolute;
  top: 7px;
  left: 18px;
  z-index: 102;
  margin: 0;
  margin-left: -1px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-toggle-container .site-logo {
    opacity: 0;
  }
}
header.site-header nav.main-navigation .menu-toggle-container .site-logo a {
  text-indent: -9999px;
  background-color: transparent;
  background-image: url("../img/ced-logo.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 90px 63px;
  display: block;
  padding: 0;
  width: 90px;
  height: 56px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation .menu-toggle-container .site-logo a {
    background-image: url("../img/ced-logo-white.svg");
    display: none;
  }
}
@media print {
  header.site-header nav.main-navigation .menu-toggle-container .site-logo a {
    text-indent: 0;
    background-image: none;
    width: 90px;
    height: 63px;
  }
}
header.site-header nav.main-navigation button.menu-toggle {
  text-indent: -9999px;
  border-style: none;
  background-color: transparent;
  background-image: url("../img/icons/menu.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 60px auto;
  position: absolute;
  top: 23px;
  right: 26px;
  z-index: 101;
  padding: 0;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation button.menu-toggle {
    background-position: 0 -25px;
    top: 22px;
  }
}
header.site-header nav.main-navigation button.menu-toggle::before, header.site-header nav.main-navigation button.menu-toggle::after {
  content: "";
  background-color: #fff;
  background-image: url("../img/icons/menu.svg");
  background-repeat: no-repeat;
  background-size: 60px auto;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 24px;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation button.menu-toggle::before, header.site-header nav.main-navigation button.menu-toggle::after {
    transition: opacity 0.3s ease-out;
    background-color: #383839;
  }
}
header.site-header nav.main-navigation button.menu-toggle::before {
  background-position: 0 0;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation button.menu-toggle:hover::before {
    transition: opacity 0.15s ease-out;
    background-position: 0 0;
    opacity: 1;
  }
}
header.site-header nav.main-navigation button.menu-toggle:focus {
  outline: none;
}
header.site-header nav.main-navigation.toggled button.menu-toggle {
  background-position: -33px -25px;
}
header.site-header nav.main-navigation.toggled button.menu-toggle:hover::before {
  opacity: 0;
}
header.site-header nav.main-navigation.toggled button.menu-toggle::after {
  background-position: -33px 0;
}
@media only screen and (min-width: 993px) {
  header.site-header nav.main-navigation.toggled button.menu-toggle:hover::after {
    transition: opacity 0.15s ease-out;
    background-position: -33px 0;
    opacity: 1;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  overflow: hidden;
  margin: 0 0 1.5em;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: right;
  float: right;
  width: 50%;
}

header.site-header .section-header {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}
header.site-header .section-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
header.site-header .section-header::after {
  content: "";
  background: transparent url("../img/bg/header-bg-pattern.png") no-repeat right bottom;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -70px;
  left: 0;
  z-index: 2;
}
header.site-header .section-header.bg-color-blue::before {
  background: rgba(56, 135, 219, 0.4);
  background: linear-gradient(90deg, rgba(56, 135, 219, 0.4) 0%, #3887db 80%);
}
header.site-header .section-header.bg-color-cyan::before {
  background: rgba(78, 199, 231, 0.7);
  background: linear-gradient(90deg, rgba(78, 199, 231, 0.7) 0%, #3a93aa 80%);
}
header.site-header .section-header.bg-color-green::before {
  background: rgba(115, 191, 67, 0.4);
  background: linear-gradient(90deg, rgba(115, 191, 67, 0.4) 0%, #73bf43 80%);
}
header.site-header .section-header.bg-color-orange::before {
  background: rgba(243, 118, 85, 0.4);
  background: linear-gradient(90deg, rgba(243, 118, 85, 0.4) 0%, #b2573e 80%);
}
header.site-header .section-header.bg-color-teal::before {
  background: rgba(34, 183, 139, 0.4);
  background: linear-gradient(90deg, rgba(34, 183, 139, 0.4) 0%, #378359 80%);
}
header.site-header .section-header .site-logo {
  display: none;
  position: relative;
  z-index: 3;
  margin: 0;
  margin-left: -1px;
}
@media only screen and (min-width: 993px) {
  header.site-header .section-header .site-logo {
    display: block;
  }
}
header.site-header .section-header .site-logo a {
  text-align: center;
  background: transparent url("../img/logo-bg.svg") no-repeat right center;
  display: flex;
  align-items: center;
  padding: 0 0 0 42px;
  width: 308px;
  height: 440px;
}
header.site-header .section-header .section-header-content {
  flex: 1;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  max-width: 892px;
}
@media only screen and (min-width: 993px) {
  header.site-header .section-header .section-header-content {
    padding: 1rem;
  }
}
header.site-header .section-header .section-header-content p {
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0.5rem 0;
}
@media only screen and (min-width: 993px) {
  header.site-header .section-header .section-header-content p {
    text-align: right;
    margin-left: auto;
    max-width: 700px;
  }
}
header.site-header .section-header .section-header-content p.section-title {
  font-size: 2.8125rem;
  line-height: 1;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}
@media only screen and (min-width: 769px) {
  header.site-header .section-header .section-header-content p.section-title {
    font-size: 3.875rem;
  }
}
@media only screen and (min-width: 993px) {
  header.site-header .section-header .section-header-content p.section-title {
    font-size: 5.6875rem;
  }
}
header.site-header .section-header .section-header-content p.section-description {
  font-size: 1.1875rem;
  line-height: 1.2;
  font-weight: 500;
}
header.site-header .section-header.logo-right-side .site-logo {
  order: 2;
}
header.site-header .section-header.logo-right-side .site-logo a {
  color: #4d504f;
  text-decoration: none;
  background-position: left center;
  padding-left: 68px;
  width: 190px;
}
header.site-header .section-header.logo-right-side .site-logo a span {
  display: flex;
  position: relative;
  padding-top: 20px;
  width: 93px;
  height: 100px;
}
header.site-header .section-header.logo-right-side .site-logo a span::before {
  content: "powered by";
  font-size: 0.75rem;
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  width: 93px;
}
header.site-header .section-header.logo-right-side .site-logo a span img {
  width: 93px;
}
header.site-header .section-header.logo-right-side .section-header-content {
  order: 1;
  max-width: 1010px;
}
header.site-header .section-header .media-wrapper {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
header.site-header .section-header .media-wrapper video.video-container {
  transform: translate(-50%, 0);
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
}
@media (min-width: 1501px) {
  header.site-header .section-header .media-wrapper video.video-container {
    width: 100%;
    height: inherit;
  }
}
header.site-header .section-header .media-wrapper .no-video {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home header.site-header .section-header {
  align-items: flex-end;
}
.home header.site-header .section-header::before {
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: inset 0 -20px 54px 44px white;
}
.home header.site-header .section-header .site-logo a {
  height: 825px;
}
.home header.site-header .section-header .section-header-content {
  position: relative;
  z-index: 3;
  padding: 11rem 2rem 0;
}
@media only screen and (min-width: 993px) {
  .home header.site-header .section-header .section-header-content {
    padding: 3rem 2rem 3rem 0;
  }
}
.home header.site-header .section-header .section-header-content::before {
  content: "";
  background-color: rgba(243, 118, 85, 0.7);
  position: absolute;
  top: 40%;
  right: 40px;
  bottom: -1rem;
  left: 40px;
}
@media only screen and (min-width: 993px) {
  .home header.site-header .section-header .section-header-content::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 38%;
  }
}
.home header.site-header .section-header .section-header-content p {
  text-shadow: 0 1px 2px rgba(34, 34, 34, 0.1);
  position: relative;
  z-index: 4;
  max-width: inherit;
}
.home header.site-header .section-header .section-header-content p.section-title {
  font-size: 2.8125rem;
  line-height: 1;
  font-weight: 600;
}
@media only screen and (min-width: 993px) {
  .home header.site-header .section-header .section-header-content p.section-title {
    font-size: 5.5rem;
    padding-bottom: 45px;
  }
}
@media only screen and (min-width: 993px) {
  .home header.site-header .section-header .section-header-content p.section-description {
    position: relative;
  }
  .home header.site-header .section-header .section-header-content p.section-description::before {
    transform: translate(0, -50%);
    content: "";
    background: transparent url("../img/ced-since-1984.svg") no-repeat left center;
    display: block;
    position: absolute;
    top: 50%;
    left: -10%;
    z-index: 1;
    width: calc(100% - 230px);
    height: 18px;
  }
}
@media only screen and (min-width: 993px) and (min-width: 993px) {
  .home header.site-header .section-header .section-header-content p.section-description::before {
    width: calc(100% - 200px);
  }
}
.home header.site-header .section-header .section-header-content p.section-description a {
  color: #fff;
  font-size: 1.375rem;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent url("../img/icons/arrow-right.svg") no-repeat right center;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 2px 55px 2px 0;
}

footer.site-footer #footer-first {
  color: #fff;
  background-color: #414042;
  padding: 2rem 0;
}
footer.site-footer #footer-first #footer-first-content {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
}
footer.site-footer #footer-first #footer-first-content .about.widget {
  flex: 0 100%;
  text-align: center;
  padding: 1rem 5% 1rem 1rem;
}
@media only screen and (min-width: 481px) {
  footer.site-footer #footer-first #footer-first-content .about.widget {
    flex: 0 600px;
    text-align: right;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 993px) {
  footer.site-footer #footer-first #footer-first-content .about.widget {
    flex: 0 50%;
  }
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-first #footer-first-content .about.widget {
    flex: 0 570px;
  }
}
footer.site-footer #footer-first #footer-first-content .about.widget a {
  text-indent: 9999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 42px 84px;
  display: inline-block;
  overflow: hidden;
  margin: 34px 4px 0;
  width: 42px;
  height: 42px;
}
footer.site-footer #footer-first #footer-first-content .about.widget a:hover {
  background-position: 0 -42px;
}
footer.site-footer #footer-first #footer-first-content .about.widget a.ced {
  background-image: url("../img/ced-logo-footer.svg");
  background-position: 0 0;
  background-size: 160px auto;
  display: block;
  margin: 0 auto;
  width: 160px;
  height: 112px;
}
@media only screen and (min-width: 481px) {
  footer.site-footer #footer-first #footer-first-content .about.widget a.ced {
    display: inline-block;
    float: left;
  }
}
footer.site-footer #footer-first #footer-first-content .about.widget a.ced:hover {
  background-position: 0 -112px;
}
footer.site-footer #footer-first #footer-first-content .about.widget a.linkedin {
  background-image: url("../img/icons-footer/linkedin.svg");
}
footer.site-footer #footer-first #footer-first-content .about.widget a.twitter {
  background-image: url("../img/icons-footer/twitter.svg");
}
footer.site-footer #footer-first #footer-first-content .about.widget a.youtube {
  background-image: url("../img/icons-footer/youtube.svg");
}
footer.site-footer #footer-first #footer-first-content .about.widget p {
  color: #fff;
  font-size: 0.875rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  text-align: center;
  clear: left;
  margin-bottom: 0;
  padding-top: 2rem;
}
@media only screen and (min-width: 993px) {
  footer.site-footer #footer-first #footer-first-content .about.widget p {
    text-align: left;
  }
}
footer.site-footer #footer-first #footer-first-content .contact.widget {
  flex: 0 100%;
  text-align: center;
  padding: 42px 1rem 1rem;
}
@media only screen and (min-width: 481px) {
  footer.site-footer #footer-first #footer-first-content .contact.widget {
    flex: 0 45%;
    text-align: right;
  }
}
@media only screen and (min-width: 993px) {
  footer.site-footer #footer-first #footer-first-content .contact.widget {
    flex: 0 25%;
    padding-right: 7%;
  }
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-first #footer-first-content .contact.widget {
    flex: 1 auto;
  }
}
footer.site-footer #footer-first #footer-first-content .contact.widget h6 {
  font-size: 1.5625rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin: 0;
}
footer.site-footer #footer-first #footer-first-content .contact.widget p {
  font-size: 19;
  margin-bottom: 0;
}
footer.site-footer #footer-first #footer-first-content .contact.widget a {
  text-decoration: none;
}
footer.site-footer #footer-first #footer-first-content .contact.widget a:hover {
  color: #fff;
  text-decoration: underline;
}
footer.site-footer #footer-first #footer-first-content .directions.widget {
  flex: 0 100%;
  text-align: center;
  padding: 45px 1rem 1rem;
}
@media only screen and (min-width: 481px) {
  footer.site-footer #footer-first #footer-first-content .directions.widget {
    flex: 0 55%;
    text-align: left;
  }
}
@media only screen and (min-width: 993px) {
  footer.site-footer #footer-first #footer-first-content .directions.widget {
    flex: 0 25%;
    text-align: right;
  }
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-first #footer-first-content .directions.widget {
    flex: 0 auto;
  }
}
footer.site-footer #footer-first #footer-first-content .directions.widget address {
  font-size: 1.0625rem;
  font-style: normal;
}
footer.site-footer #footer-first #footer-first-content .directions.widget a {
  color: #fff;
  font-size: 19;
  text-decoration: none;
  background: transparent url("../img/icons-footer/map-marker.svg") no-repeat 0 0;
  background-size: 23px auto;
  padding: 5px 0 5px 34px;
}
footer.site-footer #footer-first #footer-first-content .directions.widget a:hover {
  color: #f37655;
  background-position: 0 -32px;
}

footer.site-footer #footer-second {
  color: #fff;
  padding-bottom: 2rem;
}
footer.site-footer #footer-second #footer-second-content {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-second #footer-second-content {
    flex-direction: row-reverse;
  }
}
footer.site-footer #footer-second #footer-second-content .copyright.widget {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
  padding-top: 0;
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-second #footer-second-content .copyright.widget {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
    padding-top: 1.3rem;
  }
}
footer.site-footer #footer-second #footer-second-content .copyright.widget p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-second #footer-second-content .copyright.widget p {
    text-align: left;
  }
}
footer.site-footer #footer-second #footer-second-content .widget_nav_menu {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-second #footer-second-content .widget_nav_menu {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
}
footer.site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu {
  font-size: 0.9375rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1201px) {
  footer.site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu {
    justify-content: flex-end;
  }
}
footer.site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu li::before {
  content: "//";
  padding: 0 9px;
}
footer.site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu li:first-child::before {
  content: none;
}
footer.site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
footer.site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu a:hover {
  color: #f37655;
}

/* Fix fonts that render as bold in Firefox */
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}

body {
  background-color: #2f2f30;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.small {
  font-size: 0.75rem;
}

.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.grid-block-bg {
  background: transparent url("../img/bg/grid-bg-pattern-fade-edges.png") no-repeat center;
}

h2.header-triangle {
  padding-left: 28px;
}
h2.header-triangle::before {
  content: "";
  background: transparent url("../img/icons/triangle.svg") no-repeat left center;
  display: inline-block;
  margin-right: 8px;
  margin-left: -28px;
  width: 18px;
  height: 21px;
}
h2.header-triangle + p {
  padding-left: 28px;
}

hr.wp-block-separator {
  border-style: none;
  border-top: 1px solid #d4d4d4;
}

body.page-id-219 .wp-block-columns:first-child .wp-block-column:not(:first-child) {
  margin-left: 0;
}
@media (min-width: 600px) {
  body.page-id-219 .wp-block-columns:first-child .wp-block-column:not(:first-child) {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  body.page-id-219 .wp-block-columns:first-child .wp-block-column:not(:first-child) .wp-block-columns {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  body.page-id-219 .wp-block-columns:first-child .wp-block-column:not(:first-child) .wp-block-columns .wp-block-column {
    flex-basis: 100%;
  }
  body.page-id-219 .wp-block-columns:first-child .wp-block-column:not(:first-child) .wp-block-columns .wp-block-column:not(:first-child) {
    padding-left: 0;
  }
  body.page-id-219 .wp-block-columns:first-child .wp-block-column:not(:first-child) .wp-block-columns .wp-block-column p[class=has-text-align-right] {
    text-align: left;
  }
}
body.page-id-219 h4.contact {
  font-size: 1.125rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}
body.page-id-219 .contact.get-directions a {
  color: #4d504f;
  text-decoration: none;
  background: transparent url("../img/icons/map-marker.svg") no-repeat 0 0;
  background-size: 23px auto;
  padding: 4px 0 4px 34px;
}
body.page-id-219 .contact.get-directions a:hover {
  color: #b2573e;
  text-decoration: underline;
}

.wFormContainer {
  padding: 0 !important;
}

#section-menu,
#blog-menu {
  padding-bottom: 65px;
}
#section-menu ul,
#blog-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#section-menu li.menu-item a,
#blog-menu li.menu-item a {
  color: #414042;
  font-size: 1.0625rem;
  font-weight: bold;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  text-decoration: none;
  border-bottom: 1px solid #ececec;
  display: block;
  padding: 16px 0;
}
#section-menu li.menu-item a:hover,
#blog-menu li.menu-item a:hover {
  color: #f37655;
}
#section-menu li.menu-item.current-menu-item a,
#blog-menu li.menu-item.current-menu-item a {
  color: #f37655;
  background: transparent url("../img/icons/triangle.svg") no-repeat right 15px center;
  background-size: 11px 12px;
  padding-right: 30px;
}

#blog-menu {
  padding-bottom: 0;
}

#content-wrap {
  background-color: #fff;
  overflow: hidden;
}
#content-wrap #content {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  #content-wrap #content {
    flex-wrap: nowrap;
  }
}
#content-wrap #content #primary {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}
#content-wrap #content #secondary {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
  order: 2;
}
@media only screen and (min-width: 769px) {
  #content-wrap #content #secondary {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
    order: 1;
  }
}
@media only screen and (min-width: 993px) {
  #content-wrap #content #secondary {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
}
#content-wrap #content #secondary + #primary {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
  order: 1;
}
@media only screen and (min-width: 769px) {
  #content-wrap #content #secondary + #primary {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
    order: 2;
  }
}
@media only screen and (min-width: 993px) {
  #content-wrap #content #secondary + #primary {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
}
@media only screen and (min-width: 769px) {
  #content-wrap #content #secondary + #primary .site-main {
    padding-left: 4rem;
  }
}

#content-bottom-first,
#content-bottom-second {
  background-color: #fff;
  overflow: hidden;
}

#secondary .secondary-container .widget h2.widget-title {
  color: #414042;
  font-size: 1.0625rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin-top: 0;
}
#secondary .secondary-container .widget_search {
  border-bottom: 1px solid #ececec;
}
#secondary .secondary-container .widget_search form.search-form {
  border-bottom-style: none;
}
#secondary .secondary-container .widget_search form.search-form input.search-field {
  width: calc(93% - 24px);
}
#secondary .secondary-container .social-media-icons.widget {
  padding-bottom: 30px;
}
#secondary .secondary-container .social-media-icons.widget a {
  text-indent: 9999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 42px 84px;
  display: inline-block;
  overflow: hidden;
  margin: 34px 4px 0;
  width: 42px;
  height: 42px;
}
#secondary .secondary-container .social-media-icons.widget a:hover {
  background-position: 0 -42px;
}
#secondary .secondary-container .social-media-icons.widget a.linkedin {
  background-image: url("../img/icons/linkedin.svg");
}
#secondary .secondary-container .social-media-icons.widget a.twitter {
  background-image: url("../img/icons/twitter.svg");
}
#secondary .secondary-container .social-media-icons.widget a.youtube {
  background-image: url("../img/icons/youtube.svg");
}
#secondary .secondary-container .subscribe-button.widget {
  padding-bottom: 50px;
}
#secondary .secondary-container .subscribe-button.widget a {
  font-size: 1.125rem;
}
#secondary .secondary-container .upcoming-events.widget {
  padding-bottom: 50px;
}
#secondary .secondary-container .upcoming-events.widget .textwidget {
  text-align: center;
  background-color: rgba(73, 175, 119, 0.1);
  padding: 8px 24px;
}
#secondary .secondary-container .upcoming-events.widget .textwidget p {
  color: #49af77;
  text-transform: uppercase;
  margin: 1.25rem 0;
}
#secondary .secondary-container .upcoming-events.widget .textwidget img {
  max-width: 100%;
  height: auto;
}
#secondary .secondary-container .upcoming-events.widget .textwidget a.cednc-button {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(73, 175, 119, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #49af77;
  border-color: #49af77;
  font-size: 1.125rem;
  text-transform: lowercase;
}
#secondary .secondary-container .upcoming-events.widget .textwidget a.cednc-button:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(73, 175, 119, 0.2);
  color: #49af77;
}

body.single-post #content {
  padding-top: 40px;
}
body.single-post .featured-image.has-image {
  border-top: 8px solid #aaa9a9;
  padding-bottom: 40px;
}
body.single-post .featured-image .post-thumbnail img {
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.15);
}
body.single-post .featured-image.has-image.category-ced-news-events {
  border-top-color: #f37655;
}
body.single-post .featured-image.has-image.category-entrepreneur {
  border-top-color: #4ec7e7;
}
body.single-post .featured-image.has-image.category-partners {
  border-top-color: #73bf43;
}
body.single-post .featured-image.has-image.category-podcasts {
  border-top-color: #22b78b;
}
body.single-post article header.entry-header .entry-meta {
  color: #f37655;
  font-size: 1.125rem;
  text-transform: lowercase;
  padding-bottom: 40px;
}
body.single-post article header.entry-header h1.entry-title {
  color: #414042;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin-top: 0;
}
body.single-post article footer.entry-footer .entry-meta {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
body.single-post article footer.entry-footer .entry-meta .author-avatar {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
  width: 70px;
  height: 70px;
}
body.single-post article footer.entry-footer .entry-meta .author-avatar img {
  width: 70px;
  height: auto;
}
body.single-post article footer.entry-footer .entry-meta .byline {
  font-size: 0.9375rem;
}
body.single-post article footer.entry-footer .entry-meta .byline a {
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}

body.blog #content,
body.archive #content {
  padding-top: 40px;
}
body.blog article,
body.archive article {
  border-top: 8px solid #aaa9a9;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  margin: 60px 0;
}
@media only screen and (min-width: 769px) {
  body.blog article,
  body.archive article {
    flex-wrap: nowrap;
  }
}
body.blog article .featured-image,
body.archive article .featured-image {
  flex: 0 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
}
@media only screen and (min-width: 769px) {
  body.blog article .featured-image,
  body.archive article .featured-image {
    flex: 0 45%;
    height: auto;
  }
}
body.blog article .content-container,
body.archive article .content-container {
  flex: 0 100%;
  padding: 30px 40px;
}
@media only screen and (min-width: 769px) {
  body.blog article .content-container,
  body.archive article .content-container {
    flex: 0 55%;
  }
}
body.blog article .content-container header.entry-header .entry-meta,
body.archive article .content-container header.entry-header .entry-meta {
  color: #aaa9a9;
  font-size: 1.125rem;
  text-transform: lowercase;
  padding-bottom: 20px;
}
body.blog article .content-container header.entry-header .entry-meta a,
body.archive article .content-container header.entry-header .entry-meta a {
  color: #aaa9a9;
  text-decoration: none;
}
body.blog article .content-container header.entry-header .entry-meta a:hover,
body.archive article .content-container header.entry-header .entry-meta a:hover {
  text-decoration: underline;
}
body.blog article .content-container header.entry-header h2.entry-title,
body.archive article .content-container header.entry-header h2.entry-title {
  color: #414042;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin: 0 0 1rem;
}
body.blog article .content-container header.entry-header h2.entry-title a,
body.archive article .content-container header.entry-header h2.entry-title a {
  color: #414042;
  text-decoration: none;
}
body.blog article .content-container header.entry-header h2.entry-title a:hover,
body.archive article .content-container header.entry-header h2.entry-title a:hover {
  color: #b2573e;
  text-decoration: underline;
}
body.blog article .content-container .entry-content p,
body.archive article .content-container .entry-content p {
  font-size: 0.9375rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}
body.blog article .content-container footer.entry-footer p.read-more,
body.archive article .content-container footer.entry-footer p.read-more {
  font-size: 1.1875rem;
  font-weight: 500;
}
body.blog article .content-container footer.entry-footer p.read-more a,
body.archive article .content-container footer.entry-footer p.read-more a {
  color: #aaa9a9;
  text-decoration: none;
  position: relative;
  padding-right: 32px;
}
body.blog article .content-container footer.entry-footer p.read-more a::after,
body.archive article .content-container footer.entry-footer p.read-more a::after {
  content: "";
  background: #aaa9a9 url("../img/icons/arrow-right-knockout.svg") no-repeat center;
  background-size: 19px 19px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -7px;
  width: 19px;
  height: 19px;
}
body.blog article .content-container footer.entry-footer p.read-more a:hover,
body.archive article .content-container footer.entry-footer p.read-more a:hover {
  text-decoration: underline;
}

body.blog .posts-navigation .nav-links,
body.blog .post-navigation .nav-links,
body.archive .posts-navigation .nav-links,
body.archive .post-navigation .nav-links,
body.single-post .posts-navigation .nav-links,
body.single-post .post-navigation .nav-links,
body.search.search-results .posts-navigation .nav-links,
body.search.search-results .post-navigation .nav-links {
  font-size: 0.9375rem;
  font-weight: 500;
}
body.blog .posts-navigation .nav-links a,
body.blog .post-navigation .nav-links a,
body.archive .posts-navigation .nav-links a,
body.archive .post-navigation .nav-links a,
body.single-post .posts-navigation .nav-links a,
body.single-post .post-navigation .nav-links a,
body.search.search-results .posts-navigation .nav-links a,
body.search.search-results .post-navigation .nav-links a {
  text-decoration: none;
  display: block;
  position: relative;
}
body.blog .posts-navigation .nav-links a::before,
body.blog .post-navigation .nav-links a::before,
body.archive .posts-navigation .nav-links a::before,
body.archive .post-navigation .nav-links a::before,
body.single-post .posts-navigation .nav-links a::before,
body.single-post .post-navigation .nav-links a::before,
body.search.search-results .posts-navigation .nav-links a::before,
body.search.search-results .post-navigation .nav-links a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  width: 19px;
  height: 19px;
}
body.blog .posts-navigation .nav-links a:hover,
body.blog .post-navigation .nav-links a:hover,
body.archive .posts-navigation .nav-links a:hover,
body.archive .post-navigation .nav-links a:hover,
body.single-post .posts-navigation .nav-links a:hover,
body.single-post .post-navigation .nav-links a:hover,
body.search.search-results .posts-navigation .nav-links a:hover,
body.search.search-results .post-navigation .nav-links a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  body.blog .posts-navigation .nav-links .nav-previous,
  body.blog .posts-navigation .nav-links .nav-next,
  body.blog .post-navigation .nav-links .nav-previous,
  body.blog .post-navigation .nav-links .nav-next,
  body.archive .posts-navigation .nav-links .nav-previous,
  body.archive .posts-navigation .nav-links .nav-next,
  body.archive .post-navigation .nav-links .nav-previous,
  body.archive .post-navigation .nav-links .nav-next,
  body.single-post .posts-navigation .nav-links .nav-previous,
  body.single-post .posts-navigation .nav-links .nav-next,
  body.single-post .post-navigation .nav-links .nav-previous,
  body.single-post .post-navigation .nav-links .nav-next,
  body.search.search-results .posts-navigation .nav-links .nav-previous,
  body.search.search-results .posts-navigation .nav-links .nav-next,
  body.search.search-results .post-navigation .nav-links .nav-previous,
  body.search.search-results .post-navigation .nav-links .nav-next {
    text-align: left;
    padding: 1rem 0;
    width: 100%;
  }
}
body.blog .posts-navigation .nav-links .nav-previous a,
body.blog .post-navigation .nav-links .nav-previous a,
body.archive .posts-navigation .nav-links .nav-previous a,
body.archive .post-navigation .nav-links .nav-previous a,
body.single-post .posts-navigation .nav-links .nav-previous a,
body.single-post .post-navigation .nav-links .nav-previous a,
body.search.search-results .posts-navigation .nav-links .nav-previous a,
body.search.search-results .post-navigation .nav-links .nav-previous a {
  padding-left: 28px;
}
body.blog .posts-navigation .nav-links .nav-previous a::before,
body.blog .post-navigation .nav-links .nav-previous a::before,
body.archive .posts-navigation .nav-links .nav-previous a::before,
body.archive .post-navigation .nav-links .nav-previous a::before,
body.single-post .posts-navigation .nav-links .nav-previous a::before,
body.single-post .post-navigation .nav-links .nav-previous a::before,
body.search.search-results .posts-navigation .nav-links .nav-previous a::before,
body.search.search-results .post-navigation .nav-links .nav-previous a::before {
  background: #f37655 url("../img/icons/arrow-left-knockout.svg") no-repeat center;
  background-size: 19px 19px;
  left: 0;
}
body.blog .posts-navigation .nav-links .nav-next a,
body.blog .post-navigation .nav-links .nav-next a,
body.archive .posts-navigation .nav-links .nav-next a,
body.archive .post-navigation .nav-links .nav-next a,
body.single-post .posts-navigation .nav-links .nav-next a,
body.single-post .post-navigation .nav-links .nav-next a,
body.search.search-results .posts-navigation .nav-links .nav-next a,
body.search.search-results .post-navigation .nav-links .nav-next a {
  padding-left: 28px;
}
@media only screen and (min-width: 769px) {
  body.blog .posts-navigation .nav-links .nav-next a,
  body.blog .post-navigation .nav-links .nav-next a,
  body.archive .posts-navigation .nav-links .nav-next a,
  body.archive .post-navigation .nav-links .nav-next a,
  body.single-post .posts-navigation .nav-links .nav-next a,
  body.single-post .post-navigation .nav-links .nav-next a,
  body.search.search-results .posts-navigation .nav-links .nav-next a,
  body.search.search-results .post-navigation .nav-links .nav-next a {
    padding-right: 28px;
    padding-left: 0;
  }
}
body.blog .posts-navigation .nav-links .nav-next a::before,
body.blog .post-navigation .nav-links .nav-next a::before,
body.archive .posts-navigation .nav-links .nav-next a::before,
body.archive .post-navigation .nav-links .nav-next a::before,
body.single-post .posts-navigation .nav-links .nav-next a::before,
body.single-post .post-navigation .nav-links .nav-next a::before,
body.search.search-results .posts-navigation .nav-links .nav-next a::before,
body.search.search-results .post-navigation .nav-links .nav-next a::before {
  background: #f37655 url("../img/icons/arrow-right-knockout.svg") no-repeat center;
  background-size: 19px 19px;
  right: 0;
}
body.blog .post-navigation,
body.archive .post-navigation,
body.single-post .post-navigation,
body.search.search-results .post-navigation {
  border-top: 1px solid #d4d4d4;
  margin-top: 3rem;
  padding-top: 2.5rem;
}

body.blog article.category-ced-news-events,
body.archive article.category-ced-news-events,
body.single-post article.category-ced-news-events {
  border-top-color: #f37655;
}
body.blog article.category-ced-news-events .content-container header.entry-header .entry-meta,
body.archive article.category-ced-news-events .content-container header.entry-header .entry-meta,
body.single-post article.category-ced-news-events .content-container header.entry-header .entry-meta {
  color: #f37655;
}
body.blog article.category-ced-news-events .content-container header.entry-header .entry-meta a,
body.archive article.category-ced-news-events .content-container header.entry-header .entry-meta a,
body.single-post article.category-ced-news-events .content-container header.entry-header .entry-meta a {
  color: #f37655;
}
body.blog article.category-ced-news-events .content-container footer.entry-footer p.read-more a,
body.archive article.category-ced-news-events .content-container footer.entry-footer p.read-more a,
body.single-post article.category-ced-news-events .content-container footer.entry-footer p.read-more a {
  color: #f37655;
}
body.blog article.category-ced-news-events .content-container footer.entry-footer p.read-more a::after,
body.archive article.category-ced-news-events .content-container footer.entry-footer p.read-more a::after,
body.single-post article.category-ced-news-events .content-container footer.entry-footer p.read-more a::after {
  background-color: #f37655;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events {
  border-top-color: #f37655;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category::after,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category::after,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category::after {
  background-color: #f37655;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category a,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category a,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category a {
  color: #f37655;
}
body.blog article.category-entrepreneur,
body.archive article.category-entrepreneur,
body.single-post article.category-entrepreneur {
  border-top-color: #4ec7e7;
}
body.blog article.category-entrepreneur .content-container header.entry-header .entry-meta,
body.archive article.category-entrepreneur .content-container header.entry-header .entry-meta,
body.single-post article.category-entrepreneur .content-container header.entry-header .entry-meta {
  color: #4ec7e7;
}
body.blog article.category-entrepreneur .content-container header.entry-header .entry-meta a,
body.archive article.category-entrepreneur .content-container header.entry-header .entry-meta a,
body.single-post article.category-entrepreneur .content-container header.entry-header .entry-meta a {
  color: #4ec7e7;
}
body.blog article.category-entrepreneur .content-container footer.entry-footer p.read-more a,
body.archive article.category-entrepreneur .content-container footer.entry-footer p.read-more a,
body.single-post article.category-entrepreneur .content-container footer.entry-footer p.read-more a {
  color: #4ec7e7;
}
body.blog article.category-entrepreneur .content-container footer.entry-footer p.read-more a::after,
body.archive article.category-entrepreneur .content-container footer.entry-footer p.read-more a::after,
body.single-post article.category-entrepreneur .content-container footer.entry-footer p.read-more a::after {
  background-color: #4ec7e7;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur {
  border-top-color: #4ec7e7;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category::after,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category::after,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category::after {
  background-color: #4ec7e7;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category a,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category a,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category a {
  color: #4ec7e7;
}
body.blog article.category-partners,
body.archive article.category-partners,
body.single-post article.category-partners {
  border-top-color: #73bf43;
}
body.blog article.category-partners .content-container header.entry-header .entry-meta,
body.archive article.category-partners .content-container header.entry-header .entry-meta,
body.single-post article.category-partners .content-container header.entry-header .entry-meta {
  color: #73bf43;
}
body.blog article.category-partners .content-container header.entry-header .entry-meta a,
body.archive article.category-partners .content-container header.entry-header .entry-meta a,
body.single-post article.category-partners .content-container header.entry-header .entry-meta a {
  color: #73bf43;
}
body.blog article.category-partners .content-container footer.entry-footer p.read-more a,
body.archive article.category-partners .content-container footer.entry-footer p.read-more a,
body.single-post article.category-partners .content-container footer.entry-footer p.read-more a {
  color: #73bf43;
}
body.blog article.category-partners .content-container footer.entry-footer p.read-more a::after,
body.archive article.category-partners .content-container footer.entry-footer p.read-more a::after,
body.single-post article.category-partners .content-container footer.entry-footer p.read-more a::after {
  background-color: #73bf43;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners {
  border-top-color: #73bf43;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category::after,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category::after,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category::after {
  background-color: #73bf43;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category a,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category a,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category a {
  color: #73bf43;
}
body.blog article.category-podcasts,
body.archive article.category-podcasts,
body.single-post article.category-podcasts {
  border-top-color: #22b78b;
}
body.blog article.category-podcasts .content-container header.entry-header .entry-meta,
body.archive article.category-podcasts .content-container header.entry-header .entry-meta,
body.single-post article.category-podcasts .content-container header.entry-header .entry-meta {
  color: #22b78b;
}
body.blog article.category-podcasts .content-container header.entry-header .entry-meta a,
body.archive article.category-podcasts .content-container header.entry-header .entry-meta a,
body.single-post article.category-podcasts .content-container header.entry-header .entry-meta a {
  color: #22b78b;
}
body.blog article.category-podcasts .content-container footer.entry-footer p.read-more a,
body.archive article.category-podcasts .content-container footer.entry-footer p.read-more a,
body.single-post article.category-podcasts .content-container footer.entry-footer p.read-more a {
  color: #22b78b;
}
body.blog article.category-podcasts .content-container footer.entry-footer p.read-more a::after,
body.archive article.category-podcasts .content-container footer.entry-footer p.read-more a::after,
body.single-post article.category-podcasts .content-container footer.entry-footer p.read-more a::after {
  background-color: #22b78b;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts {
  border-top-color: #22b78b;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category::after,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category::after,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category::after {
  background-color: #22b78b;
}
body.blog .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category a,
body.archive .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category a,
body.single-post .ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category a {
  color: #22b78b;
}

.ced_recent_posts.widget #recent-post-widget-wrap {
  background-color: #f37655;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 3.75rem;
}
.ced_recent_posts.widget #recent-post-widget-wrap::before {
  content: "";
  background-color: rgba(243, 118, 85, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.ced_recent_posts.widget h2.widget-title {
  color: #fff;
  font-size: 2.1875rem;
  text-align: center;
  position: relative;
  z-index: 3;
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
  max-width: 75rem;
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget h2.widget-title {
    white-space: nowrap;
    display: flex;
    padding: 0 90px;
  }
}
@media (min-width: 1301px) {
  .ced_recent_posts.widget h2.widget-title {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget h2.widget-title span:nth-child(1) {
    flex: 0;
    padding-right: 1rem;
  }
}
.ced_recent_posts.widget h2.widget-title span:nth-child(2) {
  background: transparent url("../img/bg/slash-bg.svg") repeat-x left;
  max-width: 0;
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget h2.widget-title span:nth-child(2) {
    flex: 1;
    max-width: 350px;
  }
}
@media only screen and (min-width: 769px) {
  .ced_recent_posts.widget h2.widget-title span:nth-child(2) {
    max-width: 574px;
  }
}
@media only screen and (min-width: 993px) {
  .ced_recent_posts.widget h2.widget-title span:nth-child(2) {
    max-width: 784px;
  }
}
@media (min-width: 1301px) {
  .ced_recent_posts.widget h2.widget-title span:nth-child(2) {
    max-width: 896px;
  }
}
.ced_recent_posts.widget #recent-post-container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget #recent-post-container {
    padding: 0 75px;
  }
}
@media (min-width: 1301px) {
  .ced_recent_posts.widget #recent-post-container {
    padding: 0 1rem;
  }
}
.ced_recent_posts.widget #recent-post-container .recent-post-block {
  border-top: 8px solid #aaa9a9;
  background-color: #fff;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 3;
  margin: 0 1rem;
  min-height: 460px;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block p.recent-post-category {
  color: #aaa9a9;
  font-size: 1.125rem;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block p.recent-post-category a {
  color: #aaa9a9;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 0 26px;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block p.recent-post-category a::after {
  content: "";
  background: #aaa9a9 url("../img/icons/arrow-right-knockout.svg") no-repeat center;
  background-size: 32px 32px;
  display: block;
  position: absolute;
  top: 0;
  right: 28px;
  width: 32px;
  height: 32px;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block p.recent-post-category a:hover {
  text-decoration: underline;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block h4.recent-post-title {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0 26px;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block h4.recent-post-title a {
  color: #222;
  text-decoration: none;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block h4.recent-post-title a:hover {
  text-decoration: underline;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block .recent-post-excerpt {
  font-size: 0.9375rem;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  padding: 1rem 26px;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block .recent-post-excerpt p {
  font-size: 0.9375rem;
  margin: 0;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block .recent-post-image {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 165px;
}

.ced_recent_posts.widget .jcarousel-wrapper {
  position: relative;
}
.ced_recent_posts.widget .jcarousel-wrapper .jcarousel-recent-post {
  overflow: hidden;
}
.ced_recent_posts.widget .jcarousel-wrapper .jcarousel-recent-post ul {
  position: relative;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 10000rem;
}
.ced_recent_posts.widget .jcarousel-wrapper .jcarousel-recent-post ul li {
  box-sizing: border-box;
  float: left;
}
.ced_recent_posts.widget .jcarousel-controls {
  display: none;
}
.ced_recent_posts.widget .jcarousel-controls a {
  transition: all 0.3s ease-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px auto;
  display: block;
  opacity: 0.9;
  position: absolute;
  top: 50%;
  z-index: 3;
  margin-top: -47px;
  width: 48px;
  height: 94px;
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget .jcarousel-controls a {
    background-size: 48px 94px;
    opacity: 0.6;
  }
}
.ced_recent_posts.widget .jcarousel-controls a:hover {
  transition: all 0.1s ease-out;
  opacity: 0.9;
}
.ced_recent_posts.widget .jcarousel-controls a.jcarousel-control-prev {
  background-image: url("../img/icons/arrow-big-left.svg");
  left: -35px;
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget .jcarousel-controls a.jcarousel-control-prev {
    left: -50px;
  }
}
.ced_recent_posts.widget .jcarousel-controls a.jcarousel-control-next {
  background-image: url("../img/icons/arrow-big-right.svg");
  right: -35px;
}
@media only screen and (min-width: 481px) {
  .ced_recent_posts.widget .jcarousel-controls a.jcarousel-control-next {
    right: -50px;
  }
}

.ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events {
  border-top-color: #f37655;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category {
  color: #f37655;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category a {
  color: #f37655;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-ced-news-events p.recent-post-category a::after {
  background-color: #f37655;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur {
  border-top-color: #4ec7e7;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category {
  color: #4ec7e7;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category a {
  color: #4ec7e7;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-entrepreneur p.recent-post-category a::after {
  background-color: #4ec7e7;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners {
  border-top-color: #73bf43;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category {
  color: #73bf43;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category a {
  color: #73bf43;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-partners p.recent-post-category a::after {
  background-color: #73bf43;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts {
  border-top-color: #22b78b;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category {
  color: #22b78b;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category a {
  color: #22b78b;
}
.ced_recent_posts.widget #recent-post-container .recent-post-block.category-podcasts p.recent-post-category a::after {
  background-color: #22b78b;
}

.breadcrumbs {
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 1rem;
  max-width: 75rem;
}
.breadcrumbs::before {
  background: #c9caca;
  background: linear-gradient(270deg, #c9caca 0%, #fff 100%);
  content: "";
  display: block;
  position: absolute;
  top: 27px;
  z-index: 1;
  width: 60%;
  height: 1px;
}
.breadcrumbs > span {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-right: 20px;
}
.breadcrumbs a {
  color: #9d9b9b !important;
  font-weight: 500;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #f37655;
}

@media only screen and (min-width: 769px) {
  .content-secondary-nav-cta-container .content-secondary-nav-cta-wrap,
  .content-secondary-nav-cta-container .content-secondary-nav-wrap,
  .content-secondary-nav-container .content-secondary-nav-cta-wrap,
  .content-secondary-nav-container .content-secondary-nav-wrap {
    float: left;
    min-width: 240px;
  }
}
@media (max-width: 768px) {
  .content-secondary-nav-cta-container .content-secondary-nav-cta-wrap .content-secondary-nav-cta,
  .content-secondary-nav-cta-container .content-secondary-nav-wrap .content-secondary-nav-cta,
  .content-secondary-nav-container .content-secondary-nav-cta-wrap .content-secondary-nav-cta,
  .content-secondary-nav-container .content-secondary-nav-wrap .content-secondary-nav-cta {
    width: 95% !important;
  }
}
@media only screen and (min-width: 769px) {
  .content-secondary-nav-cta-container .content-secondary-nav-cta-wrap .content-secondary-nav-cta,
  .content-secondary-nav-cta-container .content-secondary-nav-wrap .content-secondary-nav-cta,
  .content-secondary-nav-container .content-secondary-nav-cta-wrap .content-secondary-nav-cta,
  .content-secondary-nav-container .content-secondary-nav-wrap .content-secondary-nav-cta {
    margin-left: -250px;
  }
}
@media only screen and (min-width: 769px) {
  .content-secondary-nav-cta-container .content-secondary-nav-cta-content-body,
  .content-secondary-nav-cta-container .content-secondary-nav-content-body,
  .content-secondary-nav-container .content-secondary-nav-cta-content-body,
  .content-secondary-nav-container .content-secondary-nav-content-body {
    margin-left: 300px;
  }
}
@media only screen and (min-width: 993px) {
  .content-secondary-nav-cta-container .content-secondary-nav-cta-content-body,
  .content-secondary-nav-cta-container .content-secondary-nav-content-body,
  .content-secondary-nav-container .content-secondary-nav-cta-content-body,
  .content-secondary-nav-container .content-secondary-nav-content-body {
    margin-right: 95px;
    margin-left: 350px;
  }
}

.double-cta-block {
  justify-content: center;
  padding: 10px 0 70px;
}
@media only screen and (min-width: 993px) {
  .double-cta-block {
    padding: 70px 0 100px;
  }
}
.double-cta-block .double-cta-container {
  margin: 30px 0;
}
@media only screen and (min-width: 993px) {
  .double-cta-block .double-cta-container {
    margin: 0;
  }
}

.get-give-support-block {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .get-give-support-block {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
  }
}

.generic-content-block {
  background: transparent url("/wp-content/themes/cednc/assets/img/bg/grid-bg-pattern.png") repeat left top;
  position: relative;
  left: 50%;
  margin-top: 35px;
  margin-bottom: 35px;
  margin-left: -50vw;
  padding: 35px 0;
  width: 100vw;
}
.generic-content-block .generic-content-container {
  margin: 0 auto;
  padding: 1rem;
  max-width: 75rem;
}

.newsletter-signup-block {
  background: transparent url("/wp-content/themes/cednc/assets/img/bg/grid-bg-pattern.png") repeat left top;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 35px 0;
  width: 100vw;
}
.newsletter-signup-block .newsletter-signup-wrap {
  margin: 0 auto;
  padding: 1rem;
  max-width: 75rem;
}
.newsletter-signup-block h2.widget-title {
  color: #f37655;
  font-size: 2.1875rem;
  font-weight: bold;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.newsletter-signup-block .newsletter-signup-body {
  text-align: center;
  margin: 1rem auto;
  max-width: 800px;
}
.newsletter-signup-block .newsletter-signup-body p {
  line-height: 1.5;
}
.newsletter-signup-block .newsletter-signup-form {
  text-align: center;
}

.icon-block {
  background: transparent url("../img/bg/grid-bg-pattern-fade.png") repeat center;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-top: 60px;
  padding-bottom: 50px;
  width: 100vw;
}
.icon-block .icon-block-wrap {
  margin: 0 auto;
  padding: 1rem;
  max-width: 63rem;
}

.metrics-blocks .metrics-wrap {
  margin: 0 auto;
  padding: 1rem;
  max-width: 62rem;
}

.overlay-image-cta-video-block {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  position: relative;
  left: 50%;
  z-index: 1;
  margin-top: 40px;
  margin-bottom: 60px;
  margin-left: -50vw;
  padding-top: 60px;
  padding-bottom: 70px;
  width: 100vw;
  min-height: 500px;
}
.overlay-image-cta-video-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.overlay-image-cta-video-block .overlay-image-cta-video-body {
  color: #fff;
}
.overlay-image-cta-video-block .overlay-image-cta-video-body p {
  color: #fff;
}
.overlay-image-cta-video-block .overlay-image-cta-video-container {
  align-items: center;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 1rem;
  max-width: 62rem;
}
.overlay-image-cta-video-block .overlay-video a {
  transition: opacity 0.3s ease-out;
  opacity: 0.35;
}
.overlay-image-cta-video-block .overlay-video a:hover {
  transition: opacity 0.1s ease-out;
  opacity: 0.75;
}
.overlay-image-cta-video-block .overlay-image-cta-video-container:not(.has-video) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 46rem;
}

.quotes-block {
  background: transparent url("../img/bg/pattern-bg-2.jpg") no-repeat right top;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 40px 0 60px;
  width: 100vw;
}
@media only screen and (min-width: 993px) {
  .quotes-block {
    padding: 40px 1rem 60px;
  }
}

.quotes-block .jcarousel-wrapper,
.vc-quotes-block .jcarousel-wrapper {
  max-width: 74rem;
}
.quotes-block .jcarousel-wrapper .jcarousel-quotes-block ul,
.vc-quotes-block .jcarousel-wrapper .jcarousel-quotes-block ul {
  position: relative;
  z-index: 1;
  width: 10000em;
}
.quotes-block .jcarousel-wrapper .jcarousel-quotes-block ul li,
.vc-quotes-block .jcarousel-wrapper .jcarousel-quotes-block ul li {
  box-sizing: border-box;
  float: left;
}
.quotes-block .jcarousel-wrapper .jcarousel-controls,
.vc-quotes-block .jcarousel-wrapper .jcarousel-controls {
  display: none;
  position: absolute;
  top: 178px;
  left: 100px;
  z-index: 3;
  width: 140px;
}
@media only screen and (min-width: 481px) {
  .quotes-block .jcarousel-wrapper .jcarousel-controls,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-controls {
    top: 75px;
    left: 269px;
  }
}
@media only screen and (min-width: 769px) {
  .quotes-block .jcarousel-wrapper .jcarousel-controls,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-controls {
    left: 398px;
  }
}
@media only screen and (min-width: 993px) {
  .quotes-block .jcarousel-wrapper .jcarousel-controls,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-controls {
    top: auto;
    bottom: 108px;
    left: 350px;
  }
}
.quotes-block .jcarousel-wrapper .jcarousel-controls a,
.vc-quotes-block .jcarousel-wrapper .jcarousel-controls a {
  transition: all 0.3s ease-out;
  background-color: rgba(65, 64, 66, 0.7);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  display: block;
  width: 70px;
  height: 68px;
}
.quotes-block .jcarousel-wrapper .jcarousel-controls a:hover,
.vc-quotes-block .jcarousel-wrapper .jcarousel-controls a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(56, 56, 57, 0.94);
}
.quotes-block .jcarousel-wrapper .jcarousel-controls a.jcarousel-control-prev,
.vc-quotes-block .jcarousel-wrapper .jcarousel-controls a.jcarousel-control-prev {
  background-image: url("../img/icons/arrow-left.svg");
}
.quotes-block .jcarousel-wrapper .jcarousel-controls a.jcarousel-control-next,
.vc-quotes-block .jcarousel-wrapper .jcarousel-controls a.jcarousel-control-next {
  background-image: url("../img/icons/arrow-right.svg");
}
@media only screen and (max-width: 480px) {
  .quotes-block .jcarousel-wrapper .jcarousel-pagination,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-pagination {
    display: none !important;
  }
}
@media only screen and (min-width: 481px) {
  .quotes-block .jcarousel-wrapper .jcarousel-pagination,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-pagination {
    position: absolute;
    top: 164px;
    right: 45px;
    z-index: 3;
  }
}
@media only screen and (min-width: 769px) {
  .quotes-block .jcarousel-wrapper .jcarousel-pagination,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-pagination {
    top: 94px;
  }
}
@media only screen and (min-width: 1201px) {
  .quotes-block .jcarousel-wrapper .jcarousel-pagination,
  .vc-quotes-block .jcarousel-wrapper .jcarousel-pagination {
    top: 30px;
  }
}
.quotes-block .jcarousel-wrapper .jcarousel-pagination a,
.vc-quotes-block .jcarousel-wrapper .jcarousel-pagination a {
  color: #fff;
  text-decoration: none;
  padding: 0 3px;
}
.quotes-block .jcarousel-wrapper .jcarousel-pagination a:hover, .quotes-block .jcarousel-wrapper .jcarousel-pagination a.active,
.vc-quotes-block .jcarousel-wrapper .jcarousel-pagination a:hover,
.vc-quotes-block .jcarousel-wrapper .jcarousel-pagination a.active {
  color: #f37655;
}

.resources-block {
  background: transparent url("../img/bg/pattern-bg-3.jpg") no-repeat right top;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-top: 80px;
  padding-bottom: 90px;
  width: 100vw;
}
.resources-block .resources-block-wrap {
  max-width: 62rem;
}

.support-ced-block {
  background: transparent url("../img/bg/pattern-bg-4.jpg") no-repeat right bottom;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 80px 1rem;
  width: 100vw;
}
.support-ced-block .support-ced-wrap {
  margin: 0 auto;
  padding: 1rem;
  max-width: 75rem;
}

.tabbed-info-block {
  background: transparent url("../img/bg/grid-bg-pattern.png") repeat top;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 50px 0;
  width: 100vw;
}
.tabbed-info-block .tabbed-info-block-container {
  position: relative;
  margin: 0 auto;
  padding: 1rem;
  max-width: 75rem;
}

.tabbed-info-block .arrow-controls {
  display: flex;
  position: absolute;
  top: 260px;
  left: 45px;
  z-index: 3;
  width: 140px;
}
@media only screen and (min-width: 345px) {
  .tabbed-info-block .arrow-controls {
    top: 227px;
    right: 30px;
    left: unset;
  }
}
@media only screen and (min-width: 481px) {
  .tabbed-info-block .arrow-controls {
    top: 205px;
    right: 45px;
  }
}
@media only screen and (min-width: 76rem) {
  .tabbed-info-block .arrow-controls {
    top: 105px;
  }
}
@media only screen and (min-width: 80.5rem) {
  .tabbed-info-block .arrow-controls {
    top: 157px;
    right: -35px;
  }
}
.tabbed-info-block .arrow-controls a {
  transition: all 0.3s ease-out;
  background-color: rgba(65, 64, 66, 0.7);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  display: block;
  width: 70px;
  height: 68px;
}
.tabbed-info-block .arrow-controls a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(56, 56, 57, 0.94);
}
.tabbed-info-block .arrow-controls a.arrow-control-prev {
  background-image: url("../img/icons/arrow-left.svg");
}
.tabbed-info-block .arrow-controls a.arrow-control-next {
  background-image: url("../img/icons/arrow-right.svg");
}

.tracks-tabs-block {
  background: transparent url("../img/bg/grid-bg-pattern-fade-left.png") no-repeat right bottom;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 0 0 50px;
  width: 100vw;
}
.tracks-tabs-block .tracks-tabs-block-container {
  margin: 0 auto;
  padding: 1rem;
  max-width: 75rem;
}

.two-column-content-block .jcarousel-two-column {
  overflow: hidden;
  position: relative;
}
.two-column-content-block .jcarousel-two-column ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 10000em;
}
.two-column-content-block .jcarousel-two-column ul li {
  float: left;
  box-sizing: border-box;
}
.two-column-content-block .jcarousel-two-column ul img {
  display: block;
  max-width: 100%;
  height: auto !important;
}

.venture-connect-block {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100vw;
}
.venture-connect-block .venture-connect-wrap {
  background: transparent url("../img/bg/grid-bg-pattern-fade-left.png") no-repeat left bottom;
  margin: 0 auto;
  padding: 0;
  max-width: 75rem;
}
@media only screen and (min-width: 769px) {
  .venture-connect-block .venture-connect-wrap {
    background-position: right 105px center;
    padding: 0 1rem;
  }
}

.innovators-report-block {
  padding-bottom: 40px;
}
.innovators-report-block h3 {
  color: #222;
  font-size: 1.8125rem;
}
.innovators-report-block h4 {
  color: #f37655;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  margin-bottom: 0;
}
.innovators-report-block p {
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}
.innovators-report-block.has-small-font-size {
  margin-right: auto;
  margin-left: auto;
  max-width: 768px;
}
.innovators-report-block .wp-block-button a {
  font-size: 0.9375rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) {
  .innovators-report-block .wp-block-button a {
    min-width: 268px;
  }
}
.innovators-report-block .wp-block-button a.has-luminous-vivid-orange-color {
  color: #f37655;
  border-color: #f37655;
}
@media only screen and (min-width: 769px) {
  .innovators-report-block.intro-block .wp-block-column:nth-child(1) {
    flex: 0 30%;
    text-align: center;
  }
  .innovators-report-block.intro-block .wp-block-column:nth-child(2) {
    flex: 0 70%;
  }
}
.innovators-report-block.intro-block .wp-block-button a {
  color: #fff;
  font-size: 1.25rem;
}
.innovators-report-block.intro-block .wp-block-button a:hover {
  background-color: #22b78b;
}
.innovators-report-block.intro-block p {
  font-family: "Roboto Mono", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
}
@media only screen and (min-width: 993px) {
  .innovators-report-block.chart-block .two-column-1 {
    padding-left: 100px;
  }
}
.innovators-report-block.chart-block img {
  box-shadow: none !important;
}

section.error-404.not-found {
  padding-bottom: 100px;
}

form.search-form {
  border-bottom: 1px solid #d4d4d4;
  display: inline-block;
}
form.search-form input.search-field {
  color: #414042;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Slabo 13px", "Monaco", "Consolas", "Andale Mono", "DejaVu Sans Mono", monospace;
  border-style: none;
  padding: 0;
  height: 58px;
}
form.search-form input.search-field:focus {
  font-size: 1rem;
}
form.search-form input.search-submit {
  text-indent: -9999px;
  border-style: none;
  background: transparent url("../img/icons/search.svg") no-repeat center;
  width: 22px;
  height: 22px;
}

.page-template-search main#main {
  padding-bottom: 100px;
}

.search.search-results form.search-form {
  margin-bottom: 2rem;
}
.search.search-results h1.page-title {
  color: #222;
}
.search.search-results article {
  border-bottom: 1px solid #d4d4d4;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.search.search-results article h2.entry-title {
  font-size: 1.3125rem;
}
.search.search-results article .posted-on {
  font-size: 0.875rem;
  font-weight: 700;
}
.search.search-results .posts-navigation {
  padding-top: 2rem;
}

.home #content-wrap {
  background: #fff url("../img/bg/pattern-bg-home-1.jpg") no-repeat left top;
  padding-top: 85px;
}
.home h2.header-triangle {
  padding-left: 0;
}
.home h2.header-triangle::before {
  content: "";
  margin-right: 18px;
  margin-left: 0;
}
.home h2.header-triangle + p {
  padding-left: 0;
}
.home p.body-narrow {
  margin-right: auto;
  margin-left: auto;
  max-width: 48rem;
}

/* Section colors - default */
h1,
h2 {
  color: #f37655;
}

.resources-block h3.resources-headline {
  color: #f37655;
}
.resources-block .resources-block-wrap .resources-info::before {
  background-color: rgba(243, 118, 85, 0.4);
}

.overlay-image-cta-video-block::before {
  background-color: rgba(243, 118, 85, 0.9);
}

.icon-block .icon-block-container .icon-block-icon-wrap .icon-block-icon {
  border-color: #f37655;
  background-color: rgba(243, 118, 85, 0.2);
}
.icon-block .icon-block-container .icon-block-icon-wrap .icon-block-icon .icon-block-name {
  color: #f37655;
}
.icon-block .icon-block-container .icon-block-content h4.icon-block-header {
  color: #f37655;
}
.icon-block .icon-block-container .icon-block-content .icon-cta-button a {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(243, 118, 85, 0);
  display: inline-block;
  padding: 8px 24px;
  color: #f37655;
  border-color: #f37655;
}
.icon-block .icon-block-container .icon-block-content .icon-cta-button a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(243, 118, 85, 0.2);
  color: #f37655;
}

/* Section colors - each */
.section-color-blue h1,
.section-color-blue h2 {
  color: #3887db;
}
.section-color-blue .resources-block h3.resources-headline {
  color: #3887db;
}
.section-color-blue .resources-block .resources-block-wrap .resources-info::before {
  background-color: rgba(var(--color-blue), 0.4);
}

.overlay-image-cta-video-block.overlay-color-blue::before {
  background-color: rgba(var(--color-blue), 0.9);
}

.icon-block .icon-block-container.icon-block-color-blue .icon-block-icon-wrap .icon-block-icon {
  border-color: #3887db;
  background-color: rgba(var(--color-blue), 0.2);
}
.icon-block .icon-block-container.icon-block-color-blue .icon-block-icon-wrap .icon-block-icon .icon-block-name {
  color: #3887db;
}
.icon-block .icon-block-container.icon-block-color-blue .icon-block-content h4.icon-block-header {
  color: #3887db;
}
.icon-block .icon-block-container.icon-block-color-blue .icon-block-content .icon-cta-button a {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(var(--color-blue), 0);
  display: inline-block;
  padding: 8px 24px;
  color: rgba(var(--color-blue), 1);
  border-color: rgba(var(--color-blue), 1);
}
.icon-block .icon-block-container.icon-block-color-blue .icon-block-content .icon-cta-button a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(var(--color-blue), 0.2);
  color: rgba(var(--color-blue), 1);
}

/* Section colors - each */
.section-color-cyan h1,
.section-color-cyan h2 {
  color: #4ec7e7;
}
.section-color-cyan .resources-block h3.resources-headline {
  color: #4ec7e7;
}
.section-color-cyan .resources-block .resources-block-wrap .resources-info::before {
  background-color: rgba(var(--color-cyan), 0.4);
}

.overlay-image-cta-video-block.overlay-color-cyan::before {
  background-color: rgba(var(--color-cyan), 0.9);
}

.icon-block .icon-block-container.icon-block-color-cyan .icon-block-icon-wrap .icon-block-icon {
  border-color: #4ec7e7;
  background-color: rgba(var(--color-cyan), 0.2);
}
.icon-block .icon-block-container.icon-block-color-cyan .icon-block-icon-wrap .icon-block-icon .icon-block-name {
  color: #4ec7e7;
}
.icon-block .icon-block-container.icon-block-color-cyan .icon-block-content h4.icon-block-header {
  color: #4ec7e7;
}
.icon-block .icon-block-container.icon-block-color-cyan .icon-block-content .icon-cta-button a {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(var(--color-cyan), 0);
  display: inline-block;
  padding: 8px 24px;
  color: rgba(var(--color-cyan), 1);
  border-color: rgba(var(--color-cyan), 1);
}
.icon-block .icon-block-container.icon-block-color-cyan .icon-block-content .icon-cta-button a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(var(--color-cyan), 0.2);
  color: rgba(var(--color-cyan), 1);
}

/* Section colors - each */
.section-color-green h1,
.section-color-green h2 {
  color: #73bf43;
}
.section-color-green .resources-block h3.resources-headline {
  color: #73bf43;
}
.section-color-green .resources-block .resources-block-wrap .resources-info::before {
  background-color: rgba(var(--color-green), 0.4);
}

.overlay-image-cta-video-block.overlay-color-green::before {
  background-color: rgba(var(--color-green), 0.9);
}

.icon-block .icon-block-container.icon-block-color-green .icon-block-icon-wrap .icon-block-icon {
  border-color: #73bf43;
  background-color: rgba(var(--color-green), 0.2);
}
.icon-block .icon-block-container.icon-block-color-green .icon-block-icon-wrap .icon-block-icon .icon-block-name {
  color: #73bf43;
}
.icon-block .icon-block-container.icon-block-color-green .icon-block-content h4.icon-block-header {
  color: #73bf43;
}
.icon-block .icon-block-container.icon-block-color-green .icon-block-content .icon-cta-button a {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(var(--color-green), 0);
  display: inline-block;
  padding: 8px 24px;
  color: rgba(var(--color-green), 1);
  border-color: rgba(var(--color-green), 1);
}
.icon-block .icon-block-container.icon-block-color-green .icon-block-content .icon-cta-button a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(var(--color-green), 0.2);
  color: rgba(var(--color-green), 1);
}

/* Section colors - each */
.section-color-orange h1,
.section-color-orange h2 {
  color: #f37655;
}
.section-color-orange .resources-block h3.resources-headline {
  color: #f37655;
}
.section-color-orange .resources-block .resources-block-wrap .resources-info::before {
  background-color: rgba(var(--color-orange), 0.4);
}

.overlay-image-cta-video-block.overlay-color-orange::before {
  background-color: rgba(var(--color-orange), 0.9);
}

.icon-block .icon-block-container.icon-block-color-orange .icon-block-icon-wrap .icon-block-icon {
  border-color: #f37655;
  background-color: rgba(var(--color-orange), 0.2);
}
.icon-block .icon-block-container.icon-block-color-orange .icon-block-icon-wrap .icon-block-icon .icon-block-name {
  color: #f37655;
}
.icon-block .icon-block-container.icon-block-color-orange .icon-block-content h4.icon-block-header {
  color: #f37655;
}
.icon-block .icon-block-container.icon-block-color-orange .icon-block-content .icon-cta-button a {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(var(--color-orange), 0);
  display: inline-block;
  padding: 8px 24px;
  color: rgba(var(--color-orange), 1);
  border-color: rgba(var(--color-orange), 1);
}
.icon-block .icon-block-container.icon-block-color-orange .icon-block-content .icon-cta-button a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(var(--color-orange), 0.2);
  color: rgba(var(--color-orange), 1);
}

/* Section colors - each */
.section-color-teal h1,
.section-color-teal h2 {
  color: #22b78b;
}
.section-color-teal .resources-block h3.resources-headline {
  color: #22b78b;
}
.section-color-teal .resources-block .resources-block-wrap .resources-info::before {
  background-color: rgba(var(--color-teal), 0.4);
}

.overlay-image-cta-video-block.overlay-color-teal::before {
  background-color: rgba(var(--color-teal), 0.9);
}

.icon-block .icon-block-container.icon-block-color-teal .icon-block-icon-wrap .icon-block-icon {
  border-color: #22b78b;
  background-color: rgba(var(--color-teal), 0.2);
}
.icon-block .icon-block-container.icon-block-color-teal .icon-block-icon-wrap .icon-block-icon .icon-block-name {
  color: #22b78b;
}
.icon-block .icon-block-container.icon-block-color-teal .icon-block-content h4.icon-block-header {
  color: #22b78b;
}
.icon-block .icon-block-container.icon-block-color-teal .icon-block-content .icon-cta-button a {
  transition: all 0.25s ease-out;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 24px;
  background-color: rgba(var(--color-teal), 0);
  display: inline-block;
  padding: 8px 24px;
  color: rgba(var(--color-teal), 1);
  border-color: rgba(var(--color-teal), 1);
}
.icon-block .icon-block-container.icon-block-color-teal .icon-block-content .icon-cta-button a:hover {
  transition: all 0.1s ease-out;
  background-color: rgba(var(--color-teal), 0.2);
  color: rgba(var(--color-teal), 1);
}

.page-template-venture-connect,
.page-template-venture-connect-25 {
  color: #000644;
  overflow-x: hidden;
}
.page-template-venture-connect button,
.page-template-venture-connect input,
.page-template-venture-connect select,
.page-template-venture-connect optgroup,
.page-template-venture-connect textarea,
.page-template-venture-connect h1,
.page-template-venture-connect h2,
.page-template-venture-connect h3,
.page-template-venture-connect p,
.page-template-venture-connect ul,
.page-template-venture-connect ol,
.page-template-venture-connect-25 button,
.page-template-venture-connect-25 input,
.page-template-venture-connect-25 select,
.page-template-venture-connect-25 optgroup,
.page-template-venture-connect-25 textarea,
.page-template-venture-connect-25 h1,
.page-template-venture-connect-25 h2,
.page-template-venture-connect-25 h3,
.page-template-venture-connect-25 p,
.page-template-venture-connect-25 ul,
.page-template-venture-connect-25 ol {
  color: #000644;
}
.page-template-venture-connect h2,
.page-template-venture-connect-25 h2 {
  color: #c709b4;
  font-size: 2.375rem;
}
.page-template-venture-connect h2,
.page-template-venture-connect h3,
.page-template-venture-connect-25 h2,
.page-template-venture-connect-25 h3 {
  line-height: 1.2;
  font-weight: 400;
}
.page-template-venture-connect a,
.page-template-venture-connect-25 a {
  color: #000644;
}
.page-template-venture-connect a:focus, .page-template-venture-connect a:hover,
.page-template-venture-connect-25 a:focus,
.page-template-venture-connect-25 a:hover {
  color: #0286ff;
}
@media (max-width: 768px) {
  .page-template-venture-connect .lity .lity-wrap,
  .page-template-venture-connect-25 .lity .lity-wrap {
    position: absolute;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-template-venture-connect .lity .lity-wrap .lity-container .lity-content > div,
  .page-template-venture-connect-25 .lity .lity-wrap .lity-container .lity-content > div {
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .page-template-venture-connect .lity .lity-wrap .lity-close,
  .page-template-venture-connect-25 .lity .lity-wrap .lity-close {
    background-color: rgba(34, 34, 34, 0.75);
  }
}

.page-template-venture-connect {
  font-family: "Albert Sans";
}
.page-template-venture-connect button,
.page-template-venture-connect input,
.page-template-venture-connect select,
.page-template-venture-connect optgroup,
.page-template-venture-connect textarea,
.page-template-venture-connect h1,
.page-template-venture-connect h2,
.page-template-venture-connect h3,
.page-template-venture-connect p,
.page-template-venture-connect ul,
.page-template-venture-connect ol {
  font-family: "Albert Sans";
}

.page-template-venture-connect-25 {
  font-family: "GT Flexa", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.page-template-venture-connect-25 button,
.page-template-venture-connect-25 input,
.page-template-venture-connect-25 select,
.page-template-venture-connect-25 optgroup,
.page-template-venture-connect-25 textarea,
.page-template-venture-connect-25 h1,
.page-template-venture-connect-25 h2,
.page-template-venture-connect-25 h3,
.page-template-venture-connect-25 p,
.page-template-venture-connect-25 ul,
.page-template-venture-connect-25 ol {
  font-family: "GT Flexa", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.page-template-venture-connect .site-header,
.page-template-venture-connect-25 .site-header {
  padding-top: 0;
}
.page-template-venture-connect .site-header .section-header,
.page-template-venture-connect-25 .site-header .section-header {
  display: block;
}
.page-template-venture-connect .site-header .section-header::after,
.page-template-venture-connect-25 .site-header .section-header::after {
  display: none;
}
.page-template-venture-connect .site-header .venture-connect-navigation,
.page-template-venture-connect-25 .site-header .venture-connect-navigation {
  background-color: #000644;
  box-shadow: 0 10px 20px 0 rgba(34, 34, 34, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  min-height: 92px;
  transition: background 0.2s ease;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation.sticky-top,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation.sticky-top {
    background-color: rgba(0, 6, 68, 0);
    box-shadow: 0 10px 20px 0 rgba(34, 34, 34, 0);
    transition: background 0.2s ease;
  }
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation.sticky-top .vc-logo,
  .page-template-venture-connect .site-header .venture-connect-navigation.sticky-top div[class^=menu-venture-connect],
  .page-template-venture-connect-25 .site-header .venture-connect-navigation.sticky-top .vc-logo,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation.sticky-top div[class^=menu-venture-connect] {
    padding-top: 54px;
    transition: padding 0.2s ease;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation .menu-toggle-container,
.page-template-venture-connect-25 .site-header .venture-connect-navigation .menu-toggle-container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
.page-template-venture-connect .site-header .venture-connect-navigation .vc-logo,
.page-template-venture-connect-25 .site-header .venture-connect-navigation .vc-logo {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation .vc-logo,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation .vc-logo {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
    transition: padding 0.2s ease;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation .vc-logo img,
.page-template-venture-connect-25 .site-header .venture-connect-navigation .vc-logo img {
  width: auto;
  height: 60px;
}
.page-template-venture-connect .site-header .venture-connect-navigation div[class^=menu-venture-connect],
.page-template-venture-connect-25 .site-header .venture-connect-navigation div[class^=menu-venture-connect] {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
  transition: max-height 0.35s ease;
  overflow: hidden;
  padding: 0;
  max-height: 0;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation div[class^=menu-venture-connect],
  .page-template-venture-connect-25 .site-header .venture-connect-navigation div[class^=menu-venture-connect] {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
    max-height: unset;
    transition: padding 0.5s ease;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation.toggled div[class^=menu-venture-connect],
.page-template-venture-connect-25 .site-header .venture-connect-navigation.toggled div[class^=menu-venture-connect] {
  transition: max-height 0.35s ease;
  max-height: 400px;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation.toggled div[class^=menu-venture-connect],
  .page-template-venture-connect-25 .site-header .venture-connect-navigation.toggled div[class^=menu-venture-connect] {
    max-height: unset;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu,
.page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu {
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu .menu-item,
.page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu .menu-item {
  flex: 0 1 100%;
  padding: 1px 1rem;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu .menu-item,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu .menu-item {
    flex: 0 1 auto;
    padding: 0 0 0 1rem;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu a,
.page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu a {
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  display: block;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu a,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu a {
    display: inline-block;
    padding: 0.25rem 1rem;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu a:hover,
.page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu a:hover {
  background-color: rgba(0, 219, 249, 0.25);
  transition: all 0.15s ease;
}
.page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu .menu-item.current-menu-item a,
.page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu .menu-item.current-menu-item a {
  background-color: rgba(0, 219, 249, 0.25);
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation #venture-connect-menu .menu-item.current-menu-item a,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation #venture-connect-menu .menu-item.current-menu-item a {
    background-color: transparant;
    box-shadow: inset 0 0 0 1px #00dbf9;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation button.menu-toggle,
.page-template-venture-connect-25 .site-header .venture-connect-navigation button.menu-toggle {
  text-indent: -9999px;
  border-style: none;
  background-color: transparent;
  background-image: url("../img/venture-connect/2024/menu.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 40px auto;
  display: block;
  position: absolute;
  top: 34px;
  right: 24px;
  z-index: 101;
  padding: 0;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect .site-header .venture-connect-navigation button.menu-toggle,
  .page-template-venture-connect-25 .site-header .venture-connect-navigation button.menu-toggle {
    display: none;
  }
}
.page-template-venture-connect .site-header .venture-connect-navigation.toggled button.menu-toggle,
.page-template-venture-connect-25 .site-header .venture-connect-navigation.toggled button.menu-toggle {
  background-position: -22px -16px;
}

.page-template-venture-connect-25 .site-header .venture-connect-navigation {
  background-color: #222222;
}

.page-template-venture-connect.page-parent .site-header .section-header::before,
.page-template-venture-connect-25.page-parent .site-header .section-header::before {
  mix-blend-mode: multiply;
  background: linear-gradient(135deg, rgba(0, 6, 68, 0.5) 20%, rgba(199, 9, 180, 0.5) 100%);
  z-index: 3;
}
.page-template-venture-connect.page-parent .site-header .section-header::after,
.page-template-venture-connect-25.page-parent .site-header .section-header::after {
  content: "";
  background: linear-gradient(135deg, #000644 6%, #c709b4 100%);
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-template-venture-connect.page-parent .site-header .section-header-content,
.page-template-venture-connect-25.page-parent .site-header .section-header-content {
  margin: auto;
  padding: 106px 1rem 0;
  width: 100%;
  max-width: 1200px;
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-hero-logo,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-hero-logo {
  padding: 62px 0 24px;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-hero-logo,
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-hero-logo {
    padding: 144px 0 24px;
  }
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-hero-logo img,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-hero-logo img {
  width: 100%;
  max-width: 698px;
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description p,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description p {
  max-width: unset;
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .vc-tag-line,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .vc-tag-line {
  color: #fff;
  font-size: 2.125rem;
  line-height: 2.625rem;
  text-align: left;
  margin-bottom: 2rem;
  margin-left: 0;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-description .vc-tag-line,
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .vc-tag-line {
    margin-bottom: 108px;
  }
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location {
  background-color: rgba(0, 6, 68, 0.4);
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  mix-blend-mode: multiply;
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location > .content,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location > .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  padding: 45px 1.75rem 41px;
  max-width: 1200px;
}
@media only screen and (min-width: 1201px) {
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location > .content,
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location > .content {
    padding: 45px 1rem 41px;
  }
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(1),
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2),
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(1),
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2) {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  margin-left: 0;
  padding-right: 19px;
  padding-bottom: 10px;
  padding-left: 54px;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(1),
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2),
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(1),
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2) {
    flex: 0 1 auto;
  }
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(1),
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(1) {
  background-image: url("../img/venture-connect/2024/icon-date-lime.svg");
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2),
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2) {
  background-image: url("../img/venture-connect/2024/icon-location-lime.svg");
  margin-top: 1rem;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2),
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(2) {
    margin-top: 0;
  }
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location span,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location span {
  color: #00dbf9;
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3),
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3) {
  flex: 0 1 100%;
  text-align: left;
  padding-top: 2rem;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3),
  .page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3) {
    flex: 0 1 auto;
    text-align: right;
    padding-top: 0;
  }
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3) a,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3) a {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 -20%, #000644 120%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0;
}
.page-template-venture-connect.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3) a:hover,
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location p:nth-child(3) a:hover {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 0%, #000644 100%);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}
.page-template-venture-connect.page-parent .site-header .media-wrapper,
.page-template-venture-connect-25.page-parent .site-header .media-wrapper {
  mix-blend-mode: luminosity;
  z-index: 2;
}
.page-template-venture-connect.page-parent .site-header .media-wrapper video,
.page-template-venture-connect-25.page-parent .site-header .media-wrapper video {
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  min-width: 102%;
  min-height: 102%;
  transform: translate(-50%, -50%);
}

.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-hero-logo {
  text-align: center;
}
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-hero-logo img {
  max-width: 748px;
}
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .vc-tag-line {
  text-align: center;
}
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .vc-tag-line strong {
  font-weight: 500;
}
.page-template-venture-connect-25.page-parent .site-header .section-header-content .section-description .date-location {
  background-color: rgba(34, 34, 34, 0.65);
}

.admin-bar.page-template-venture-connect header.site-header .venture-connect-navigation, .admin-bar.page-template-venture-connect-25 header.site-header .venture-connect-navigation {
  top: 32px;
}

.page-template-venture-connect .site-footer #footer-first,
.page-template-venture-connect-25 .site-footer #footer-first {
  background: #000644;
  background: linear-gradient(160deg, #000644 30%, #0286ff 100%);
  padding: 4.5rem 0 4rem;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(1),
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(1) {
  flex: 0 1 100%;
  text-align: center;
  padding: 0 1rem;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(1),
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(1) {
    flex: 0 1 270px;
    padding: 0 2.5rem 0 1rem;
  }
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(2),
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3),
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(2),
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) {
  flex: 0 1 100%;
  padding: 0 3rem;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(2),
  .page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3),
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(2),
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) {
    flex: 0 1 calc(50% - 135px);
    padding: 0 1rem 0 2.5rem;
  }
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(2),
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(2) {
  padding-top: 46px;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3),
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) {
  padding-top: 26px;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3) p,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) p {
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3) p,
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) p {
    text-align: left;
  }
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3) a,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) a {
  text-indent: -9999px;
  background: url("../img/venture-connect/2024/ced-logo-powered-by.svg") no-repeat center top;
  background-size: 100% auto;
  display: block;
  margin: auto;
  width: 100%;
  max-width: 326px;
  height: 132px;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect .site-footer #footer-first #footer-first-content section:nth-child(3) a,
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content section:nth-child(3) a {
    background-position: left top;
    margin: 0;
  }
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .vc-logo a,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .vc-logo a {
  text-indent: -9999px;
  background: url("../img/venture-connect/2024/venture-connect-logo2.svg") no-repeat center;
  display: inline-block;
  width: 214px;
  height: 168px;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .tickets,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .tickets {
  margin-bottom: 0;
  padding: 50px 0;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .tickets a,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .tickets a {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 -20%, #000644 120%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .tickets a:hover,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .tickets a:hover {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 0%, #000644 100%);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .date,
.page-template-venture-connect .site-footer #footer-first #footer-first-content .location,
.page-template-venture-connect .site-footer #footer-first #footer-first-content .mail,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .date,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .location,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .mail {
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 54px;
}
@media only screen and (min-width: 993px) {
  .page-template-venture-connect .site-footer #footer-first #footer-first-content .date,
  .page-template-venture-connect .site-footer #footer-first #footer-first-content .location,
  .page-template-venture-connect .site-footer #footer-first #footer-first-content .mail,
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .date,
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .location,
  .page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .mail {
    text-align: left;
    background-position: left top;
    padding: 7px 0 9px 54px;
  }
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .date a,
.page-template-venture-connect .site-footer #footer-first #footer-first-content .location a,
.page-template-venture-connect .site-footer #footer-first #footer-first-content .mail a,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .date a,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .location a,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .mail a {
  color: #fff;
  text-decoration: none;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .date a:hover,
.page-template-venture-connect .site-footer #footer-first #footer-first-content .location a:hover,
.page-template-venture-connect .site-footer #footer-first #footer-first-content .mail a:hover,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .date a:hover,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .location a:hover,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .mail a:hover {
  text-decoration: underline;
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .date,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .date {
  background-image: url("../img/venture-connect/2024/icon-date-lime.svg");
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .location,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .location {
  background-image: url("../img/venture-connect/2024/icon-location-lime.svg");
}
.page-template-venture-connect .site-footer #footer-first #footer-first-content .mail,
.page-template-venture-connect-25 .site-footer #footer-first #footer-first-content .mail {
  background-image: url("../img/venture-connect/2024/icon-quetions-lime.svg");
}
@media only screen and (min-width: 1201px) {
  .page-template-venture-connect .site-footer #footer-second #footer-second-content .widget_nav_menu,
  .page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .widget_nav_menu {
    flex-basis: 60% !important;
    max-width: 60% !important;
  }
}
.page-template-venture-connect .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu,
.page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu {
  color: #353a3a !important;
  font-size: 0.8125rem !important;
}
.page-template-venture-connect .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu a,
.page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu a {
  color: #353a3a !important;
}
@media only screen and (min-width: 1201px) {
  .page-template-venture-connect .site-footer #footer-second #footer-second-content .copyright,
  .page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .copyright {
    flex-basis: 40% !important;
    max-width: 40% !important;
  }
}
.page-template-venture-connect .site-footer #footer-second #footer-second-content .copyright p,
.page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .copyright p {
  color: #353a3a !important;
  font-size: 0.75rem !important;
}

.page-template-venture-connect .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu {
  font-family: "Albert Sans" !important;
}
.page-template-venture-connect .site-footer #footer-second #footer-second-content .copyright p {
  font-family: "Albert Sans" !important;
}

.page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu {
  font-family: "GT Flexa", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}
.page-template-venture-connect-25 .site-footer #footer-second #footer-second-content .copyright p {
  font-family: "GT Flexa", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.page-template-venture-connect,
.page-template-venture-connect-25 {
  font-size: 1.25rem;
  background-color: #fff;
}
.page-template-venture-connect #content-wrap #content,
.page-template-venture-connect-25 #content-wrap #content {
  display: block;
  max-width: unset;
}
.page-template-venture-connect #content-wrap #content #primary,
.page-template-venture-connect-25 #content-wrap #content #primary {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 0;
}
.page-template-venture-connect #content-wrap #content #primary #main,
.page-template-venture-connect-25 #content-wrap #content #primary #main {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
  padding: 0 1rem;
}
.page-template-venture-connect h2,
.page-template-venture-connect-25 h2 {
  font-weight: 400;
}
.page-template-venture-connect h2 strong,
.page-template-venture-connect-25 h2 strong {
  font-weight: 800;
}
.page-template-venture-connect .wp-block-columns,
.page-template-venture-connect-25 .wp-block-columns {
  align-items: center;
}
.page-template-venture-connect .wp-block-buttons a,
.page-template-venture-connect-25 .wp-block-buttons a {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 -20%, #000644 120%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
}
.page-template-venture-connect .wp-block-buttons a:hover,
.page-template-venture-connect-25 .wp-block-buttons a:hover {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 0%, #000644 100%);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}

.page-template-venture-connect.page-child .vc-entry-header,
.page-template-venture-connect-25.page-child .vc-entry-header {
  background: linear-gradient(150deg, #000644 0%, #960788 100%);
  position: relative;
  z-index: 1;
}
.page-template-venture-connect.page-child .vc-entry-header::after,
.page-template-venture-connect-25.page-child .vc-entry-header::after {
  content: "";
  mix-blend-mode: overlay;
  background: linear-gradient(137deg, #000644 -25%, rgba(199, 9, 180, 0.5) 100%);
  position: absolute;
  inset: 0;
  z-index: 3;
}
.page-template-venture-connect.page-child .site-contentsection-color-blue .vc-entry-header,
.page-template-venture-connect-25.page-child .site-contentsection-color-blue .vc-entry-header {
  background: linear-gradient(157deg, #000644 0%, rgba(2, 134, 255, 0) 100%);
}
.page-template-venture-connect.page-child .site-contentsection-color-blue .vc-entry-header::after,
.page-template-venture-connect-25.page-child .site-contentsection-color-blue .vc-entry-header::after {
  background: linear-gradient(133deg, #000644 0%, #0286ff 100%);
}
.page-template-venture-connect.page-child .site-contentsection-color-teal .vc-entry-header,
.page-template-venture-connect-25.page-child .site-contentsection-color-teal .vc-entry-header {
  background: linear-gradient(160deg, #000644 0%, rgba(0, 219, 249, 0) 100%);
}
.page-template-venture-connect.page-child .site-contentsection-color-teal .vc-entry-header::after,
.page-template-venture-connect-25.page-child .site-contentsection-color-teal .vc-entry-header::after {
  background: linear-gradient(150deg, #000644 -15%, #00dbf9 80%);
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content {
  background: url("../img/venture-connect/2024/mesh-sm-bg-reverse.svg") repeat-x center bottom;
  background-size: auto 101px;
  position: relative;
  z-index: 5;
  padding: 182px 0 142px;
}
@media only screen and (min-width: 769px) {
  .page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content,
  .page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content {
    padding: 222px 0 172px;
  }
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content .vc-pre-title,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content .vc-pre-title {
  color: #ddff0d;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content .vc-entry-title,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content .vc-entry-title {
  color: #fff;
  font-size: 4.6875rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content .vc-entry-title span,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content .vc-entry-title span {
  font-weight: 400;
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content .vc-header-intro,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content .vc-header-intro {
  margin: auto;
  padding: 0 1rem;
  max-width: 732px;
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content .vc-header-intro *,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content .vc-header-intro * {
  color: #fff;
  text-align: center;
}
.page-template-venture-connect.page-child .vc-entry-header .vc-entry-header-content .vc-header-intro p,
.page-template-venture-connect-25.page-child .vc-entry-header .vc-entry-header-content .vc-header-intro p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.page-template-venture-connect.page-child .vc-entry-header::before {
  content: "";
  background: url("../img/venture-connect/2024/vc24-hero-subpage-bkgd.jpg") no-repeat center;
  mix-blend-mode: luminosity;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  inset: 0;
}

.page-template-venture-connect-25.page-child .vc-entry-header::before {
  content: "";
  background: url("../img/venture-connect/2025/ced-vc25-hero-sub-bg.jpg") no-repeat center;
  mix-blend-mode: luminosity;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  inset: 0;
}

.page-template-venture-connect .vc-sponsors-container,
.page-template-venture-connect-25 .vc-sponsors-container {
  background: rgba(0, 6, 68, 0);
  background: linear-gradient(0deg, rgba(0, 6, 68, 0) 90%, rgba(2, 134, 255, 0.14) 100%);
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-top: 72px;
  width: 100vw;
}
.page-template-venture-connect .vc-sponsors-container .vc-sponsors,
.page-template-venture-connect-25 .vc-sponsors-container .vc-sponsors {
  margin: auto;
  padding: 0 1rem;
  max-width: 75rem;
}

.page-template-venture-connect .vc-video-intro,
.page-template-venture-connect-25 .vc-video-intro {
  margin: auto;
  max-width: 1128px;
}
.page-template-venture-connect .vc-video-intro h2,
.page-template-venture-connect-25 .vc-video-intro h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0;
}
.page-template-venture-connect .vc-video-intro h2 + p,
.page-template-venture-connect-25 .vc-video-intro h2 + p {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}
.page-template-venture-connect .vc-video-intro .wp-block-column .vc-video-container,
.page-template-venture-connect-25 .vc-video-intro .wp-block-column .vc-video-container {
  text-align: center;
  position: relative;
  margin: 0 0 52px 26px;
}
.page-template-venture-connect .vc-video-intro .wp-block-column .vc-video-container::after,
.page-template-venture-connect-25 .vc-video-intro .wp-block-column .vc-video-container::after {
  background: #0286ff;
  background: linear-gradient(180deg, #0286ff 10%, #c709b4 100%);
  content: "";
  border-radius: 30px;
  display: block;
  position: absolute;
  top: 26px;
  left: -26px;
  z-index: 1;
  padding-bottom: 56%;
  width: 100%;
}
.page-template-venture-connect .vc-video-intro .wp-block-column .vc-video-container .wp-block-video,
.page-template-venture-connect-25 .vc-video-intro .wp-block-column .vc-video-container .wp-block-video {
  border-radius: 25px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 56%;
  width: 100%;
  max-width: 100%;
  height: 0;
}
.page-template-venture-connect .vc-video-intro .wp-block-column .vc-video-container .wp-block-video video,
.page-template-venture-connect-25 .vc-video-intro .wp-block-column .vc-video-container .wp-block-video video {
  position: absolute;
  top: -1%;
  left: -1%;
  z-index: 4;
  width: 102%;
  height: 102%;
}
.page-template-venture-connect .vc-video-intro .wp-block-column .wp-block-button,
.page-template-venture-connect-25 .vc-video-intro .wp-block-column .wp-block-button {
  margin-top: 1rem;
}
@media (min-width: 781px) {
  .page-template-venture-connect .vc-video-intro .wp-block-column .wp-block-button,
  .page-template-venture-connect-25 .vc-video-intro .wp-block-column .wp-block-button {
    margin-top: 2rem;
  }
}

.page-template-venture-connect .schedule-group,
.page-template-venture-connect-25 .schedule-group {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}
.page-template-venture-connect .schedule-group .wp-block-group__inner-container,
.page-template-venture-connect-25 .schedule-group .wp-block-group__inner-container {
  margin: auto;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
  max-width: 75rem;
}
.page-template-venture-connect .schedule-group .wp-block-group__inner-container > h2,
.page-template-venture-connect-25 .schedule-group .wp-block-group__inner-container > h2 {
  font-size: 2.375rem;
  text-align: center;
  margin-bottom: 40px;
}
.page-template-venture-connect .schedule-group .wp-block-group__inner-container > p,
.page-template-venture-connect-25 .schedule-group .wp-block-group__inner-container > p {
  margin: 1rem auto 60px;
  max-width: 700px;
}
.page-template-venture-connect .schedule-group .tabs-shortcodes-block,
.page-template-venture-connect-25 .schedule-group .tabs-shortcodes-block {
  background-color: #fff;
  box-shadow: 20px 20px 50px 0 rgba(34, 34, 34, 0.2);
}
.page-template-venture-connect .schedule-group .tabs-shortcodes-block .toggle-tabs,
.page-template-venture-connect-25 .schedule-group .tabs-shortcodes-block .toggle-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 2rem 0 0;
}
.page-template-venture-connect .schedule-group .tabs-shortcodes-block .toggle-tabs a,
.page-template-venture-connect-25 .schedule-group .tabs-shortcodes-block .toggle-tabs a {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 -20%, #000644 120%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
  box-shadow: none;
  display: inline-block;
  margin: 1rem 0.5rem 0;
}
.page-template-venture-connect .schedule-group .tabs-shortcodes-block .toggle-tabs a:hover,
.page-template-venture-connect-25 .schedule-group .tabs-shortcodes-block .toggle-tabs a:hover {
  background: #00dbf9;
  background: linear-gradient(200deg, #00dbf9 0%, #000644 100%);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}
.page-template-venture-connect .schedule-group .tabs-shortcodes-block .toggle-tabs a.active,
.page-template-venture-connect-25 .schedule-group .tabs-shortcodes-block .toggle-tabs a.active {
  color: #353a3a;
  background: #fff;
  box-shadow: inset 0 0 0 2px #353a3a;
}

.page-template-venture-connect .agenda-modal:not(.lity-hide),
.page-template-venture-connect-25 .agenda-modal:not(.lity-hide) {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 3.5rem 4rem 3rem;
  max-width: 1000px;
}
.page-template-venture-connect .agenda-modal:not(.lity-hide) h3,
.page-template-venture-connect-25 .agenda-modal:not(.lity-hide) h3 {
  font-size: 2.375rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 28px;
}
.page-template-venture-connect .agenda-modal:not(.lity-hide) p,
.page-template-venture-connect-25 .agenda-modal:not(.lity-hide) p {
  margin-top: 0;
}
.page-template-venture-connect .agenda-modal:not(.lity-hide) p strong,
.page-template-venture-connect-25 .agenda-modal:not(.lity-hide) p strong {
  color: #00dbf9;
}
.page-template-venture-connect .lity-close,
.page-template-venture-connect-25 .lity-close {
  color: #fff !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
}

.wpcs-schedule-wrapper {
  padding: 1rem;
}
@media (min-width: 701px) {
  .wpcs-schedule-wrapper {
    padding: 3rem;
  }
}
.wpcs-schedule-wrapper .wpcs-layout-table {
  border-style: none;
}
.wpcs-schedule-wrapper .wpcs-layout-table thead th {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  border-style: none;
  background-color: #000644;
  width: 20%;
}
@media only screen and (min-width: 993px) {
  .wpcs-schedule-wrapper .wpcs-layout-table thead th {
    width: 22%;
  }
}
@media only screen and (min-width: 993px) {
  .wpcs-schedule-wrapper .wpcs-layout-table thead th.wpcs-col-time {
    width: 12%;
  }
}
.wpcs-schedule-wrapper .wpcs-layout-table tbody tr {
  text-align: left;
}
@media (max-width: 700px) {
  .wpcs-schedule-wrapper .wpcs-layout-table tbody tr {
    border-style: none;
    background-color: #f6f6f6;
  }
}
@media (min-width: 701px) {
  .wpcs-schedule-wrapper .wpcs-layout-table tbody tr:nth-child(odd) {
    background-color: #f6f6f6;
  }
}
.wpcs-schedule-wrapper .wpcs-layout-table tbody td {
  text-align: left;
  white-space: normal;
  border-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-time {
  color: #c709b4;
  font-size: 1.0625rem;
  min-width: unset;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom {
  box-shadow: inset 0 0 0 1px #fff;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content h3,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content h3,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content h3 {
  font-size: 1.0625rem;
  line-height: 1.2;
  margin-top: 10px;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content h3 a,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content h3 a,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content h3 a {
  text-decoration: none;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content .wpcs-session-track,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content .wpcs-session-track,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content .wpcs-session-track {
  margin-top: 0.5rem;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content .wpcs-session-track::before,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content .wpcs-session-track::before,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content .wpcs-session-track::before {
  content: "Location: ";
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content .wpcs-session-speakers,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content .wpcs-session-speakers,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content .wpcs-session-speakers {
  font-size: 1rem;
  display: block;
  padding-bottom: 1rem;
  padding-left: 10px;
}
@media (min-width: 701px) {
  .wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content .wpcs-session-speakers,
  .wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content .wpcs-session-speakers,
  .wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content .wpcs-session-speakers {
    padding-bottom: 0;
    padding-left: 0;
  }
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session .wpcs-session-cell-content .wpcs-session-speakers::before,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage .wpcs-session-cell-content .wpcs-session-speakers::before,
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom .wpcs-session-cell-content .wpcs-session-speakers::before {
  content: "Speaker: ";
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-global-session {
  background-color: #fff;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-global-session td {
  padding: 0.5rem 1rem !important;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session {
  background-color: #d8ecff;
  padding-top: 1.5rem;
}
@media (min-width: 701px) {
  .wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session {
    padding-top: 0.5rem;
  }
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-session::before {
  color: #fff;
  font-size: 1.0625rem;
  border-style: none;
  background-color: #353a3a;
  padding: 0.3rem;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-mainstage {
  background-color: #fee6fb;
}
.wpcs-schedule-wrapper .wpcs-layout-table .wpcs-session-type-custom {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 2px #4d5150;
}

.page-template-fortieth-bash {
  color: #151515;
  font-family: "Albert Sans";
  background-color: #fff;
  overflow-x: hidden;
}
.page-template-fortieth-bash button,
.page-template-fortieth-bash input,
.page-template-fortieth-bash select,
.page-template-fortieth-bash optgroup,
.page-template-fortieth-bash textarea,
.page-template-fortieth-bash h1,
.page-template-fortieth-bash h2,
.page-template-fortieth-bash h3,
.page-template-fortieth-bash p,
.page-template-fortieth-bash ul,
.page-template-fortieth-bash ol {
  color: #151515;
  font-family: "Albert Sans";
}
.page-template-fortieth-bash h2 {
  color: #151515;
  font-size: 2.375rem;
}
.page-template-fortieth-bash h2,
.page-template-fortieth-bash h3 {
  line-height: 1.2;
  font-weight: 400;
}
.page-template-fortieth-bash p {
  font-size: 1.25rem;
}
.page-template-fortieth-bash a {
  color: #151515;
}
.page-template-fortieth-bash a:focus, .page-template-fortieth-bash a:hover {
  color: #fb3893;
}
.page-template-fortieth-bash .site-content .content-area {
  padding-top: 0 !important;
}
.page-template-fortieth-bash .vc-tickets-block .vc-tickets-header strong {
  color: #22c276;
}
.page-template-fortieth-bash .ced-40th-bash-sponsors .wp-block-heading strong {
  color: #11aacc;
}
.page-template-fortieth-bash .vc-schedule-block .vc-schedule-header strong {
  color: #fb3893;
}

.page-template-fortieth-bash header.site-header {
  padding-top: 0;
}
.page-template-fortieth-bash header.site-header .section-header {
  display: block;
}
.page-template-fortieth-bash header.site-header .section-header::before {
  background: linear-gradient(28.1deg, #070707 14.49%, rgba(247, 0, 192, 0.22) 142.07%);
  z-index: 3;
}
.page-template-fortieth-bash header.site-header .section-header::after {
  content: "";
  background: linear-gradient(338.35deg, #151515 13.78%, #fb3893 87.28%);
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation {
  background-color: #222222;
  box-shadow: 0 10px 20px 0 rgba(34, 34, 34, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  min-height: 92px;
  transition: background 0.2s ease;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation.sticky-top {
    background-color: rgba(21, 21, 21, 0);
    box-shadow: 0 10px 20px 0 rgba(34, 34, 34, 0);
    transition: background 0.2s ease;
  }
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation.sticky-top .ced-logo,
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation.sticky-top .menu-40th-birthday-bash-container {
    padding-top: 54px;
    transition: padding 0.2s ease;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation .menu-toggle-container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation .ced-logo {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation .ced-logo {
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
    transition: padding 0.2s ease;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation .ced-logo img {
  width: auto;
  height: 60px;
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation .menu-40th-birthday-bash-container {
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
  transition: max-height 0.35s ease;
  overflow: hidden;
  padding: 0;
  max-height: 0;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation .menu-40th-birthday-bash-container {
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
    max-height: unset;
    transition: padding 0.5s ease;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation.toggled .menu-40th-birthday-bash-container {
  transition: max-height 0.35s ease;
  max-height: 400px;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation.toggled .menu-40th-birthday-bash-container {
    max-height: unset;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu {
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu .menu-item {
  flex: 0 1 100%;
  padding: 1px 1rem;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu .menu-item {
    flex: 0 1 auto;
    padding: 0 0 0 1rem;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu a {
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  display: block;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu a {
    display: inline-block;
    padding: 0.25rem 1rem;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu a:hover {
  background-color: rgba(140, 231, 244, 0.25);
  transition: all 0.15s ease;
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu .menu-item.current-menu-item a {
  background-color: rgba(140, 231, 244, 0.25);
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation #fortieth-bash-menu .menu-item.current-menu-item a {
    background-color: transparant;
    box-shadow: inset 0 0 0 1px #8ce7f4;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation button.menu-toggle {
  text-indent: -9999px;
  border-style: none;
  background-color: transparent;
  background-image: url("../img/fortieth-bash/menu.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 40px auto;
  display: block;
  position: absolute;
  top: 34px;
  right: 24px;
  z-index: 101;
  padding: 0;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .fortieth-bash-navigation button.menu-toggle {
    display: none;
  }
}
.page-template-fortieth-bash header.site-header .fortieth-bash-navigation.toggled button.menu-toggle {
  background-position: -22px -16px;
}
.page-template-fortieth-bash header.site-header .section-header-content {
  position: relative;
  z-index: 5;
  margin: auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1200px;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-hero-logo {
  text-align: center;
  padding: 182px 0 100px;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash header.site-header .section-header-content .section-hero-logo {
    padding: 20% 0 16%;
  }
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash header.site-header .section-header-content .section-hero-logo {
    padding: 16% 0;
  }
}
.page-template-fortieth-bash header.site-header .section-header-content .section-hero-logo img {
  width: 100%;
  max-width: 1124px;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description {
  position: relative;
  z-index: 2;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description p {
  max-width: unset;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location {
  mix-blend-mode: multiply;
  background-color: rgba(21, 21, 21, 0.8);
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location > .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  padding: 45px 1.75rem 41px;
  max-width: 1200px;
}
@media only screen and (min-width: 1201px) {
  .page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location > .content {
    padding: 45px 1rem 41px;
  }
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(1),
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(2) {
  flex: 0 1 100%;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  margin-left: 0;
  padding-right: 19px;
  padding-bottom: 10px;
  padding-left: 54px;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(1),
  .page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(2) {
    flex: 0 1 auto;
  }
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(1) a,
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(2) a {
  color: #fff;
  text-decoration: none;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(1) a:hover,
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(2) a:hover {
  color: #fb3893;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(1) {
  background-image: url("../img/fortieth-bash/icon-date.svg");
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(2) {
  background-image: url("../img/fortieth-bash/icon-location.svg");
  margin-top: 1rem;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(2) {
    margin-top: 0;
  }
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(3) {
  flex: 0 1 100%;
  text-align: left;
  padding-top: 2rem;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(3) {
    flex: 0 1 auto;
    text-align: right;
    padding-top: 0;
  }
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(3) a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  background: #fb3893;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0;
}
.page-template-fortieth-bash header.site-header .section-header-content .section-description .date-location p:nth-child(3) a:hover {
  background: #9d5dee;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}
.page-template-fortieth-bash header.site-header .extra-glow {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 13.78%, rgba(177, 15, 113, 0.6) 87.28%);
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
}
.page-template-fortieth-bash header.site-header .extra-glow::before {
  content: "";
  mix-blend-mode: hard-light;
  background: radial-gradient(50% 50% at 50% 50%, #43ffa6 0%, rgba(67, 255, 166, 0) 100%);
  opacity: 0.9;
  position: absolute;
  inset: -35% -50% 10% 50%;
  z-index: 1;
}
.page-template-fortieth-bash header.site-header .extra-glow::after {
  content: "";
  mix-blend-mode: hard-light;
  background: radial-gradient(50% 50% at 50% 50%, #11aacc 0%, rgba(17, 170, 204, 0) 100%);
  position: absolute;
  inset: 20% 35% -20% -35%;
  z-index: 1;
}
.page-template-fortieth-bash header.site-header .media-wrapper {
  mix-blend-mode: luminosity;
  z-index: 2;
}
.page-template-fortieth-bash header.site-header .media-wrapper video.video-container {
  opacity: 0.6;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  min-width: 102%;
  min-height: 102%;
  transform: translate(-50%, -50%);
}

.page-template-fortieth-bash .site-footer #footer-first {
  background-color: #151515;
  padding: 4.5rem 0 4rem;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(1) {
  flex: 0 1 100%;
  text-align: center;
  padding: 0 1rem;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(1) {
    flex: 0 1 270px;
    padding: 0 2.5rem 0 1rem;
  }
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(2),
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) {
  flex: 0 1 100%;
  padding: 0 3rem;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(2),
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) {
    flex: 0 1 calc(50% - 135px);
    padding: 0 1rem 0 2.5rem;
  }
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(2) {
  padding-top: 46px;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) {
  padding-top: 26px;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) p {
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) p {
    text-align: left;
  }
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) a {
  text-indent: -9999px;
  background: url("../img/fortieth-bash/ced-logo-powered-by.svg") no-repeat center top;
  background-size: 100% auto;
  display: block;
  margin: auto;
  width: 100%;
  max-width: 326px;
  height: 132px;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content section:nth-child(3) a {
    background-position: left top;
    margin: 0;
  }
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .ced-fortieth-logo {
  text-indent: -99999px;
  background: url("../img/fortieth-bash/ced-40th-logo.svg") no-repeat center;
  background-size: auto 182px;
  width: 100%;
  height: 182px;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .tickets {
  margin-bottom: 0;
  padding: 50px 0;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .tickets a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  background: #fb3893;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .tickets a:hover {
  background: #9d5dee;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .date,
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .location,
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .mail {
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 54px;
}
@media only screen and (min-width: 993px) {
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content .date,
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content .location,
  .page-template-fortieth-bash .site-footer #footer-first #footer-first-content .mail {
    text-align: left;
    background-position: left top;
    padding: 7px 0 9px 54px;
  }
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .date a,
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .location a,
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .mail a {
  color: #fff;
  text-decoration: none;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .date a:hover,
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .location a:hover,
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .mail a:hover {
  text-decoration: underline;
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .date {
  background-image: url("../img/fortieth-bash/icon-date.svg");
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .location {
  background-image: url("../img/fortieth-bash/icon-location.svg");
}
.page-template-fortieth-bash .site-footer #footer-first #footer-first-content .mail {
  background-image: url("../img/fortieth-bash/icon-quetions.svg");
}
@media only screen and (min-width: 1201px) {
  .page-template-fortieth-bash .site-footer #footer-second #footer-second-content .widget_nav_menu {
    flex-basis: 60% !important;
    max-width: 60% !important;
  }
}
.page-template-fortieth-bash .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu {
  color: #151515 !important;
  font-size: 0.8125rem !important;
  font-family: "Albert Sans" !important;
}
.page-template-fortieth-bash .site-footer #footer-second #footer-second-content .widget_nav_menu ul#menu-footer-menu a {
  color: #151515 !important;
}
@media only screen and (min-width: 1201px) {
  .page-template-fortieth-bash .site-footer #footer-second #footer-second-content .copyright {
    flex-basis: 40% !important;
    max-width: 40% !important;
  }
}
.page-template-fortieth-bash .site-footer #footer-second #footer-second-content .copyright p {
  color: #151515 !important;
  font-size: 0.75rem !important;
  font-family: "Albert Sans" !important;
}

.page-template-fortieth-bash .metrics-blocks {
  background-color: #8ce7f4;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 40px 0;
  width: 100vw;
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap {
  flex-wrap: wrap;
  padding: 1rem 3rem;
  max-width: 75rem;
}
@media only screen and (min-width: 1201px) {
  .page-template-fortieth-bash .metrics-blocks .metrics-wrap {
    flex-wrap: nowrap;
    padding: 1rem;
  }
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-content {
  flex: 0 1 auto;
  text-align: left;
  padding-right: 10%;
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-content .metrics-body p {
  color: #151515;
  font-size: 2.375rem;
  line-height: 2.375rem;
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-sub-wrap {
  flex: 1 1 auto;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1201px) {
  .page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-sub-wrap {
    flex-wrap: nowrap;
  }
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-sub-wrap .metrics-container {
  text-align: left;
  padding-left: 0 !important;
}
@media only screen and (min-width: 1201px) {
  .page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-sub-wrap .metrics-container {
    text-align: right;
    padding: 0 0 0 1.5rem !important;
  }
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-sub-wrap .metrics-container .metrics-number {
  color: #151515;
  font-size: 3.125rem;
  font-weight: 700;
  font-family: "Albert Sans";
}
.page-template-fortieth-bash .metrics-blocks .metrics-wrap .metrics-sub-wrap .metrics-container .metrics-descriptiony p {
  color: #151515;
  font-family: "Albert Sans";
}

.page-template-fortieth-bash .fortieth-video-intro {
  margin: auto;
  max-width: 1128px;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column .vc-video-container {
  text-align: center;
  position: relative;
  margin: 0 0 52px 26px;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column .vc-video-container::after {
  content: "";
  border-radius: 30px;
  background-color: #fb3893;
  display: block;
  position: absolute;
  top: 26px;
  left: -26px;
  z-index: 1;
  padding-bottom: 56%;
  width: 100%;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column .vc-video-container .wp-block-video {
  border-radius: 25px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 56%;
  width: 100%;
  max-width: 100%;
  height: 0;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column .vc-video-container .wp-block-video video {
  position: absolute;
  top: -1%;
  left: -1%;
  z-index: 4;
  width: 102%;
  height: 102%;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column .vc-video-container .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  float: none;
  clear: both;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 53.25%;
  width: 100%;
  max-width: 100%;
  height: 0;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column .vc-video-container .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column h2.wp-block-heading {
  color: #151515;
  font-weight: 300;
}
.page-template-fortieth-bash .fortieth-video-intro .wp-block-column h2.wp-block-heading strong {
  color: #fb3893;
  font-weight: 700;
}

.page-template-fortieth-bash .vc-expect-block {
  background: #151515;
  padding-top: 118px;
}
.page-template-fortieth-bash .vc-expect-block::before {
  content: none;
}
.page-template-fortieth-bash .vc-expect-block .vc-expect-header {
  padding-bottom: 75px;
}
.page-template-fortieth-bash .vc-expect-block .vc-expert-content-row {
  background: none;
}
.page-template-fortieth-bash .vc-expect-block .vc-expert-content-row:last-child {
  padding-bottom: 135px;
}
.page-template-fortieth-bash .vc-expect-block .vc-expert-content-row:last-child::after {
  content: none;
}
.page-template-fortieth-bash .vc-expect-block .vc-expert-content-row .vc-expert-content .vc-content-inner .vc-intro-header {
  color: #43ffa6;
}

.page-template-fortieth-bash .vc-tickets-block .vc-tickets-table-container .vc-tickets-price-column-headers.columns-2 .vc-tickets-price-column {
  flex: 0 1 50%;
}
.page-template-fortieth-bash .vc-tickets-block .vc-tickets-table-container .vc-tickets-price-column-headers.columns-3 .vc-tickets-price-column {
  flex: 0 1 33.3333333333%;
}
.page-template-fortieth-bash .vc-tickets-block .vc-tickets-table-container .vc-tickets-type-group .vc-tickets-type-header {
  background: #151515;
}
.page-template-fortieth-bash .vc-tickets-block .vc-tickets-table-container .vc-tickets-type-group .vc-tickets-type-row > div {
  flex: 0 1 100%;
}
@media only screen and (min-width: 769px) {
  .page-template-fortieth-bash .vc-tickets-block .vc-tickets-table-container .vc-tickets-type-group .vc-tickets-type-row > div {
    flex: 0 1 50%;
  }
}
.page-template-fortieth-bash .vc-tickets-block .vc-tickets-link a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 15px;
  background: #fb3893;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin-top: 1.5rem;
  padding: 20px 38px;
  transition: all 0.3s ease;
}
.page-template-fortieth-bash .vc-tickets-block .vc-tickets-link a:hover {
  background: #9d5dee;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}

.venue-map.wp-block-group {
  background: rgba(34, 34, 34, 0);
  background: linear-gradient(0deg, rgba(34, 34, 34, 0) 80%, rgba(44, 122, 118, 0.12) 100%);
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-top: 70px;
  padding-bottom: 84px;
  width: 100vw;
}
.venue-map.wp-block-group .wp-block-group__inner-container {
  margin: auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 75rem;
}
.venue-map.wp-block-group .wp-block-heading strong {
  color: #11aacc;
}
.venue-map.wp-block-group .wp-block-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.venue-map.wp-block-group .wp-block-list li {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem 1rem;
}
.venue-map.wp-block-group .wp-block-list li img {
  margin-right: 0.5rem;
}

.countdown-bash.wp-block-group {
  background-color: #151515;
  position: relative;
  left: 50%;
  z-index: 1;
  margin-left: -50vw;
  width: 100vw;
}
.countdown-bash.wp-block-group::before {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(91, 235, 255, 0.3) 0%, rgba(91, 235, 255, 0) 84.99%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container {
  position: relative;
  z-index: 3;
  margin: auto;
  padding-top: 120px;
  padding-bottom: 130px;
  width: 100%;
  max-width: 976px;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container .wp-block-heading,
.countdown-bash.wp-block-group .wp-block-group__inner-container p {
  color: #fff;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container .wp-block-heading[style*="#43ffa6"] {
  color: #fff !important;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container .wp-block-heading[style*="#43ffa6"] strong {
  color: #43ffa6;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container #mc_embed_signup {
  color: #fff;
  background: transparent;
  margin: auto;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container #mc_embed_signup .mc-field-group input[type=email] {
  color: #fff;
  border-style: none;
  border-radius: 15px;
  background-color: #666;
  width: 100%;
  height: 60px;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container #mc_embed_signup .mc-field-group .helper_text {
  background: transparent;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container #mc_embed_signup .clear {
  text-align: center;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container #mc_embed_signup .clear .button {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #fb3893;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.45);
  margin: 0;
  padding: 0.5rem 1.5rem;
  height: auto;
}
.countdown-bash.wp-block-group .wp-block-group__inner-container #mc_embed_signup .clear .button:hover {
  background: #9d5dee;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  transition: all 0.15s ease;
}
.countdown-bash.wp-block-group .content_countdown.animated .countdown .ClassyCountdown-wrapper {
  float: none;
}
.countdown-bash.wp-block-group .content_countdown.animated .countdown .ClassyCountdown-wrapper .ClassyCountdown-value {
  font-family: "Albert Sans" !important;
}

#__bs_notify__ {
  /* Move notification to bottom-left */
  color: #fff !important;
  font-size: 0.9375rem !important;
  font-weight: 500;
  text-shadow: 0 -1px 0 #000;
  border-top-right-radius: 8px !important;
  border-bottom-left-radius: 0 !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset -1px 0 0 0 rgba(255, 255, 255, 0.3), 0 -1px 0 0 rgba(0, 0, 0, 0.75), 1px 0 0 0 rgba(0, 0, 0, 0.75);
  top: auto !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  padding: 20px 25px !important;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

/*# sourceMappingURL=style.css.map */