@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

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

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

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

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

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

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

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

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

/**
 *  Global color variables.
 *	The underscore Never use them directly in the styles, only for functions and mixins.
 */
/**
 *  Organize color variables in a Sass Map.
 *  This way, the colors can be iterated, are more organized, and are more intuitive to reference.
 */
/* ==========================================================================
   Config settings
   ========================================================================== */
@font-face {
  font-family: "Gotham-Medium";
  src: url("../../fonts/GothamSSm-Medium_Web.eot");
  src: url("../../fonts/GothamSSm-Medium_Web.eot?#iefix") format("embedded-opentype"), url("../../fonts/GothamSSm-Medium_Web.woff2") format("woff2"), url("../../fonts/GothamSSm-Medium_Web.woff") format("woff"), url("../../fonts/GothamSSm-Medium_Web.ttf") format("truetype"), url("../../fonts/GothamSSm-Medium_Web.svg#typo_groteskregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gotham-Light";
  src: url("../../fonts/GothamLight.eot");
  src: url("../../fonts/GothamLight.eot.eot?#iefix") format("embedded-opentype"), url("../../fonts/GothamLight.woff2") format("woff2"), url("../../fonts/GothamLight.woff") format("woff"), url("../../fonts/Gotham-Light.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gotham-Book";
  src: url("../../fonts/GothamSSm-Book_Web.eot");
  src: url("../../fonts/GothamSSm-Book_Web.eot?#iefix") format("embedded-opentype"), url("../../fonts/GothamSSm-Book_Web.woff2") format("woff2"), url("../../fonts/GothamSSm-Book_Web.woff") format("woff"), url("../../fonts/GothamSSm-Book_Web.ttf") format("truetype"), url("../../fonts/GothamSSm-Book_Web.svg#typo_groteskregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham";
  src: url("../../fonts/GothamSSm-Book_Web.eot");
  src: url("../../fonts/GothamSSm-Book_Web.eot?#iefix") format("embedded-opentype"), url("../../fonts/GothamSSm-Book_Web.woff2") format("woff2"), url("../../fonts/GothamSSm-Book_Web.woff") format("woff"), url("../../fonts/GothamSSm-Book_Web.ttf") format("truetype"), url("../../fonts/GothamSSm-Book_Web.svg#typo_groteskregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sohne";
  src: url("../../fonts/Sohne-Buch.eot");
  src: url("../../fonts/Sohne-Buch.eot?#iefix") format("embedded-opentype"), url("../../fonts/Sohne-Buch.woff2") format("woff2"), url("../../fonts/Sohne-Buch.woff") format("woff"), url("../../fonts/Sohne-Buch.ttf") format("truetype"), url("../../fonts/Sohne-Buch.svg#Sohne-Buch") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sohne-Medium";
  src: url("../../fonts/Sohne-Kraftig.eot");
  src: url("../../fonts/Sohne-Kraftig.eot?#iefix") format("embedded-opentype"), url("../../fonts/Sohne-Kraftig.woff2") format("woff2"), url("../../fonts/Sohne-Kraftig.woff") format("woff"), url("../../fonts/Sohne-Kraftig.ttf") format("truetype"), url("../../fonts/Sohne-Kraftig.svg#Sohne-Kraftig") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sohne-Semibold";
  src: url("../../fonts/Sohne-Halbfett.eot");
  src: url("../../fonts/Sohne-Halbfett.eot?#iefix") format("embedded-opentype"), url("../../fonts/Sohne-Halbfett.woff2") format("woff2"), url("../../fonts/Sohne-Halbfett.woff") format("woff"), url("../../fonts/Sohne-Halbfett.ttf") format("truetype"), url("../../fonts/Sohne-Halbfett.svg#Sohne-Halbfett") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "IntelOne-Regular";
  src: url("../../fonts/Intelone/intelonedisplayregular.eot");
  src: url("../../fonts/Intelone/intelonedisplayregular.eot") format("embedded-opentype"), url("../../fonts/Intelone/intelonedisplayregular.woff2") format("woff2"), url("../../fonts/Intelone/intelonedisplayregular.woff") format("woff"), url("../../fonts/Intelone/intelonedisplayregular.ttf") format("truetype"), url("../../fonts/Intelone/intelonedisplayregular.svg#intelonedisplayregular") format("svg");
}
/** =====================================================================================
 *  Defines the typographic baseline.
 *  We define every size in pixels, the underlying system converts the
 *  respective units to the responsive REM value.
 ===================================================================================== */
/**
 * Our base font-size and line-height
 */
/**
 *	Here we assign short names for the font families
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after, .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-blue,
.swiper-button-next.swiper-button-blue {
  --swiper-navigation-color: #007bff;
}

.swiper-button-prev.swiper-button-indigo,
.swiper-button-next.swiper-button-indigo {
  --swiper-navigation-color: #6610f2;
}

.swiper-button-prev.swiper-button-purple,
.swiper-button-next.swiper-button-purple {
  --swiper-navigation-color: #6f42c1;
}

.swiper-button-prev.swiper-button-pink,
.swiper-button-next.swiper-button-pink {
  --swiper-navigation-color: #e83e8c;
}

.swiper-button-prev.swiper-button-red,
.swiper-button-next.swiper-button-red {
  --swiper-navigation-color: #dc3545;
}

.swiper-button-prev.swiper-button-orange,
.swiper-button-next.swiper-button-orange {
  --swiper-navigation-color: #fd7e14;
}

.swiper-button-prev.swiper-button-yellow,
.swiper-button-next.swiper-button-yellow {
  --swiper-navigation-color: #ffc107;
}

.swiper-button-prev.swiper-button-green,
.swiper-button-next.swiper-button-green {
  --swiper-navigation-color: #28a745;
}

.swiper-button-prev.swiper-button-teal,
.swiper-button-next.swiper-button-teal {
  --swiper-navigation-color: #20c997;
}

.swiper-button-prev.swiper-button-cyan,
.swiper-button-next.swiper-button-cyan {
  --swiper-navigation-color: #17a2b8;
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-prev.swiper-button-gray,
.swiper-button-next.swiper-button-gray {
  --swiper-navigation-color: #6c757d;
}

.swiper-button-prev.swiper-button-gray-dark,
.swiper-button-next.swiper-button-gray-dark {
  --swiper-navigation-color: #343a40;
}

.swiper-button-lock {
  display: none;
}

/* ==========================================================================
 * Font related functions
 * ========================================================================== */
/**
 *  Calculate line-height ratio from font-size and line-height in px value
 */
/**
 *  Mixin for setting font-size in REM through a Sass Map with all available sizes

    USAGE:

    .myClass {
        @include font-size(x-large);
    }

 */
/**
 *	A simple function for accessing the font families from our mapping

	USAGE:

	span {
		@include font-family(primary);
	}

 */
/**
 *  Font mixin for setting font-size, font-weight, and line-height

    USAGE:

    .myClass {
        @include font(x-large, 34, 500);
    }

    .myClass {
      @include font(medium, $weight: 300);
    }

 */
/* Media query mixin for writing Mobile First
 * ========================================== */
/** =====================================================================================
 *  Toolbox functions
 ===================================================================================== */
/**
 *  Maths helpers.
 *  Halve and double numbers, returning rounded integers.

    USAGE:

    .foo {
        padding: halve(30px);
    }

 */
/**
 *  Remove the unit of a length
 *  @param {Number} $number - Number to remove unit from
 *  @return {Number} - Unitless number
 */
/* Check if value is number */
/* Value to Em */
/* Value to Rem */
/**
 *	A simple function for accessing the colors from our mapping
 *	To access colors in our palette, we use a very simple custom Sass function

	USAGE:

	a {
		color: palette(primary);

		&:hover {
			color: palette(primary, 400);
		}
	}

 */
/**
 *	A simple function for setting a consistent box-shadow

	USAGE:

	.card {
		@include box-shadow();
	}

	.card--alt {
		@include box-shadow(low);
	}

 */
/**
 *	A simple function for setting a consistent border-radius

	USAGE:

	.card {
		@include border-radius;
	}

	.card--alt {
		@include border-radius(large);
	}

 */
/**
 * Lobotomized Owl Selector mixin:
 * - Set spacing for consecutive items with margin-top on all but the first item

	USAGE:

	.box {
		@include owl-children;
	}

	.card__item {
		@include owl;
	}

 */
/**
 *  Show hyphens for every browser supporting it
 *  and will break lines in every other browser
 */
/*
 *  Restrict an element to a max-width for creating gutters on the side
 */
/*!
 * Font Awesome Free 5.12.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s linear infinite;
}

.fa-pulse {
  animation: fa-spin 1s steps(8) infinite;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scaleX(-1);
}

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "勒";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "龜";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "邏";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "凌";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-link2:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "駱";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "稜";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "爛";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "綾";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "論";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-x-twitter:before {
  content: "\e61b";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "雷";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url(../../fonts/fontawesome/webfonts/fa-brands-400.eot?twitter=update);
  src: url(../../fonts/fontawesome/webfonts/fa-brands-400.eot?twitter=update#iefix) format("embedded-opentype"), url(../../fonts/fontawesome/webfonts/fa-brands-400.woff2?twitter=update) format("woff2"), url(../../fonts/fontawesome/webfonts/fa-brands-400.woff?twitter=update) format("woff"), url(../../fonts/fontawesome/webfonts/fa-brands-400.ttf?twitter=update) format("truetype"), url(../../fonts/fontawesome/webfonts/fa-brands-400.svg?twitter=update#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url(../../fonts/fontawesome/webfonts/fa-regular-400.eot);
  src: url(../../fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(../../fonts/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"), url(../../fonts/fontawesome/webfonts/fa-regular-400.woff) format("woff"), url(../../fonts/fontawesome/webfonts/fa-regular-400.ttf) format("truetype"), url(../../fonts/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format("svg");
}
.fab,
.far {
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url(../../fonts/fontawesome/webfonts/fa-solid-900.eot);
  src: url(../../fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../../fonts/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"), url(../../fonts/fontawesome/webfonts/fa-solid-900.woff) format("woff"), url(../../fonts/fontawesome/webfonts/fa-solid-900.ttf) format("truetype"), url(../../fonts/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format("svg");
}
.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}

.fa,
.fas {
  font-weight: 900;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* ==========================================================================
 * Basic elements (no class selectors allowed)
 * ========================================================================== */
/**
 * Set up the html
 *
 * 1. Makes sure that some fonts are better rendered
 * 2. Set font to lining figures
 */
html {
  /*  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "lnum";*/
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #0a0a0a;
}
body .container {
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) {
  body .container {
    max-width: 708px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 960px) {
  body .container {
    max-width: 940px;
  }
}
@media screen and (min-width: 1240px) {
  body .container {
    max-width: 1200px;
  }
}

/**
 * [1] Make sure elements like input and textarea inherit some base properties
 *     https://www.smashingmagazine.com/2016/11/css-inheritance-cascade-global-scope-new-old-worst-best-friends/
 *
 * [2] Setting box-sizing the best way per:
 *     https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
* {
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

.logged-in:not(.admin-bar) {
  margin-top: 0px !important;
}

/**
 * [1] Turn off text-shadow when selecting text for better readability
 */
::-moz-selection {
  background: #f0b000;
  color: inherit;
  text-shadow: none;
  /* [1] */
}
::selection {
  background: #f0b000;
  color: inherit;
  text-shadow: none;
  /* [1] */
}

/* Remove default margin around figure
 */
figure {
  margin: 0;
}

/**
 * [1] Setting 'vertical-align' removes the whitespace that appears under 'img'
 *	   elements when they are dropped into a page as-is. Safer alternative to
 *	   using 'display: block;'.
 * [2] Remove border / especially on older browsers
 */
img,
svg {
  display: block;
  vertical-align: middle;
  /*[1]*/
  border: none;
  /*[2]*/
  max-width: 100%;
  height: auto;
}

a {
  color: #000;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
ul,
ol,
dd,
figure,
pre,
table,
fieldset,
hr {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin: 0 0 16px;
  line-height: 1.75;
}

/** =====================================================================================
 *  Lists
 ===================================================================================== */
/**
 *	Default indentation value for lists
 */
ul,
ol {
  padding: 0;
  margin: 0;
  margin-left: 0;
}

dd {
  margin-left: 0;
}

/**
 *	Remove extra vertical spacing when nesting lists.
 */
li {
  list-style-type: none;
}
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
*	list-items needs resetting for our Lobotomized Owl selector
*/
li + li {
  margin-top: 0;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-button {
  display: inline-block;
  text-align: center;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  cursor: pointer;
}
.c-button a {
  color: inherit;
}

.c-button--white {
  background-color: transparent !important;
  border-color: #fff !important;
}

.c-button--outline {
  padding: 14px 20px;
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 2px;
  transition: color 0.3s, background-color 0.3s;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 700;
}
.c-button--outline:hover, .c-button--outline:active {
  color: #fff;
  background-color: #000;
}

.c-button--outline-transparent {
  padding: 4px 10px;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  transition: color 0.3s, background-color 0.3s;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(16 / 12);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 576px) {
  .c-button--outline-transparent {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(18 / 14);
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .c-button--outline-transparent {
    padding: 6px 20px;
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(20 / 16);
    font-weight: 400;
  }
}
.c-button--outline-transparent:hover, .c-button--outline-transparent:active {
  color: #000;
  background-color: #fff;
}

.c-button--blue {
  padding: 7px 20px;
  background-color: #3a7aee;
  border-radius: 8px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1200px) {
  .c-button--blue {
    padding: 7px 38px;
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(17 / 14);
    font-weight: 400;
  }
}
.c-button--blue:hover, .c-button--blue:active {
  background-color: #54bbff;
}

.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.c-link--title {
  color: inherit;
}
.c-link--title:hover {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.c-link-img:hover {
  cursor: pointer;
  text-decoration: none;
}

.c-wysiwyg p {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  margin-bottom: 15px;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg p {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(21 / 13);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-wysiwyg p {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(25 / 14);
    font-weight: 400;
  }
}
.c-wysiwyg a {
  color: #626262;
}
.c-wysiwyg a:hover {
  color: #f0b000;
  text-decoration: underline;
}
.c-wysiwyg img {
  margin-bottom: 20px;
}

.archive.author .c-latest:after,
.archive.tag .c-latest:after,
.archive.category .c-latest:after {
  width: 0;
  height: 0;
}

.c-latest {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-latest:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: -25px;
    right: -15px;
    width: 1px;
    background-color: #efefef;
  }
}
.s-single-post .c-latest:after {
  display: none;
}

.c-latest__header {
  padding-bottom: 5px;
}

.c-latest__title {
  font-family: "Merriweather", serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(18 / 16);
  font-weight: 700;
}

.c-latest__body {
  position: relative;
}
.c-latest__body .swiper-container {
  padding: 0 15px;
}

.c-latest__navigation .swiper-button-next,
.c-latest__navigation .swiper-button-prev {
  width: 24px;
  height: 24px;
  color: #000;
}
.c-latest__navigation .swiper-button-next:after,
.c-latest__navigation .swiper-button-prev:after {
  font-size: 24px;
}
.c-latest__navigation .swiper-button-next {
  right: -10px;
}
.c-latest__navigation .swiper-button-prev {
  left: -10px;
}

.c-big-post {
  padding-bottom: 23px;
}
.c-big-post__heading {
  margin-bottom: 15px;
}
.c-big-post__title {
  font-size: calc(24 / 16 * 1rem);
  line-height: calc(28 / 24);
  font-weight: 700;
  font-family: "Merriweather", serif;
  color: #0a0a0a;
}
@media screen and (min-width: 768px) {
  .c-big-post__title {
    font-size: calc(36 / 16 * 1rem);
    line-height: calc(45 / 36);
    font-weight: 700;
  }
}
.c-big-post__img {
  margin-bottom: 15px;
  border: 1px solid #efefef;
}
.c-big-post__img a:hover img {
  transform: scale(1.05);
}
.c-big-post__img img {
  width: 100%;
  transition: 0.2s linear;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-big-post__content {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(22 / 16);
  font-weight: 400;
  line-height: 1.1875;
}
.c-big-post__content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0;
}
.c-big-post .btn__readMore {
  font-size: 13px;
}

.s-events .c-big-post__img a {
  padding-bottom: 0;
}
.s-events .c-big-post__img img {
  position: relative;
  width: 100%;
  height: auto;
}

.c-post-lg {
  padding: 15px 0;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .c-post-lg {
    padding: 5px 0 0;
  }
  .c-latest__body .c-post-lg {
    padding: 15px 0;
  }
}
.c-post-lg__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 900;
  font-family: "Merriweather", serif;
  color: #000;
}
.c-post-lg__title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  line-height: 1.2;
}
.c-post-lg__subtitle {
  font-size: calc(10 / 16 * 1rem);
  line-height: calc(12 / 10);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  color: #808080;
}
.c-post-lg__img + .c-post-lg__subtitle {
  margin: 10px 0 5px;
}
.c-post-lg__img {
  margin-bottom: 10px;
  border: 1px solid #efefef;
}
.c-post-lg__img img {
  width: 100%;
}
.c-post-lg__date {
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(14 / 12);
  font-weight: 400;
  color: #686868;
}
.c-post-lg__title + .c-post-lg__date {
  margin-top: 3px;
}
.c-post-lg__description {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 400;
}
.c-post-lg__date + .c-post-lg__description {
  margin-top: 8px;
}
.c-post-lg__description p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
  line-height: 1.4;
}

.c-latest .c-latest__body .c-post-lg.u-border--bottom:last-child:before {
  height: 0 !important;
}

.c-post-md {
  padding: 15px 5px 20px 0;
}
@media screen and (min-width: 768px) {
  .c-post-md {
    padding: 20px 0;
  }
}
.c-post-md__title {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(18 / 16);
  font-weight: 900;
  font-family: "Merriweather", serif;
  color: #000;
}
.c-post-md__title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-post-md__subtitle + .c-post-md__title {
    margin-top: 4px;
  }
}
.c-post-md__subtitle {
  display: none;
  font-size: calc(10 / 16 * 1rem);
  line-height: calc(10 / 10);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  color: #808080;
}
@media screen and (min-width: 768px) {
  .c-post-md__subtitle {
    display: block;
  }
}
.c-post-md__description {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 400;
}
.c-post-md__description p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
  line-height: 1.4;
}
.c-post-md__title + .c-post-md__description {
  margin-top: 10px;
}
.c-post-md__date {
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(14 / 12);
  font-weight: 400;
  color: #808080;
}
.c-post-md__title + .c-post-md__date {
  margin-top: 5px;
}

.c-square-banner {
  margin-top: 15px;
}

.c-square-banner img {
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-video-live {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-video-live:after {
    content: "";
    position: absolute;
    top: -15px;
    bottom: 0;
    right: -15px;
    width: 1px;
    background-color: #efefef;
  }
}
.s-single-post .c-video-live {
  padding-top: 0;
}
.s-single-post .c-video-live:after {
  display: none;
}

.c-video-live__header {
  width: 80px;
  margin-bottom: 8px;
}

.c-video-live__wrap {
  position: relative;
}
.c-video-live__wrap .embed-containter {
  overflow: hidden;
}
.c-video-live__wrap .embed-containter iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  display: block;
}
.c-video-live__wrap .c-image-live__wrap {
  position: relative;
}
.c-video-live__wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-video-live__link {
  display: block;
  width: 100%;
  background-color: transparent;
  z-index: 20;
  overflow: hidden;
}

.c-wysiwyg p {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  margin-bottom: 15px;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-wysiwyg p {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(21 / 13);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-wysiwyg p {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(25 / 14);
    font-weight: 400;
  }
}
.c-wysiwyg a {
  color: #626262;
}
.c-wysiwyg a:hover {
  color: #f0b000;
  text-decoration: underline;
}
.c-wysiwyg img {
  margin-bottom: 20px;
}

.modal.subscribe {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .modal.subscribe .modal-content {
    width: 75% !important;
  }
}
@media (max-width: 450px) {
  .modal.subscribe .modal-content {
    width: 95% !important;
  }
}
.modal.subscribe .modal-content {
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px;
  border: 1px solid #888;
  width: 35%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #afa6a6;
}
.modal.subscribe .modal-content p {
  font-size: 17px;
  margin-top: 10px;
}
.modal.subscribe .modal-content img {
  width: 70px;
}
.modal.subscribe .modal-content .thankYouMessage p {
  text-align: center;
  margin-bottom: 0;
}
.modal.subscribe .modal-content .thankYouMessage p:last-child {
  margin-top: 0;
  margin-bottom: 10px;
}
.modal.subscribe .modal-content .emailForm {
  display: flex;
  align-items: center;
  width: 100%;
}
.modal.subscribe .modal-content .emailForm .emailInput {
  padding: 10px;
  margin-right: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
}
.modal.subscribe .modal-content .emailForm input[type=submit] {
  background-color: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}
.modal.subscribe .modal-content .emailForm input[type=submit]:hover {
  background-color: #0056b3;
}

.c-footer-nav__item:not(:last-child) {
  margin-bottom: 10px;
}

.c-footer-nav__link {
  color: #fff;
  display: block;
  font-family: "Sohne", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(24 / 16);
  font-weight: 400;
}
.c-footer-nav__link:hover {
  color: #f0b000;
  text-decoration: underline;
}

.c-footer-nav__contact-links {
  margin-top: 10px;
}
.c-footer-nav__contact-links a {
  color: #fff;
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: 0.3s;
}
.c-footer-nav__contact-links a:not(:last-child) {
  margin-right: 10px;
}
.c-footer-nav__contact-links a:hover {
  background-color: #1664D5;
}

.c-industries-post__img {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .c-industries-post__img {
    margin-bottom: 50px;
  }
}
.c-industries-post__img img {
  margin: 0 auto;
}

.c-editor-picks {
  position: relative;
}
.c-editor-picks .c-post-lg {
  padding: 0;
  margin-bottom: 15px;
}
.c-editor-picks .c-post-lg:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-editor-picks__header {
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.c-editor-picks .c-post-md__title {
  line-height: 1.25;
  margin-bottom: 0;
  font-size: 14px;
}
.c-editor-picks .c-post-md__title a {
  display: block;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-editor-picks:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: -15px;
    left: -15px;
    width: 1px;
    background-color: #efefef;
  }
}

.c-editor-picks__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #808080;
}
@media screen and (min-width: 960px) {
  .c-editor-picks__title {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(25 / 15);
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .c-editor-picks__title {
    margin-bottom: 5px;
  }
}

.c-featured-show {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-featured-show:after {
    content: "";
    position: absolute;
    top: -15px;
    bottom: 0;
    left: -15px;
    width: 1px;
    background-color: #efefef;
  }
}

.c-featured-show__header {
  margin-bottom: 5px;
}

.c-featured-show__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #808080;
}
@media screen and (min-width: 960px) {
  .c-featured-show__title {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(25 / 15);
    font-weight: 700;
  }
}

.c-featured-show__body {
  border-radius: 5px;
  overflow: hidden;
}

.c-featured-show__footer {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(18 / 16);
  font-weight: 700;
  font-family: "Merriweather", serif;
}
.c-featured-show__body + .c-featured-show__footer {
  margin-top: 10px;
}

.c-featured-show__footer-title {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(18 / 16);
  font-weight: 700;
}
.c-featured-show__footer-title:hover {
  text-decoration: underline;
  cursor: pointer;
}

.c-card-learning {
  margin-bottom: 46px;
}

.c-card-learning__img img {
  width: 100%;
}

.c-card-learning__info {
  padding: 10px 0;
}

.c-card-learning__title {
  margin-bottom: 5px;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(22 / 16);
  font-weight: 700;
  color: #fff;
  font-weight: 400;
}
.c-card-learning__title:hover {
  opacity: 0.85;
}
.c-card-learning__title a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.c-card-learning__date {
  margin-bottom: 10px;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(14 / 14);
  font-weight: 400;
  color: #b23e3e;
  transition: opacity 0.3s;
}
.c-card-learning__date:hover {
  opacity: 0.85;
}
.c-card-learning__date a {
  color: inherit;
}

.c-card-learning__description {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(25 / 16);
  font-weight: 400;
}
.c-card-learning__description p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.c-card-learning__description p:last-child {
  margin-bottom: 0;
}

.c-live .c-link--img {
  margin-bottom: 20px;
  display: block;
  border: 1px solid #efefef;
}
.c-live .c-intro {
  padding: 15px 0 !important;
}

.c-live--dark {
  padding: 15px;
  background-color: #000;
  color: #fff;
}

.c-live__video {
  margin: 10px 0;
}

.c-live__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 900;
  font-family: "Merriweather", serif;
  margin-bottom: 5px;
}

.c-industries-card {
  margin-bottom: 20px;
}

.c-industries-card__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #808080;
  padding: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .c-industries-card__title {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(21 / 13);
    font-weight: 700;
  }
}
@media screen and (min-width: 992px) {
  .c-industries-card__title {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(25 / 15);
    font-weight: 700;
  }
}
.c-industries-card__title h4,
.c-industries-card__title a {
  color: inherit;
}
.c-industries-card__title h4:hover,
.c-industries-card__title a:hover {
  color: #000;
}

.c-industries-card__img {
  margin-bottom: 20px;
  max-height: 250px;
  border: 1px solid #efefef;
}
@media screen and (min-width: 768px) {
  .c-industries-card__img {
    height: 82px;
  }
}
@media screen and (min-width: 960px) {
  .c-industries-card__img {
    height: 115px;
  }
}
@media screen and (min-width: 1240px) {
  .c-industries-card__img {
    height: 152px;
  }
}
.c-industries-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-industries-card__body-item {
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(15 / 12);
  font-weight: 900;
  font-family: "Merriweather", serif;
}
.c-industries-card__body-item:hover {
  text-decoration: underline;
  opacity: 0.85;
}
.c-industries-card__body-item:last-child {
  margin-bottom: 0;
  /* &::before {
          display: none;
      } */
}
@media screen and (min-width: 768px) {
  .c-industries-card__body-item.u-border--bottom::before {
    display: none;
  }
}

.c-top-menu .nav-top {
  display: flex;
}
.c-top-menu .menu-item {
  margin-left: 12px;
}
.c-top-menu .menu-item a {
  color: #fff;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(21 / 14);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
.c-top-menu .menu-item a:hover, .c-top-menu .menu-item a:active {
  text-decoration: underline;
}

.o-header__top-block .c-top-menu .nav-top {
  display: flex;
}
.o-header__top-block .c-top-menu .menu-item {
  margin-left: 0;
}
.o-header__top-block .c-top-menu .menu-item a {
  color: #fff;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(21 / 14);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
.o-header__top-block .c-top-menu .menu-item a:hover, .o-header__top-block .c-top-menu .menu-item a:active {
  text-decoration: underline;
}

.c-main-menu__list {
  display: flex;
  flex-direction: column;
}
.c-main-menu__list > .menu-item {
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.c-main-menu__list > .menu-item > a {
  position: relative;
  display: block;
  padding: 10px 0;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 300;
  font-family: "Sohne", sans-serif;
  color: #fff;
  line-height: 1.25;
}
@media screen and (max-width: 1239px) {
  .c-main-menu__list > .menu-item:hover > a {
    color: #fff;
  }
  .c-main-menu__list > .menu-item:hover > a:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 1240px) {
  .c-main-menu__list > .menu-item:hover > a:before {
    opacity: 1;
  }
}
@media screen and (min-width: 1240px) {
  .c-main-menu__list > .current-menu-item a:before {
    opacity: 1;
  }
}
.c-main-menu__list > .current_page_item > a:before {
  opacity: 1;
}
.c-main-menu__list .sub-menu {
  display: none;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
}
.c-main-menu__list .sub-menu > .menu-item {
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 300;
  font-family: "Sohne", sans-serif;
}
@media screen and (min-width: 1240px) {
  .c-main-menu__list .sub-menu > .menu-item {
    font-size: calc(12 / 16 * 1rem);
    line-height: calc(25 / 12);
    font-weight: 400;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  }
}
.c-main-menu__list .sub-menu > .menu-item a {
  position: relative;
  display: block;
}
@media screen and (max-width: 1239px) {
  .c-main-menu__list .sub-menu > .menu-item a {
    padding: 14px 20px;
    color: #fff;
    box-sizing: border-box;
  }
  .c-main-menu__list .sub-menu > .menu-item a:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 1240px) {
  .c-main-menu__list .sub-menu > .menu-item a {
    display: inline-block;
    padding: 10px;
  }
}
@media screen and (max-width: 1239px) {
  .c-main-menu__list .sub-menu > .menu-item a:hover a {
    opacity: 0.5;
  }
}
.c-main-menu__list .menu-item__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
@media screen and (min-width: 1240px) {
  .c-main-menu__list .menu-item__icon {
    display: none;
  }
}
.c-main-menu__list .menu-item__icon:before, .c-main-menu__list .menu-item__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background-color: #fff;
}
.c-main-menu__list .menu-item__icon:after {
  transform: translateX(-50%) rotate(90deg);
  transition: transform 0.2s linear;
}
.c-main-menu__list .menu-item__icon:hover {
  opacity: 0.5;
}
.c-main-menu__list .open > a {
  color: #fff;
}
.c-main-menu__list .open .menu-item__icon:after {
  transform: translateX(-50%) rotate(0deg);
}

@media screen and (min-width: 1240px) {
  #primary-left-menu .sub-menu {
    width: 960px;
    left: 0;
    top: 100%;
    flex-wrap: wrap;
  }
  #primary-left-menu .sub-menu > .menu-item {
    width: 25%;
  }
}

@media screen and (min-width: 1240px) {
  #primary-right-menu .menu-item {
    position: relative;
  }
  #primary-right-menu .sub-menu {
    width: 200px;
    left: 0;
    top: 100%;
    flex-wrap: wrap;
  }
  #primary-right-menu .sub-menu > .menu-item {
    width: 100%;
  }
}
#primary-right-menu .sub-logged-in {
  display: none;
}

body.logged-in .sub-not-logged-in {
  display: none;
}
body.logged-in .sub-logged-in {
  display: block !important;
}

