.elementor-kit-9{--e-global-color-primary:#11397F;--e-global-color-secondary:#BD1F00;--e-global-color-text:#7A7A7A;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Oswald";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Helvetica";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Helvetica";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:400;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-kit-9 button,.elementor-kit-9 input[type="button"],.elementor-kit-9 input[type="submit"],.elementor-kit-9 .elementor-button{border-radius:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Grid wrapper for all banners */
.champ-grid {
  --col-gap: 1.4rem;
  --barH: 1rem;
  --roleH: 2rem;
  --flapH: 2rem;

  width: min(140rem, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
  padding-inline: calc(var(--col-gap) / 2);
  align-items: flex-start;
}

/* Single pennant/banner */
.champ {
  width: 10em;
  display: grid;
  grid-template:
    "role"
    "icon"
    "title"
    "descr"
    "team";
  align-items: flex-start;
  gap: .5rem;
  padding-block-end: calc(var(--flapH) + 1rem);
  text-align: center;

  /* Let Elementor’s chosen background color show through */
  background: inherit;

  /* Extra shading */
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.6) var(--roleH),
    rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
    rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem)
  );

  clip-path: polygon(
    calc(var(--col-gap) / -2 - 5px) 0,
    calc(100% + var(--col-gap) / 2 + 5px) 0,
    calc(100% + var(--col-gap) / 2 + 5px ) calc(100% - var(--flapH)),
    50% 100%,
    calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH))
  );
  position: relative;
  color: #fff;
}

/* Hanging bar */
.champ::before {
  content: "";
  grid-area: role;
  height: var(--barH);
  width: calc(100% + var(--col-gap));
  margin-left: calc(var(--col-gap) / -2);
  margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
  background: grey;
  z-index: -1;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Top gradient band */
.champ::after {
  content: "";
  grid-area: role;
  background: inherit;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.4)
  );
  height: var(--roleH);
}

/* Inside widgets */
.champ img {
  margin-top: 5px;
  max-width: 80%;
}
.champ .title {
  margin-top: 0;
  font-size: 25px;
  font-weight: 700;
  text-shadow: 0 0 0.5rem rgba(0,0,0,0.5);
}
.champ .descr {
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 0 0.3rem rgba(0,0,0,0.3);
}
.champ .team {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 0.5rem rgba(0,0,0,0.5);
}/* End custom CSS */