.c-search {
  color: #333333;
  cursor: pointer;
}

.c-search__wrap {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  background: #000;
  padding: 20px;
  border-radius: 5px;
  z-index: 20;
}
.c-search__wrap .screen-reader-text {
  display: none;
}
.c-search__wrap .search-submit {
  display: none;
}
.c-search__wrap .search-field {
  padding: 5px 0;
  color: #fff;
  width: 500px;
  background-color: #000;
  -webkit-box-shadow: inset 0 0 0 50px #000;
  -webkit-text-fill-color: #fff;
  border-bottom: 1px solid #fff;
  border-top: none;
  border-left: none;
  border-right: none;
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  caret-color: #fff;
}
.c-search__wrap input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.c-search__wrap input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.c-search__wrap input[type=search]::-webkit-search-decoration,
.c-search__wrap input[type=search]::-webkit-search-cancel-button,
.c-search__wrap input[type=search]::-webkit-search-results-button,
.c-search__wrap input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.c-search__wrap-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-search__last-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 5px;
}

.c-search__last-list {
  margin-bottom: 10px;
  margin-right: 10px;
}

.c-search__last-item {
  margin-bottom: 5px;
  color: #fff;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(20 / 16);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.c-search__last-item:last-child {
  margin-bottom: 0;
}

.c-search__last-title {
  color: #FF0000;
  margin-bottom: 15px;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(20 / 16);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}

.c-search__last {
  padding: 15px 15px 0 15px;
}

.c-search__wrap-close:hover {
  cursor: pointer;
}

.c-search__btn-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.c-search__btn-container .c-search__def a {
  display: inline-block;
  margin: 15px 0;
  padding: 4px 10px;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  color: #000;
  border: 2px solid #000;
  border-radius: 10px;
  transition: color 0.3s, background-color 0.3s;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
.c-search__btn-container .c-search__def a:hover, .c-search__btn-container .c-search__def a:active {
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .c-search__btn-container .c-search__def a {
    padding: 6px 20px;
  }
}

.search-results .search-page-container .c-post-md__date {
  margin-bottom: 8px;
}

.c-search__next {
  margin-left: auto;
}

.search-results .c-latest__body {
  padding: 0 15px;
}
@media screen and (min-width: 576px) {
  .search-results .c-latest__body {
    padding: 0;
  }
}
.search-results .c-post-sm {
  align-items: center;
  display: none;
}
@media screen and (min-width: 576px) {
  .search-results .c-post-sm {
    display: flex;
  }
}
.search-results .c-post-sm a {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  padding: 17px 0;
}
.search-results .c-post-sm a:hover img {
  transform: scale(1.1);
}
.search-results .c-post-sm a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}

body.search .search-submit {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.search .search-submit {
  height: 34px !important;
}

.c-all-shows__list {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-all-shows__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 15px 30px;
  }
}

.c-all-shows__item {
  padding: 2px 10px;
  margin: 0 5px 5px 0;
  border-radius: 30px;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.c-all-shows__item:hover {
  cursor: pointer;
}

.c-all-shows__item.active {
  background-color: #efefef;
  color: #666;
}

.c-all-shows__option-list {
  margin-bottom: 20px;
  padding: 10px 25px 10px 10px;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(16 / 14);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  color: #000;
  border-radius: 5px;
  border: 1px solid #efefef;
  -webkit-appearance: none;
  background-color: white;
  background-image: url(../../img/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 5px);
  background-position-y: 55%;
}
@media screen and (min-width: 768px) {
  .c-all-shows__option-list {
    display: none;
  }
}

.c-all-shows__categories {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-all-shows__categories {
    justify-content: flex-start;
  }
}

.s-episode-video.s-episode-video--wide {
  padding: 0 !important;
}
.s-episode-video.s-episode-video--wide iframe {
  width: 100%;
  min-height: 600px;
}

.c-mob-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  width: 100%;
  height: 100%;
  margin-top: 51px;
  padding-bottom: 51px;
  background-color: #191919;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .c-mob-menu {
    margin-top: 58px;
    padding-bottom: 58px;
  }
}
.c-mob-menu.open-menu {
  display: block;
}
.c-mob-menu__login-desc {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  margin-top: 50px;
}

.c-mob-menu__wrap {
  overflow: hidden;
}

.c-mob-menu__scroll {
  margin-top: 20px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 20px;
  box-sizing: content-box;
}

.c-mob-menu__menu {
  margin-top: 15px;
}

.c-mob-menu__footer {
  padding: 13px 15px 30px;
}
.c-mob-menu__footer .nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a6a6a6;
}
.c-mob-menu__footer .nav-top .menu-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.c-mob-menu__footer .nav-top a {
  color: inherit;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  padding: 0 6px;
  margin: 0 3px;
}
.c-mob-menu__footer .nav-top a:hover {
  color: #fff;
  text-decoration: underline;
}

.c-mob-menu__profile {
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 300;
  font-family: "Sohne", sans-serif;
  font-size: 1.2rem;
}
.c-mob-menu__profile .c-mob-menu__profile-info {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.c-mob-menu__profile .c-mob-menu__profile-info .c-mob-menu__profile-photo {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #fff; */
  border-radius: 100%;
  /* box-shadow: 0 0 0 1px rgb(0 0 0 / 10%), 0 1px 3px rgb(0 0 0 / 20%); */
  border: 1px solid rgba(251, 186, 168, 0.5);
}
.c-mob-menu__profile .c-mob-menu__profile-info .c-mob-menu__profile-photo span {
  background-color: #fbbaa8;
  color: #163c55;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 15px;
  border-radius: 100%;
  color: #000;
}
.c-mob-menu__profile .c-mob-menu__profile-info .c-mob-menu__profile-photo img {
  border-radius: inherit;
}
.c-mob-menu__profile a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.c-mob-menu__profile a:hover {
  color: #fff;
  text-decoration: underline;
}

.c-mob-search {
  position: relative;
  height: 55px;
  background: #676767;
  border-radius: 5px;
}

.c-mob-search__toggle {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 17px;
}

.c-mob-search__toggle-wrap {
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
}
.c-mob-search__toggle-wrap:hover {
  opacity: 0.5;
}

.c-mob-search__icon {
  width: 20px;
  height: 20px;
}

.c-mob-search__wrap {
  margin-left: 12px;
  display: none;
  align-items: center;
  position: relative;
  width: 100%;
  line-height: 1;
}
.c-mob-search__wrap input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.c-mob-search__wrap input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.c-mob-search__wrap input[type=search]::-webkit-search-decoration,
.c-mob-search__wrap input[type=search]::-webkit-search-cancel-button,
.c-mob-search__wrap input[type=search]::-webkit-search-results-button,
.c-mob-search__wrap input[type=search]::-webkit-search-results-decoration {
  display: none;
}
.c-mob-search__wrap .screen-reader-text {
  display: none;
}
.c-mob-search__wrap .search-field {
  border: none;
  padding: 0;
  background-color: transparent;
  color: #fff;
  width: 100%;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  font-size: 18px;
  line-height: 1.16;
  font-family: "Roboto", sans-serif;
}
.c-mob-search__wrap .search-form {
  width: 100%;
}
.c-mob-search__wrap .search-submit {
  display: none;
}
.c-mob-search__wrap .c-button {
  display: flex;
  align-items: center;
  padding: 1px 2px;
  font-size: calc(8 / 16 * 1rem);
  line-height: calc(12 / 8);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}

.c-mob-search__cancel {
  margin-left: 12px;
  width: 13px;
  cursor: pointer;
}
.c-mob-search__cancel:hover {
  opacity: 0.5;
}

.c-shows-category {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .c-shows-category {
    justify-content: flex-start;
  }
}

.c-shows-category__list {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-shows-category__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
}

.c-shows-category__list-item {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 132px;
  height: 65px;
  margin: 0 10px 15px;
  padding: 0 10px;
  background-color: #1a1a1a;
  border-radius: 30px;
}
.c-shows-category__list-item a {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 500;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #fff;
}
.c-shows-category__list-item:hover, .c-shows-category__list-item.current {
  background-color: #686868;
  cursor: pointer;
}

.c-shows-category__option {
  display: block;
}
@media screen and (min-width: 992px) {
  .c-shows-category__option {
    display: none;
  }
}

.c-shows__description {
  margin-right: 5px;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(15 / 13);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-shows__description {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(16 / 14);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .c-shows__description {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(18 / 16);
    font-weight: 500;
  }
}

.c-shows__provider {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-shows__provider {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(19 / 15);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-shows__provider {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(20 / 16);
    font-weight: 400;
  }
}

.c-shows {
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .c-shows {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .c-shows {
    margin-bottom: 50px;
  }
}
.c-shows .c-button {
  display: none;
  z-index: 2;
}

.c-shows__img {
  display: block;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.4%;
  position: relative;
}
.c-shows__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-shows__body {
  padding: 15px 0;
  min-height: 70px;
  opacity: 1;
}

.c-shows__btn-container {
  text-align: center;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .c-shows__btn-container {
    margin: 40px 0;
  }
}
.c-shows__btn-container .c-button {
  margin: 0 5px 15px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-shows__btn-container .c-button {
    margin: 0 10px 0;
  }
}

.c-shows__slider {
  margin-top: 10px;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .c-shows__slider {
    margin-top: 20px;
    margin-bottom: 45px;
  }
  .c-shows__slider::before {
    content: "";
    width: 200px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #000 20%, transparent 80%);
    z-index: 10;
  }
  .c-shows__slider::after {
    content: "";
    width: 200px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to left, #000 20%, transparent 80%);
    z-index: 10;
  }
}
.c-shows__slider .swiper-slide {
  width: 180px;
  padding: 0 25px;
}
.c-shows__slider .swiper-slide .c-link-img {
  display: inline-block;
}
.c-shows__slider .c-swiper-btn-prev,
.c-shows__slider .c-swiper-btn-next {
  top: 40%;
  z-index: 100;
  color: #fff;
}
.c-shows__slider .c-swiper-btn-prev:after,
.c-shows__slider .c-swiper-btn-next:after {
  font-size: calc(21 / 16 * 1rem);
  line-height: calc(25 / 21);
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .c-shows__slider .c-swiper-btn-prev:after,
  .c-shows__slider .c-swiper-btn-next:after {
    font-size: calc(36 / 16 * 1rem);
    line-height: calc(36 / 36);
    font-weight: 900;
  }
}
@media screen and (min-width: 1200px) {
  .c-shows__slider .c-swiper-btn-prev {
    left: -10px;
  }
}
@media screen and (min-width: 1400px) {
  .c-shows__slider .c-swiper-btn-prev {
    left: -15px;
  }
}
@media screen and (min-width: 1200px) {
  .c-shows__slider .c-swiper-btn-next {
    right: -10px;
  }
}
@media screen and (min-width: 1400px) {
  .c-shows__slider .c-swiper-btn-next {
    right: -15px;
  }
}

.c-shows__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 15px;
}

.c-video-lessons {
  margin-top: 30px;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  .c-video-lessons {
    margin-top: 0;
  }
}

.c-video-lessons__container {
  height: 100%;
  margin-right: -50px;
  padding-right: 50px;
  overflow-y: scroll;
}

.c-video-lessons__part:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #cfcfcf;
}
.c-video-lessons__part:last-child {
  margin-bottom: 100px;
}
@media screen and (min-width: 1200px) {
  .c-video-lessons__part:last-child {
    margin-bottom: 140px;
  }
}
@media screen and (min-width: 1300px) {
  .c-video-lessons__part:last-child {
    margin-bottom: 150px;
  }
}

.c-video-lessons__header {
  margin-bottom: 9px;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(18 / 15);
  font-weight: 400;
}

.c-video-lessons__thumb {
  margin-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  .c-video-lessons__thumb {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
}

.c-video-lessons__link {
  display: block;
}
@media screen and (min-width: 1200px) {
  .c-video-lessons__link {
    width: 40%;
  }
}
.c-video-lessons__link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.c-video-lessons__title {
  padding-top: 10px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .c-video-lessons__title {
    width: 60%;
    padding: 10px 20px;
  }
}
.c-video-lessons__title a {
  color: #fff;
}

.c-custom-header {
  background-color: #fff;
  z-index: 99;
  padding: 4px 0;
}

.c-custom-header__wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2000;
}

.c-custom-header__logo {
  width: 130px;
}
.c-custom-header__logo a {
  display: block;
}

.c-custom-header__profile {
  margin-left: 10px;
}

.c-custom-header__btn {
  position: relative;
  padding: 3px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.c-custom-header__btn span {
  width: 5px;
  height: 5px;
  background-color: #000;
  margin: 2px;
  border-radius: 100%;
}

@media screen and (min-width: 768px) {
  .c-show-page__card {
    padding: 0 10px;
  }
}
@media screen and (min-width: 992px) {
  .c-show-page__card {
    padding: 0 22px;
  }
}

.c-show-page__card-img {
  margin-bottom: 15px;
}
.c-show-page__card-img img {
  width: 100%;
}

.c-show-page__card-title {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 500;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-show-page__card-title {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(20 / 16);
    font-weight: 500;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  .c-show-page__card-title {
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(21 / 17);
    font-weight: 500;
  }
}
@media screen and (min-width: 1200px) {
  .c-show-page__card-title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(20 / 18);
    font-weight: 500;
    margin-bottom: 20px;
  }
}

.c-show-page__card-description {
  color: #c8c8c8;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(16 / 12);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}

.s-single-post {
  margin-top: 15px;
}

.s-shows-head {
  overflow: hidden;
}

.c-main-post {
  padding: 13px 0 30px;
}
@media screen and (min-width: 1200px) {
  .c-main-post {
    padding: 0px 30px 27px 0;
  }
}
.c-main-post img {
  width: 100%;
}

.c-main-post .c-main-post__content a {
  color: #044fa8 !important;
}

.c-main-post__title {
  font-family: "Merriweather", serif;
  font-size: calc(22 / 16 * 1rem);
  line-height: calc(26 / 22);
  font-weight: 700;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-main-post__title {
    font-size: calc(26 / 16 * 1rem);
    line-height: calc(31 / 26);
    font-weight: 700;
  }
}
@media screen and (min-width: 1200px) {
  .c-main-post__title {
    font-size: calc(30 / 16 * 1rem);
    line-height: calc(36 / 30);
    font-weight: 700;
  }
}

.c-main-post__date {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(16 / 14);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #757575;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-main-post__date {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(18 / 16);
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .c-main-post__date {
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(20 / 17);
    font-weight: 400;
  }
}

.c-main-post__tags {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  transition: max-height 0.8s;
}
.c-big-post__heading .c-main-post__tags {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .c-main-post__tags {
    max-height: 100% !important;
    opacity: 1 !important;
    justify-content: flex-end;
  }
}

.c-main-post__show-more {
  display: inline-block;
  margin-top: 5px;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(12 / 12);
  font-weight: 500;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
  color: #8c8c8c;
  background-color: #e6e6e6;
  padding: 2px;
}
@media screen and (min-width: 768px) {
  .c-main-post__show-more {
    display: none;
  }
}
.c-main-post__show-more:hover {
  cursor: pointer;
}

.c-main-post__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  margin-bottom: 5px;
  background: rgba(240, 240, 240, 0.9);
  border-radius: 12px;
  height: 18px;
  padding: 0 10px;
  font-size: 11px;
  color: #8a898e;
  transition: 0.3s linear;
  cursor: pointer;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .c-main-post__tag {
    margin-left: 5px;
    margin-right: 0;
  }
}
.c-main-post__tag:hover {
  background: rgba(225, 225, 225, 0.9);
}

.c-main-post__tag-notcursor {
  cursor: auto;
}
.c-main-post__tag-notcursor:hover {
  background: rgba(240, 240, 240, 0.9);
}

.c-main-post__content {
  padding: 20px 0 0;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(22 / 16);
  font-weight: 400;
  font-family: "Merriweather", serif;
}
@media screen and (min-width: 1200px) {
  .c-main-post__content {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(26 / 18);
    font-weight: 400;
  }
}
.c-main-post__content p {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 15px;
}
.c-main-post__content p:last-child {
  margin-bottom: 0;
}
.c-main-post__content h3:not(:last-child) {
  margin-bottom: 15px;
}
.c-main-post__content a:hover {
  text-decoration: underline;
}
.c-main-post__content img {
  margin-bottom: 15px;
}
.c-main-post__content .wistia_embed:not(:last-child) {
  margin-bottom: 15px;
}

.c-author-post-info__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.c-author-ctb-box {
  width: 100%;
  margin-top: 7px;
}
.c-author-ctb-box a {
  color: #1664d5;
  font-size: 12px;
}
.c-author-ctb-box a:hover {
  text-decoration: underline;
}

.c-main-post__author-info {
  display: flex;
  flex-direction: column;
}
.c-main-post__author-info .c-main-post__author-photo a {
  display: flex;
}
.c-main-post__author-info .c-main-post__author-photo img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.c-main-post__author-info-bottom .c-main-post__author-photo img {
  width: 70px;
  height: 70px;
}

.c-author-post-info {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-author-post-info {
    margin-bottom: 0;
  }
}
.c-author-post-info__photo {
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fbbaa8;
  margin-right: 10px;
}
.c-author-post-info__photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-author-post-info__photo span {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 2px;
  padding-left: 3px;
  color: #000;
}
.c-author-post-info__author {
  margin-right: 6px;
  font-size: 15px;
  color: #000;
  font-family: Söhne, sans-serif;
  line-height: 1;
  transition: 0.3s all;
}
.c-author-post-info__date {
  font-size: 13px;
  color: #8a898e;
  font-family: Söhne, sans-serif;
  line-height: 1;
}

.c-tags-post-info {
  height: auto;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-tags-post-info {
    justify-content: flex-end;
  }
}

.c-main-post-share {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-main-post-share {
    justify-content: flex-end;
  }
}
.c-main-post-share__title {
  display: block;
  font-family: Söhne, sans-serif;
  font-size: 13px;
  color: #000;
  margin-right: 10px;
}
.c-main-post-share__list {
  display: flex;
  align-items: center;
}
.c-main-post-share__item {
  width: 26px;
  height: 26px;
  border: 1px solid #6c6d71;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s linear;
  margin-right: 5px;
}
.c-main-post-share__item:last-child {
  margin-right: 0;
}
.c-main-post-share__item i {
  color: #1664d5;
  font-size: 14px;
}
.c-main-post-share__item:hover {
  background-color: #f5f5f5;
}

.w-gallery-view__section {
  margin-bottom: 20px !important;
}

.s-show-page-cards {
  padding-bottom: 10px;
}

div[class*=wistia] {
  margin-bottom: 0px;
}

.c-main-post__contact {
  margin-bottom: 30px;
}
.c-main-post__contact .c-main-post__contact-title {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(22 / 16);
  font-weight: 400;
  font-family: "Merriweather", serif;
}
@media screen and (min-width: 768px) {
  .c-main-post__contact .c-main-post__contact-title {
    padding: 25px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-main-post__contact .c-main-post__contact-title {
    padding: 25px 0 0;
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(26 / 18);
    font-weight: 400;
  }
}
.c-main-post__contact .c-main-post__contact-title strong {
  font-size: inherit;
  line-height: inherit;
}
.c-main-post__contact .c-main-post__contact-links a {
  color: #3379f6 !important;
  font-size: 24px;
}
.c-main-post__contact .c-main-post__contact-links a:nth-child(2n) {
  margin: 0 5px;
}
.c-main-post__contact .c-main-post__contact-links .fab:hover {
  opacity: 0.7;
}

.c-big-post__var-1 {
  height: 100%;
}
.c-big-post__var-1 > .row {
  height: 100%;
}
.c-big-post__var-1 .c-big-post__img {
  height: 100%;
}
.c-big-post__var-1 .c-big-post__img a {
  height: 100%;
}
.c-big-post__var-1 .c-big-post__img a img {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-custom-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: #000;
  display: none;
  z-index: 99;
}

.c-custom-menu__list {
  padding: 10px 0;
}
.c-custom-menu__list li {
  color: #fff;
  padding: 10px 15px;
  width: 150px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.c-custom-menu__list li:first-child {
  border-top: none;
}
.c-custom-menu__list li a {
  color: inherit;
  display: inline-block;
  cursor: pointer;
}
.c-custom-menu__list li a:hover {
  text-decoration: underline;
}

.c-custom-menu__item {
  color: #fff;
  padding: 10px 15px;
  width: 150px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.c-custom-menu__item:first-child {
  border-top: none;
}
.c-custom-menu__item a {
  color: inherit;
  display: inline-block;
  cursor: pointer;
}
.c-custom-menu__item a:hover {
  text-decoration: underline;
}

.select2-results__option {
  background-color: #1a1a1a;
  color: #fff;
  border-bottom: 1px solid #b1b1b1;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 500;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.select2-results__option:last-child {
  border: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #686868;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 0;
}
.select2-container--default .select2-selection--single {
  background-color: #333333;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(28 / 14);
  font-weight: 500;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}

.c-contributor__img {
  margin-bottom: 20px;
}

.c-contributor__title {
  margin-bottom: 12px;
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(21 / 17);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-contributor__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .c-contributor__title {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 500;
  }
}

.c-contributor__description {
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(19 / 15);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-contributor__description {
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(21 / 17);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-contributor__description {
    font-size: calc(19 / 16 * 1rem);
    line-height: calc(23 / 19);
    font-weight: 400;
  }
}

.c-contributor-author {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .c-contributor-author {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1240px) {
  .c-contributor-author {
    margin-top: 32px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1300px) {
  .c-contributor-author {
    padding-left: 70px;
  }
}

.c-contributor-author__wrap {
  position: relative;
  border: 1px solid #363636;
  border-radius: 15px;
}

.c-contributor-author__body {
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .c-contributor-author__body {
    padding: 10px 20px 20px;
  }
}
@media screen and (min-width: 1240px) {
  .c-contributor-author__body {
    padding: 20px 24px 20px 32px;
  }
}

.c-contributor-author__img {
  margin: 10px auto;
  border-radius: 50%;
  width: 50%;
  max-width: 150px;
}
@media screen and (min-width: 1240px) {
  .c-contributor-author__img {
    max-width: 250px;
    width: 100%;
    margin-top: -47px;
  }
}

.c-contributor-author__description {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .c-contributor-author__description {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 400;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .c-contributor-author__description {
    font-size: calc(19 / 16 * 1rem);
    line-height: calc(23 / 19);
    font-weight: 400;
  }
}

@media screen and (min-width: 1240px) {
  .c-contributor-author__info {
    display: flex;
    justify-content: space-between;
  }
}
.c-contributor-author__info .c-button {
  color: #6d6e71;
  border-color: #6d6e71;
  padding: 5px 10px;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(15 / 12);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-contributor-author__info .c-button {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(16 / 13);
    font-weight: 500;
  }
}
.c-contributor-author__info .c-button:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.c-contributor-author__social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1240px) {
  .c-contributor-author__social {
    margin-bottom: 0;
  }
}

.c-contributor-author__social-item:not(:last-child) {
  margin-right: 15px;
}

.c-contributor-author__button {
  text-align: center;
}

.c-podcast-card {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .c-podcast-card {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 992px) {
  .c-podcast-card {
    margin-bottom: 60px;
  }
}

.c-podcast-card__title {
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(19 / 15);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-podcast-card__title {
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(21 / 17);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-podcast-card__title {
    font-size: calc(19 / 16 * 1rem);
    line-height: calc(23 / 19);
    font-weight: 400;
  }
}

.c-podcast-card__description {
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(15 / 12);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #cfcfcf;
}
@media screen and (min-width: 992px) {
  .c-podcast-card__description {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(16 / 13);
    font-weight: 400;
  }
}

.c-podcast-card__img {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-podcast-card__img {
    margin-bottom: 20px;
  }
}
.c-podcast-card__img img {
  width: 100%;
}

.c-course-card {
  margin: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .c-course-card {
    margin: 15px 0 30px;
  }
}
@media screen and (min-width: 992px) {
  .c-course-card {
    margin: 20px 0 40px;
  }
}

.c-course-card__title {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(20 / 16);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-course-card__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-course-card__title {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 400;
  }
}

.c-course-card__description {
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(15 / 12);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #cfcfcf;
}
@media screen and (min-width: 768px) {
  .c-course-card__description {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(18 / 14);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-course-card__description {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(19 / 15);
    font-weight: 400;
  }
}

.c-course-card__img {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-course-card__img {
    margin-bottom: 20px;
  }
}
.c-course-card__img img {
  width: 100%;
}

.c-instructors {
  position: relative;
}
.c-instructors .c-swiper-btn-prev,
.c-instructors .c-swiper-btn-next {
  top: 45%;
}
.c-instructors .swiper-container {
  margin: 0 -15px;
}
@media screen and (min-width: 1260px) {
  .c-instructors .swiper-container {
    margin: 0 -30px;
  }
}

.c-instructors__card {
  padding: 10px 15px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-instructors__card {
    padding: 10px 30px;
  }
}

.c-instructors__img img {
  width: 100%;
}

.c-instructors__name {
  margin-top: 20px;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(19 / 16 * 1rem);
  line-height: calc(23 / 19);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .c-instructors__name {
    font-size: calc(22 / 16 * 1rem);
    line-height: calc(26 / 22);
    font-weight: 400;
  }
}
.c-instructors__name:hover {
  opacity: 0.8;
}
.c-instructors__name a {
  color: inherit;
}

.c-instructors__position {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .c-instructors__position {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
  }
}

.c-client-event {
  margin: 0 -25px;
  background-color: #fff;
  border-radius: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-client-event {
    margin: 0;
  }
}

.c-client-event__card-body {
  color: #000;
}

.c-client-event__card {
  margin-bottom: 10px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .c-client-event__card {
    display: flex;
  }
}

.c-client-event__card-img {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-client-event__card-img {
    margin: 0 25px 0 0;
    min-width: 160px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .c-client-event__card-img {
    min-width: 110px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1260px) {
  .c-client-event__card-img {
    min-width: 160px;
  }
}
.c-client-event__card-img img {
  width: 100%;
}

.c-client-event__card-description {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(11 / 16 * 1rem);
  line-height: calc(15 / 11);
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .c-client-event__card-description {
    font-size: calc(12 / 16 * 1rem);
    line-height: calc(16 / 12);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .c-client-event__card-description {
    font-size: calc(12 / 16 * 1rem);
    line-height: calc(16 / 12);
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .c-client-event__card-description {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(17 / 13);
    font-weight: 400;
  }
}

.s-client-event__tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -4px 10px 0 rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.s-client-event__tabs-list {
  display: flex;
  justify-content: center;
  color: #000;
}

.s-client-event__tabs-item {
  padding: 15px;
  margin: 0 10px;
  cursor: pointer;
  font-weight: 700;
}
.s-client-event__tabs-item.active {
  color: #f0b002;
  border-bottom: 2px solid #f0b002;
}

.c-client-chat {
  background-color: #f5f5f5;
  border-radius: 0 0 15px 15px;
  padding: 25px 30px;
  margin: 50px -25px 20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .c-client-chat {
    margin: 50px 0 20px;
  }
}
@media screen and (min-width: 992px) {
  .c-client-chat {
    margin: 0;
  }
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: none;
}

.form-control {
  border: 1px solid #000000;
  border-radius: 3px;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 7px 0.75rem;
  height: auto;
}
.form-control ::-webkit-input-placeholder {
  color: #969696;
  opacity: 1;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 400;
}
.form-control ::-moz-placeholder {
  color: #969696;
  opacity: 1;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 400;
}
.form-control :-ms-input-placeholder {
  color: #969696;
  opacity: 1;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 400;
}
.form-control :-moz-placeholder {
  color: #969696;
  opacity: 1;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(21 / 13);
  font-weight: 400;
}
.form-control:hover, .form-control:focus {
  border-color: #cecece;
}

.modal-open .s-client-event .container {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
.modal-open .modal-backdrop {
  opacity: 0 !important;
}

.modal.show .modal-dialog {
  transform: translateY(-50%);
  top: 50%;
}

.modal-header {
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 10px;
  border: none;
}

#contactSupport .close {
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0.3;
  cursor: pointer;
}
#contactSupport .close:hover {
  opacity: 1;
}
#contactSupport .close:before, #contactSupport .close:after {
  position: absolute;
  top: 0;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #333;
}
#contactSupport .close:before {
  transform: rotate(45deg);
}
#contactSupport .close:after {
  transform: rotate(-45deg);
}

.modal-title {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #333333;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
  letter-spacing: 0.15px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #8c8c8c;
}

.modal-body {
  padding: 10px 25px 0;
}
.modal-body .form-row label a {
  color: #044fa8 !important;
}
.modal-body .form-row label a:hover {
  text-decoration: underline;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px 2px;
  border: none;
  margin-bottom: 10px;
}
.modal-footer .submit {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(17 / 16);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.38px;
  background-color: #132438;
  border: none;
  border-radius: 3px;
  margin: 0;
  padding: 11px 15px;
  min-width: 160px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal-footer .submit:hover, .modal-footer .submit:active {
  background-color: #000000;
}
.modal-footer .terms {
  margin-top: 6px;
  font-size: calc(9 / 16 * 1rem);
  line-height: calc(12 / 9);
  font-weight: 400;
  color: #969696;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.modal-footer .terms:hover, .modal-footer .terms:active {
  color: #000000;
}

.c-locked-modal::before {
  content: "";
  position: absolute;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  background: rgba(255, 255, 255, 0.7);
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.c-locked-modal.modal {
  top: initial;
  bottom: 0;
  height: 50%;
}
.c-locked-modal.modal .modal-content {
  border: 1px solid #F9CC42;
  text-align: center;
  padding: 15px 10px;
}
.c-locked-modal.modal .modal-header {
  padding: 10px;
}
.c-locked-modal.modal .modal-banner img {
  max-width: 50%;
  margin: 0 auto;
}

.single .modal-backdrop {
  top: initial;
  bottom: 0;
  height: 50vh;
}
.single .c-mob-menu.open-menu {
  z-index: 9999;
}

.c-stack-slider {
  padding: 10px 0;
  border-top: 1px solid #ebebeb;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.c-stack-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-stack-slider .swiper-slide {
  width: auto;
}

.c-stack-slider__block {
  display: inline-block;
}

.c-stack-slider__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 700;
  margin-right: 4px;
}

.c-stack-slider__close,
.c-stack-slider__block {
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(16 / 12);
  font-weight: 400;
}

.c-stack-slider__close {
  position: relative;
  padding-right: 15px;
  margin-right: 5px;
}
.c-stack-slider__close:before, .c-stack-slider__close:after {
  content: "";
  position: absolute;
}
.c-stack-slider__close:before {
  width: 2px;
  height: 11px;
  right: 5px;
  top: 2px;
}
.positive .c-stack-slider__close:before {
  background-color: green;
}
.negative .c-stack-slider__close:before {
  background-color: red;
}
.c-stack-slider__close:after {
  width: 5px;
  height: 5px;
  border-left: 2px solid;
  border-top: 2px solid;
  transform-origin: center;
}
.positive .c-stack-slider__close:after {
  border-color: green;
  transform: translate(5.5px, 3px) rotate(45deg);
}
.negative .c-stack-slider__close:after {
  border-color: red;
  transform: translate(5.5px, 8px) rotate(-135deg);
}

.positive .c-stack-slider__block {
  color: green;
}
.negative .c-stack-slider__block {
  color: red;
}

.c-stack-slider__value {
  margin-right: 4px;
}

.c-tabs__content {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-tabs__content {
    margin-top: 0;
  }
}

.c-tabs__list-wrap,
.c-tabs__content {
  padding: 25px;
  background-color: rgba(240, 240, 240, 0.9);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  font-family: "Sohne", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(20 / 16);
  font-weight: 400;
}

.c-tabs__item {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.3s;
  cursor: pointer;
}
.c-tabs__item.is-active, .c-tabs__item:hover {
  border-color: #000;
}
.c-tabs__item a {
  padding: 10px 15px;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.c-tabs__title {
  font-size: calc(27 / 16 * 1rem);
  line-height: calc(34 / 27);
  font-weight: 600;
}

.c-tabs__text {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
}

.c-tabs__photo-wrap {
  position: relative;
  margin-top: 25px;
  display: inline-block;
}

.c-tabs__photo {
  width: 133px;
  height: 133px;
  border-radius: 50%;
}
.c-tabs__photo img {
  border-radius: inherit;
}

.c-tabs__photo-choose {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #c4c4c4;
  cursor: pointer;
}
.c-tabs__photo-choose svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.c-speaker {
  font-family: "Sohne", sans-serif;
}

.c-speaker__img {
  position: relative;
  height: 250px;
}
@media screen and (min-width: 992px) {
  .c-speaker__img {
    height: 160px;
  }
}
.c-speaker__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-speaker__icon {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 10;
  width: 20px;
  height: 20px;
  color: #000;
  transition: opacity 0.2s;
  cursor: pointer;
}
.c-speaker__icon:hover {
  opacity: 0.5;
}

.c-speaker__title {
  margin-top: 5px;
  font-family: "Sohne-Medium", sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
}

.c-speaker__about {
  margin-top: 5px;
  font-size: calc(11 / 16 * 1rem);
  line-height: calc(13 / 11);
  font-weight: 400;
  color: #8A8D8E;
}

.c-speaker__btn {
  margin-top: 14px;
}

.c-speaker__description {
  margin-top: 12px;
}

.c-share {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-share {
    display: inline-block;
  }
}
.c-share:hover .c-share__list {
  display: flex;
}
.c-share .c-button {
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border: 1px solid;
  border-color: inherit;
  border-radius: 5px;
  color: inherit;
  font-family: "Sohne", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
  max-width: none !important;
}
@media screen and (min-width: 768px) {
  .c-share .c-button {
    padding: 9px 10px;
  }
}
.c-share .c-button .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .c-share .c-button .icon {
    margin-left: 10px;
  }
}

.c-share__list {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  padding: 10px;
  width: 200px;
  background-color: #000;
  border-radius: 5px;
  font-family: "Sohne", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-share__list {
    min-width: 150px;
    width: 100%;
  }
}
.c-share__list li:not(:last-child) {
  margin-bottom: 10px;
}
.c-share__list li:hover {
  opacity: 0.5;
}
.c-share__list li a,
.c-share__list li div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  cursor: pointer;
}
.c-share__list li a .icon,
.c-share__list li div .icon {
  margin-left: 10px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 3px;
}
.c-share__list li a {
  justify-content: start;
}
.c-share__list .share-url {
  display: none;
}
.c-share__list .share-copied {
  line-height: 24px;
}

.copy-link {
  position: relative;
}
.copy-link:after {
  content: "Link Copied";
  display: block;
  padding: 2px;
  width: 58px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  right: 1px;
  bottom: -21px;
  font-size: 9px;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: -1;
  line-height: normal;
  color: #000;
  font-family: "Montserrat", sans-serif;
}
.copy-link.show-notify:after {
  opacity: 1;
  z-index: 2;
}

.s-home-hero {
  padding: 20px 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s-home-hero__bottom-border {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
  }
  .s-home-hero__bottom-border:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0px;
    height: 1px;
    background-color: #e3e3e3;
  }
}
@media screen and (min-width: 768px) {
  .s-home-hero {
    padding: 30px 0 35px;
    margin-bottom: 0;
  }
}
.s-home-hero .container.u-border--top:before {
  top: -20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .s-home-hero .container.u-border--top:before {
    top: -30px;
  }
}
.s-home-hero .c-big-post {
  padding-bottom: 0;
  margin-top: -6px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s-home-hero .c-big-post {
    margin-bottom: 0;
  }
}
.s-home-hero .c-big-post__heading {
  margin-bottom: 10px;
}
.s-home-hero .c-big-post__title {
  font-size: 26px;
  line-height: 1.46;
}
.s-home-hero .c-big-post__img {
  margin-bottom: 10px;
}
.s-home-hero .c-big-post__img a {
  height: 250px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s-home-hero .c-big-post__img a {
    height: 360px;
  }
}
.s-home-hero .c-big-post__img a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-home-hero .c-post-md {
  padding: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s-home-hero .c-post-md {
    margin-bottom: 0;
  }
}
.s-home-hero .c-post-md__subtitle {
  font-size: 13px;
  color: #676767;
  margin: 10px 0 0 0 !important;
  transition: 0.3s linear;
  width: -moz-fit-content;
  width: fit-content;
}
.s-home-hero .c-post-md__subtitle:hover {
  color: #000;
}
.s-home-hero .c-post-md__thumbnail {
  position: relative;
  height: 190px;
  border: 1px solid #efefef;
  overflow: hidden;
  margin-bottom: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .s-home-hero .c-post-md__thumbnail {
    height: 110px;
  }
}
.s-home-hero .c-post-md__thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s linear;
}
.s-home-hero .c-post-md__thumbnail:hover img {
  transform: scale(1.05);
}
.s-home-hero .c-post-md__subtitle {
  margin-top: 10px;
}
.s-home-hero .c-featured-show__title,
.s-home-hero .c-editor-picks__title,
.s-home-hero .c-latest__title {
  color: #1664d5;
  font-family: Söhne, sans-serif;
  line-height: 1.125;
  font-weight: 400;
  font-size: 1rem;
}
.s-home-hero .c-featured-show__title {
  font-weight: 400;
}
.s-home-hero__promBanner {
  background: #c4c4c4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
}
.s-home-hero .c-square-banner {
  margin-top: 0;
  margin-bottom: 20px;
}
.s-home-hero .c-latest:after {
  display: none;
}
.s-home-hero .c-latest .u-border--bottom:before {
  background-color: #e3e3e3;
}
@media screen and (min-width: 768px) {
  .s-home-hero__leftSidebar {
    border-right: 1px solid #e3e3e3;
  }
}
@media screen and (min-width: 768px) {
  .s-home-hero__rightSidebar {
    border-left: 1px solid #e3e3e3;
  }
}
.s-home-hero .c-featured-show:after,
.s-home-hero .c-editor-picks:after {
  display: none;
}

.s-home-hero__var-2 .c-featured-show:after,
.s-home-hero__var-2 .c-editor-picks:after,
.s-home-hero__var-2 .c-latest:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .s-home-hero__var-3 .c-random-banner img {
    max-height: 150px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}
.s-home-hero__var-3 .c-live__title {
  margin-top: 10px;
}
.s-home-hero-rss__horizontal {
  margin-bottom: 30px;
  position: relative;
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
}
.s-home-hero-rss__horizontal::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: -15px;
  right: 15px;
  height: 1px;
  background-color: #e3e3e3;
}

.s-industries {
  padding: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .s-industries {
    padding: 35px 0;
  }
}
.s-industries .c-intro {
  padding: 15px 0;
  border-bottom: 1px solid #0a0a0a;
}
.s-industries .c-intro__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 576px) {
  .s-industries .c-intro__title {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .s-industries .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 700;
  }
}
@media screen and (min-width: 992px) {
  .s-industries .c-intro__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 700;
  }
}

.s-industries-post .c-intro {
  padding: 0;
}
.s-industries-post .c-intro__title {
  margin: 20px 0;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(27 / 20);
  font-weight: 400;
  font-family: "Merriweather", serif;
}
@media screen and (min-width: 576px) {
  .s-industries-post .c-intro__title {
    font-size: calc(27 / 16 * 1rem);
    line-height: calc(27 / 27);
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .s-industries-post .c-intro__title {
    font-size: calc(36 / 16 * 1rem);
    line-height: calc(36 / 36);
    font-weight: 400;
  }
}

.s-home-education {
  padding-top: 10px;
}
.s-home-education .container.u-border--top:before {
  top: -10px;
}
.s-home-education .c-post-lg {
  padding: 5px 0 35px;
}
.s-home-education .c-post-lg__img {
  display: block;
  border: 1px solid #efefef;
  max-height: 250px;
}
@media screen and (min-width: 768px) {
  .s-home-education .c-post-lg__img {
    height: 120px;
  }
}
@media screen and (min-width: 960px) {
  .s-home-education .c-post-lg__img {
    height: 160px;
  }
}
@media screen and (min-width: 1240px) {
  .s-home-education .c-post-lg__img {
    height: 210px;
  }
}
.s-home-education .c-post-lg__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-home-education .c-post-lg__date {
  margin-top: 7px;
}

.s-home-education__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #161922;
}
@media screen and (min-width: 960px) {
  .s-home-education__title {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(25 / 15);
    font-weight: 700;
  }
}

.s-most-popular {
  padding: 10px 0 0;
}
.s-most-popular__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #161922;
}
@media screen and (min-width: 960px) {
  .s-most-popular__title {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(25 / 15);
    font-weight: 700;
  }
}
.s-most-popular .container.u-border--top:before {
  top: -10px;
}
.s-most-popular .c-post-lg {
  padding: 5px 0 35px;
}
.s-most-popular .row > div:nth-child(2) .c-post-lg__description {
  display: none;
}
.s-most-popular .row > div:nth-child(2) .btn__readMore {
  display: none !important;
}

.s-banner-shows {
  position: relative;
}

.s-banner-shows__wrap {
  padding-top: 15px;
  display: block;
  width: 100%;
}
.s-banner-shows__wrap.u-border--top:before {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .s-banner-shows__wrap {
    padding-top: 35px;
  }
}

.c-button-shows-wrap {
  position: relative;
  width: 100%;
  height: auto;
}

.s-banner-shows__img {
  width: 100%;
  margin: 0 auto;
  max-width: 710px;
  height: auto;
  display: block;
}

.s-learning {
  padding: 90px 0 40px;
}
.s-online-learning + .s-learning {
  padding: 70px 0 0;
}
@media screen and (min-width: 992px) {
  .s-online-learning + .s-learning {
    padding: 90px 0 0;
  }
}
@media screen and (min-width: 1400px) {
  .s-online-learning + .s-learning .container {
    max-width: 1325px;
  }
}

.s-learning__img {
  margin-bottom: 70px;
  max-width: 400px;
  transition: 0.2s linear;
}
.s-learning__img:hover {
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .s-learning__img {
    margin-bottom: 0;
    max-width: 100%;
  }
}

.s-learning__info {
  margin-bottom: 60px;
}

.s-learning__text {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-learning__text {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(21 / 16);
    font-weight: 400;
  }
}
@media screen and (min-width: 960px) {
  .s-learning__text {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(25 / 16);
    font-weight: 400;
  }
}

.s-industry {
  padding: 10px 0 40px;
}
@media screen and (min-width: 768px) {
  .s-industry {
    padding: 10px 0 30px;
  }
}
.s-industry .c-big-post {
  padding: 15px 0 0;
}
@media screen and (min-width: 768px) {
  .s-industry .c-big-post {
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .s-industry .c-big-post__title {
    font-size: calc(30 / 16 * 1rem);
    line-height: calc(36 / 30);
    font-weight: 700;
  }
}
.s-industry .c-button {
  margin-top: 50px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .s-industry .c-button {
    margin-top: 70px;
  }
}

.s-industry__title {
  position: relative;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(19 / 15);
  font-weight: 500;
  color: #161922;
}
@media screen and (min-width: 576px) {
  .s-industry__title {
    font-size: calc(25 / 16 * 1rem);
    line-height: calc(29 / 25);
    font-weight: 700;
  }
}
.s-industry__title:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #202020;
  display: block;
  margin-top: 10px;
}

.s-industry__posts {
  padding-top: 25px;
}
.s-industry__posts .c-post-lg {
  padding: 19px 0 17px;
}

.s-architecture-design {
  padding-bottom: 20px;
}
.s-architecture-design .c-intro--lg {
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .s-architecture-design .c-intro--lg {
    padding: 20px 0;
  }
}
.s-architecture-design .c-intro__title--lg {
  font-size: calc(28 / 16 * 1rem);
  line-height: calc(28 / 28);
  font-weight: 700;
  font-family: "Merriweather", serif;
}
@media screen and (min-width: 576px) {
  .s-architecture-design .c-intro__title--lg {
    font-size: calc(36 / 16 * 1rem);
    line-height: calc(25 / 36);
    font-weight: 700;
  }
}
.s-architecture-design .c-intro__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 576px) {
  .s-architecture-design .c-intro__title {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .s-architecture-design .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 700;
  }
}
@media screen and (min-width: 992px) {
  .s-architecture-design .c-intro__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 700;
  }
}
.s-architecture-design .c-intro {
  padding: 15px 0;
}
.s-architecture-design .c-big-post {
  margin-top: 25px;
}
.s-architecture-design .c-post-md .c-post-lg__subtitle {
  margin-bottom: 5px;
}

.s-events {
  padding: 15px 0 35px;
}
.s-events .c-latest {
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .s-events {
    padding: 15px 0 35px;
  }
}
.s-events .c-latest::after {
  display: none;
}
.s-events .c-latest:first-child .c-latest__body {
  padding: 0 10px;
}
.s-events .c-latest:first-child .c-post-lg__img {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .s-events .c-latest:first-child .c-post-lg__img {
    margin-bottom: 0;
  }
}
.s-events .c-latest:first-child .c-post-lg__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}
@media screen and (min-width: 768px) {
  .s-events .c-latest:first-child .c-post-lg__img img {
    width: 200%;
    height: 60px;
  }
}
@media screen and (min-width: 960px) {
  .s-events .c-latest:first-child .c-post-lg__img img {
    height: 92px;
  }
}
@media screen and (min-width: 1240px) {
  .s-events .c-latest:first-child .c-post-lg__img img {
    height: 128px;
  }
}
.s-events .c-latest__header {
  padding-bottom: 10px;
}
.s-events .c-latest__title {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
}
@media screen and (min-width: 480px) {
  .s-events .c-latest__title {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .s-events .c-latest__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 700;
  }
}
@media screen and (min-width: 960px) {
  .s-events .c-latest__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 700;
  }
}
.s-events .c-big-post {
  padding-top: 30px;
}
.s-events .c-post-md__img {
  display: block;
  margin-bottom: 15px;
}
.s-events .c-post-md__title {
  line-height: 22px;
}
.s-events .c-post-md__description {
  margin-top: 8px;
}
.s-events .c-post-lg__img {
  display: block;
  margin-bottom: 15px;
}

.s-cta {
  padding-bottom: 10px;
}
.s-cta .c-intro__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(19 / 13);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 576px) {
  .s-cta .c-intro__title {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .s-cta .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 700;
  }
}
@media screen and (min-width: 992px) {
  .s-cta .c-intro__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 700;
  }
}
.s-cta .c-intro {
  margin-bottom: 10px;
  padding: 15px 0;
}
.s-cta .c-post-md {
  padding: 5px 0 35px;
}
.search .s-cta .c-post-md {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid;
}
.s-cta .c-post-lg {
  margin-bottom: 20px;
}
.s-cta .c-post-lg__img {
  margin-bottom: 10px;
}
.s-cta .c-post-lg__title {
  margin-bottom: 8px;
}
.search .s-cta .search-form {
  display: flex;
}
.search .s-cta label {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search .s-cta label {
    width: initial;
  }
}
.search .s-cta .search-field {
  margin-top: 5px;
  width: 100%;
  height: 24px;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  padding: 16px 10px 16px 33px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 10px;
}
.search .s-cta .search-submit {
  margin: auto 0 0 5px;
  height: 24px;
  display: inline-block;
  text-align: center;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  cursor: pointer;
  color: #000;
  background-color: transparent;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  transition: color 0.3s, background-color 0.3s;
  border-left: none;
}
.search .s-cta .search-submit:hover, .search .s-cta .search-submit:active {
  color: #fff;
  background-color: #000;
}
.s-cta .c-post-lg__img {
  display: block;
  border: 1px solid #efefef;
  max-height: 250px;
  height: 190px;
}
@media screen and (min-width: 768px) {
  .s-cta .c-post-lg__img {
    height: 120px;
  }
}
@media screen and (min-width: 960px) {
  .s-cta .c-post-lg__img {
    height: 160px;
  }
}
@media screen and (min-width: 1240px) {
  .s-cta .c-post-lg__img {
    height: 210px;
  }
}
.s-cta .c-post-lg__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-cta .c-post-continue-reading .c-post-lg__description p {
  -webkit-line-clamp: 3;
}
.s-cta .c-post-continue-reading .c-industries-card__body-item {
  font-size: 0.8rem;
  line-height: 1.4;
}

.s-cta--lg .c-intro {
  margin-bottom: 15px;
}

.s-cta__btn-container {
  margin: 15px 0 10px;
}
@media screen and (min-width: 576px) {
  .s-cta__btn-container {
    margin: 20px 0 15px;
  }
}
@media screen and (min-width: 768px) {
  .s-cta__btn-container {
    margin: 30px 0 20px;
  }
}
@media screen and (min-width: 992px) {
  .s-cta__btn-container {
    margin: 40px 0 30px;
  }
}

.c-post-continue-reading .c-industries-card__body-item {
  margin-bottom: 0;
}
.c-post-continue-reading .c-post-lg__img {
  margin: 0;
  padding: 0;
}
.c-post-continue-reading .c-post-lg__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-continue-reading.u-line--bottom:not(:last-child) {
  border-bottom: 1px solid #808080;
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.s-latest-episode {
  padding-bottom: 40px;
}
.s-latest-episode .c-intro {
  padding: 15px 0;
}
.s-latest-episode .c-intro__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(19 / 18);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-latest-episode .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .s-latest-episode .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(25 / 18);
    font-weight: 400;
  }
}
.s-latest-episode .c-card-learning {
  margin-bottom: 30px;
}
.s-latest-episode .c-card-learning__img {
  border-radius: 5px;
}
.s-latest-episode .c-card-learning__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.s-latest-episode .c-card-learning__date {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(14 / 14);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}

.s-all-shows {
  padding: 40px 0;
}
.s-all-shows .c-intro {
  padding: 15px 0;
}
.s-all-shows .c-intro__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(19 / 18);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-all-shows .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .s-all-shows .c-intro__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(25 / 18);
    font-weight: 400;
  }
}
.s-all-shows .c-card-learning {
  margin-bottom: 60px;
}
.s-all-shows .c-card-learning__img {
  border-radius: 5px;
}
.s-all-shows .c-card-learning__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 700;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
.s-all-shows .c-card-learning__date {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(14 / 14);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}

.s-client-event {
  padding-top: 20px;
}
@media screen and (min-width: 576px) {
  .s-client-event {
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .s-client-event {
    padding-top: 45px;
  }
}
@media screen and (min-width: 992px) {
  .s-client-event {
    padding-top: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .s-client-event {
    padding-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .s-client-event__img {
    margin: 0 0 50px;
  }
}
@media screen and (min-width: 960px) {
  .s-client-event__img {
    margin: 0 0 30px;
  }
}

.s-client-event__video {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  z-index: 88;
}
.s-client-event__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes video-anim {
  from {
    top: -100vh;
  }
  to {
    top: 0;
  }
}
.s-client-event__video-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 992px) {
  .s-client-event__video-wrap.fixed {
    position: fixed;
    animation-name: video-anim;
    animation-duration: 0.7s;
    animation-timing-function: cubic-bezier(0.26, 0.14, 0.63, 1.1);
  }
}

.s-client-event__img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 992px) {
  .fixed .s-client-event__img-wrap {
    max-width: 910px;
    margin: auto;
    position: static;
  }
}
@media screen and (min-width: 1240px) {
  .fixed .s-client-event__img-wrap {
    max-width: 1170px;
  }
}

.s-client-event__iframe-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 992px) {
  .fixed .s-client-event__iframe-wrap {
    box-shadow: 0 11px 17px 0 rgba(0, 0, 0, 0.4);
    margin-left: auto;
    width: calc(33.33333333% - 20px);
    height: 169px;
    position: relative;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1240px) {
  .fixed .s-client-event__iframe-wrap {
    height: 218px;
  }
}

.s-client-event__footer {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .s-client-event__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.s-client-event__footer-nav {
  display: flex;
  justify-content: center;
}

.s-client-event__footer-item {
  margin: 5px 10px;
}
@media screen and (min-width: 576px) {
  .s-client-event__footer-item {
    margin: 8px 15px;
  }
}
@media screen and (min-width: 768px) {
  .s-client-event__footer-item {
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .s-client-event__footer-item {
    margin: 0 40px 0 0;
  }
}
.s-client-event__footer-item a {
  font-size: calc(10 / 16 * 1rem);
  line-height: calc(14 / 10);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #fff;
}
@media screen and (min-width: 576px) {
  .s-client-event__footer-item a {
    font-size: calc(12 / 16 * 1rem);
    line-height: calc(16 / 12);
    font-weight: 400;
  }
}

.s-client-event__footer-copywright {
  font-size: calc(10 / 16 * 1rem);
  line-height: calc(14 / 10);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #fff;
}
@media screen and (min-width: 576px) {
  .s-client-event__footer-copywright {
    font-size: calc(12 / 16 * 1rem);
    line-height: calc(16 / 12);
    font-weight: 400;
  }
}

#iframe-wrapper iframe {
  min-height: calc(100vh - 105px);
}
@media screen and (min-width: 576px) {
  #iframe-wrapper iframe {
    min-height: calc(100vh - 113px);
  }
}
@media screen and (min-width: 768px) {
  #iframe-wrapper iframe {
    min-height: calc(100vh - 91px);
  }
}

.s-shows-category {
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .s-shows-category {
    padding: 65px 0 0;
  }
}
@media screen and (min-width: 1300px) {
  .s-shows-category .container {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1500px) {
  .s-shows-category .container {
    max-width: 1400px;
  }
}

.info-soc {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.light .no_video {
  background-color: #fff;
}
.light .no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay {
  color: #000;
}
.light .no_video_slider.s-show-page-cards .container .c-intro .c-intro__title {
  color: #000;
}
.light .no_video_slider.s-show-page-cards .container .c-swiper-btn-prev,
.light .no_video_slider.s-show-page-cards .container .c-swiper-btn-next {
  border-color: #000;
}
.light .no_video_slider.s-show-page-cards .container .c-swiper-btn-prev:after,
.light .no_video_slider.s-show-page-cards .container .c-swiper-btn-next:after {
  color: #000;
}
.light .no_video_slider .swiper-slide {
  cursor: pointer;
}
.light .no_video_slider .swiper-slide .c-show-page__card .c-show-page__card-body .c-show-page__card-title {
  color: #000;
  text-align: left;
}
.light .no_video_slider .swiper-slide .c-show-page__card .c-show-page__card-body .c-show-page__card-description {
  color: #000;
  opacity: 0.6;
}
.light .swiper-slide {
  cursor: pointer;
}
.light .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .share .c-button {
  color: #fff;
}

@media (max-width: 768px) {
  .no_video_slider.vertical .c-swiper-btn-prev {
    left: -28px !important;
  }
  .no_video_slider.vertical .c-swiper-btn-next {
    right: -28px !important;
  }
  .no_video_slider .c-swiper-btn-prev {
    left: -18px !important;
    width: 38px !important;
    height: 38px !important;
  }
  .no_video_slider .c-swiper-btn-prev:after {
    font-size: 19px !important;
  }
  .no_video_slider .c-swiper-btn-next {
    width: 38px !important;
    height: 38px !important;
    right: -18px !important;
  }
  .no_video_slider .c-swiper-btn-next:after {
    font-size: 19px !important;
  }
}

.no_video {
  padding: 30px;
  background-color: #000;
  font-family: Sohne, sans-serif !important;
}
.no_video .wrapper.banner {
  overflow: hidden;
  max-width: 1620px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  padding-top: 220px;
  border: 2px solid #292929;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .no_video .wrapper.banner {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .no_video .wrapper.banner {
    padding-top: 0;
  }
}
.no_video .wrapper.banner .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.no_video .wrapper.banner .background-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.no_video .wrapper.banner .box {
  z-index: 99;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
@media (max-width: 420px) {
  .no_video .wrapper.banner .box {
    padding: 15px;
  }
}
.no_video .wrapper.banner .box .info {
  display: flex;
  width: 75%;
}
@media (max-width: 420px) {
  .no_video .wrapper.banner .box .info .content-info {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .no_video .wrapper.banner .box .info {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .no_video .wrapper.banner .box .info {
    width: 100%;
  }
}
.no_video .wrapper.banner .box .info .logo {
  margin-right: 30px;
}
.no_video .wrapper.banner .box .info .logo img {
  max-width: 223px;
}
.no_video .wrapper.banner .box .info .content-info h3 {
  font-size: 25px;
  line-height: 30px;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.no_video .wrapper.banner .box .info .content-info p {
  font-size: 16px;
  line-height: 20px;
  color: #C4C4C4;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .no_video .wrapper.banner .box .info .content-info .tags-and-share {
    flex-direction: column;
  }
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .block {
  display: flex;
  align-items: center;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share p.name {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0 10px 0 0;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .tags .tag {
  font-size: 11px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
  border-radius: 12px;
  padding: 4px 10px;
  max-width: 110px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .share {
  margin-left: 50px;
}
@media (max-width: 768px) {
  .no_video .wrapper.banner .box .info .content-info .tags-and-share .share {
    margin: 10px 0 0;
    justify-content: start;
  }
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .share span.c-main-post-share__title {
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .share a.c-main-post-share__item {
  border-color: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .share a.c-main-post-share__item:hover {
  background-color: transparent;
  opacity: 0.6;
}
.no_video .wrapper.banner .box .info .content-info .tags-and-share .share a.c-main-post-share__item i {
  color: #FFFFFF;
}
.no_video .wrapper.banner .box .info .content-info .cta {
  margin-top: 15px;
  display: flex;
}
.no_video .wrapper.banner .box .info .content-info .cta a, .no_video .wrapper.banner .box .info .content-info .cta button {
  background: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
  border-color: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
}
@media (max-width: 420px) {
  .no_video .wrapper.banner .box .info .content-info .cta a, .no_video .wrapper.banner .box .info .content-info .cta button {
    min-width: auto;
    padding: 3px 10px;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .no_video .wrapper.banner .box .info .content-info .cta button {
    margin: 0;
  }
}
.no_video .wrapper.banner .box .shows-items {
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .no_video .wrapper.banner .box .shows-items {
    display: none;
  }
}
.no_video .wrapper.banner .box .shows-items h4 {
  font-size: 25px;
  line-height: 18px;
  color: #FFFFFF;
}
.no_video .wrapper.banner .box .shows-items .episodes {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.no_video .wrapper.banner .box .shows-items .episodes .swiper-slide {
  cursor: pointer;
  flex-basis: calc(25% - 15px);
  padding: 15px;
}
.no_video .wrapper.banner .box .shows-items .episodes .c-show-page__card .c-show-page__card-img {
  background-color: transparent;
}
.no_video .wrapper.banner .box .shows-items .episodes .c-show-page__card .c-show-page__card-img:hover {
  background-color: transparent;
}
.no_video .wrapper.banner .box .shows-items .episodes .c-show-page__card .c-show-page__card-img:hover img {
  transform: scale(1);
  opacity: 1;
}
.no_video .wrapper.banner .box .shows-items .episodes .c-show-page__card .c-link--title:hover {
  text-decoration: none;
}
.no_video .wrapper.banner .box .shows-items .episodes .c-show-page__card h2 {
  text-align: left;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
}
.no_video .wrapper.banner .box .shows-items .episodes .c-show-page__card h4 {
  font-size: 14px;
  line-height: 20px;
  color: #C4C4C4;
}

.s-home-hero .no_video_slider.s-show-page-cards.vertical {
  background: #ffffff;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container {
  max-width: 1200px;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .swiper-container {
  border: none;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .swiper-container .swiper-pagination {
  padding: 25px 0 0;
  position: relative;
  top: 20px;
  border-top: 1px solid #C4C4C4;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .c-intro {
  border-bottom: 1px solid #0E0E0E;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .c-intro .c-intro__title {
  color: #1664D5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .c-intro p {
  display: none;
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay {
  background: linear-gradient(180deg, rgba(126, 126, 126, 0) 0%, #000 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 89.06%);
}
.s-home-hero .no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img img {
  border-radius: 5px;
}

.no_video_slider.s-show-page-cards {
  padding: 20px 30px !important;
  font-family: Sohne, sans-serif !important;
}
.no_video_slider.s-show-page-cards.vertical .container .c-swiper-btn-prev,
.no_video_slider.s-show-page-cards.vertical .container .c-swiper-btn-next {
  top: 50%;
  transform: translateY(-50%);
  background: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
}
.no_video_slider.s-show-page-cards.vertical .container .c-intro {
  display: flex;
}
.no_video_slider.s-show-page-cards.vertical .container .c-intro p {
  margin: 0 4px 0 10px;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide {
  cursor: pointer;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card {
  flex-grow: 1;
  display: flex;
  padding: 0;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img {
  margin: 0;
  width: 100%;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay {
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 134, 186, 0) 0%, rgba(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue), 0.6) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 89.06%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .info {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  padding: 0 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .info h4 {
  font-size: 18px;
  line-height: 20px;
  margin: 15px 0;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .info h5 {
  font-size: 13px;
  line-height: 18px;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .info p {
  font-size: 14px;
  line-height: 16px;
  margin: 0;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .card-link {
  position: relative;
  margin: 25px 0 0;
  padding: 3px;
  background: transparent !important;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .overlay .share .c-button {
  margin: 0;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .play-icon {
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 40px;
  background: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
  opacity: 0.6;
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img .play-icon .triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #EDEDED;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.no_video_slider.s-show-page-cards.vertical .container .swiper-wrapper .swiper-slide .c-show-page__card .c-show-page__card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.no_video_slider.s-show-page-cards .container {
  max-width: 1620px;
  margin: auto;
}
.no_video_slider.s-show-page-cards .container .c-show-page__card-img img {
  height: 154px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.no_video_slider.s-show-page-cards .container .c-intro {
  margin-bottom: 20px;
}
.no_video_slider.s-show-page-cards .container .c-intro:before {
  display: none;
}
.no_video_slider.s-show-page-cards .container .c-intro .c-intro__title {
  font-size: 25px;
  color: #FFFFFF;
}
.no_video_slider.s-show-page-cards .container .c-swiper-btn-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.75;
}
.no_video_slider.s-show-page-cards .container .c-swiper-btn-prev.swiper-button-disabled {
  display: none;
}
.no_video_slider.s-show-page-cards .container .c-swiper-btn-prev:after {
  content: "\f060";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 600;
  transform: none;
  border: none;
  margin: 0;
  width: 18px;
  font-size: 21px;
  color: #fff;
}
.no_video_slider.s-show-page-cards .container .c-swiper-btn-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.75;
}
.no_video_slider.s-show-page-cards .container .c-swiper-btn-next.swiper-button-disabled {
  display: none;
}
.no_video_slider.s-show-page-cards .container .c-swiper-btn-next:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 600;
  transform: none;
  border: none;
  margin: 0;
  width: 18px;
  font-size: 21px;
  color: #fff;
}
.no_video_slider.s-show-page-cards .container .swiper-container {
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(143, 143, 143);
}
.no_video_slider.s-show-page-cards .container .swiper-container .swiper-slide {
  cursor: pointer;
  margin-right: 30px;
}
@media (max-width: 500px) {
  .no_video_slider.s-show-page-cards .container .swiper-container .swiper-slide {
    margin-right: 0;
  }
}

.swiper-slide * {
  font-family: Sohne, sans-serif !important;
}
.swiper-slide:hover .c-show-page__card {
  background: linear-gradient(180deg, rgba(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue), 0.6) 0%, rgba(0, 134, 186, 0) 100%), rgba(255, 255, 255, 0.16);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.swiper-slide:hover .c-show-page__card .c-show-page__card-body .c-link--title {
  text-decoration: none;
}
.swiper-slide:hover .overlay {
  pointer-events: all !important;
  opacity: 1 !important;
  transition: 0.3s ease !important;
}
.swiper-slide .c-show-page__card {
  background: transparent;
  box-shadow: none;
  transition: 0.3s ease;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  height: 100%;
}
.swiper-slide .c-show-page__card .c-show-page__card-img {
  position: relative;
  overflow: visible;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay * {
  color: #fff !important;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .share {
  z-index: 998;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay {
  display: none;
  position: absolute;
  right: 12px;
  bottom: -100px;
  width: 100%;
  z-index: 999;
  align-items: center;
  justify-content: center;
  background-color: #000;
  max-width: 194px;
  height: auto;
  border: 1px solid #515151;
  border-radius: 10px;
  overflow: hidden;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay.active {
  display: block;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay p.title {
  margin: 0;
  padding: 5px 10px 0;
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay .c-share__list {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  background: #000;
  align-items: center;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay .c-share__list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 33px;
  background: #242424;
  border-radius: 10px;
  margin-bottom: 5px;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay .c-share__list li svg {
  margin-left: 0;
  margin-right: 10px;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay .c-share__list li a {
  width: 100%;
  font-size: 13px;
  line-height: 15px;
  color: #FFFFFF;
  padding: 0px 6px 0px 15px;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .social-overlay .c-share__list li .c-share-wrap {
  width: 100%;
  font-size: 13px;
  line-height: 15px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0px 6px 0px 15px;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .card-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 3px;
  background: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
  border-color: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .share .c-button {
  border-radius: 50%;
  width: 43px;
  height: 43px;
  margin-bottom: 12px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide .c-show-page__card .c-show-page__card-img .overlay .share .c-button i {
  font-family: "Font Awesome 5 Free" !important;
}
.swiper-slide .c-show-page__card .c-show-page__card-body .c-show-page__card-title {
  text-align: left;
  font-size: 18px;
  line-height: 20px;
  text-align: justify;
  color: #FFFFFF;
  margin: 0 0 5px;
}
.swiper-slide .c-show-page__card .c-show-page__card-body .c-show-page__card-description {
  font-size: 14px;
  line-height: 20px;
  color: #C4C4C4;
}
.swiper-slide .c-show-page__card .c-show-page__card-img:hover {
  background: transparent;
}
.swiper-slide .c-show-page__card .c-show-page__card-img:hover img {
  background: transparent;
  transform: scale(1);
  opacity: 1;
}

.s-show-page {
  padding: 40px 0 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .s-show-page {
    padding: 100px 0 10px 0;
  }
}
@media screen and (min-width: 1350px) {
  .s-show-page .container {
    max-width: 1330px;
  }
}
.s-show-page .c-intro {
  padding: 20px 0;
}
.s-show-page .c-intro__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-show-page .c-intro__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .s-show-page .c-intro__title {
    font-size: calc(23 / 16 * 1rem);
    line-height: calc(27 / 23);
    font-weight: 500;
  }
}
.s-show-page .c-button {
  margin: 0 15px 10px 0;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  border-radius: 7px;
  border-width: 1px;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .s-show-page .c-button {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(17 / 14);
    font-weight: 400;
    padding: 6px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .s-show-page .c-button {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(18 / 15);
    font-weight: 400;
    padding: 7px 25px;
  }
}
.s-show-page .c-show-page__card {
  margin-bottom: 0;
}
.s-show-page .u-border--bottom::before {
  background-color: #5c5c5c;
}

.s-show-page__img {
  display: none;
}
@media screen and (min-width: 768px) {
  .s-show-page__img {
    display: block;
  }
  .s-show-page__img img {
    margin-left: auto;
  }
}

.s-show-page__btn-wrapper {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .s-show-page__btn-wrapper {
    justify-content: flex-start;
  }
}

.s-show-page__title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .s-show-page__title {
    text-align: left;
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(17 / 14);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .s-show-page__title {
    margin-bottom: 30px;
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
  }
}

.s-show-page__logo {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .s-show-page__logo {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .s-show-page__logo {
    margin-bottom: 30px;
  }
}

.s-show-page__card {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s-show-page__card {
    margin-bottom: 0;
  }
}

.shows-template-default.light .u-bg-primary {
  background-color: #fff;
}
.shows-template-default.light .u-white {
  color: #000;
}
.shows-template-default.light .c-button--outline-transparent {
  color: #000;
}
.shows-template-default.light .c-button--outline-transparent:hover {
  color: #fff;
}

.shows-template-default.dark .u-bg-primary {
  background-color: #000;
}
.shows-template-default.dark .u-white {
  color: #fff;
}
.shows-template-default.dark .c-button--outline-transparent {
  color: #fff;
}
.shows-template-default.dark .c-button--outline-transparent:hover {
  color: #000;
}

@media screen and (min-width: 1300px) {
  .s-shows .container {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1500px) {
  .s-shows .container {
    max-width: 1360px;
  }
}
.s-shows .c-intro {
  padding: 12px 0;
}
@media screen and (min-width: 767px) {
  .s-shows .c-intro {
    padding: 20px 0;
  }
}
.s-shows .c-intro__title {
  font-size: 20px;
  font-weight: 400;
  font-family: "Sohne", sans-serif;
}
@media screen and (min-width: 767px) {
  .s-shows .c-intro__title {
    font-size: 25px;
  }
}
.s-shows .c-shows {
  position: relative;
  padding-bottom: 38px;
}
.s-shows .c-shows .c-button {
  display: inline-block;
  margin-top: 8px;
}
.s-shows .c-shows__body {
  position: absolute;
  top: calc(100% - 34px);
  width: 100%;
  border-radius: 0 0 15px 15px;
  transition: all 0.4s ease-in;
  padding: 15px;
  border-radius: 15px;
}
.s-shows .c-shows__img {
  transition: all 0.4s ease-in;
}
.s-shows .c-shows__title {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-shows .c-shows__title {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(19 / 15);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .s-shows .c-shows__title {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(18 / 16);
    font-weight: 500;
  }
}
.s-shows .c-shows__description {
  margin-top: 5px;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(14 / 12);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 1240px) {
  .s-shows .c-shows__description {
    font-size: calc(14 / 16 * 1rem);
    line-height: calc(16 / 14);
    font-weight: 400;
  }
}
.s-shows .c-shows:hover .c-shows__img {
  transform: translateY(15px);
}
.s-shows .c-shows:hover .c-shows__body {
  transform: translateY(calc(-100% + 11px));
  -ms-transform: translateY(-100%) translateY(11px);
  background-color: rgba(26, 26, 26, 0.95);
}

.page-template-template-links .c-shows {
  height: 100%;
}
.page-template-template-links .c-shows a {
  height: 100%;
  color: #fff;
  display: block;
}
.page-template-template-links .c-shows a span {
  display: block;
  min-height: 70px;
}
.page-template-template-links .c-shows a img {
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .page-template-template-links .c-bottom-cta {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #000;
    z-index: 999;
    padding: 15px 0;
    margin: 0 !important;
  }
  .page-template-template-links .c-bottom-cta a {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 8px;
  }
}

.gnav20-using-mouse main .u-bg-primary {
  background: #fff;
  position: relative;
}

.s-video-lessons {
  position: relative;
  padding-top: 30px;
  background: linear-gradient(rgb(19, 36, 56), rgba(19, 36, 56, 0) 60%);
}
@media screen and (min-width: 1200px) {
  .s-video-lessons .container {
    padding-top: 83px;
    max-width: 1370px;
  }
}
.s-video-lessons .c-video-lessons {
  position: relative;
  height: 400px;
}
@media screen and (min-width: 1200px) {
  .s-video-lessons .c-video-lessons {
    height: 550px;
  }
}
@media screen and (min-width: 1300px) {
  .s-video-lessons .c-video-lessons {
    height: 600px;
  }
}
.s-video-lessons .c-video-lessons::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 25%;
  background: linear-gradient(rgba(4, 7, 10, 0), rgb(4, 7, 10));
}

.s-video-lessons__main {
  margin-bottom: 33px;
}
.s-video-lessons__main .wistia_embed {
  width: 100% !important;
}

.s-video-lessons__info {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(18 / 13);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-video-lessons__info {
    font-size: calc(15 / 16 * 1rem);
    line-height: calc(18 / 15);
    font-weight: 400;
  }
}

.s-video-lessons__progress {
  margin-top: 40px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
}

.s-video-lessons__progress-all {
  margin-top: 16px;
  width: 100%;
  height: 18px;
  border-radius: 7px;
  background-color: #2b2b2b;
}

.s-video-lessons__progress-complete {
  height: 100%;
  width: 45%;
  border-radius: 7px;
  background: #f0b000;
}

.s-video-lessons__close {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.s-video-lessons__close::before, .s-video-lessons__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 2px;
  background-color: #fff;
}
.s-video-lessons__close::before {
  transform: rotate(45deg);
}
.s-video-lessons__close::after {
  transform: rotate(-45deg);
}

.s-video-lessons__main {
  position: relative;
}
.s-video-lessons__main .s-video-helper {
  transition: all 0.5s ease;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(4, 7, 10, 0.85), #04070a);
  z-index: 99;
}
.s-video-lessons__main .s-video-helper__hidden {
  opacity: 0;
  z-index: -1;
}
.s-video-lessons__main .s-video-helper__loading:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 120;
  background-image: url(../../img/icons/loader.svg);
  background-repeat: no-repeat;
  height: 45px;
  width: 45px;
  background-size: cover;
}
.s-video-lessons__main .s-video-helper__paused {
  cursor: pointer;
}
.s-video-lessons__main .s-video-helper__paused:before {
  content: "";
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 120;
  transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
  border: 1px solid #fff;
  background: linear-gradient(rgba(4, 7, 10, 0.75), #04070a);
}
.s-video-lessons__main .s-video-helper__paused:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 120;
  transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #fff;
}
.s-video-lessons__main .s-video-helper__failed {
  background: linear-gradient(rgb(4, 7, 10), #04070a);
}
.s-video-lessons__main .s-video-helper__failed:before {
  content: "Sorry, but... , please try later";
  font-size: 14px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 120;
  transform: translate(-50%, -50%);
}
.s-video-lessons__main .s-video-helper__ended {
  background: linear-gradient(rgb(4, 7, 10), #04070a);
}
.s-video-lessons__main .s-video-helper__ended:before {
  content: "Thank you, please choose next episode";
  font-size: 14px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 120;
  transform: translate(-50%, -50%);
}

.show-video-post {
  background: linear-gradient(180deg, #1D2327 0%, rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue)) 100%);
}
.show-video-post .show-into-section {
  max-width: 1004px;
  margin: auto;
  background: transparent;
  width: 100%;
  padding: 72px 20px 60px !important;
  display: flex;
  flex-direction: column;
}
.show-video-post .show-into-section a.c-button--desktop {
  position: relative;
  left: auto;
  transform: none;
  margin: 0;
  transition: 0.3s ease;
}
.show-video-post .show-into-section a.c-button--desktop:hover {
  opacity: 0.75;
  transition: 0.3s ease;
}
.show-video-post .show-into-section a.c-button--desktop .btn-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 18px;
  background: #000000;
  border: 1px solid #5E6B71;
  border-radius: 30px;
  justify-content: center;
}
.show-video-post .show-into-section a.c-button--desktop .btn-back span {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.show-video-post .show-into-section a.c-button--desktop .btn-back i {
  font-size: 8px;
  margin-left: 5px;
  color: #FFFFFF;
  font-family: "Font Awesome 5 Free";
}
.show-video-post .show-into-section .shows-video-post-companyInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 40px;
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid #181818;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .show-video-post .show-into-section .shows-video-post-companyInfo {
    padding: 20px;
  }
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box {
  width: inherit;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: inherit;
}
@media (max-width: 768px) {
  .show-video-post .show-into-section .shows-video-post-companyInfo .box .info {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .show-video-post .show-into-section .shows-video-post-companyInfo .box .info .logo {
    align-self: flex-start;
  }
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .logo img {
  max-width: 150px;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .content-info {
  flex: 1;
  width: inherit;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .content-info h3 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 5px;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .content-info p {
  font-size: 16px;
  line-height: 20px;
  color: #C4C4C4;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share {
    flex-direction: column;
    align-items: center;
  }
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .block {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .block {
    align-self: flex-start;
  }
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share p.name {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0 10px 0 0;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .tags .tag {
  font-size: 11px;
  line-height: 13px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
  border-radius: 12px;
  padding: 4px 10px;
  max-width: 110px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .share span.c-main-post-share__title {
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .share a.c-main-post-share__item {
  border-color: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .share a.c-main-post-share__item:hover {
  background-color: transparent;
  opacity: 0.6;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .share a.c-main-post-share__item i {
  color: #FFFFFF;
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .block-share-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .show-video-post .show-into-section .shows-video-post-companyInfo .box .info .tags-and-share .block-share-cta {
    gap: 20px;
  }
}
.show-video-post .show-into-section .shows-video-post-companyInfo .box .info .cta button {
  margin-right: 0;
  background: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
  border-color: rgb(var(--mainColor_red), var(--mainColor_green), var(--mainColor_blue));
}

.show-video-post-share.share {
  margin-bottom: 20px;
  margin-top: 10px;
}
.show-video-post-share.share .c-main-post-share__title {
  font-size: 13px;
  line-height: 15px;
}
.show-video-post-share.share .c-main-post-share__list a {
  width: 20px;
  height: 20px;
  border: 1px solid #9BA5B4;
  transition: 0.3s ease;
  opacity: 1;
}
.show-video-post-share.share .c-main-post-share__list a:hover {
  text-decoration: none;
  background: transparent;
  opacity: 0.75;
  transition: 0.3s ease;
}
.show-video-post-share.share .c-main-post-share__list a:nth-child(4) i, .show-video-post-share.share .c-main-post-share__list a:nth-child(5) i {
  font-family: "Font Awesome 5 Free" !important;
}
.show-video-post-share.share .c-main-post-share__list a i {
  color: var(--mainTextColor) !important;
  font-size: 11px;
  font-family: "Font Awesome 5 Brands" !important;
}

.shows-video-post-content {
  border-bottom: 1px solid #C4C4C4;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding-bottom: 30px;
}
.shows-video-post-content .c-main-post__content {
  max-width: 753px;
  margin: auto;
  padding: 0 20px;
}
.shows-video-post-content .c-main-post__content .info h1 {
  font-size: 30px;
  line-height: 108.1%;
  margin-bottom: 20px;
}
.shows-video-post-content .c-main-post__content .info .info-content {
  display: flex;
  justify-content: space-between;
}
.shows-video-post-content .c-main-post__content .info .info-content .data {
  font-size: 13px;
  line-height: 15px;
}
.shows-video-post-content .c-main-post__content .info .info-content .post-tags {
  display: flex;
}
.shows-video-post-content .c-main-post__content .info .info-content .post-tags .tag {
  cursor: default;
  background: rgba(240, 240, 240, 0.2);
  border-radius: 12px;
  padding: 3px 10px;
  margin-left: 5px;
  font-size: 11px;
  line-height: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shows-video-post-content .c-main-post__content p {
  margin-bottom: 30px;
}
.shows-video-post-content .c-main-post__content p, .shows-video-post-content .c-main-post__content a, .shows-video-post-content .c-main-post__content span, .shows-video-post-content .c-main-post__content li, .shows-video-post-content .c-main-post__content ul, .shows-video-post-content .c-main-post__content ol, .shows-video-post-content .c-main-post__content td, .shows-video-post-content .c-main-post__content tr, .shows-video-post-content .c-main-post__content th, .shows-video-post-content .c-main-post__content h1, .shows-video-post-content .c-main-post__content h2, .shows-video-post-content .c-main-post__content h3, .shows-video-post-content .c-main-post__content h4, .shows-video-post-content .c-main-post__content h5, .shows-video-post-content .c-main-post__content h6, .shows-video-post-content .c-main-post__content div {
  color: var(--mainTextColor) !important;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  font-family: Sohne, sans-serif !important;
}

.shows-video-post-latestPosts {
  padding-bottom: 35px;
}
.shows-video-post-latestPosts * {
  color: var(--mainTextColor) !important;
  font-family: Sohne, sans-serif !important;
}
@media (max-width: 768px) {
  .shows-video-post-latestPosts .latest-shows .swiper-slide {
    cursor: pointer;
    flex-basis: 100% !important;
  }
}
.shows-video-post-latestPosts .c-latest__title {
  font-size: 25px;
  line-height: 18px;
  margin-bottom: 40px;
}
.shows-video-post-latestPosts .latest-shows {
  justify-content: space-between;
}
.shows-video-post-latestPosts .latest-shows .swiper-slide {
  cursor: pointer;
  flex-basis: calc(33% - 5px);
  padding: 15px;
}
.shows-video-post-latestPosts .latest-shows .swiper-slide:hover .c-show-page__card {
  background: linear-gradient(180deg, rgba(69, 79, 94, 0.6) 0%, rgba(0, 134, 186, 0) 100%), rgba(255, 255, 255, 0.16) !important;
}
.shows-video-post-latestPosts .latest-shows .swiper-slide .c-show-page__card .c-show-page__card-body .c-show-page__card-description {
  opacity: 0.75;
}

@media screen and (min-width: 1350px) {
  .s-show-page-cards .container {
    max-width: 1330px;
  }
}
.s-show-page-cards .swiper-button-prev,
.s-show-page-cards .swiper-button-next {
  top: 20%;
}
@media screen and (min-width: 350px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 24%;
  }
}
@media screen and (min-width: 400px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 29%;
  }
}
@media screen and (min-width: 475px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 33%;
  }
}
@media screen and (min-width: 576px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 124px;
  }
}
@media screen and (min-width: 768px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 90px;
  }
}
@media screen and (min-width: 960px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 120px;
  }
}
@media screen and (min-width: 992px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 72px;
  }
}
@media screen and (min-width: 1240px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 92px;
  }
}
@media screen and (min-width: 1250px) {
  .s-show-page-cards .swiper-button-prev,
  .s-show-page-cards .swiper-button-next {
    top: 82px;
  }
}
.s-show-page-cards .swiper-button-prev:after,
.s-show-page-cards .swiper-button-next:after {
  content: "";
  width: 15px;
  height: 15px;
  border-top-width: 4px !important;
  border-right-width: 4px !important;
  border-left-width: 4px !important;
}
@media screen and (min-width: 576px) {
  .s-show-page-cards .swiper-button-prev:after,
  .s-show-page-cards .swiper-button-next:after {
    width: 20px;
    height: 20px;
    border-top-width: 5px !important;
    border-right-width: 5px !important;
    border-left-width: 5px !important;
  }
}
.s-show-page-cards .swiper-button-next {
  right: -8px;
}
@media screen and (min-width: 960px) {
  .s-show-page-cards .swiper-button-next {
    right: 0;
  }
}
@media screen and (min-width: 980px) {
  .s-show-page-cards .swiper-button-next {
    right: -5px;
  }
}
.s-show-page-cards .swiper-button-next::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-right: 15%;
}
.s-show-page-cards .swiper-button-prev {
  left: -8px;
}
@media screen and (min-width: 960px) {
  .s-show-page-cards .swiper-button-prev {
    left: 0;
  }
}
@media screen and (min-width: 980px) {
  .s-show-page-cards .swiper-button-prev {
    left: -5px;
  }
}
.s-show-page-cards .swiper-button-prev::after {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
  margin-left: 15%;
}
.s-show-page-cards .c-intro {
  padding: 20px 0;
}
.s-show-page-cards .c-intro__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-show-page-cards .c-intro__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .s-show-page-cards .c-intro__title {
    font-size: calc(23 / 16 * 1rem);
    line-height: calc(27 / 23);
    font-weight: 500;
  }
}

.s-contributor {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .s-contributor {
    padding: 55px 0;
  }
}
@media screen and (min-width: 992px) {
  .s-contributor {
    padding: 85px 0;
  }
}
@media screen and (min-width: 1300px) {
  .s-contributor .container {
    max-width: 1270px;
  }
}

.s-contributor__about-author {
  margin-bottom: 15px;
  padding-bottom: 13px;
}

.s-contributor__title {
  padding: 10px 0;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .s-contributor__title {
    padding: 12px 0;
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 700;
  }
}

.s-contributor__author-name {
  font-size: calc(22 / 16 * 1rem);
  line-height: calc(26 / 22);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-contributor__author-name {
    font-size: calc(25 / 16 * 1rem);
    line-height: calc(29 / 25);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .s-contributor__author-name {
    font-size: calc(34 / 16 * 1rem);
    line-height: calc(36 / 34);
    font-weight: 500;
  }
}

.s-contributor__author-title {
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(23 / 16);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-contributor__author-title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(26 / 18);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .s-contributor__author-title {
    font-size: calc(22 / 16 * 1rem);
    line-height: calc(28 / 22);
    font-weight: 500;
  }
}

.s-contributor__author-location {
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(19 / 15);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-contributor__author-location {
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(21 / 17);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .s-contributor__author-location {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(28 / 18);
    font-weight: 400;
  }
}

.subscribe-f.blocker {
  border-color: #383838;
  background: #383838;
  opacity: 0.7;
  pointer-events: none;
}

.s-episode-video {
  position: relative;
  padding-top: 60px;
}
@media screen and (min-width: 1200px) {
  .s-episode-video {
    padding-top: 96px;
  }
}
.s-episode-video .c-button {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1200px) {
  .s-episode-video .c-button {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 400;
  }
}
.s-episode-video .c-button:hover {
  opacity: 0.8;
}
.s-episode-video .c-button--desktop {
  position: absolute;
  left: calc((100% - 1200px) / 2);
  display: none;
  margin-top: 15px;
  transform: translate(-100%);
}
@media screen and (min-width: 1500px) {
  .s-episode-video .c-button--desktop {
    display: inline-block;
    left: calc((100% - 1325px) / 2);
  }
}
@media screen and (min-width: 1920px) {
  .s-episode-video .c-button--desktop {
    left: calc((100% - 1325px) / 2 - 50px);
  }
}
.s-episode-video .c-button--mobile {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s-episode-video .c-button--mobile {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1500px) {
  .s-episode-video .c-button--mobile {
    display: none;
  }
}
.s-episode-video .c-latest::after,
.s-episode-video .c-video-live::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .s-episode-video .c-post-lg {
    padding: 19px 0 17px;
  }
}
.s-episode-video .s-episode-video__post a {
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .s-episode-video--wide {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1240px) {
  .s-episode-video--wide .container {
    max-width: 1325px;
  }
}

@media screen and (min-width: 1240px) {
  .s-episode-video__main {
    padding-right: 20px;
  }
}

.s-episode-video__title {
  margin-bottom: 22px;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(24 / 20);
  font-weight: 400;
}
@media screen and (min-width: 960px) {
  .s-episode-video__title {
    font-size: calc(30 / 16 * 1rem);
    line-height: calc(36 / 30);
    font-weight: 400;
  }
}
@media screen and (min-width: 1240px) {
  .s-episode-video__title {
    font-size: calc(36 / 16 * 1rem);
    line-height: calc(43 / 36);
    font-weight: 400;
  }
}
@media screen and (min-width: 1500px) {
  .s-episode-video__title {
    font-size: calc(41 / 16 * 1rem);
    line-height: calc(49 / 41);
    font-weight: 400;
  }
}

.s-episode-video__info {
  margin-bottom: 25px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(14 / 12);
  font-weight: 400;
}

.s-episode-video__subtitle {
  margin-bottom: 30px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(20 / 17);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .s-episode-video__subtitle {
    margin-bottom: 51px;
    font-size: calc(19 / 16 * 1rem);
    line-height: calc(22 / 19);
    font-weight: 400;
  }
}
.s-episode-video__subtitle span {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}

.s-episode-video__description {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(20 / 14);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .s-episode-video__description {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
  }
}
.s-episode-video__description p {
  margin-bottom: 19px;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.s-episode-video__latest {
  padding: 42px 0 20px;
}
@media screen and (min-width: 768px) {
  .s-episode-video__latest {
    padding: 42px 0 0;
  }
}
.s-episode-video__latest .c-post-lg__img img {
  width: 100%;
}
.s-episode-video__latest .c-post-lg__title {
  margin: 14px 0 16px;
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(20 / 17);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  color: #fff;
}
.s-episode-video__latest .c-latest__header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #5c5c5c;
}
.s-episode-video__latest .c-latest__title {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
}
.s-episode-video__latest .c-post-lg__title {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(20 / 17);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .s-episode-video__latest .c-post-lg__title {
    font-size: calc(19 / 16 * 1rem);
    line-height: calc(23 / 19);
    font-weight: 400;
  }
}
.s-episode-video__latest .c-post-lg__description {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(20 / 14);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .s-episode-video__latest .c-post-lg__description {
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(20 / 17);
    font-weight: 400;
  }
}

.s-episode-video__news {
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
  color: #000;
}
@media screen and (min-width: 1200px) {
  .s-episode-video__news {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .s-episode-video__news .c-video-live {
    padding: 40px 0 10px;
  }
}

.s-podcast {
  padding: 30px 0 20px;
}
@media screen and (min-width: 768px) {
  .s-podcast {
    padding: 45px 0 30px;
  }
}
@media screen and (min-width: 992px) {
  .s-podcast {
    padding: 60px 0 0;
  }
}
@media screen and (min-width: 1300px) {
  .s-podcast .container {
    max-width: 1240px;
  }
}
.s-podcast:last-child {
  padding-top: 0;
}
.s-podcast .c-podcast-card__description {
  color: #000;
}

.s-podcast__title {
  padding: 18px 0;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(20 / 16);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .s-podcast__title {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .s-podcast__title {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 500;
  }
}

@media screen and (min-width: 1400px) {
  .s-course .container {
    max-width: 1350px;
  }
}
.s-course .u-border--top::before {
  background-color: #676767;
  width: 100%;
  max-width: 100%;
}
.s-course .c-link--title {
  display: inline-block;
}

.s-course__title {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 500;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  padding: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .s-course__title {
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 500;
    padding: 30px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .s-course__title {
    font-size: calc(23 / 16 * 1rem);
    line-height: calc(27 / 23);
    font-weight: 500;
    padding: 40px 0 0;
  }
}

.s-course-head {
  position: relative;
  padding-top: 150px;
  background-size: contain;
  background-repeat: no-repeat;
}
.s-course-head__wrap {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .s-course-head__wrap {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .s-course-head__wrap {
    margin-bottom: 80px;
  }
}
.s-course-head__wrap .c-share .c-button {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .s-course-head {
    padding-top: 200px;
  }
}
@media screen and (min-width: 992px) {
  .s-course-head {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1400px) {
  .s-course-head .container {
    max-width: 1350px;
  }
}
.s-course-head .u-border--top::before {
  background-color: #cfcfcf;
  width: 100%;
  max-width: 100%;
}
.s-course-head .c-button__startNow {
  margin-right: 20px;
  height: 30px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .s-course-head .c-button__startNow {
    height: 44px;
  }
}
.s-course-head .s-video-lessons__progress {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s-course-head .s-video-lessons__progress {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 992px) {
  .s-course-head .s-video-lessons__progress {
    margin-bottom: 50px;
  }
}
.s-course-head .c-link--title {
  display: inline-block;
}
.s-course-head .s-video-lessons__progress-info {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-course-head .s-video-lessons__progress-info {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(20 / 16);
    font-weight: 400;
  }
}
.s-course-head::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 113px;
  background: linear-gradient(to bottom, #000 3%, transparent 97%);
}

.s-course-head__logo {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s-course-head__logo {
    margin-bottom: 30px;
  }
}

.s-course-head__title {
  font-size: 30px;
  margin-bottom: 5px;
}

.s-course-head__description {
  margin-bottom: 10px;
  color: #fff;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s-course-head__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .s-course-head__description {
    font-size: 18px;
  }
}
@media screen and (min-width: 1500px) {
  .s-course-head__description {
    font-size: 20px;
  }
}

@media screen and (min-width: 992px) {
  .s-course-head__video {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 1300px) {
  .s-course-head__video {
    width: 80%;
    margin-left: auto;
    margin-right: 100px;
  }
}
.s-course-head__video iframe {
  width: 270px;
  height: 160px;
}
@media screen and (min-width: 400px) {
  .s-course-head__video iframe {
    width: 370px;
    height: 218px;
  }
}
@media screen and (min-width: 576px) {
  .s-course-head__video iframe {
    width: 400px;
    height: 235px;
  }
}
@media screen and (min-width: 768px) {
  .s-course-head__video iframe {
    width: 640px;
    height: 360px;
  }
}

.s-course-head__title {
  margin-bottom: 10px;
  color: #fff;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .s-course-head__title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .s-course-head__title {
    font-size: 26px;
  }
}
@media screen and (min-width: 1500px) {
  .s-course-head__title {
    font-size: 30px;
  }
}

.s-course-footer {
  padding: 20px 0 5px;
}
@media screen and (min-width: 768px) {
  .s-course-footer {
    padding: 30px 0 10px;
  }
}
@media screen and (min-width: 992px) {
  .s-course-footer {
    padding: 50px 0 10px;
  }
}
.s-course-footer .c-button {
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(19 / 15);
  font-weight: 500;
  margin-bottom: 45px;
  padding: 14px 20px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .s-course-footer .c-button {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 500;
    margin-bottom: 75px;
    padding: 17px 38px;
  }
}
@media screen and (min-width: 992px) {
  .s-course-footer .c-button {
    font-size: calc(24 / 16 * 1rem);
    line-height: calc(28 / 24);
    font-weight: 500;
    margin-bottom: 95px;
    padding: 23px 63px;
  }
}

.s-online-learning {
  position: relative;
  padding: 40px 0;
}
.s-online-learning .firstL {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .s-online-learning {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1400px) {
  .s-online-learning .container {
    max-width: 1325px;
  }
}
.s-online-learning .c-button {
  padding: 7px 21px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 7px;
  transition: color 0.3s, background-color 0.3s;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(18 / 15);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.375px;
}
.s-online-learning .c-button:hover, .s-online-learning .c-button:active {
  color: #000;
  background-color: #fff;
}
.s-online-learning .c-swiper-btn-prev:after,
.s-online-learning .c-swiper-btn-next:after {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .s-online-learning .c-swiper-btn-prev:after,
  .s-online-learning .c-swiper-btn-next:after {
    font-size: 34px;
  }
}
.s-online-learning .c-swiper-btn-prev {
  left: -25px;
}
@media screen and (min-width: 768px) {
  .s-online-learning .c-swiper-btn-prev {
    left: -10px;
  }
}
.s-online-learning .c-swiper-btn-next {
  right: -25px;
}
@media screen and (min-width: 768px) {
  .s-online-learning .c-swiper-btn-next {
    right: -10px;
  }
}
.s-online-learning .swiper-button-disabled {
  display: none;
}

@media screen and (min-width: 768px) {
  .s-online-learning__info {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1240px) {
  .s-online-learning__info {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .s-online-learning__info {
    padding-right: 70px;
  }
}
@media screen and (min-width: 1500px) {
  .s-online-learning__info {
    padding: 80px 80px 80px 0;
  }
}

.s-online-learning__title {
  margin-bottom: 15px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(22 / 16 * 1rem);
  line-height: calc(26 / 22);
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .s-online-learning__title {
    font-size: calc(30 / 16 * 1rem);
    line-height: calc(36 / 30);
    font-weight: 700;
  }
}
@media screen and (min-width: 1240px) {
  .s-online-learning__title {
    margin-bottom: 25px;
    font-size: calc(40 / 16 * 1rem);
    line-height: calc(48 / 40);
    font-weight: 700;
  }
}
@media screen and (min-width: 1400px) {
  .s-online-learning__title {
    font-size: calc(46 / 16 * 1rem);
    line-height: calc(55 / 46);
    font-weight: 700;
  }
}

.s-online-learning__description {
  margin-bottom: 20px;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .s-online-learning__description {
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 400;
  }
}
@media screen and (min-width: 1240px) {
  .s-online-learning__description {
    margin-bottom: 30px;
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(21 / 18);
    font-weight: 400;
  }
}

@media screen and (min-width: 1400px) {
  .s-online-learning__button .c-button {
    padding: 12px 35px;
    font-size: calc(24 / 16 * 1rem);
    line-height: calc(29 / 24);
    font-weight: 400;
    letter-spacing: 0.6px;
  }
}

.s-online-learning__video {
  margin-top: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s-online-learning__video {
    margin-top: 0;
  }
}
.s-online-learning__video--desktop {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: none;
  max-width: 57%;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}
@media screen and (min-width: 1500px) {
  .s-online-learning__video--desktop {
    display: block;
  }
}
@media screen and (min-width: 1800px) {
  .s-online-learning__video--desktop {
    max-width: 900px;
    left: 50%;
  }
}
@media screen and (min-width: 2000px) {
  .s-online-learning__video--desktop video {
    width: inherit;
  }
}
.s-online-learning__video--desktop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.s-online-learning__subtitle {
  margin-bottom: 10px;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(22 / 16 * 1rem);
  line-height: calc(26 / 22);
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .s-online-learning__subtitle {
    margin-bottom: 25px;
    font-size: calc(31 / 16 * 1rem);
    line-height: calc(37 / 31);
    font-weight: 400;
  }
}

.s-online-learning__courses {
  position: relative;
}
.s-online-learning__courses .swiper-container {
  margin: 0 -16px;
}
@media screen and (min-width: 1260px) {
  .s-online-learning__courses .swiper-container {
    margin: 0 -32px;
  }
}
.s-online-learning__courses .c-swiper-btn-prev,
.s-online-learning__courses .c-swiper-btn-next {
  transform: translateY(-50%);
}
.s-online-learning__courses .s-online-learning__subtitle {
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(24 / 20);
  font-weight: 400;
  border-bottom: 1px solid #676767;
}
.s-online-learning__courses .s-online-learning__cards-slider {
  position: relative;
}
.s-online-learning__courses .c-post-lg {
  padding: 0 16px;
}
@media screen and (min-width: 992px) {
  .s-online-learning__courses .c-post-lg {
    padding: 0 22px;
  }
}
@media screen and (min-width: 1200px) {
  .s-online-learning__courses .c-post-lg {
    padding: 0 32px;
  }
}
.s-online-learning__courses .c-post-lg__img {
  margin-bottom: 15px;
  display: block;
  height: auto;
  padding-bottom: 56.4%;
  overflow: hidden;
}
.s-online-learning__courses .c-post-lg__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-online-learning__courses .c-post-lg__title {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(19 / 16 * 1rem);
  line-height: calc(23 / 19);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .s-online-learning__courses .c-post-lg__title {
    font-size: calc(22 / 16 * 1rem);
    line-height: calc(26 / 22);
    font-weight: 400;
  }
}
.s-online-learning__courses .c-post-lg__subtitle {
  margin-bottom: 20px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(18 / 15);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .s-online-learning__courses .c-post-lg__subtitle {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .s-online-learning__courses .c-post-lg__subtitle {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
  }
}
.s-online-learning__courses .c-post-lg__description {
  margin-bottom: 20px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .s-online-learning__courses .c-post-lg__description {
    margin-bottom: 25px;
  }
}

.s-online-learning__top-lessons {
  position: relative;
}
.s-online-learning__top-lessons .s-online-learning__subtitle {
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(24 / 20);
  font-weight: 400;
  border-bottom: 1px solid #676767;
}
.s-online-learning__top-lessons .swiper-container {
  margin: 0 -16px;
}
@media screen and (min-width: 1260px) {
  .s-online-learning__top-lessons .swiper-container {
    margin: 0 -32px;
  }
}
.s-online-learning__top-lessons .c-swiper-btn-prev,
.s-online-learning__top-lessons .c-swiper-btn-next {
  transform: translateY(-50%);
}
.s-online-learning__top-lessons .s-online-learning__cards-slider {
  position: relative;
}
.s-online-learning__top-lessons .c-post-lg {
  padding: 0 16px;
}
@media screen and (min-width: 992px) {
  .s-online-learning__top-lessons .c-post-lg {
    padding: 0 22px;
  }
}
@media screen and (min-width: 1200px) {
  .s-online-learning__top-lessons .c-post-lg {
    padding: 0 32px;
  }
}
.s-online-learning__top-lessons .c-post-lg__img {
  margin-bottom: 15px;
  display: block;
  height: auto;
  padding-bottom: 56.4%;
  overflow: hidden;
}
.s-online-learning__top-lessons .c-post-lg__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-online-learning__top-lessons .c-post-lg__title {
  margin-bottom: 20px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .s-online-learning__top-lessons .c-post-lg__title {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .s-online-learning__top-lessons .c-post-lg__title {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 400;
  }
}
.s-online-learning__top-lessons .c-post-lg__description {
  margin-bottom: 20px;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-online-learning__top-lessons .c-post-lg__description {
    margin-bottom: 25px;
  }
}

#main {
  overflow: hidden;
}

.s-shows-head {
  overflow: visible;
}
.s-shows-head .c-share__list {
  border: 1px solid #222;
}
.s-shows-head .container {
  max-width: 1400px;
  padding: 0;
  overflow: hidden;
}
.s-shows-head .swiper-container {
  height: 240px;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .s-shows-head .swiper-container {
    height: 400px;
  }
}
@media screen and (min-width: 1500px) {
  .s-shows-head .swiper-container {
    height: 430px;
  }
}
.s-shows-head .swiper-button-prev,
.s-shows-head .swiper-button-next {
  display: none;
  height: 100%;
  width: 15px;
  top: 0;
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.42);
}
@media screen and (min-width: 576px) {
  .s-shows-head .swiper-button-prev,
  .s-shows-head .swiper-button-next {
    width: 20px;
  }
}
@media screen and (min-width: 768px) {
  .s-shows-head .swiper-button-prev,
  .s-shows-head .swiper-button-next {
    width: 30px;
  }
}
@media screen and (min-width: 992px) {
  .s-shows-head .swiper-button-prev,
  .s-shows-head .swiper-button-next {
    width: 40px;
  }
}
.s-shows-head .swiper-button-prev:after,
.s-shows-head .swiper-button-next:after {
  content: "";
  width: 7px;
  height: 7px;
  z-index: 10;
}
@media screen and (min-width: 450px) {
  .s-shows-head .swiper-button-prev:after,
  .s-shows-head .swiper-button-next:after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 576px) {
  .s-shows-head .swiper-button-prev:after,
  .s-shows-head .swiper-button-next:after {
    width: 12px;
    height: 12px;
    border-top-width: 2px !important;
    border-right-width: 2px !important;
    border-left-width: 2px !important;
  }
}
@media screen and (min-width: 768px) {
  .s-shows-head .swiper-button-prev:after,
  .s-shows-head .swiper-button-next:after {
    width: 16px;
    height: 16px;
    border-top-width: 3px !important;
    border-left-width: 3px !important;
    border-right-width: 3px !important;
  }
}
@media screen and (min-width: 992px) {
  .s-shows-head .swiper-button-prev:after,
  .s-shows-head .swiper-button-next:after {
    width: 20px;
    height: 20px;
    border-top-width: 5px !important;
    border-right-width: 5px !important;
    border-left-width: 5px !important;
  }
}
.s-shows-head .swiper-button-next {
  right: 0;
}
.s-shows-head .swiper-button-next::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-right: 15%;
}
.s-shows-head .swiper-button-prev {
  left: 0;
}
.s-shows-head .swiper-button-prev::after {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
  margin-left: 15%;
}
.s-shows-head .swiper-slide {
  height: auto;
}
.s-shows-head .swiper-slide-active {
  z-index: 20 !important;
}
.s-shows-head .swiper-slide-active .s-shows-head__body {
  visibility: visible;
}
@media screen and (min-width: 1400px) {
  .post-type-archive-learning .s-shows-head .container {
    max-width: 1920px;
  }
}

.s-shows-head__slider {
  margin: 0 -25px;
}
@media screen and (min-width: 576px) {
  .s-shows-head__slider {
    margin: 0;
  }
}

.s-shows-head__card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-type-archive-events .s-shows-head__card {
  height: 100%;
}
.s-shows-head__card.s-events-head__card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .s-shows-head__card.s-events-head__card {
    background-size: contain;
    background-position: 72%;
  }
}
@media screen and (min-width: 992px) {
  .s-shows-head__card.s-events-head__card {
    background-position: bottom right;
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  .s-shows-head__card.s-events-head__card {
    height: 460px;
    background-position: bottom right;
    background-size: contain;
  }
}

.s-shows-head__logo img {
  height: 60px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s-shows-head__logo img {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .s-shows-head__logo img {
    height: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .s-shows-head__logo img {
    height: 80px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1500px) {
  .s-shows-head__logo img {
    height: 140px;
  }
}

.s-shows-head__description {
  margin-bottom: 5px;
  color: #fff;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s-shows-head__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .s-shows-head__description {
    font-size: 18px;
    max-width: 96%;
  }
}
@media screen and (min-width: 1500px) {
  .s-shows-head__description {
    font-size: 20px;
    max-width: 86%;
  }
}

.s-shows-head__card_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .post-type-archive-events .s-shows-head__description {
    max-width: 400px;
  }
}

.s-shows-head__body {
  visibility: hidden;
  padding: 15px 0;
  max-width: 80%;
  margin-left: 10%;
}
@media screen and (min-width: 400px) {
  .s-shows-head__body {
    max-width: 70%;
  }
}
@media screen and (min-width: 576px) {
  .s-shows-head__body {
    max-width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .s-shows-head__body {
    max-width: 44%;
  }
}
@media screen and (min-width: 992px) {
  .s-shows-head__body {
    max-width: 50%;
  }
}
.s-shows-head__body .c-button {
  border-radius: 7px;
  padding: 1px 6px;
  font-size: calc(8 / 16 * 1rem);
  line-height: calc(12 / 8);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 450px) {
  .s-shows-head__body .c-button {
    padding: 3px 8px;
    font-size: calc(10 / 16 * 1rem);
    line-height: calc(14 / 10);
    font-weight: 400;
  }
}
@media screen and (min-width: 576px) {
  .s-shows-head__body .c-button {
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(17 / 13);
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .s-shows-head__body .c-button {
    padding: 8px 15px;
    font-size: calc(17 / 16 * 1rem);
    line-height: calc(21 / 17);
    font-weight: 400;
  }
}
@media screen and (min-width: 992px) {
  .s-shows-head__body .c-button {
    padding: 8px 16px;
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .s-shows-head__body .c-button {
    padding: 10px 18px;
    font-size: calc(19 / 16 * 1rem);
    line-height: calc(23 / 19);
    font-weight: 400;
  }
}
@media screen and (min-width: 1500px) {
  .s-shows-head__body .c-button {
    padding: 12px 20px;
    font-size: calc(21 / 16 * 1rem);
    line-height: calc(25 / 21);
    font-weight: 400;
  }
}

.s-episode-podcast {
  position: relative;
  padding-top: 40px;
}
@media screen and (min-width: 1200px) {
  .s-episode-podcast {
    padding-top: 60px;
  }
}
.s-episode-podcast .c-button {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(19 / 16);
  font-weight: 400;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1200px) {
  .s-episode-podcast .c-button {
    font-size: calc(20 / 16 * 1rem);
    line-height: calc(24 / 20);
    font-weight: 400;
  }
}
.s-episode-podcast .c-button:hover {
  opacity: 0.8;
}
.s-episode-podcast .c-button--arrow-left::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-135deg);
}
.s-episode-podcast .c-button--desktop {
  position: absolute;
  left: calc((100% - 1200px) / 2);
  display: none;
  transform: translate(-100%);
}
@media screen and (min-width: 1400px) {
  .s-episode-podcast .c-button--desktop {
    display: inline-block;
  }
}
@media screen and (min-width: 1920px) {
  .s-episode-podcast .c-button--desktop {
    left: calc((100% - 1200px) / 2 - 70px);
  }
}
.s-episode-podcast .c-button--mobile {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s-episode-podcast .c-button--mobile {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .s-episode-podcast .c-button--mobile {
    display: none;
  }
}

.s-episode-podcast__img {
  margin-bottom: 32px;
}
.s-episode-podcast__img img {
  width: 100%;
}

.s-404 .c-button {
  padding: 3px 20px;
  border: 1px solid;
  border-radius: 5px;
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(14 / 12);
  font-weight: 400;
  transition: color 0.3s, background-color 0.3s;
}
.s-404 .c-button:hover, .s-404 .c-button:active {
  color: #fff;
  background-color: #000;
}

.s-404__message {
  margin: auto;
  padding: 80px 0;
  max-width: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 500px) {
  .s-404__message {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 768px) {
  .s-404__message {
    padding: 120px 40px 120px 80px;
  }
}

.s-404__title {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: calc(62 / 16 * 1rem);
  line-height: calc(74 / 62);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-404__title {
    font-size: 100px;
  }
}

.s-404__btn {
  margin-top: 10px;
}

.s-iframe-page {
  position: relative;
  height: 200vh;
}
@media screen and (min-width: 692px) {
  .s-iframe-page {
    height: calc(100vh - 58px);
  }
}
@media screen and (min-width: 1200px) {
  .s-iframe-page {
    height: calc(100vh - 71px);
  }
}
.s-iframe-page p {
  font-size: 0;
  margin: 0;
}
.s-iframe-page .s-iframe-helper {
  overflow: hidden !important;
  margin: 0;
  padding: 0;
}
.s-iframe-page iframe {
  display: block;
  border: none;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.s-about__author-info {
  text-align: right;
  margin-bottom: 8px;
}

.s-about__name {
  font-size: calc(22 / 16 * 1rem);
  line-height: calc(26 / 22);
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .s-about__name {
    font-size: calc(41 / 16 * 1rem);
    line-height: calc(50 / 41);
    font-weight: 600;
    text-align: left;
  }
}

.s-about__position {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .s-about__position {
    font-size: calc(22 / 16 * 1rem);
    line-height: calc(26 / 22);
    font-weight: 400;
    text-align: left;
  }
}

.s-about__about {
  margin-top: 8px;
  font-size: calc(11 / 16 * 1rem);
  line-height: calc(13 / 11);
  font-weight: 400;
  color: #3a7aee;
}
@media screen and (min-width: 992px) {
  .s-about__about {
    font-size: calc(22 / 16 * 1rem);
    line-height: calc(26 / 22);
    font-weight: 400;
    text-align: left;
  }
}

.s-about__contact-links {
  margin: 18px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .s-about__contact-links {
    margin: 13px 0 0;
  }
}
.s-about__contact-links a {
  margin: 0 5px;
  font-size: 18px;
  color: inherit;
}

.s-about__video {
  margin-top: 48px;
}

.s-about__wrap {
  background-color: #fff;
  box-shadow: 3px 3px 20px 5px rgba(0, 0, 0, 0.1);
}
.u-bg-primary .s-about__wrap {
  background-color: #000;
}

.s-about__info {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(20 / 14);
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .s-about__info {
    font-size: calc(18 / 16 * 1rem);
    line-height: calc(22 / 18);
    font-weight: 400;
    text-align: left;
  }
}

.s-about__slider {
  position: relative;
  margin: 20px -25px 0;
}
@media screen and (min-width: 768px) {
  .s-about__slider {
    margin: 0;
  }
}
.s-about__slider .swiper-slide img {
  width: 100%;
}
.s-about__slider .swiper-prev,
.s-about__slider .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  width: 12px;
}
@media screen and (min-width: 768px) {
  .s-about__slider .swiper-prev,
  .s-about__slider .swiper-next {
    width: 18px;
  }
}
.s-about__slider .swiper-prev {
  left: 12px;
}
.s-about__slider .swiper-next {
  right: 12px;
}
.s-about__slider .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .s-about__slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.s-about__slider .swiper-pagination-bullet-active {
  background-color: #fff;
}

.s-about__btn {
  margin-top: 24px;
}
.s-about__btn .c-button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .s-about__btn .c-button {
    width: auto;
  }
}

.page-template-template-contrubutors main,
.single-contributor main {
  position: relative;
}
.page-template-template-contrubutors main::after,
.single-contributor main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1600px;
  background: linear-gradient(rgba(196, 196, 196, 0) 0, #000 77.6%);
}
@media screen and (min-width: 768px) {
  .page-template-template-contrubutors main::after,
  .single-contributor main::after {
    height: 920px;
  }
}

.s-gallery__video {
  padding: 0 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .two-in-row > .s-gallery__video {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .three-in-row > .s-gallery__video {
    width: 33.33%;
  }
}

.s-education__wrap {
  background-color: #fff;
  box-shadow: 3px 3px 20px 5px rgba(0, 0, 0, 0.1);
}
.u-bg-primary .s-education__wrap {
  background-color: #000;
}

.s-education__part {
  padding: 24px 0;
}
.s-education__part:not(:last-child) {
  border-bottom: 1px solid #bac7ce;
}

@media screen and (min-width: 768px) {
  .s-education__img {
    padding-right: 24px;
    width: 50%;
  }
}

.s-education__info {
  margin-top: 24px;
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(20 / 17);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-education__info {
    margin-top: 0;
    width: 50%;
  }
}

.s-education__program {
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(20 / 17);
  font-weight: 400;
  color: #8A8D8E;
}

.s-skills__wrap {
  position: relative;
  background-color: #fff;
  box-shadow: 3px 3px 20px 5px rgba(0, 0, 0, 0.1);
}
.u-bg-primary .s-skills__wrap {
  background-color: #000;
}

.s-skills__skill {
  padding: 12px;
  width: 100%;
  font-size: calc(17 / 16 * 1rem);
  line-height: calc(20 / 17);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .s-skills__skill {
    width: 50%;
  }
  .s-skills__skill:nth-child(4n), .s-skills__skill:nth-child(4n+2) {
    border-left: 1px solid #bac7ce;
  }
}
@media screen and (min-width: 992px) {
  .s-skills__skill {
    padding: 12px 36px;
  }
}
@media screen and (min-width: 1240px) {
  .s-skills__skill {
    width: 25%;
  }
  .s-skills__skill:nth-child(4n+3) {
    border-left: 1px solid #bac7ce;
  }
}

.s-skills__rating {
  margin-right: 20px;
}
.s-skills__rating svg:not(:last-child) {
  margin-right: 5px;
}

.s-skills__icon {
  margin-right: 10px;
  width: 28px;
}

.s-form {
  padding: 50px 0;
}
@media screen and (min-width: 992px) {
  .s-form {
    padding: 100px 0;
  }
}
.s-form--registration .s-form__form-wrap, .s-form--login .s-form__form-wrap, .s-form--event .s-form__form-wrap {
  padding: 25px;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}
.s-form--registration .s-form__form-wrap label input[type=checkbox], .s-form--login .s-form__form-wrap label input[type=checkbox], .s-form--event .s-form__form-wrap label input[type=checkbox] {
  margin-top: 0;
  width: auto;
}
.s-form--registration .s-form__form-wrap label input[type=checkbox] + span, .s-form--login .s-form__form-wrap label input[type=checkbox] + span, .s-form--event .s-form__form-wrap label input[type=checkbox] + span {
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(15 / 12);
  font-weight: 400;
}
.s-form--registration .s-form__btn, .s-form--login .s-form__btn, .s-form--event .s-form__btn {
  text-align: center;
}
.s-form--registration .s-form__btn .s-form__error, .s-form--login .s-form__btn .s-form__error, .s-form--event .s-form__btn .s-form__error {
  justify-content: center;
}
.s-form--registration .checkmail-box-notice, .s-form--login .checkmail-box-notice, .s-form--event .checkmail-box-notice {
  border-top: 1px solid #D5D7D9;
}
.s-form--profile .s-form__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .s-form--event .s-form__form-wrap .s-form__label-wrap label {
    width: 49%;
  }
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input:not([type=checkbox]):not([type=submit]) {
  padding: 15px;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input:not([type=checkbox]):not([type=submit])::-moz-placeholder {
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(16 / 15);
  font-weight: 400;
  color: #5F6164;
  opacity: 1;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input:not([type=checkbox]):not([type=submit])::placeholder {
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(16 / 15);
  font-weight: 400;
  color: #5F6164;
  opacity: 1;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input::-moz-placeholder {
  opacity: 1;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input::placeholder {
  opacity: 1;
}
.s-form--event .s-form__form-wrap .s-form__btn label {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.s-form--event .s-form__form-wrap .s-form__btn label[for=register] {
  margin: 20px 0;
}
.s-form--event .s-form__form-wrap .s-form__btn label[for=register] input {
  margin: 0;
}
.s-form--event .s-form__form-wrap .s-form__btn label[for=subscribe] {
  margin: 10px 0 0;
}
.s-form--event .s-form__form-wrap .s-form__btn label[for=subscribe] input {
  margin: 0;
}
.s-form--event .s-form__form-wrap .s-form__btn-label {
  margin: 20px 0;
}
.s-form--event .s-form__form-wrap .s-form__login {
  color: #000;
}
@media screen and (min-width: 768px) {
  .s-form--event .s-form__form-wrap .s-form__login {
    margin-top: 0;
  }
}
.s-form--login .s-form__form-wrap .s-form__label-wrap label input::-moz-placeholder {
  opacity: 1;
}
.s-form--login .s-form__form-wrap .s-form__label-wrap label input::placeholder {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .s-form--event .s-form__form-wrap .s-form__label-wrap label, .s-form--registration .s-form__form-wrap .s-form__label-wrap label {
    width: 49%;
  }
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input::-moz-placeholder, .s-form--registration .s-form__form-wrap .s-form__label-wrap label input::-moz-placeholder {
  opacity: 1;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap label input::placeholder, .s-form--registration .s-form__form-wrap .s-form__label-wrap label input::placeholder {
  opacity: 1;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap.width-full label, .s-form--registration .s-form__form-wrap .s-form__label-wrap.width-full label {
  width: 100%;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .s-form--event .s-form__form-wrap .s-form__label-wrap.width-full label, .s-form--registration .s-form__form-wrap .s-form__label-wrap.width-full label {
    margin-top: 7px;
  }
}
.s-form--event .s-form__form-wrap .s-form__label-wrap.border-top, .s-form--registration .s-form__form-wrap .s-form__label-wrap.border-top {
  border-top: 1px solid #8a8d8e !important;
}
.s-form--event .s-form__form-wrap .s-form__label-wrap.pass-wrap, .s-form--registration .s-form__form-wrap .s-form__label-wrap.pass-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .s-form--event .s-form__form-wrap .s-form__label-wrap.pass-wrap, .s-form--registration .s-form__form-wrap .s-form__label-wrap.pass-wrap {
    margin-top: 7px;
  }
}
.s-form--event .tooltip-pass-left, .s-form--registration .tooltip-pass-left {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  z-index: 999;
  width: 210px;
  background-color: #fff;
  border-radius: 5px;
  padding: 17px;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
  font-family: "Sohne", sans-serif;
  font-size: 13px;
}
.s-form--event .tooltip-pass-left::before, .s-form--registration .tooltip-pass-left::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 98%;
  left: calc(50% - 1em);
  border: 0.75rem solid transparent;
  border-top-color: #fff;
}
@media screen and (min-width: 768px) {
  .s-form--event .tooltip-pass-left, .s-form--registration .tooltip-pass-left {
    top: calc(-50% - 1em);
    left: 0;
    transform: translateY(-30%);
    transform: translateX(-110%);
  }
  .s-form--event .tooltip-pass-left::before, .s-form--registration .tooltip-pass-left::before {
    top: calc(50% - 1em);
    left: 100%;
    border-left-color: #fff;
    border-top-color: transparent;
  }
}
.s-form--event .tooltip-pass-left h4, .s-form--registration .tooltip-pass-left h4 {
  color: #21252B;
}
.s-form--event .tooltip-pass-left ul, .s-form--registration .tooltip-pass-left ul {
  list-style: none;
}
.s-form--event .tooltip-pass-left ul li, .s-form--registration .tooltip-pass-left ul li {
  color: #767676;
  display: inline-block;
  line-height: 14px;
  padding: 3px 0;
}
.s-form--event .tooltip-pass-left ul li span, .s-form--registration .tooltip-pass-left ul li span {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  line-height: 14px;
  position: relative;
  top: 2px;
  content: url("../../img/icons/checked-grey.svg");
}
.s-form--event .tooltip-pass-left ul li span.success, .s-form--registration .tooltip-pass-left ul li span.success {
  content: url("../../img/icons/checked-green.svg");
}
.s-form--event .tooltip-pass-bottom, .s-form--registration .tooltip-pass-bottom {
  margin-top: 10px;
  order: 2;
  font-family: "Sohne", sans-serif;
  font-size: 13px;
}
.s-form--event .tooltip-pass-bottom ul, .s-form--registration .tooltip-pass-bottom ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 7px;
       column-gap: 7px;
  justify-content: flex-start;
  align-self: center;
  width: 100%;
  list-style: none;
}
.s-form--event .tooltip-pass-bottom ul li, .s-form--registration .tooltip-pass-bottom ul li {
  color: #767676;
  display: inline-block;
  line-height: 14px;
  padding: 3px 0;
}
.s-form--event .tooltip-pass-bottom ul li span, .s-form--registration .tooltip-pass-bottom ul li span {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  line-height: 12px;
  position: relative;
  top: 2px;
}
.s-form--event .tooltip-pass-bottom ul li:first-child, .s-form--registration .tooltip-pass-bottom ul li:first-child {
  color: #21252B;
}
.s-form--event .tooltip-pass-bottom ul li:not(:first-child) span, .s-form--registration .tooltip-pass-bottom ul li:not(:first-child) span {
  content: url("../../img/icons/checked-grey.svg");
}
.s-form--event .tooltip-pass-bottom ul li:not(:first-child) span.success, .s-form--registration .tooltip-pass-bottom ul li:not(:first-child) span.success {
  content: url("../../img/icons/checked-green.svg");
}
.s-form--event .s-form__btn-label, .s-form--registration .s-form__btn-label {
  align-items: center;
  margin: 10px 0;
}
.s-form--event .s-form__btn-label .s-form__btn-label-text, .s-form--registration .s-form__btn-label .s-form__btn-label-text {
  border: 1px solid #d5d7d9;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(13 / 14);
  font-weight: 400;
}
.s-form--event .s-form__btn-label hr, .s-form--registration .s-form__btn-label hr {
  flex: 1;
  border: none;
  height: 1px;
  background: #d5d7d9;
}
.s-form--event .s-form__btn-actions .s-form__btn-actions-wrap, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap {
  text-align: center;
  margin-top: 7px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap {
    width: 49%;
    margin-top: 0px;
  }
}
.s-form--event .s-form__btn-actions .s-form__btn-actions-wrap a, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap button, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap a, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap button {
  font-family: "Sohne-Medium", sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(15 / 14);
  font-weight: 400;
  color: #173559;
  width: 100%;
  display: inline-block;
  padding: 17px;
  border: 1px solid #d5d7d9;
  border-radius: 5px;
}
.s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.width-full, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.width-full {
  width: 100%;
  margin-top: 10px;
}
.s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info a, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info button, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info input, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info a, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info button, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info input {
  padding: 15px;
  margin-bottom: 10px;
  background-color: #3a7aee;
  border: none;
  border-radius: 5px;
  font-family: "Sohne", sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(16 / 14);
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}
.s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info a:hover, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info a:active, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info button:hover, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info button:active, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info input:hover, .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info input:active, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info a:hover, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info a:active, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info button:hover, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info button:active, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info input:hover, .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info input:active {
  background-color: #54bbff;
}
.s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info a[disabled], .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info button[disabled], .s-form--event .s-form__btn-actions .s-form__btn-actions-wrap.info input[disabled], .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info a[disabled], .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info button[disabled], .s-form--registration .s-form__btn-actions .s-form__btn-actions-wrap.info input[disabled] {
  background-color: #B0C9FF;
  cursor: not-allowed;
}
.s-form .s-form__logo {
  margin: 0 auto 20px;
  width: 100%;
}
.s-form .s-form__logo .icon {
  width: 410px;
  height: 41px;
}
@media screen and (min-width: 375px) {
  .s-form .s-form__logo {
    width: 287px;
  }
}
.s-form .s-form__info {
  font-family: "Sohne", sans-serif;
  color: #fff;
  text-align: center;
}
.s-form .s-form__title {
  font-size: calc(30 / 16 * 1rem);
  line-height: calc(39 / 30);
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .s-form .s-form__title {
    font-size: calc(34 / 16 * 1rem);
    line-height: calc(44 / 34);
    font-weight: 600;
  }
}
.s-form .s-form__text {
  margin-top: 18px;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(25 / 20);
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .s-form .s-form__text {
    font-size: calc(22 / 16 * 1rem);
    line-height: calc(28 / 22);
    font-weight: 400;
  }
}
.s-form .s-form__form-wrap {
  margin-top: 20px;
  font-family: "Sohne", sans-serif;
}
.s-form .s-form__form-wrap form label:not(:last-child) {
  margin-bottom: 7px;
}
.s-form .s-form__form-wrap form span {
  display: inline-block;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(20 / 16);
  font-weight: 600;
}
.s-form .s-form__form-wrap form input:not([type=checkbox]):not([type=submit]) {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d5d7d9;
  font-family: "Sohne", sans-serif;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 400;
}
.s-form .s-form__form-wrap form input:not([type=checkbox]):not([type=submit])::-moz-placeholder {
  color: #5f6164;
}
.s-form .s-form__form-wrap form input:not([type=checkbox]):not([type=submit])::placeholder {
  color: #5f6164;
}
.s-form .s-form__form-wrap form input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  margin: 0;
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 2px;
  border: 1px solid #c4c4c4;
  transition: background-color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.s-form .s-form__form-wrap form input[type=checkbox]:hover {
  border-color: #666;
}
.s-form .s-form__form-wrap form input[type=checkbox]:checked {
  border-color: #3a7aee;
  background-color: #3a7aee;
}
.s-form .s-form__form-wrap form input[type=checkbox]:checked::before {
  display: block;
}
.s-form .s-form__form-wrap form input[type=checkbox]:checked:hover {
  background-color: #54bbff;
  border-color: #54bbff;
}
.s-form .s-form__form-wrap form input[type=checkbox]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;charset=utf-8,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.23207 1.25L3.09928 7.24793L0.767925 4.96784L0 5.71888L3.09928 8.75L10 2.00104L9.23207 1.25Z" fill="white"/></svg>') no-repeat 50% 50%;
}
.s-form .s-form__form-wrap form input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #3a7aee;
  border: none;
  border-radius: 5px;
  font-family: "Sohne", sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(16 / 14);
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}
.s-form .s-form__form-wrap form input[type=submit]:hover, .s-form .s-form__form-wrap form input[type=submit]:active {
  background-color: #54bbff;
}
.s-form .s-form__form-wrap form input[type=submit][disabled] {
  background-color: #b1b1b1;
  cursor: not-allowed;
}
.s-form .s-form__form-wrap form a {
  color: #3a7aee;
}
.s-form .s-form__form-wrap form a:hover {
  text-decoration: underline;
}
.s-form .s-form__form-wrap form.form-profile input:not([type=checkbox]):not([type=submit]):invalid {
  border: 1px solid red;
}
.s-form .s-form__login {
  margin-top: 24px;
  font-family: "Sohne", sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(17 / 14);
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.s-form .s-form__login.color-black {
  color: #21252B;
}
.s-form .s-form__login a,
.s-form .s-form__login .nav-link {
  font-weight: 700;
  color: #3a7aee;
  cursor: pointer;
}
.s-form .s-form__login a:hover,
.s-form .s-form__login .nav-link:hover {
  text-decoration: underline;
}
.s-form .s-form__img {
  margin: -25px -25px 25px;
  border-radius: inherit;
}
.s-form .s-form__img img {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.s-form .s-form__event-info {
  margin-bottom: 8px;
  text-align: left;
}
.s-form .s-form__event-name {
  font-family: "Sohne-Medium", sans-serif;
  font-size: calc(30 / 16 * 1rem);
  line-height: calc(32 / 30);
  font-weight: 400;
}
.s-form .s-form__event-date {
  margin-top: 18px;
  font-family: "Sohne-Medium", sans-serif;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 400;
  color: #3a7aee;
}
.s-form .s-form__description {
  margin: 18px 0;
  font-family: "Sohne", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(18 / 16);
  font-weight: 400;
  color: #5f6164;
}
.s-form .s-form__description a {
  color: #3A7AEE;
}
.s-form .s-form__label-wrap.event-form-cf .checkbox-block {
  display: flex;
  align-items: center;
  width: 49%;
  margin-top: 10px;
  margin-bottom: 7px;
  position: relative;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .s-form .s-form__label-wrap.event-form-cf .checkbox-block {
    width: 100%;
  }
}
.s-form .s-form__label-wrap.event-form-cf .checkbox-block .s-form__error {
  position: absolute;
  left: 0;
  bottom: -10px;
}
.s-form .s-form__label-wrap.event-form-cf .checkbox-block input {
  margin-right: 7px;
  width: 14px;
  height: 14px;
}
.s-form .s-form__label-wrap.event-form-cf .checkbox-block label {
  width: 100%;
  font-size: 15px !important;
}
.s-form .s-form__label-wrap.event-form-cf .radio-group-form {
  width: 49%;
  margin-top: 10px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .s-form .s-form__label-wrap.event-form-cf .radio-group-form {
    width: 100%;
  }
}
.s-form .s-form__label-wrap.event-form-cf .radio-group-form__title {
  margin-bottom: 10px;
  font-weight: bold;
}
.s-form .s-form__label-wrap.event-form-cf .radio-group-form .radio-group {
  display: flex;
  flex-wrap: wrap;
}
.s-form .s-form__label-wrap.event-form-cf .radio-group-form .radio-group .radio-set {
  width: 50%;
  display: flex;
  align-items: center;
  font-family: "Sohne", sans-serif;
  font-size: calc(15 / 16 * 1rem);
  line-height: calc(15 / 15);
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 10px;
  line-height: 1.3;
  padding-right: 7px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .s-form .s-form__label-wrap.event-form-cf .radio-group-form .radio-group .radio-set {
    width: 100%;
  }
}
.s-form .s-form__label-wrap.event-form-cf .radio-group-form .radio-group .radio-set label {
  width: 100%;
}
.s-form .s-form__label-wrap.event-form-cf .radio-group-form .radio-group .radio-set input {
  width: auto;
  margin: 0 7px 0 0;
}
.s-form .s-form__label-wrap.event-form-cf select {
  margin-top: 10px;
  width: 100%;
  padding: 10px 15px;
  opacity: 1;
  background-color: #fff;
  border: 1px solid #d5d7d9;
  height: 48px;
  box-shadow: none;
  font-family: "Sohne", sans-serif;
  font-size: calc(calc(15px / (15px * 0 + 1)) / 16 * 1rem);
  font-weight: 400;
}
.s-form .s-form__label-wrap > label {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.s-form .s-form__label-wrap > label input {
  order: 2;
}
.s-form .s-form__label-wrap > label input:required + span {
  order: 1;
}
.s-form .s-form__label-wrap > label input:required + span::after {
  display: inline-block;
  margin-left: 7px;
  text-transform: uppercase;
  color: #868a91;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 400;
}
.s-form .s-form__label-wrap.user-pass-wrap label[for=user_pass] {
  position: relative;
}
.s-form .s-form__label-wrap.user-pass-wrap .wp-hide-pw {
  background: 0 0;
  border: 1px solid transparent;
  box-shadow: none;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(14 / 14);
  font-weight: 400;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin: 0;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 12px;
  cursor: pointer;
}
.s-form .s-form__label-wrap .user-pass1-wrap .wp-pwd,
.s-form .s-form__label-wrap .user-pass-old-wrap .wp-pwd {
  position: relative;
}
.s-form .s-form__label-wrap .user-pass1-wrap .wp-hide-pw,
.s-form .s-form__label-wrap .user-pass-old-wrap .wp-hide-pw {
  background: 0 0;
  border: 1px solid transparent;
  box-shadow: none;
  font-size: 14px;
  line-height: 2;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
  padding: 5px 9px;
  position: absolute;
  right: 0;
  top: 12px;
  cursor: pointer;
}
.s-form .s-form__label-wrap .pw-weak,
.s-form .s-form__label-wrap #pass-strength-result {
  display: none !important;
}
.s-form .s-form__btn {
  margin-top: 15px;
  width: 100%;
}
.s-form .s-form__btn label {
  display: block;
}
.s-form .s-form__btn button {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
  padding: 15px;
  background-color: #3a7aee;
  border: none;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(16 / 14);
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.s-form .s-form__btn button:hover, .s-form .s-form__btn button:active {
  background-color: #54bbff;
}
.s-form .s-form__btn .reset-pass-submit:last-child {
  margin-bottom: 0;
}
.s-form .s-form__error-notice {
  margin-right: 10px;
  width: 100%;
}
.s-form .s-form__error-notice p {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(13 / 13);
  font-weight: 400;
}
.s-form .s-form__error-notice p:last-child {
  margin: 0;
}
.s-form .s-form__hint {
  margin-top: 10px;
  display: flex;
  order: 3;
}
.s-form .s-form__hint .s-form__hint-text {
  width: 100%;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(13 / 13);
  font-weight: 400;
  color: #8a8d8e;
}
.s-form .s-form__loader {
  padding: 10px;
}
.s-form .s-form__loader svg {
  width: 20px;
  height: 20px;
}
.s-form .s-form__tabs-content {
  padding: 10px;
}
.s-form .s-form__tabs-content.notice-success {
  padding: 15px;
  border-radius: 10px;
  font-family: "Sohne-Medium", sans-serif;
}
.s-form .s-form__tabs-content.notice-success h4 {
  margin-bottom: 16px;
  font-size: calc(30 / 16 * 1rem);
  line-height: calc(38 / 30);
  font-weight: 400;
}
.s-form .s-form__tabs-content.notice-success p {
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 400;
  color: #3a7aee;
}
.s-form .s-form__tabs-content.notice-success p:last-child {
  margin-bottom: 0;
}
.s-form .s-form__icon svg {
  width: 100px;
  height: 100px;
  margin: auto;
}
.s-form .s-form__data-sent {
  margin-top: 24px;
  text-align: center;
}
.s-form .s-form__text-sent {
  margin-top: 10px;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(25 / 20);
  font-weight: 600;
}
.s-form .s-form__error {
  margin-top: 10px;
  display: flex;
  align-items: center;
  order: 3;
}
.s-form .s-form__error-icon {
  width: 14px;
}
.s-form .s-form__error-icon .icon {
  width: 14px;
  height: 14px;
}
.s-form .s-form__error-text {
  margin-left: 6px;
}
.s-form .s-form__error-messages {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 5px;
}
.s-form .s-form__password-hints {
  margin-top: 10px;
  order: 2;
  background-color: #d6d8d9;
  border: 1px solid #c6c8ca;
  border-radius: 5px;
  padding: 10px;
}
.s-form .s-form__password-hints ul li {
  font-size: calc(14 / 16 * 1rem);
  line-height: calc(18 / 14);
  font-weight: 400;
  font-size: 12px;
  color: #ef4243;
}
.s-form .s-form__password-hints ul li.satisfied {
  color: #28a645;
}
.s-form__confirm-box {
  font-size: 20px;
  text-align: center;
  font-family: "Sohne-Medium", sans-serif !important;
}
.s-form__confirm-box a {
  color: #1664D5;
  transition: 0.3s ease-in-out;
}
.s-form__confirm-box a:hover {
  color: #053b89;
}

.s-event {
  padding: 20px 0 50px;
  background-color: #c4c4c4;
  min-height: 100vh;
  height: unset !important;
  font-family: "Sohne", sans-serif;
}
@media screen and (min-width: 992px) {
  .s-event {
    padding-bottom: 0;
  }
}

.s-event__share {
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
  text-align: right;
}
.s-event__share .c-share__list {
  left: unset;
  right: 0;
}

.s-event__title {
  font-size: calc(24 / 16 * 1rem);
  line-height: calc(29 / 24);
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
}

.s-event__logo {
  margin-top: 20px;
  max-width: 180px;
}
@media screen and (min-width: 768px) {
  .s-event__logo {
    margin: 0 0 0 auto;
  }
}

.s-event__video-wrap {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.s-event__subtitle {
  font-size: calc(18 / 16 * 1rem);
  line-height: calc(22 / 18);
  font-weight: 400;
  color: #fff;
}

.s-event__modal {
  margin-top: 20px;
}

.s-event__speakers {
  margin-top: 10px;
}

.s-event__speakers-wrap {
  margin: -10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .s-event__speakers-wrap {
    flex-direction: row;
  }
}
.s-event__speakers-wrap .c-speaker {
  padding: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .s-event__speakers-wrap .c-speaker {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .s-event__speakers-wrap .c-speaker {
    width: 33.33%;
  }
}

.s-event__chat {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.s-event__speakers,
.s-event__chat {
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #BAC7CE;
  box-shadow: 3px 3px 20px 5px rgba(0, 0, 0, 0.1);
}

.app__messenger {
  left: 0;
  border-radius: 15px;
  min-width: inherit;
}

#cometchat,
#cometchat__widget,
.app__messenger {
  height: 100%;
}

.s-event.s-bose-event {
  padding-top: 0 !important;
}
.s-event.s-bose-event .s-event__speakers {
  border-radius: 0 !important;
}
.s-event.s-bose-event .s-event__logo {
  margin: 0 0 15px 0;
}
@media screen and (min-width: 768px) {
  .s-event.s-bose-event .s-event__logo {
    margin: 0 0 15px 0;
  }
}
.s-event.s-bose-event .s-event__title {
  font-family: "Gotham-Medium";
}
.s-event.s-bose-event .c-client-event__card-description,
.s-event.s-bose-event .c-client-event__card-description p {
  font-family: "Gotham-Book";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-align: left;
}
.s-event.s-bose-event .c-client-event__card-description a,
.s-event.s-bose-event .c-client-event__card-description p a {
  font-family: "Gotham-Medium";
  color: #026A93 !important;
}
.s-event.s-bose-event .c-button--black {
  background-color: #000 !important;
  text-transform: uppercase;
  font-family: "Gotham-Medium";
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .s-event.s-bose-event .s-client-event__footer {
    margin-bottom: 10px;
    padding: 10px;
  }
}
.s-event.s-bose-event .c-speaker__info .c-speaker__title {
  font-family: "Gotham-Book";
  font-weight: 700;
  font-size: 14px;
}
.s-event.s-bose-event .c-speaker__info .c-speaker__about {
  font-family: "Gotham-Book";
  font-size: 12px;
  color: #232323;
}
.s-event.s-bose-event .s-client-event__footer-nav li {
  font-family: "Gotham-Medium";
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0 !important;
}
.s-event.s-bose-event .s-client-event__footer-nav li:nth-child(2) {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.s-event.s-bose-event .s-client-event__footer-nav li a {
  font-family: "Gotham-Medium";
  color: #026A93 !important;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0em;
  text-align: left;
}
.s-event.s-bose-event .c-speaker--separator {
  width: 100%;
  height: 1px;
  background-color: #BAC7CE;
  margin: 10px;
}

.events-template-default .c-custom-header__logo img {
  height: 30px;
  width: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.events-template-default .c-custom-header--back {
  font-family: Sohne;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2000;
  height: 100%;
}
.events-template-default .c-custom-header--back i {
  margin-right: 5px;
}

.c-shows__title a {
  color: #fff;
}

.c-bose-event {
  background-color: #000;
}
.c-bose-event a {
  color: #fff;
}

.chat__thumbnail {
  display: none !important;
}

.s-modal__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 100vw;
  height: 100vh;
}
.s-modal__wrap.is-open {
  display: block;
}
.s-modal__wrap .c-speaker {
  max-width: 1000px;
  background-color: #fff;
  border: 1px solid #BAC7CE;
  border-radius: 15px;
  box-shadow: 3px 3px 20px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .s-modal__wrap .c-speaker {
    display: flex;
  }
}
.s-modal__wrap .c-speaker__img {
  flex-shrink: 0;
  height: auto;
}
@media screen and (min-width: 768px) {
  .s-modal__wrap .c-speaker__img {
    width: 25%;
    margin-right: 15px;
  }
}
.s-modal__wrap .c-speaker__img img {
  height: auto;
}
.s-modal__wrap .c-speaker__about {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(17 / 13);
  font-weight: 400;
}

.s-modal__bg {
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}

.s-modal__block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .s-modal__block {
    padding: 50px;
  }
}

.s-home-black-friday .c-latest .c-post-lg__img {
  height: auto;
}
.s-home-black-friday .c-latest .c-post-lg__img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.s-home-black-friday__post-lg .c-post-lg__img {
  height: 100%;
}

.s-contributor-nav-wrap {
  background-color: #2B2B2B;
  padding: 18px 0;
}
.s-contributor-nav-wrap a {
  font-size: 18px;
  line-height: 21px;
}

.s-bordered-contributor {
  padding: 25px;
  border: 1px solid #fff;
  border-radius: 16px;
  margin-top: 1rem;
}

.s-contributor-nav-text * {
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
}

.c-contributor-btn-group .c-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0px !important;
  line-height: 19px !important;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .c-contributor-btn-group .c-button {
    font-size: 16px !important;
  }
}
.c-contributor-btn-group .c-button:hover .icon {
  fill: #000;
}
.c-contributor-btn-group .c-button .icon {
  width: 25px;
  height: 25px;
  margin-right: 0px;
}
@media screen and (min-width: 992px) {
  .c-contributor-btn-group .c-button .icon {
    margin-right: 5px;
  }
}

.comments .comments-title {
  font-family: Helvetica, Arial, serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 50px;
}
.comments .comments-title a {
  color: #fff;
}
.comments .comments-title a:hover {
  text-decoration: underline;
}
.comments .comment-container {
  padding: 10px;
  display: flex;
}
.comments .comment-container .comment-message-body {
  width: 100%;
}
.comments .comment-container .comment-message-actions .comment-action-icon {
  display: flex;
  align-items: flex-end;
}
.comments .comment-container .comment-message-actions .comment-action-icon svg {
  cursor: pointer;
}
.comments .comment-container .comment-message-actions .comment-action-icon svg path {
  transition: 0.3s ease-in-out;
}
.comments .comment-container .comment-message-actions .comment-action-icon:hover svg path {
  stroke: #fff;
}
.comments__messages .comment-list .comment {
  background-color: #16253C;
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.comments__messages .comment-list .comment:after {
  content: "";
  background-color: rgba(22, 37, 60, 0.9);
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments__messages .comment-list .comment.depth-2 {
  margin-left: 30px;
}
.comments__messages .comment-list .comment.depth-3 {
  margin-left: 60px;
}
.comments__messages .comment-list .comment.depth-4 {
  margin-left: 90px;
}
.comments__messages .comment-list .comment.depth-5 {
  margin-left: 120px;
}
.comments__messages .comment-list .comment .comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.comments__messages .comment-list .comment .comment-author .avatar-block {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 5px;
}
.comments__messages .comment-list .comment .comment-author .avatar-block img {
  display: block;
  width: 100%;
  height: 100%;
}
.comments__messages .comment-list .comment .comment-author__name {
  color: #fff;
  font-family: Sohne, sans-serif;
  font-size: 14px;
  line-height: 16px;
}
.comments__messages .comment-list .comment .comment-author__label {
  font-family: Sohne, sans-serif;
  font-size: 7px;
  line-height: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  background: #3A7AEE;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: 5px;
}
.comments__messages .comment-list .comment .comment-author-datetime {
  font-family: Sohne, sans-serif;
  font-size: 10px;
  line-height: 12px;
  color: #9BA5B4;
  margin-left: 5px;
}
.comments__messages .comment-list .comment .comment-text {
  font-family: Sohne, sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
}
.comments__messages .comment-list .comment .comment-reply-link {
  font-family: Sohne, sans-serif;
  font-size: 13px;
  line-height: 15px;
  color: #9BA5B4;
  transition: 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
}
.comments__messages .comment-list .comment .comment-reply-link:hover {
  color: #fff;
}
.comments__messages .comment-list .comment-message-actions {
  display: flex;
}
.comments__messages .comment-list .comment-message-actions .comment-action-icon {
  margin-right: 10px;
}
.comments__messages .comment-list .comment-message-actions .comment-action-icon:last-child {
  margin-right: 0;
}
.comments__messages form {
  margin-top: 18px;
}
.comments__messages form .logged-in-as {
  display: none;
}
.comments__messages form .comment-form-comment, .comments__messages form .comment-reply-form {
  width: 100%;
  position: relative;
}
.comments__messages form .comment-form-comment textarea, .comments__messages form .comment-reply-form textarea {
  font-family: Söhne, sans-serif;
  height: 85px;
  width: 100%;
  padding: 10px 147px 10px 10px;
  color: #fff;
  background-color: #16253C;
  border-radius: 10px;
  border: none;
  resize: none;
  font-size: 12px;
  line-height: 14px;
}
.comments__messages form .comment-form-comment textarea ::-webkit-input-placeholder, .comments__messages form .comment-reply-form textarea ::-webkit-input-placeholder {
  color: #9BA5B4;
}
.comments__messages form .comment-form-comment textarea :-moz-placeholder, .comments__messages form .comment-reply-form textarea :-moz-placeholder {
  color: #9BA5B4;
}
.comments__messages form .comment-form-comment textarea ::-moz-placeholder, .comments__messages form .comment-reply-form textarea ::-moz-placeholder {
  color: #9BA5B4;
}
.comments__messages form .comment-form-comment textarea :-ms-input-placeholder, .comments__messages form .comment-reply-form textarea :-ms-input-placeholder {
  color: #9BA5B4;
}
.comments__messages form .comment-form-comment label, .comments__messages form .comment-reply-form label {
  display: none;
}
.comments__messages form .comment-form-comment .submit-form, .comments__messages form .comment-reply-form .submit-form {
  font-family: "Helvetica";
  position: absolute;
  right: 11px;
  bottom: 15px;
  display: flex;
  align-items: center;
}
.comments__messages form .comment-form-comment .submit-form .counter, .comments__messages form .comment-reply-form .submit-form .counter {
  color: #fff;
  margin-right: 10px;
}
.comments__messages form .comment-form-comment .submit-form input[type=submit], .comments__messages form .comment-reply-form .submit-form input[type=submit] {
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #5E6B71;
  color: #fff;
  border-radius: 30px;
  padding: 10px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.comments__messages form .comment-form-comment .submit-form input[type=submit]:hover, .comments__messages form .comment-reply-form .submit-form input[type=submit]:hover {
  background-color: #fff;
  color: #16253C;
}
.comments__messages .closed-form {
  position: relative;
}
.comments__messages .closed-form form .comment-form-comment {
  display: flex;
  opacity: 0.3;
}
.comments__messages .closed-form form .overlay {
  overflow: hidden;
  border-radius: 10px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: rgba(22, 37, 60, 0.3);
}
.comments__messages .closed-form form .overlay a {
  padding: 10px 16px;
  font-family: Helvetica, Arial, serif;
  font-size: 13px;
  line-height: 15px;
  cursor: pointer;
  background-color: #16253C;
  border: 1px solid #5E6B71;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.comments__messages .closed-form form .overlay a:hover {
  background-color: #fff;
  color: #16253C;
}
.comments .not-active textarea {
  background-color: #ccc;
}
.comments .not-active.comment:after {
  display: flex;
  z-index: 3;
}
.comments .not-active input[type=submit] {
  font-size: 13px;
  cursor: pointer;
  background-color: rgba(255, 109, 109, 0.25);
  color: #fff;
  pointer-events: none;
}
.comments .not-active.deleting:after {
  content: attr(data-delete);
  font-size: 16px;
  color: #fff;
}
.comments .not-active.moderation:after {
  content: attr(data-moder);
  font-size: 16px;
  color: #fff;
}

.page-template-template-press .s-most-popular__title {
  font-size: 24px;
  margin-bottom: 20px;
}
.page-template-template-press .c-post-lg {
  display: flex;
}
@media screen and (max-width: 450px) {
  .page-template-template-press .c-post-lg {
    flex-direction: column;
  }
}
.page-template-template-press .c-post-lg__image-wrapper {
  max-width: 20%;
  width: 100%;
  margin-right: 30px;
}
@media screen and (max-width: 991px) {
  .page-template-template-press .c-post-lg__image-wrapper {
    max-width: 30%;
  }
}
@media screen and (max-width: 450px) {
  .page-template-template-press .c-post-lg__image-wrapper {
    max-width: 100%;
  }
}
.page-template-template-press .c-post-lg__image-wrapper a.c-post-lg__img {
  width: 100%;
  padding-bottom: 0;
}
.page-template-template-press .c-post-lg__image-wrapper img {
  height: 130px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.page-template-template-press .c-post-lg__data-wrapper {
  max-width: 80%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .page-template-template-press .c-post-lg__data-wrapper {
    max-width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .page-template-template-press .c-post-lg__data-wrapper {
    max-width: 100%;
  }
}
.page-template-template-press .s-most-popular .row > div:nth-child(2) .c-post-lg__description {
  display: block !important;
}
.page-template-template-press .s-most-popular .row > div:nth-child(2) .btn__readMore {
  display: block !important;
}

.c-home-banner a {
  display: block;
}
.c-home-banner a img {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-template-template-client-event .o-header {
  display: none;
}

.o-header__top {
  background-color: #000;
  color: #fff;
  padding: 5px 0;
}
.o-header__top-block {
  display: flex;
}
.o-header__top-block-left {
  display: flex;
}
.o-header__top-block-left .o-header__top-text {
  display: flex;
  margin-right: 15px;
  align-items: center;
  font-family: "Sohne", sans-serif;
  font-size: 12px;
  line-height: 1.08;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .o-header__top-block-left .o-header__top-text {
    font-size: 0;
  }
  .o-header__top-block-left .o-header__top-text:after {
    content: "Company";
    display: flex;
    font-size: 12px;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
  }
}
@media screen and (max-width: 500px) {
  .o-header__top-block-left .o-header__top-text {
    margin-right: 10px;
  }
}
.o-header__top-block-left .menu-primary-top-menu-container .nav-top {
  flex-wrap: wrap;
}
.o-header__top-block-left .menu-primary-top-menu-container .menu-item {
  position: relative;
}
.o-header__top-block-left .menu-primary-top-menu-container .menu-item:last-child a {
  padding: 10px 0 10px 15px;
}
.o-header__top-block-left .menu-primary-top-menu-container .menu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #323232;
}
.o-header__top-block-left .menu-primary-top-menu-container .menu-item a {
  display: flex;
  align-items: center;
  font-family: "Sohne", sans-serif;
  font-size: 10px;
  line-height: 1.08;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
}
.o-header__top-block-left .menu-primary-menu-small-container .nav-top {
  flex-wrap: wrap;
}
.o-header__top-block-left .menu-primary-menu-small-container .menu-item {
  position: relative;
}
.o-header__top-block-left .menu-primary-menu-small-container .menu-item:first-child a {
  padding: 10px 15px 10px 0;
}
.o-header__top-block-left .menu-primary-menu-small-container .menu-item:last-child a {
  padding: 10px 0 10px 15px;
}
.o-header__top-block-left .menu-primary-menu-small-container .menu-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #323232;
}
.o-header__top-block-left .menu-primary-menu-small-container .menu-item:first-child::before {
  display: none;
}
.o-header__top-block-left .menu-primary-menu-small-container .menu-item a {
  display: flex;
  align-items: center;
  font-family: "Sohne", sans-serif;
  font-size: 10px;
  line-height: 1.08;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
}
.o-header__top-block-right {
  min-width: 96px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1664d5;
  border-radius: 20px;
  transition: 0.3s all;
}
.o-header__top-block-right:hover {
  background: #1664d5;
}
.o-header__top-block-right a {
  font-family: "Sohne", sans-serif;
  font-size: 9px;
  line-height: 1.08;
  text-transform: uppercase;
  color: #ffffff;
  padding: 7px 9px;
  transition: 0.3s all;
  border-radius: inherit;
}
.o-header__top .black-menu-box ul li.menu-item {
  padding: 0 15px;
  border-left: 1px solid #323232;
  display: flex;
}
@media screen and (max-width: 500px) {
  .o-header__top .black-menu-box ul li.menu-item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .o-header__top .black-menu-box ul li.menu-item:nth-child(n+4) {
    display: none;
  }
}
.o-header__top .black-menu-box ul li.menu-item a {
  font-size: 12px;
  font-family: "Sohne", sans-serif;
}
.o-header__top .black-menu-box.c-top-menu-mobile ul li:first-child {
  border-left: none;
}

.o-header__top-text {
  transition: 0.3s all;
}
.o-header__top-text:hover {
  text-decoration: underline;
}

.o-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 701;
}
.o-header.fixed .o-header__main {
  width: 100%;
  background-color: #ffffff;
  z-index: 701;
  opacity: 0.97;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.o-header.fixed .o-header-mob {
  width: 100%;
  background-color: #fff;
}

.o-header__main {
  display: none;
  position: relative;
  top: 0;
  transition: top 0.3s cubic-bezier(0.42, 0, 0.59, 1.26);
}
@media screen and (min-width: 1240px) {
  .o-header__main {
    display: block;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list {
    flex-direction: row;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list > .menu-item {
    text-align: center;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list > .menu-item > a {
    display: block;
    padding: 5px 8px;
    font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(60 / 13);
    font-weight: 500;
    color: #000;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list > .menu-item > a:before {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #000;
    opacity: 0;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list > .menu-item:hover > a:before {
    opacity: 1;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list > .current-menu-item a:before {
    opacity: 1;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list .sub-menu {
    position: absolute;
    box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
    background-color: #fff;
    z-index: 205;
    border-radius: 5px;
    text-align: center;
    padding: 5px 5px 10px;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list .sub-menu > .menu-item a {
    display: inline-block;
    padding: 3px 10px;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list .sub-menu > .menu-item a:hover::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #000;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list .menu-item-has-children > a:after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 0;
    height: 0;
    border-top: 5px solid #000;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0.6;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__main .c-main-menu__list .menu-item-has-children:hover .sub-menu {
    display: flex !important;
  }
}

.o-header__main-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.o-header__logo {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 320px) {
  .o-header__logo {
    width: 198px;
  }
}
@media screen and (min-width: 768px) {
  .o-header__logo {
    width: 258px;
  }
}
.o-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.o-header__date {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: calc(12 / 16 * 1rem);
  line-height: calc(14 / 12);
  font-weight: 400;
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .o-header__date {
    display: block;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__date {
    position: relative;
    transform: none;
  }
}

.o-header__profile .o-header__login {
  color: #1664d5 !important;
}

.o-header__main-block-up-right .o-header__profile .o-header__login {
  color: #000000 !important;
}

.c-search__toggle i {
  color: #1664d5 !important;
}

.c-mob-menu .o-header__about a {
  border: 2px solid #1664d5;
}

.o-header__about {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1240px) {
  .o-header__about {
    margin-top: 0;
  }
}
.o-header__about span {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  margin-top: 50px;
}
.o-header__about a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 400;
  font-family: "Sohne", sans-serif;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1.25;
}
@media screen and (min-width: 1240px) {
  .o-header__about a {
    padding: 0;
    background-color: transparent;
    color: inherit;
    font-size: calc(13 / 16 * 1rem);
    line-height: calc(16 / 13);
    font-weight: 700;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  }
}
@media screen and (max-width: 1239px) {
  .o-header__about a:hover {
    background-color: white;
    color: #000;
    border: 2px solid transparent;
  }
}
@media screen and (min-width: 1240px) {
  .o-header__about a:hover {
    text-decoration: underline;
  }
}

.o-header__main .o-header__profile {
  position: relative;
  margin-top: 40px;
  max-width: 120px;
  margin-right: 0 !important;
}
@media screen and (min-width: 1240px) {
  .o-header__main .o-header__profile {
    margin-top: 0;
  }
}
.o-header__login {
  color: #000;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(14 / 13);
  font-weight: 700;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
.o-header__main .o-header__login {
  width: auto;
  padding: 2px 4px;
  border: none;
  color: #000;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(14 / 13);
  font-weight: 700;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}
.o-header__main .o-header__login:hover, .o-header__main .o-header__login:active {
  text-decoration: underline;
}
.c-mob-menu .o-header__login {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  padding: 13px 20px;
  background-color: transparent;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  box-sizing: border-box;
  font-size: calc(20 / 16 * 1rem);
  line-height: calc(20 / 20);
  font-weight: 400;
  font-family: "Sohne", sans-serif;
  line-height: 1.25;
  transition: color 0.3s, background-color 0.3s;
}
.c-mob-menu .o-header__login:hover, .c-mob-menu .o-header__login:active {
  background-color: white;
  color: #000;
}
.c-custom-header .o-header__login:hover, .c-custom-header .o-header__login:active {
  text-decoration: underline;
}

.o-header__profile-icon {
  cursor: pointer;
}

.o-header__profile-info {
  display: flex;
  align-items: center;
}
.o-header__profile-info .o-header__profile-photo {
  margin-right: 10px;
}

.o-header__profile-photo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.o-header__profile-photo img {
  border-radius: inherit;
}

.o-header__nav-list {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  padding: 10px;
  min-width: 280px;
  background-color: #000;
  color: #fff;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  z-index: 205;
}
.o-header__nav-list li {
  padding: 4px 0;
}
.o-header__nav-list li:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}

.o-header__nav-item a {
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  color: inherit;
  transition: background-color 0.2s;
}
.o-header__nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.o-header__nav-title {
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(22 / 13);
  font-weight: 400;
  color: #8a8d8e;
}

.o-header__nav-footer {
  display: flex;
  font-size: calc(13 / 16 * 1rem);
  line-height: calc(16 / 13);
  font-weight: 400;
  color: #8a8d8e;
}
.o-header__nav-footer a {
  padding: 0 5px;
  color: inherit;
  border-left: 1px solid;
}
.o-header__nav-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.o-header__nav-footer span {
  padding: 0 5px;
}

.hidden-menus-item-desktop {
  display: block;
}
@media screen and (min-width: 1240px) {
  .hidden-menus-item-desktop {
    display: none;
  }
}

@media screen and (max-width: 1239px) {
  .o-header-mob__main .o-header__date {
    display: none;
  }
}
.o-header-mob__main .mobile-header-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}
.o-header-mob__main .mobile-header-container .o-header__logo {
  margin-left: -10px;
}
.o-header-mob__main .mobile-header-container .cbPosts__block_buttons {
  margin-right: 10px;
}
.o-header-mob__main .mobile-header-container .right-side-header-mobile {
  display: flex;
  align-items: center;
}

.o-header__main-block-up {
  height: 50px;
  border-bottom: 1px solid #e3e3e3;
}
.o-header__main-block-up .offset-1 {
  margin-left: -10px;
}
.o-header__main-block-up .justify-content-between {
  height: 100%;
  display: flex;
}
.o-header__main-block-up-right {
  display: flex;
  align-items: center;
}
.o-header__main-block-up-right .o-header__profile {
  margin-right: 8px;
  width: 54px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-header__main-block-up-right .o-header__login {
  font-family: "Sohne", sans-serif;
  font-size: 13px;
  line-height: 1.08;
  text-align: center;
  color: #000000;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-header__main-block-up-right-btn {
  width: 80px;
  height: 30px;
  border: 1px solid #3a7aee;
  border-radius: 28px;
  font-family: "Sohne", sans-serif;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  color: #000000;
  font-weight: 700;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.o-header__main-block-up-right-btn:hover {
  background: #3a7aee;
  color: #ffffff;
}
.o-header__main-block-up-right .cbPosts__block_buttons {
  margin-right: 8px;
}
.o-header__main-block-up-right .c-mob-search {
  width: 100%;
  max-width: 160px;
  height: 30px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.o-header__main-block-up-right .c-mob-search__wrap {
  margin-left: 0;
}
.o-header__main-block-up-right .c-mob-search__toggle {
  padding: 5px 15px;
  display: flex;
  align-items: center;
}
.o-header__main-block-up-right .search-field {
  font-family: "Sohne", sans-serif;
  font-size: 13px;
  line-height: 1.2;
  -webkit-text-fill-color: #000000;
  caret-color: #000000;
}
.o-header__main-block-up-right .c-mob-search__icon {
  width: 13px;
  height: 13px;
}
.o-header__main-block-up-right .authorPost__info_photo {
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  margin-right: 0;
}
.o-header__main-block-down {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-bottom: 1px solid #e3e3e3;
}
.o-header__main-block-down-items {
  display: flex;
}
.o-header__main-block-down-items .c-main-menu .menu-item a::before {
  display: none;
}
.o-header__main-block-down-items .c-main-menu .menu-item .sub-menu a {
  font-size: 12px;
}
.o-header__main-block-down-items .c-main-menu .menu-item .sub-menu .menu-item {
  display: flex;
}
.o-header__main-block-down-items .c-main-menu .menu-item a {
  border: 1px solid transparent;
  border-radius: 28px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  transition: 0.3s all;
}
.o-header__main-block-down-items .c-main-menu .menu-item a:not(.sub-menu a):hover {
  border: 1px solid #e3e3e3;
}
.o-header__main-block-down-items .c-main-menu .menu-item.current-menu-item a {
  border: 1px solid #e3e3e3;
}
.o-header__main-block-down .o-header__date {
  top: 0;
}

.o-header-mob {
  position: relative;
  z-index: 999;
  padding: 15px 0;
  transition: color 0.3s;
}
@media screen and (min-width: 1240px) {
  .o-header-mob {
    display: none;
  }
}
.o-header-mob.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
}
.o-header-mob.bg {
  background-color: #191919;
  color: #fff;
}
.o-header-mob.bg .cbPosts__block_buttons {
  display: none;
}

.o-header-mob__main {
  position: relative;
  z-index: 1;
}

.o-header-mob__btn {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  padding: 2px;
  width: 28px;
  height: 22px;
  line-height: 0;
  font-size: 0;
  z-index: 5;
  cursor: pointer;
}
.o-header-mob__btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: background-color 0.3s, transform 0.3s;
}
.o-header-mob__btn span:not(:first-child) {
  margin-top: 6px;
}
.o-header-mob__btn.is-opened span {
  background-color: #fff;
}
.o-header-mob__btn.is-opened span:first-child {
  transform: translateY(8px) rotate(45deg);
}
.o-header-mob__btn.is-opened span:nth-child(2) {
  width: 0;
}
.o-header-mob__btn.is-opened span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.o-header-mob.bg {
  padding: 32px 0 0;
}
.o-header-mob.bg .align-items-center {
  justify-content: space-between;
}
.o-header-mob.bg .offset-2 {
  margin-left: 0;
}
.o-header-mob.bg .o-header__logo {
  margin-left: -10px;
}

.o-footer {
  background-color: #191919;
  color: #fff;
  font-family: Sohne, sans-serif;
}
.single-events .o-footer {
  display: none;
}

.o-footer__btn-top {
  border-radius: 5px !important;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .o-footer__btn-top {
    margin: initial;
  }
}

.o-footer__logo {
  width: 240px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .o-footer__logo {
    margin: 0 0 20px;
    width: 280px;
  }
}

.o-footer__bottom-part {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.o-footer__bottom-part .o-footer__btn-top .o-footer__arrow {
  transition: 0.2s linear;
}
.o-footer__bottom-part .o-footer__btn-top:hover .o-footer__arrow {
  transform: translateY(-3px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .o-footer__bottom-part .o-footer__btn-top {
    margin: 0 0 0 auto;
  }
}

.o-footer__copyright {
  font-family: "Sohne", sans-serif;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(24 / 16);
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .o-footer__copyright {
    margin-top: 0;
    text-align: left;
  }
}

.o-footer__top-part {
  padding: 40px 0;
}
.o-footer__top-part .o-footer-text p {
  font-size: 15px;
}
.o-footer__top-part .c-footer-nav__list li {
  margin-bottom: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.o-footer__top-part .c-footer-nav__list li a {
  color: #fff;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .o-footer__top-part .c-footer-nav__list li a br {
    display: none;
  }
}
.o-footer__top-part .c-footer-nav__item:first-child {
  margin-bottom: 16px;
}
.o-footer__top-part .c-footer-nav__item .c-button {
  padding: 12px 20px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: calc(16 / 16 * 1rem);
  line-height: calc(16 / 16);
  font-weight: 300;
  font-family: "Sohne", sans-serif;
  transition: background-color 0.3s, color 0.3s;
}
.o-footer__top-part .c-footer-nav__item .c-button:hover {
  background-color: #fff;
  color: #000;
}

.o-footer__nav #menu-footer-menu {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-footer__nav #menu-footer-menu {
    text-align: left;
  }
}
.o-footer__nav #menu-footer-menu li {
  margin-bottom: 12px;
}
.o-footer__nav #menu-footer-menu li:last-child {
  margin-bottom: 0;
}
.o-footer__nav #menu-footer-menu li a {
  font-size: 16px;
  transition: 0.3s;
}
.o-footer__nav #menu-footer-menu li a:hover {
  color: #1664d5;
}
.o-footer__nav #menu-item-134198 a {
  transition: 0.3s;
}
.o-footer__nav #menu-item-134198 a:hover {
  color: #1664d5;
}
.o-footer__nav .col-12 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .o-footer__nav .col-12 {
    margin-bottom: 0;
  }
}
.o-footer__nav .col-12:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .o-footer__nav .c-main-menu li a {
    display: inline-block;
    padding: 0;
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(19 / 16);
    font-weight: 700;
    color: inherit;
  }
}
@media screen and (min-width: 768px) {
  .o-footer__nav .c-main-menu li .sub-menu {
    margin-top: 12px;
    display: block;
    background-color: transparent;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  .o-footer__nav .c-main-menu li .sub-menu {
    position: relative;
  }
}
.o-footer__nav .c-main-menu li .sub-menu li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .o-footer__nav .c-main-menu li .sub-menu li a {
    display: inline-block;
    padding: 0;
    font-size: calc(16 / 16 * 1rem);
    line-height: calc(24 / 16);
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .o-footer__nav .c-main-menu .menu-item__icon {
    display: none;
  }
}
.o-footer__nav .c-footer-nav {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-footer__nav .c-footer-nav {
    text-align: left;
  }
}

.c-footer-editorial a {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #1664d5;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-family: "Sohne", sans-serif;
  transition: 0.3s;
  padding: 5px 20px !important;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer-editorial:hover a {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #fff;
}

.o-footer-form input {
  height: 29px;
  width: 100%;
  background: #ffffff;
  border: none;
  color: #3a3d3f;
  font-size: 15px;
  line-height: 18px;
  border-radius: 5px;
  padding: 5px;
}
.o-footer-form input::-moz-placeholder {
  color: #3a3d3f;
  opacity: 1;
}
.o-footer-form input::placeholder {
  color: #3a3d3f;
  opacity: 1;
}
.o-footer-form input:-ms-input-placeholder {
  color: #3a3d3f;
}
.o-footer-form input::-ms-input-placeholder {
  color: #3a3d3f;
}

.o-footer__bottom-part .o-footer__logo {
  margin: 27px auto 0 !important;
}
@media screen and (min-width: 768px) {
  .o-footer__bottom-part .o-footer__logo {
    margin: 0 !important;
  }
}

.o-footer-title {
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-footer-title {
    text-align: left;
  }
}

.o-footer-text {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .o-footer-text {
    text-align: left;
    margin-bottom: 0;
  }
}

.c-footer-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-footer-signup {
    align-items: flex-start;
  }
}
.c-footer-signup .o-footer-text {
  max-width: 260px;
  margin-bottom: 0;
  margin-top: -3px;
}
.c-footer-signup .o-footer-text p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.o-footer__menu {
  padding-left: 0px;
}
@media screen and (min-width: 768px) {
  .o-footer__menu {
    padding-left: 50px;
  }
}

.c-footer-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-footer-nav__list {
    align-items: flex-start;
  }
}

/*  7 - UTILITIES
 *  High-specificity, very explicit selectors.
 *  Overrides and helper classes.
 =========================================================== */
.u-white {
  color: #fff;
}

.u-bg-transparent {
  background-color: transparent !important;
}

.u-bg-primary {
  background-color: #000;
}

.u-bg-lilac-600 {
  background-color: #0d1d41;
}

.u-bg-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.u-border, .u-border--bottom, .u-border--top {
  position: relative;
}
.u-border:before, .u-border--bottom:before, .u-border--top:before {
  content: "";
  position: absolute;
}

.u-border--top:before {
  height: 1px;
  width: calc(100% - 50px);
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .u-border--top:before {
    width: 100%;
    max-width: 678px;
  }
}
@media screen and (min-width: 960px) {
  .u-border--top:before {
    max-width: 910px;
  }
}
@media screen and (min-width: 1240px) {
  .u-border--top:before {
    max-width: 1170px;
  }
}

.u-border--bottom:before {
  height: 1px;
  width: 100%;
  background-color: #000;
  bottom: 0;
  left: 0;
}

.u-img-effects, .c-post-lg__img, .c-card-learning__img, .c-industries-card__img, .c-show-page__card-img, .c-podcast-card__img, .c-course-card__img, .s-episode-video__latest .c-post-lg__img, .s-online-learning__courses .c-post-lg__img, .s-online-learning__top-lessons .c-post-lg__img {
  position: relative;
  display: block;
  overflow: hidden;
  transition: background-color 0.3s;
}
.u-img-effects:hover, .c-post-lg__img:hover, .c-card-learning__img:hover, .c-industries-card__img:hover, .c-show-page__card-img:hover, .c-podcast-card__img:hover, .c-course-card__img:hover {
  background-color: #fff;
}
.u-img-effects:hover img, .c-post-lg__img:hover img, .c-card-learning__img:hover img, .c-industries-card__img:hover img, .c-show-page__card-img:hover img, .c-podcast-card__img:hover img, .c-course-card__img:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.u-img-effects:active, .c-post-lg__img:active, .c-card-learning__img:active, .c-industries-card__img:active, .c-show-page__card-img:active, .c-podcast-card__img:active, .c-course-card__img:active {
  background-color: #000;
}
.u-img-effects:active img, .c-post-lg__img:active img, .c-card-learning__img:active img, .c-industries-card__img:active img, .c-show-page__card-img:active img, .c-podcast-card__img:active img, .c-course-card__img:active img {
  opacity: 0.7;
}
.u-img-effects img, .c-post-lg__img img, .c-card-learning__img img, .c-industries-card__img img, .c-show-page__card-img img, .c-podcast-card__img img, .c-course-card__img img, .s-episode-video__latest .c-post-lg__img img, .s-online-learning__courses .c-post-lg__img img, .s-online-learning__top-lessons .c-post-lg__img img {
  transition: transform 0.3s;
}

.u-border-radius-small {
  border-radius: 5px;
}

.u-border-radius-medium {
  border-radius: 10px;
}

.u-border-radius-large {
  border-radius: 15px;
}

.u-bordered {
  border: 1px solid #bac7ce;
}

.auth0-lock.auth0-lock .auth0-lock-name {
  font-size: 16px !important;
}

#wpadminbar {
  transition: 0.3s ease-in-out;
}

.lg-on #wpadminbar {
  top: -50px;
}

body.logged-in .s-shows .btnSubscribe {
  display: none;
}

.s-event-cards-upcoming {
  padding-top: 38px;
}

.s-event-cards-recent {
  padding-bottom: 60px;
}
.s-event-cards-recent .c-shows__btn-container {
  margin: 0;
}

.btn__readMore {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  color: #808080;
  font-size: 11px;
  transition: 0.3s linear;
  margin-top: 8px;
}
.btn__readMore:hover {
  color: #000;
}

.o-header__logo img {
  width: auto;
  height: auto;
}

div[class*=wistia] .w-video-card__description {
  font-size: 15px !important;
  line-height: 1.4 !important;
}
div[class*=wistia] .w-hero-background img {
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 2000px) {
  div[class*=wistia] .w-hero-background img {
    -o-object-position: 0 -70px;
       object-position: 0 -70px;
  }
}

.single-contributor .author-containter {
  margin-top: -130px;
}
@media screen and (min-width: 1199px) {
  .single-contributor .author-containter {
    margin-top: -710px;
  }
}
.single-contributor .site-content {
  background: #1d437a;
}
.single-contributor main {
  padding-bottom: 20px;
}
.single-contributor main::after {
  display: none !important;
}
.single-contributor main .container {
  padding-left: 15px;
  padding-right: 15px;
}
.single-contributor .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  cursor: default;
  margin-top: 20px;
}
@media screen and (min-width: 1199px) {
  .single-contributor .swiper-pagination {
    margin-top: 40px;
  }
}
.single-contributor .swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 100%;
  transition: 0.3s linear;
  opacity: 1;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1199px) {
  .single-contributor .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    margin: 0 10px;
  }
}
.single-contributor .swiper-pagination .swiper-pagination-bullet:hover {
  background: #fff;
}
.single-contributor .swiper-pagination .swiper-pagination-bullet-active {
  transform: scale(1.2);
  position: relative;
  background: #3a7aee;
  border: 1px solid #3a7aee;
}
.single-contributor .swiper-pagination .swiper-pagination-bullet-active:hover {
  background: #3a7aee;
}
.single-contributor .swiper-arrow-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.4);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  transition: background-color 0.3s linear;
  cursor: pointer;
  display: none;
}
@media screen and (min-width: 768px) {
  .single-contributor .swiper-arrow-item {
    width: 46px;
    height: 46px;
  }
}
.single-contributor .swiper-arrow-item.active {
  visibility: visible;
  display: flex;
}
.single-contributor .swiper-arrow-item.swiper-button-disabled {
  pointer-events: none;
  cursor: default;
  display: none;
}
@media (hover: hover) {
  .single-contributor .swiper-arrow-item:hover {
    background-color: rgba(0, 0, 0, 0);
  }
}
.single-contributor .swiper-arrow-item svg {
  display: block;
  width: 15px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .single-contributor .swiper-arrow-item svg {
    width: 25px;
  }
}
.single-contributor .swiper-arrow-item.prev {
  right: 56px;
}
@media screen and (min-width: 768px) {
  .single-contributor .swiper-arrow-item.prev {
    right: 86px;
  }
}
.single-contributor .swiper-arrow-item.prev svg {
  transform: rotate(180deg);
}
.single-contributor .swiper-arrow-item.next {
  right: 15px;
  left: auto;
}
@media screen and (min-width: 768px) {
  .single-contributor .swiper-arrow-item.next {
    right: 30px;
  }
}

.authorDesc {
  position: relative;
  padding-bottom: 30px;
}
@media screen and (min-width: 1199px) {
  .authorDesc {
    padding-bottom: 40px;
  }
}
.authorDesc__shadow {
  position: absolute;
  width: 100%;
  height: 1670px;
  background: linear-gradient(0deg, rgba(1, 1, 1, 0) 0%, #010101 69.27%);
  left: 0;
  z-index: 1;
}
.authorDesc__preview {
  position: relative;
}
.authorDesc__preview_shadow {
  position: absolute;
  width: 100%;
  height: auto;
  padding-bottom: 56.4%;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, #010101 95.27%);
  bottom: -2px;
  left: 0;
  z-index: 1;
  padding-bottom: 56.4%;
}
@media screen and (min-width: 1199px) {
  .authorDesc__preview_shadow {
    bottom: -210px;
    height: 672px;
    padding-bottom: 0;
    background: linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, #010101 69.27%);
  }
}
.authorDesc__photo {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 380px;
  min-height: 300px;
  height: auto;
}
@media screen and (min-width: 1199px) {
  .authorDesc__photo {
    height: 920px;
    padding-bottom: 0;
  }
}
.authorDesc__photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.authorDesc__video {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 380px;
  min-height: 300px;
  height: auto;
}
@media screen and (min-width: 1199px) {
  .authorDesc__video {
    height: 920px;
    padding-bottom: 0;
  }
}
.authorDesc__video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.authorDesc__video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1999px) {
  .authorDesc .authorDesc__video {
    height: 920px;
  }
}
.authorDesc__block {
  position: relative;
  width: 100%;
  max-width: 1050px;
  height: auto;
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid #181818;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 45px 20px 20px;
  margin-top: -90px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 0;
}
.authorDesc__block .authorDesc__video,
.authorDesc__block .authorDesc__photo {
  height: auto;
  padding-bottom: 56.4%;
}
@media screen and (min-width: 1199px) {
  .authorDesc__block {
    margin: 0 auto 0 auto;
    padding: 60px 85px 40px;
  }
}
.authorDesc__block .c-share .c-button {
  height: 40px;
  margin-bottom: 0;
  min-width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1199px) {
  .authorDesc__block .c-share .c-button {
    min-width: 144px;
  }
}
.authorDesc__block_preview {
  position: relative;
  width: 100%;
  display: block;
  order: 2;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 5px;
  display: none !important;
}
.authorDesc__block_preview_video {
  position: relative;
}
@media screen and (min-width: 1199px) {
  .authorDesc__block_preview {
    display: none;
  }
}
.authorDesc__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  order: 1;
  margin-bottom: 25px;
}
@media screen and (min-width: 1199px) {
  .authorDesc__info {
    order: inherit;
  }
}
.authorDesc__info_row {
  width: 100%;
}
@media screen and (min-width: 991px) {
  .authorDesc__info_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.authorDesc__info_photo {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
  display: block;
}
@media screen and (min-width: 1199px) {
  .authorDesc__info_photo {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    margin-right: 20px;
  }
}
.authorDesc__info_photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.authorDesc__info_right {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 991px) {
  .authorDesc__info_right {
    margin-top: 0;
  }
}
.authorDesc_right {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.authorDesc__name {
  color: #fff;
  font-size: 22px;
  font-family: Söhne, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 1199px) {
  .authorDesc__name {
    font-size: 42px;
  }
}
.authorDesc__pos, .authorDesc__pos_sub {
  color: #fff;
  font-size: 14px;
  font-family: Söhne, sans-serif;
  display: block;
}
@media screen and (min-width: 1199px) {
  .authorDesc__pos, .authorDesc__pos_sub {
    font-size: 22px;
  }
}
.authorDesc__pos_sub {
  color: #3d7ede;
}
.authorDesc__subs {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  background: #3d7ede;
  border-radius: 8px;
  padding: 3px 35px;
  line-height: 1;
  height: 40px;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #3d7ede;
  outline: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s linear;
  margin-right: 15px;
}
.authorDesc__subs:hover {
  background: transparent !important;
}
.authorDesc__socials {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  order: 3;
}
@media screen and (min-width: 1199px) {
  .authorDesc__socials {
    order: inherit;
    margin-bottom: 25px;
  }
}
.authorDesc__socials_item {
  color: #fff;
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: 0.3s;
  margin-right: 10px;
}
.authorDesc__socials_item i {
  font-size: 20px;
}
.authorDesc__socials_item:hover {
  background-color: #1664d5;
}
.authorDesc__universities {
  position: relative;
  margin-bottom: 15px;
  order: 6;
  width: 100%;
}
@media screen and (min-width: 1199px) {
  .authorDesc__universities {
    order: inherit;
  }
}
.authorDesc__universities_item {
  position: relative;
  padding: 10px 0;
  width: 100%;
}
.authorDesc__universities_item_year {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 15px;
}
@media screen and (min-width: 1199px) {
  .authorDesc__universities_item_year {
    font-size: 17px;
  }
}
.authorDesc__universities_item_title {
  display: block;
  width: 100%;
  color: #8a8d8e;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 3px;
}
@media screen and (min-width: 1199px) {
  .authorDesc__universities_item_title {
    font-size: 17px;
  }
}
.authorDesc__desc {
  order: 4;
}
@media screen and (min-width: 1199px) {
  .authorDesc__desc {
    order: inherit;
  }
}
.authorDesc__desc p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (min-width: 767px) {
  .authorDesc__desc p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1199px) {
  .authorDesc__desc p {
    font-size: 18px;
  }
}
.authorDesc__cat {
  position: relative;
  order: 5;
  margin-bottom: 25px;
  width: 100%;
}
@media screen and (min-width: 1199px) {
  .authorDesc__cat {
    order: inherit;
  }
}
.authorDesc__cat_item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s linear;
  width: -moz-fit-content;
  width: fit-content;
}
.authorDesc__cat_item_icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.authorDesc__cat_item_icon svg {
  fill: #fff;
}
.authorDesc__cat_item_icon img,
.authorDesc__cat_item_icon svg {
  display: block;
  width: 24px;
  height: auto;
  max-height: 32px;
}
.authorDesc__cat_item_title {
  color: #fff;
  font-size: 14px;
  font-family: Söhne, sans-serif;
}
@media screen and (min-width: 1199px) {
  .authorDesc__cat_item_title {
    font-size: 16px;
  }
}
.authorDesc .morecontent span {
  display: none;
}
.authorDesc .morelink {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-weight: 400;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  color: #808080;
  font-size: 13px;
  transition: 0.3s linear;
  margin-top: 8px;
}
.authorDesc .morelink:hover {
  color: #bdbaba;
}

.modalReg {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  display: none;
}
.modalReg__wrap {
  padding: 50px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.modalReg__block {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  max-width: 730px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 767px) {
  .modalReg__block {
    padding: 25px 25px;
  }
}
.modalReg__title {
  text-align: center;
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.1;
}
@media screen and (min-width: 767px) {
  .modalReg__title {
    font-size: 32px;
  }
}
.modalReg__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modalReg.magic-link .modalReg__block {
  max-width: 570px;
  width: 100%;
}
.modalReg.login form label {
  margin-bottom: 10px;
  position: relative;
}
.modalReg.login form label[for=subscribe] {
  width: initial !important;
}
.modalReg.login form label button.wp-hide-pw {
  position: absolute;
  top: -2px;
  right: 6px;
  border: none;
  background: transparent;
}
.modalReg .s-form__icon {
  display: flex;
  justify-content: center;
  height: 70px;
  margin: 20px 0;
}
.modalReg .s-form__icon svg {
  max-width: 80px;
  width: 100%;
}
.modalReg .s-form__text-sent {
  text-align: center;
}
.modalReg .s-form__btn--back {
  display: none;
}
.modalReg form .s-form__label-wrap {
  position: relative;
}
@media screen and (min-width: 767px) {
  .modalReg form .s-form__label-wrap {
    margin-right: -10px;
  }
}
.modalReg form .s-form__label-wrap label {
  width: 100%;
  margin-right: 10px;
}
.modalReg form label[for=email] {
  display: flex;
  flex-direction: column-reverse;
}
.modalReg form label[for=email] input {
  border: 1px solid #d5d7d9;
  height: 50px;
  font-size: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.modalReg form label[for=email] span {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}
.modalReg form .s-form__btn label:nth-child(1) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.modalReg form .s-form__btn label input {
  cursor: pointer;
  display: block;
  margin: 0;
  margin-right: 6px;
  margin-top: 3px;
}
.modalReg form .s-form__btn label span {
  font-size: 12px;
}
@media screen and (min-width: 767px) {
  .modalReg form .s-form__btn label span {
    font-size: 14px;
  }
}
.modalReg form .s-form__btn label a {
  color: #3a7aee;
}
.modalReg form .s-form__btn label a:hover {
  text-decoration: underline;
}
.modalReg form input[type=text],
.modalReg form input[type=password] {
  border: 1px solid #d5d7d9;
  height: 40px;
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
  color: #5f6164;
  padding-left: 15px;
  font-family: Söhne, sans-serif;
}
@media screen and (min-width: 767px) {
  .modalReg form input[type=text],
  .modalReg form input[type=password] {
    height: 50px;
    font-size: 15px;
  }
}
.modalReg form input[type=text]::-moz-placeholder, .modalReg form input[type=password]::-moz-placeholder {
  font-size: 13px;
}
.modalReg form input[type=text]::placeholder,
.modalReg form input[type=password]::placeholder {
  font-size: 13px;
}
@media screen and (min-width: 767px) {
  .modalReg form input[type=text]::-moz-placeholder, .modalReg form input[type=password]::-moz-placeholder {
    font-size: 15px;
  }
  .modalReg form input[type=text]::placeholder,
  .modalReg form input[type=password]::placeholder {
    font-size: 15px;
  }
}
.modalReg form input[type=submit] {
  background: #3a7aee;
  border-radius: 5px;
  text-align: center;
  height: 40px;
  width: 100%;
  transition: 0.3s;
  font-size: 15px;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: Söhne, sans-serif;
}
@media screen and (min-width: 767px) {
  .modalReg form input[type=submit] {
    height: 50px;
  }
}
.modalReg form input[type=submit]:hover {
  background-color: #54bbff;
}
.modalReg form .s-form__error {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  order: 3;
}
.modalReg form .s-form__error-icon {
  width: 14px;
}
.modalReg form .s-form__error-icon .icon {
  width: 14px;
  height: 14px;
}
.modalReg form .s-form__error-text {
  margin-left: 6px;
}
.modalReg form .s-form__error-text a {
  color: #3a7aee;
}
.modalReg .s-form__btn-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  height: 34px;
  border: 1px solid #d5d7d9;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 13px;
  color: #000;
  transition: 0.3s linear;
  background: #fff;
  font-family: Söhne, sans-serif;
  z-index: 2;
  position: relative;
}
.modalReg .s-form__btn-label-line {
  position: absolute;
  left: 15px;
  margin-top: 36px;
  width: calc(100% - 30px);
  height: 1px;
  background: #d5d7d9;
}
@media screen and (min-width: 767px) {
  .modalReg .s-form__btn-label-line {
    width: calc(100% - 50px);
  }
}
.modalReg .s-form__btn-actions {
  display: flex;
  align-content: center;
  margin-right: -10px;
}
@media screen and (min-width: 767px) {
  .modalReg .s-form__btn-actions {
    margin-right: -20px;
  }
}
.modalReg .s-form__btn-actions-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  margin-right: 10px;
  height: 40px;
  border: 1px solid #bac7ce;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s linear;
  background: #fff;
  color: #173559;
  font-family: Söhne, sans-serif;
}
@media screen and (min-width: 767px) {
  .modalReg .s-form__btn-actions-wrap {
    font-size: 15px;
    margin-right: 20px;
    height: 50px;
  }
}
.modalReg .s-form__btn-actions-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
@media screen and (min-width: 767px) {
  .modalReg .s-form__btn-actions-wrap a {
    padding: 0 20px;
  }
}
.modalReg .tooltip-pass-bottom {
  margin-bottom: 10px;
  order: 2;
  font-family: Sohne, sans-serif;
  font-size: 13px;
  display: flex;
  justify-content: center;
}
.modalReg .tooltip-pass-bottom ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 7px;
  column-gap: 7px;
  justify-content: flex-start;
  align-self: center;
  list-style: none;
}
.modalReg .tooltip-pass-bottom ul li {
  color: #767676;
  display: inline-block;
  line-height: 14px;
  padding: 3px 0;
}
.modalReg .tooltip-pass-bottom ul li:nth-child(1) {
  color: #21252b;
}
.modalReg .tooltip-pass-bottom ul li span {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  line-height: 12px;
  position: relative;
  top: 2px;
}
.modalReg .tooltip-pass-bottom ul li:not(:first-child) .success {
  content: url("../../img/icons/checked-green.svg");
}
.modalReg .tooltip-pass-bottom ul li:not(:first-child) span {
  content: url("../../img/icons/checked-grey.svg");
}
.modalReg .s-form__hint-text {
  margin-bottom: 10px;
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 400;
  color: #8a8d8e;
  text-align: center;
}

.sliderMedia {
  position: relative;
  padding: 30px 0;
  z-index: 2;
}
.sliderMedia .swiper-pagination {
  margin-top: 25px;
}
@media screen and (min-width: 1199px) {
  .sliderMedia .swiper-pagination {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1199px) {
  .sliderMedia {
    padding: 40px 0;
  }
}
.sliderMedia__wrap {
  width: calc(100% + 200px);
  left: -100px;
  position: relative;
}
.sliderMedia__wrap.lessOnePosts {
  left: 0;
  width: 100%;
}
.sliderMedia__wrap.lessOnePosts .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.sliderMedia__item {
  position: relative;
  display: flex;
  min-height: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .sliderMedia__item {
    height: 390px;
  }
}
@media screen and (min-width: 1199px) {
  .sliderMedia__item {
    height: 490px;
  }
}
.sliderMedia__item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sliderMedia__item .playIcon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 23, 23, 0.8);
  border-radius: 100%;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: 0.3s linear;
}
@media screen and (min-width: 1199px) {
  .sliderMedia__item .playIcon {
    width: 100px;
    height: 100px;
  }
}
.sliderMedia__item .playIcon svg {
  margin-left: 6px;
  display: block;
  width: 22px;
}
@media screen and (min-width: 1199px) {
  .sliderMedia__item .playIcon svg {
    width: 38px;
    margin-left: 12px;
  }
}
.sliderMedia__item .playIcon:hover {
  background: rgb(23, 23, 23);
}
.sliderMedia__item.loading .spinner-loader {
  display: block;
}
.sliderMedia__item.loading .playIcon {
  display: none;
}
.sliderMedia__item-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sliderMedia__item-placeholder .spinner-loader {
  transform: translate(-50%, -50%);
  border: 10px solid #cdcdcd; /* Light grey */
  border-top: 10px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sliderMedia__item-frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: none;
}
.sliderMedia__item-frame video,
.sliderMedia__item-frame iframe {
  width: 100%;
  height: 100%;
}
.sliderMedia__item.play-iframe .sliderMedia__item-placeholder {
  display: none;
}
.sliderMedia__item.play-iframe .sliderMedia__item-frame {
  display: block;
}
.sliderMedia .swiper-slide {
  height: auto;
  padding: 0 15px;
  width: 300px;
  pointer-events: none;
}
@media screen and (min-width: 400px) {
  .sliderMedia .swiper-slide {
    width: 310px;
  }
}
@media screen and (min-width: 767px) {
  .sliderMedia .swiper-slide {
    width: 540px;
  }
}
@media screen and (min-width: 991px) {
  .sliderMedia .swiper-slide {
    width: 640px;
  }
}
@media screen and (min-width: 1199px) {
  .sliderMedia .swiper-slide {
    width: 870px;
  }
}
.sliderMedia .swiper-slide .swiper-slide-shadow-right,
.sliderMedia .swiper-slide .swiper-slide-shadow-left {
  display: none;
}
.sliderMedia .swiper-slide .sliderMedia__item img {
  opacity: 0;
}
.sliderMedia .swiper-slide.swiper-slide-duplicate .sliderMedia__item {
  display: none;
}
.sliderMedia .swiper-slide.swiper-slide-duplicate img {
  transition: opacity 0s linear !important;
}
.sliderMedia .swiper-slide.swiper-slide-active {
  cursor: pointer;
}
.sliderMedia .swiper-slide.swiper-slide-duplicate-active .sliderMedia__item, .sliderMedia .swiper-slide.swiper-slide-duplicate.swiper-slide-prev .sliderMedia__item, .sliderMedia .swiper-slide.swiper-slide-duplicate.swiper-slide-next .sliderMedia__item {
  display: block;
}
.sliderMedia .swiper-slide.swiper-slide-next, .sliderMedia .swiper-slide.swiper-slide-prev, .sliderMedia .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.sliderMedia .swiper-slide.swiper-slide-next .sliderMedia__item, .sliderMedia .swiper-slide.swiper-slide-prev .sliderMedia__item, .sliderMedia .swiper-slide.swiper-slide-active .sliderMedia__item {
  display: block;
  opacity: 1;
}
.sliderMedia .swiper-slide.swiper-slide-next .sliderMedia__item img, .sliderMedia .swiper-slide.swiper-slide-prev .sliderMedia__item img, .sliderMedia .swiper-slide.swiper-slide-active .sliderMedia__item img {
  opacity: 1;
}
.sliderMedia .swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
.sliderMedia .swiper-slide.swiper-slide-active .sliderMedia__item .playIcon {
  opacity: 1;
}
.sliderMedia .row {
  position: relative;
}
.sliderMedia .row .swiper-arrow-item {
  display: none;
}
@media screen and (min-width: 991px) {
  .sliderMedia .row .swiper-arrow-item {
    display: flex !important;
  }
}
.sliderMedia .row .swiper-arrow-item.ms-arrow-prev {
  left: -50px;
}
@media screen and (max-width: 1330px) {
  .sliderMedia .row .swiper-arrow-item.ms-arrow-prev {
    left: -10px;
  }
}
@media screen and (max-width: 766px) {
  .sliderMedia .row .swiper-arrow-item.ms-arrow-prev {
    left: 30px;
  }
}
.sliderMedia .row .swiper-arrow-item.ms-arrow-next {
  right: -50px;
}
@media screen and (max-width: 1330px) {
  .sliderMedia .row .swiper-arrow-item.ms-arrow-next {
    right: -10px;
  }
}
@media screen and (max-width: 766px) {
  .sliderMedia .row .swiper-arrow-item.ms-arrow-next {
    right: 30px;
  }
}

.cb__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cb__card {
    margin-bottom: 0;
  }
}
.cb__card_img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cb__card_img:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.cb__card_img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s linear;
}
.cb__card_content {
  position: relative;
  width: 100%;
}
.cb__card_title {
  display: block;
}
.cb__card_title h3 {
  position: relative;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.25;
  margin-bottom: 3px;
  cursor: pointer;
  font-family: Söhne, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cb__card_title h3 {
    font-size: 1rem;
  }
}
.cb__card_title:hover h3 {
  text-decoration: underline;
}
.cb__card_date {
  position: relative;
  display: block;
  color: #bababa;
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 8px;
  font-family: Söhne, sans-serif;
}
@media screen and (min-width: 768px) {
  .cb__card_date {
    font-size: 13px;
  }
}
.cb__card_tags {
  margin-bottom: 10px;
}
.cb__card_tags_item {
  background: rgba(255, 255, 255, 0.9);
  font-family: Söhne, sans-serif;
  border-radius: 12px;
  height: 15px;
  font-size: 11px;
  padding: 0 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s linear;
  cursor: pointer;
}
.cb__card_tags_item:hover {
  background-color: #1664d5;
  color: #fff;
}
.cb__card_desc {
  position: relative;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: Söhne, sans-serif;
}
@media screen and (min-width: 768px) {
  .cb__card_desc {
    font-size: 14px;
  }
}
.cb__card .btn__readMore {
  color: rgba(255, 255, 255, 0.5);
}
.cb__card .btn__readMore:hover {
  color: rgba(255, 255, 255, 0.9);
}

.sliderImages {
  position: relative;
  padding: 30px 0px;
  z-index: 2;
}
.sliderImages .swiper-container {
  padding: 0 15px;
}
@media screen and (min-width: 767px) {
  .sliderImages .swiper-container {
    padding: 0 30px;
  }
}
.sliderImages .swiper-arrow-item.prev {
  right: auto;
  left: 7px;
}
.sliderImages .swiper-arrow-item.next {
  right: 7px;
}
.sliderImages__wrap {
  position: relative;
}
.sliderImages__wrap .swiper-wrapper {
  position: relative;
}
.sliderImages__wrap .lessThreePosts .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0px;
  width: auto;
}
@media screen and (min-width: 767px) {
  .sliderImages__wrap .lessThreePosts .swiper-wrapper {
    margin-right: -30px;
  }
}
.sliderImages__wrap .lessThreePosts .sliderImages__item {
  flex-basis: 100%;
  padding-bottom: 56.4%;
  display: none;
}
@media screen and (min-width: 767px) {
  .sliderImages__wrap .lessThreePosts .sliderImages__item {
    padding-bottom: 26.6%;
  }
}
.sliderImages__wrap .lessThreePosts .sliderImages__item:nth-child(1), .sliderImages__wrap .lessThreePosts .sliderImages__item:nth-child(2) {
  display: block;
}
@media screen and (min-width: 767px) {
  .sliderImages__wrap .lessThreePosts .sliderImages__item {
    flex-basis: calc(50% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
    display: block;
  }
}
.sliderImages__item {
  height: auto;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

.contributorImageBanner {
  position: relative;
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1199px) {
  .contributorImageBanner {
    padding: 40px 0;
  }
}
.contributorImageBanner__block {
  position: relative;
  padding-bottom: 42%;
  min-height: 165px;
  overflow: hidden;
  display: block;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  left: 0;
}
.contributorImageBanner__block img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.cbPosts {
  position: relative;
  padding: 40px 0 80px;
  background-color: #1d437a;
}
@media screen and (min-width: 768px) {
  .cbPosts {
    padding: 70px 0 140px;
  }
}
.cbPosts__block {
  position: relative;
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid #181818;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px 25px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .cbPosts__block {
    padding: 45px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.cbPosts__block_info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .cbPosts__block_info {
    margin-bottom: 0px;
  }
}
.cbPosts__block_buttons {
  display: flex;
  align-items: center;
}
.cbPosts__block .authorDesc__info_photo {
  display: block;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .cbPosts__block .authorDesc__info_photo {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    margin-right: 30px;
  }
}
.cbPosts .container {
  position: relative;
  z-index: 2;
}
.cbPosts::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1670px;
  background: linear-gradient(0deg, rgba(1, 1, 1, 0) 0%, #010101 69.27%);
  top: 0;
  left: 0;
}
.cbPosts__backBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  border-radius: 40px;
  border: 1px solid #fff;
  padding: 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  transition: 0.3s linear;
}
.cbPosts__backBtn span {
  display: block;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s linear;
}
.cbPosts__backBtn svg {
  width: 8px;
  height: auto;
  display: block;
}
.cbPosts__backBtn svg path {
  transition: 0.3s linear;
}
.cbPosts__backBtn:hover {
  background-color: #fff;
}
.cbPosts__backBtn:hover span {
  color: #000;
}
.cbPosts__backBtn:hover svg path {
  stroke: #000;
}
.cbPosts__featured {
  display: none;
}
@media screen and (min-width: 768px) {
  .cbPosts__featured {
    display: block;
  }
}
.cbPosts__featured .cb__card {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cbPosts__featured .cb__card {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .cbPosts__featured .cb__card_title h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .cbPosts__featured .cb__card_date {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  .cbPosts__featured .cb__card_desc {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .cbPosts__featured .cb__card_tags_item {
    height: 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .cbPosts__featured .cb__card .btn__readMore {
    font-size: 14px;
  }
}
.cbPosts__all .row > div:nth-child(1), .cbPosts__all .row > div:nth-child(2) {
  flex: 0 0 100%;
  max-width: 100%;
}
.cbPosts__all .row > div:nth-child(1) .cb__card .cb__card_img, .cbPosts__all .row > div:nth-child(2) .cb__card .cb__card_img {
  margin-bottom: 10px;
}
.cbPosts__all .row > div:nth-child(1) .cb__card .cb__card_content h3, .cbPosts__all .row > div:nth-child(2) .cb__card .cb__card_content h3 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.cbPosts__all .row > div:nth-child(1) .cb__card .cb__card_tags_item, .cbPosts__all .row > div:nth-child(2) .cb__card .cb__card_tags_item {
  margin-bottom: 5px;
}
@media screen and (min-width: 767px) {
  .cbPosts__all .row > div:nth-child(1), .cbPosts__all .row > div:nth-child(2) {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 991px) {
  .cbPosts__all .row > div:nth-child(1) .cb__card .cb__card_content h3, .cbPosts__all .row > div:nth-child(2) .cb__card .cb__card_content h3 {
    font-size: 24px;
  }
  .cbPosts__all .row > div:nth-child(1) .cb__card .cb__card_tags_item, .cbPosts__all .row > div:nth-child(2) .cb__card .cb__card_tags_item {
    margin-bottom: 10px;
  }
  .cbPosts__all .row > div:nth-child(1) .cb__card .cb__card_img, .cbPosts__all .row > div:nth-child(2) .cb__card .cb__card_img {
    margin-bottom: 20px;
  }
}
.cbPosts__all .cb__card {
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .cbPosts__all .cb__card {
    padding: 20px 0;
  }
}

.contributor-template-default .cbPosts__new::after {
  display: none;
}
.contributor-template-default .cbPosts__new {
  padding: 20px 0 0;
  background: transparent;
}
.contributor-template-default .cbPosts__new .cbPosts__title {
  font-family: Söhne, sans-serif;
  font-size: 25px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 30px;
}
.contributor-template-default .cbPosts__new .cb__card {
  padding: 0 0 30px;
}
.contributor-template-default .cbPosts__new .cb__card_tags_item {
  background: #3d7ede;
  border-radius: 12px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 10px;
}
.contributor-template-default .cbPosts__new .cb__card_title h3 {
  font-size: 16px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 700;
}
.contributor-template-default .cbPosts__new .cb__card_date {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.15;
}
.contributor-template-default .cbPosts__new .cb__card_desc {
  font-size: 13px;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contributor-template-default .cbPosts__new .s-cta__btn-container {
  margin: 0 0 50px;
}
.contributor-template-default .cbPosts__new .c-button--outline {
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  background: transparent;
  padding: 13px 30px;
}
.contributor-template-default .cbPosts__new .c-button--outline:hover {
  background: #ffffff;
  color: #000;
}

@media screen and (max-width: 767px) {
  .contributor-template-default .cbPosts__new .cb__card {
    padding: 0 0 20px;
  }
  .contributor-template-default .cbPosts__new .cb__card_tags_item {
    font-size: 10px;
  }
  .contributor-template-default .cbPosts__new .s-cta__btn-container {
    margin: 0 0 30px;
  }
  .contributor-template-default .cbPosts__new .c-button--outline {
    font-size: 14px;
  }
}
@media screen and (max-width: 425px) {
  .contributor-template-default .cbPosts__new .c-button--outline {
    font-size: 12px;
  }
  .contributor-template-default .cbPosts__new .cb__card_desc {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.contributor-post {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: linear-gradient(180deg, #0f1d31 0%, #1d437a 94.27%);
}
.contributor-post__wrapper {
  width: 100%;
  height: auto;
  padding: 20px 0 50px;
}
.contributor-post__wrapper .cbPosts__backBtn {
  margin: 0;
}
.contributor-post__back {
  width: 100;
  max-width: 870px;
  margin: 0 auto;
}
.contributor-post .cbPosts__backBtn-cont {
  background: #000;
}
.contributor-post .cbPosts__backBtn-cont:hover {
  background: #fff;
}
.contributor-post__block {
  margin-top: 50px;
}
.contributor-post__block-title {
  font-family: Söhne, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
}
.contributor-post__block-line {
  border: 1px solid #ffffff;
  opacity: 0.3;
  margin: 5px 0 20px;
}
.contributor-post__posts {
  width: 100%;
  max-width: 715px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  flex-wrap: wrap;
}
.contributor-post__post {
  flex-basis: calc(33.3333333333% - 24px);
}
.contributor-post__post-image {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 10px;
  transition: 0.3s all;
}
.contributor-post__post-image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.contributor-post__post-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.contributor-post__post-image span {
  display: block;
}
.contributor-post__post-title {
  font-weight: 700;
  display: block;
  font-family: Söhne, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 5px;
}
.contributor-post__post-title:hover {
  text-decoration: underline;
}
.contributor-post__post p,
.contributor-post__post span {
  font-family: Söhne, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
.contributor-post__article {
  width: 100%;
  max-width: 713px;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 65px auto 0;
}
.contributor-post__article-title {
  font-family: Söhne, sans-serif;
  font-size: 30px;
  line-height: 1.08;
  color: #ffffff;
}
.contributor-post__article-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
}
.contributor-post__article-info .c-main-post-share {
  align-items: flex-end;
  position: relative;
}
.contributor-post__article-info .c-main-post-share__title {
  font-family: Söhne, sans-serif;
  font-size: 13px;
  line-height: 1.15;
  color: #ffffff;
}
.contributor-post__article-info .c-main-post-share__item {
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  border: 1px solid #9ba5b4;
}
.contributor-post__article-info .c-main-post-share__item i {
  font-size: 10px;
}
.contributor-post__article-info .c-main-post__tag {
  background: rgba(240, 240, 240, 0.2);
  font-family: Söhne, sans-serif;
  font-size: 11px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: none;
  transition: 0.3s all;
}
.contributor-post__article-info .c-main-post__tag:hover {
  opacity: 0.7;
}
.contributor-post__article-date {
  font-family: Söhne, sans-serif;
  font-size: 13px;
  line-height: 1.15;
  color: #9ba5b4;
}
.contributor-post__article-preview {
  font-family: "Merriweather";
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.contributor-post__article-preview p {
  margin: 20px 0;
}
.contributor-post__article-preview a {
  color: #ffffff;
  text-decoration: underline;
}
.contributor-post__article-preview .wistia_responsive_padding {
  margin: 20px 0;
}
.contributor-post__article-preview .TaskStoryFeed-blockStory {
  margin-bottom: 20px;
}
.contributor-post__article-preview .TruncatedRichText-richText,
.contributor-post__article-preview .BlockStoryStructure-header {
  font-size: 17px;
  line-height: 1.75;
}
.contributor-post__article-preview .BlockStoryStructure-block div {
  margin-bottom: 20px;
}
.contributor-post__article-preview .BlockStoryStructure-block div:last-child {
  margin-bottom: 0;
}
.contributor-post__article-preview ol {
  margin-left: 20px !important;
  margin-bottom: 20px !important;
}
.contributor-post__article-preview ol li {
  list-style-type: decimal !important;
  list-style-position: outside !important;
  display: list-item !important;
  margin-top: 10px !important;
}
.contributor-post__article-preview ul {
  margin-left: 20px;
}
.contributor-post__article-preview ul li {
  list-style-type: square !important;
  margin-top: 10px;
}
.contributor-post__article-preview img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.contributor-post__article-preview img.alignright {
  margin-left: auto;
}
.contributor-post__article-video {
  margin-bottom: 20px;
}
.contributor-post__article-video iframe {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}
.contributor-post__article-content {
  font-family: "Merriweather";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}
.contributor-post__article-content p {
  margin-bottom: 25px;
}
.contributor-post__article-content p:last-child {
  margin-bottom: 0;
}
.contributor-post__article-content a {
  color: #ffffff;
  text-decoration: underline;
}

.authorPost__block {
  position: relative;
  width: 100%;
  max-width: 870px;
  height: auto;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid #181818;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px 40px;
  margin: 20px auto 0;
}
.authorPost__info {
  display: flex;
}
.authorPost__info_content .c-main-post__contact-links {
  margin-left: 2px;
}
.authorPost__info_content span {
  font-family: Söhne, sans-serif;
  font-size: 20px;
  line-height: 1.15;
  color: #ffffff;
  display: block;
}
.authorPost__info_content .authorPost__comp {
  color: #3d7ede;
  margin-bottom: 5px;
}
.authorPost__info_content .c-main-post-share__icon {
  color: #fff;
  font-size: 22px;
  margin-right: 10px;
  transition: 0.3s all;
}
.authorPost__info_content .c-main-post-share__icon:last-child {
  margin-right: 0;
}
.authorPost__info_content .c-main-post-share__icon:hover {
  color: #3d7ede;
}
.authorPost__info_photo {
  min-width: 110px;
  max-width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}
.authorPost__info_photo:hover img {
  transform: scale(1.1);
}
.authorPost__info_photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s ease-in-out;
}
.authorPost__info_row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.authorPost__info_right {
  width: 100%;
  max-width: 144px;
  height: auto;
}
.authorPost__info_right .c-share,
.authorPost__info_right .u-white {
  width: 100%;
  height: 37px;
  margin-bottom: 15px;
}
.authorPost__info_right .c-shows__btn-container {
  margin: 0;
  height: 37px;
  background: #3d7ede;
  border-radius: 10px;
}
.authorPost__info_right .c-button--outline-transparent {
  border: none;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.authorPost__info_right .c-button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.authorPost__info_right .c-button span {
  font-family: Söhne, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
.authorPost__name {
  font-family: Söhne, sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.15;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}
.authorPost__name:hover {
  color: #3d7ede;
}
.authorPost__footer {
  min-height: 48px;
  margin-top: 15px;
  border-top: 1px solid #272727;
  display: flex;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
  margin-right: -45px;
}
.authorPost__item {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 17px;
  padding-right: 15px;
  width: 100%;
}
@media screen and (min-width: 550px) {
  .authorPost__item {
    width: 50%;
  }
}
@media screen and (min-width: 767px) {
  .authorPost__item {
    width: 25%;
  }
}
.authorPost__item img,
.authorPost__item svg {
  width: 24px;
  height: auto;
  max-height: 32px;
  margin-right: 10px;
}
.authorPost__item img path,
.authorPost__item img polygon,
.authorPost__item img rect,
.authorPost__item svg path,
.authorPost__item svg polygon,
.authorPost__item svg rect {
  fill: rgba(255, 255, 255, 0.85);
}
.authorPost__item span {
  font-family: Söhne, sans-serif;
  font-size: 16px;
  line-height: 1.15;
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .authorPost__info_row {
    flex-direction: column;
  }
  .authorPost__name {
    font-size: 23px;
  }
  .authorPost__prof {
    font-size: 18px;
  }
  .authorPost__name,
  .authorPost__prof {
    margin-bottom: 5px;
  }
  .c-main-post__contact-links {
    margin-bottom: 5px;
  }
  .authorPost__item {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contributor-post__article-info {
    flex-direction: column;
  }
  .contributor-post__article-title {
    font-size: 26px;
  }
  .contributor-post__article-preview {
    font-size: 15px;
  }
  .contributor-post__article-content {
    font-size: 15px;
  }
  .contributor-post__article-date {
    margin-bottom: 10px;
  }
  .contributor-post__post {
    flex-basis: calc(50% - 24px);
  }
}
@media screen and (max-width: 425px) {
  .authorPost__block {
    padding: 10px 15px;
  }
  .contributor-post__post {
    flex-basis: 100%;
  }
}/*# sourceMappingURL=style.css.map */