/* base */
body {
  max-width: 1920px;
  margin: 0 auto;
  color: var(--prime-color-text);
  font-family: var(--prime-font-family);
  font-size: var(--prime-font-size-base);
  font-weight: var(--prime-font-weight-medium);
  line-height: var(--prime-line-height-base);
}
/* Common heading properties */
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
.h1, 
.h2, 
.h3, 
.h4, 
.h5, 
.h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--prime-font-family-headings);
  font-weight: var(--prime-font-weight-normal);
  line-height: var(--prime-line-height-heading);
}
h3, .h3 {
  letter-spacing: 0;
  font-size: calc(1.2rem + 0.45vw) !important;
  font-weight: 400;
}
h4, .h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  font-family: var(--prime-font-family-headings);
  font-size: calc(1.35rem + 0.3vw);
  font-weight: 400;
  line-height: 1.875rem;
}
h5, .h5 {
  letter-spacing: 0;
  font-size: min(calc(1.1rem + 0.2vw), 21.2px);
  font-weight: 400;
  line-height: 1.5rem;
}
h6, .h6 {
  letter-spacing: -0.007em;
  color: var(--prime-color-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
}
/* Links */
a {
  transition: color 0.2s ease-in-out;
  text-decoration: underline;
  color: var(--prime-color-link);
}
a:hover {
  text-decoration: underline;
  color: var(--prime-color-link-hover);
}
/* ************* components ************* */
/* utility */
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
/* No true medium weight in Lato, so we use bold */
.fw-medium {
  font-weight: 400 !important;
}
/* No semibold in Lato, so we use bold */
.fw-semibold {
  font-weight: 700 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-black {
  font-weight: 900 !important;
}
/* Line height utilities */
.lh-1 {
  line-height: 1.125 !important;
}
.lh-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-light {
  color: #fff !important;
}
.text-white {
  color: #fff !important;
}
.w-10 {
  width: 10% !important;
}
.w-20 {
  width: 20% !important;
}
.w-30 {
  width: 30% !important;
}
.w-40 {
  width: 40% !important;
}
.w-60 {
  width: 60% !important;
}
.w-70 {
  width: 70% !important;
}
.w-80 {
  width: 80% !important;
}
.w-90 {
  width: 90% !important;
}
/* Drupal global */
.alert-wrapper, .messages__wrapper {
  display: none !important;
}
.alert.alert-secondary {
  background-color: #f8f9fa;
}
/* Underline "TIO" on alert parent hover */
a.alert:hover .linked-name {
  text-decoration: underline;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgb(255 255 255 / 255);
}
.ext-link {
  font-weight: 400;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1920px;
  }
}
@media (max-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}
.dropdown-item.active, .dropdown-item:active {
  text-decoration: none;
  color: var(--bs-dropdown-link-active-color);
  background-color: #000;
}
.dropdown-menu {
  --bs-dropdown-min-width: 3rem;
  --bs-dropdown-padding-y: 0.1rem;
  --bs-dropdown-border-radius: var(--bs-border-radius);
  background-color: #dbf3f2;
}
.page-information-and-communications-technology .text-heading {
  font-size: 2.6rem;
}
.text-subheading {
  font-size: 2rem;
}
.text-summary {
  font-size: 1.25rem;
}
/* ************  Header  ************** */
@media (max-width: 991.98px) {
  .navbar > .container {
    display: unset;
  }
  /* Hamburger toggler */
  #hamburger {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0.5em auto;
    cursor: pointer;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  #hamburger span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
    border-radius: 5px;
    background: #fff;
  }
  #hamburger span:nth-child(1) {
    top: 0;
  }
  #hamburger span:nth-child(2), #hamburger span:nth-child(3) {
    top: 12px;
  }
  #hamburger span:nth-child(4) {
    top: 24px;
  }
  #hamburger.open span:nth-child(1) {
    top: 12px;
    left: 50%;
    width: 0%;
  }
  #hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #hamburger.open span:nth-child(4) {
    top: 12px;
    left: 50%;
    width: 0%;
  }
  .hamburger-menu:hover * span, .hamburger-menu:focus * span {
    background: #7fffd4 !important;
  }
  .hamburger-menu {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: calc(10% + 1rem);
    left: unset;
    display: block;
    color: #fff;
    font-size: 200%;
  }
  .hamburger-menu .navbar-toggler {
    padding: 0;
    color: unset;
    border: 0;
  }
  .hamburger-menu .navbar-toggler:focus {
    outline: 0 !important;
    box-shadow: unset !important;
  }
  .hamburger-menu:hover {
    transition: 0.8s;
    color: #7fffd4 !important;
  }
}
@media (max-width: 575.98px) {
  .navbar > .container {
    width: 100% !important;
  }
  .hamburger-menu {
    right: 0;
  }
}
/* ************  Header  ************** */
.front .t-block {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  min-height: 30rem;
  background-repeat: no-repeat;
  background-position-x: var(--tblock-x, 50%);
  background-position-y: var(--tblock-y, 50%);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 90%, 90% 100%, 10% 100%, 10% 90%, 0% 90%);
}
.t-block {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 90%, 90% 100%, 10% 100%, 10% 90%, 0% 90%);
}
.t-block::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(to top, rgb(0 0 0 / 1) 0%, rgb(0 0 0 / 0) 49%);
}
/* Sector Headers remove vector path */
.page-your-ontario-canada-advantage .t-block, .page-sectors .t-block, .content-type-sector_page .t-block {
  clip-path: none !important;
}
.page-global-events .t-block::before {
  background: linear-gradient(to top, rgb(0 0 0 / 1) 0%, rgb(0 0 0 / 0) 69%) !important;
}
/* Our International Team */
.page-our-international-team .t-block {
  background-position-y: 63%;
}
/* In page swiper exclusion */
[class*="page-trade-and-investment-"] .card1 {
  box-shadow: none;
}
.page-sectors .t-block {
  --tblock-x: 75%;
  clip-path: none;
}
/* Individual Sector Backgrounds */
.page-aerospace .t-block {
  --tblock-x: center;
}
/* Global Events */
.page-global-events .t-block {
  --tblock-x: 0;
}
section p a {
  font-weight: 400;
}
section p a:hover {
  text-decoration: underline;
}
.px-10 {
  padding-right: 10%;
  padding-left: 10%;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  padding: 0 10% 0 10%;
}
@media (max-width: 575.98px) {
  header.t-block {
    align-items: flex-start;
    margin-top: -3rem;
    padding-top: 1rem;
    background-position-y: -35px;
    background-size: 1138px;
    clip-path: none;
  }
}
.page-source-from-ontario .hero-container {
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
  height: auto !important;
}
.hero-content a {
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  background-color: #07c;
}
/* **************** Info Stats ********************** */
.infostats, .infograph {
  text-align: left;
}
.infograph {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
.info-stats {
  list-style-type: none;
  padding-left: 0; /* default browser padding */
  margin: 0; /* default browser margin */
}
/* *****************  Home Page ********************* */
.card-dark {
  color: white;
  background-color: black;
}
.card-image {
  display: block;
  visibility: visible;
}
.home-card-1 {
  background-color: #f8f9fa;
}
.home-card-1, .home-card-2 {
  width: 100%;
  min-height: 26rem;
  padding: 10% 15%;
}
.btn-light {
  display: block;
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #000 !important;
  border: 1px solid #191919;
  font-weight: 400;
}
.btn-dark {
  display: block;
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  border: 1px solid #ccc;
  font-weight: 400;
}
.btn-light:hover, .btn-light:focus {
  text-decoration: none;
  color: white !important;
  background-color: #333 !important;
}
.btn-dark:hover, .btn-dark:focus {
  text-decoration: none;
  color: black !important;
  background-color: #999 !important;
}
/* *************** Sector Pages Small Widths ********************** */
.sector-who-is-here {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
/* ********************* Events Page ***************************** */
.delegates-list.owl-carousel.off {
  display: flex;
  /*    justify-content: space-around !important; */
  justify-content: flex-start;
}
.event-delegates-list a:hover, .delegates-list .item a:hover {
  transition:
    background-color 0.4s ease, color 0.4s ease;
  text-decoration: none;
}
.event-delegates-list .item a, .delegates-list .item a {
  position: relative;
}
.event-delegates-list .item a:hover::after, .delegates-list .item a:hover::after {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  height: 100%;
  content: attr(data-title);
  text-align: center;
}
/* Global Main Content update 2025/03/10 */
.text-max {
  max-width: 842px;
}
.contain-notch {
  margin: 0 auto;
  padding: 0 calc(10% + calc(1rem));
}
.x-notch {
  margin: 0 auto;
  padding: 0 calc(10% + calc(0rem));
}
.x-padding {
  margin: 0 auto !important;
  padding: 0 calc(10% + calc(0rem)) !important;
}
/* *********************** Footer ******************************** */
#footer-container {
  min-height: 50px;
  padding-top: 2.3rem !important;
  color: #fff;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: left top;
  font-size: 0.9rem;
}
#footer-links {
  align-items: start;
  text-align: left;
}
.footer-content {
  align-items: center;
  text-align: center;
}
/* ******************** Media Queries **************************** */
@media screen and (max-width: 767px) {
  .navbar-nav-scroll {
    overflow-y: hidden;
    max-height: unset;
  }
  .sfo-secondary-nav, .menu-primary ul {
    gap: 0.1rem;
    margin: 0 0 0.5rem 0;
  }
  .hero-content .hero-heading {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  .ul-col-3-2-1 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  #footer-links {
    align-items: center;
    text-align: center;
  }
}
/* Font reset */
.ul-col-3-2-1 {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero-content .hero-heading {
    margin-bottom: 20px;
    font-size: 2.4rem !important;
  }
  .hero-content h3 {
    margin-bottom: 0 !important;
    /* margin-bottom: -2rem !important; */
    font-size: 1.2rem !important;
  }
  .ul-col-3-2-1 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  #footer-links {
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #footer-container {
    background-image: url('/themes/genesys/images/genesys-footer-background.svg');
    background-position-x: 150px;
  }
  .ul-col-3-2-1 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .footer-content {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  #footer-container {
    background-position-x: 40%;
  }
}
/* ******************** *************** ************************** */
/* ******************** SFOR <767 Rules ************************** */
@media screen and (max-width: 767.98px) {
  .t-block {
    background-position: center;
    background-size: cover;
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }
  /* 80% widths */
  .hero-content, .spotlight-block, .home-card-1, .home-card-2 {
    width: 100% !important;
  }
  .container-fluid, .hero-container, .x-notch {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .contain-notch {
    width: 100% !important;
    margin: 0.7rem;
    padding: 0.7rem;
  }
  .info-stats li {
    padding-left: 0px;
  }
  .container-fluid.bg-light.mb-5 {
    position: relative;
    width: 100% !important;
    margin: 0 !important;
  }
  main.main-content, .infostat-overhang {
    margin: 0;
    width: 100% !important;
  }
  .text-truncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .card {
    margin-bottom: 1rem;
  }
  .home-card-1, .home-card-2 {
    padding: 1.5rem 1rem;
  }
  .card-image {
    height: auto;
    min-height: 234px;
  }
  .btn, .button {
    display: block;
    width: 100%;
    padding: 0.75rem;
  }
  .home-card-1:not(.card-image), .home-card-2:not(.card-image) {
    height: auto !important;
    min-height: 8rem;
    padding: 2rem;
  }
  /* Infostat mobile fix */
  .infostats {
    width: auto;
    padding: 0 10%;
  }
  .infostat-overhang {
    position: relative;
    margin: 0;
  }
}
p.fact-cards-text {
  color: white !important;
  font-size: clamp(16px, 3.5vw, 19.4px) !important;
  font-weight: 400;
  max-width: 20ch;
}
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  background-color: var(--sfor-primary-color);
  font-weight: var(--prime-font-weight-light);
}
/* Display Classes for Hero Banners */
.display-black {
  letter-spacing: -0.007em;
  font-size: 4rem;
  font-weight: 900;
  line-height: 4.25rem;
}
.display-semibold {
  letter-spacing: -0.007em;
  font-size: 4rem;
  font-weight: 700; /* Using 700 since 600 is not available in Lato */
  line-height: 4.25rem;
}
.h5-light {
  letter-spacing: 0;
  font-size: calc(1.1rem + 0.2vw) !important;
  font-weight: 300;
  line-height: 1.5rem;
}
main {
  font-size: var(--prime-font-size-base);
}
/* Body text size variations */
.body-xxl {
  letter-spacing: -0.003em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}
.body-xl {
  letter-spacing: -0.007em;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}
/* Fix for abbreviations */
abbr, abbr[title] {
  text-decoration: none;
  text-transform: none;
  color: inherit;
  border-bottom: 2px dotted #999;
  font-size: 100%;
}
/* Responsive adjustments */
@media (max-width: 767.98px) {
  .display-black, .display-semibold {
    letter-spacing: 0;
    font-size: 2.625rem;
    line-height: 3.25rem;
  }
  h2, .h2 {
    letter-spacing: 0;
    font-size: 2rem;
  }
  .body-xxl {
    letter-spacing: 0;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.quote-block-quote p, .home-hero-banner p {
  letter-spacing: -0.003em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}
/* Mobile adjustments for banners */
@media (max-width: 767.98px) {
  .hero-banner h1, .hero-banner-press-release h1, .hero-banner-short h1 strong, .home-hero-banner h1 strong, .hero-banner-short h1, .home-hero-banner h1 {
    letter-spacing: 0;
    font-size: 2.625rem;
    line-height: 3.25rem;
  }
  .quote-block-quote p, .home-hero-banner p {
    letter-spacing: 0;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
/* Utility classes for horizontal rules with headings */
h2.with-hr::before {
  display: block;
  height: 1px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  content: '';
  opacity: 0.5;
  background-color: #000;
}
/* 100, 200 → map to 400 (Medium) */
.fw-100, .fw-200 {
  font-weight: 400;
}
/* 500, 600 → map to 700 (Bold) */
.fw-500, .fw-600 {
  font-weight: 700;
}
/* 800 → map to 900 (Black) */
.fw-800 {
  font-weight: 900;
}
/* Normal font, size and weight */
.text-normalize {
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 1.4em;
}
.sfor-teal {
  color: var(--btn-text-color);
}
/* Focus State */
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 var(--btn-focus-width, 0.25rem) rgb(38 143 255 / 0.5);
}
/* Disabled State */
.btn.disabled, .btn:disabled {
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
}
/* Active State */
.btn:not(:disabled, .disabled):active, .btn:not(:disabled, .disabled).active, .show > .btn.dropdown-toggle {
  border-color: var(--sfor-btn-active-border-color, var(--sfor-btn-hover-bg-color));
  background-color: var(--sfor-btn-active-bg-color, var(--sfor-btn-hover-bg-color));
  box-shadow: var(--btn-active-box-shadow, inset 0 3px 5px rgb(0 0 0 / 0.125));
}
.btn:not(:disabled, .disabled):active:focus, .btn:not(:disabled, .disabled).active:focus, .show > .btn.dropdown-toggle:focus {
  box-shadow:
    var(--btn-active-box-shadow, inset 0 3px 5px rgb(0 0 0 / 0.125)), 0 0 0 var(--btn-focus-width, 0.25rem) rgb(38 143 255 / 0.5);
}
.btn-teal {
  color: var(--sfor-color-white);
  border-color: var(--sfor-color-teal-primary);
  background-color: #014d4e !important;
}
.btn-teal:hover {
  color: var(--sfor-color-white);
  border-color: #007a87;
  background-color: #007a87;
}
/* Outline Buttons */
.btn-outline {
  --sfor-btn-hover-border-color: var(--sfor-color-dark);
  background-color: transparent;
}
/* Button Sizes */
.btn-lg {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  border-radius: 0.2rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.btn-dark-ko {
  display: block;
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width) rgb(255 153 59 / 0.6);
}
.page-services-and-resources .btn-primary {
  background-color: #0e0e0e;
}
.page-services-and-resources .btn-primary:hover, .page-services-and-resources .btn-primary:focus {
  background-color: #333;
}
/* Base Button Style */
.page-node-sector_page .btn,
.page-services-and-resources .btn {
  padding: var(--btn-padding);
  transition:
    background-color var(--btn-transition-duration), color var(--btn-transition-duration), border-color var(--btn-transition-duration);
  color: var(--btn-text-color);
  border: 1px solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-bg-color);
  font-size: var(--btn-font-size);
}
/* Hover State */
.page-node-sector_page .btn.btn:hover,
.page-services-and-resources .btn:hover {
  color: var(--btn-hover-text-color);
  border-color: var(--btn-hover-bg-color);
  background-color: var(--btn-hover-bg-color);
}
/* Focus State - Adding a focus ring for accessibility */
.page-node-sector_page .btn:focus,
.page-services-and-resources .btn:focus {
  transition: box-shadow var(--btn-transition-duration); /* Smooth transition for box-shadow */
  outline: none;
  color: black;
  box-shadow: 0 0 0 0.2rem rgb(38 143 255 / 0.5); /* Adding a glow effect */
}
.page-global-events .bg-gray {
  background: #d5e0e1;
}
/* Company profiles */
.page-node-company_profile .event-details a, .page-node-company_profile .contact-list a {
  display: inline;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.page-node-company_profile .contact-list a[href^='mailto:'] {
  display: block;
}
.page-node-company_profile .event-details a:hover, .page-node-company_profile .contact-list a:hover {
  display: revert;
  overflow: visible;
  text-overflow: unset;
}
.delegates-list .item a:hover::after {
  padding: 1rem;
}
.event-delegates-list a, .delegates-list .item a img {
  max-width: fit-content;
  max-height: 80%;
}
/* Non-English/Non-French CSS Styling */
.no-break-ko, .no-break-ja {
  white-space: nowrap;
}
h1:lang(ko), h1:lang(ja), .h1:lang(ko), .h1:lang(ja) {
  line-break: strict;
  word-break: auto-phrase;
}
/* Responsive Design */
@media (min-width: 992px) {
  section#sidebar-section .btn {
    width: 100%;
  }
}
/* Tablet */
@media screen and (max-width: 991.98px) and (min-width: 575px) {
  ul.list-col3 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  section#sidebar-section .btn {
    display: block;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
}
/* Mobile */
@media screen and (max-width: 575.98px) {
  ul.list-col2, ul.list-col3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  section#sidebar-section .btn {
    width: 100%;
  }
}
/* General Styles */
.responsive-iframe iframe, iframe {
  border: none;
}
.video-links {
  font-weight: 400;
}
pre.video-transcript {
  width: 99%;
  white-space: pre-wrap;
  color: #000;
  /*  font-size: 1.1em;  */
  /*  font-weight: 100;  */
  font-family: var(--prime-font-family);
  font-size: var(--prime-font-size-base);
  font-weight: var(--prime-font-weight-medium);
  line-height: 1.5em;
}
/* BackToTop button - Don't display on mobile/tablet */
@media (max-width: 991.98px) {
  #backToTop {
    display: none !important;
  }
}
/* Navigation responsive alignment */
@media screen and (max-width: 767.98px) {
  .navbar > .container {
    margin-left: 1rem;
    padding-left: 1rem !important;
  }
  .container-fluid.infostat-overhang {
    padding: 0 1.5rem !important;
  }
}
/* Social Media */
@media (min-width: 768px) {
  #share-twitter .fab {
    color: white;
    font-size: 2rem !important;
  }
  .footer-logos-sm a .fa-brands, .fab {
    font-size: 2em !important;
  }
}
#share a:hover .fa-circle, #share a:hover .fa-circle-o, #share a:hover .fa-circle-thin {
  color: var(--genesys-brightblue);
}
@media screen and (min-width: 992px) {
  .contact-card-wrapper {
    min-height: 240px !important;
    max-height: 260px !important;
  }
}
/* Social share float bar */
#share {
  bottom: 100px;
  left: 0;
  display: flex;
  padding: 0;
}
#share ul {
  padding: 0;
  background-color: #eee;
}
#share li {
  margin: 0;
  padding-left: 5px;
  font-size: 80%;
}
#share a:link {
  text-decoration: none;
}
#share li:hover {
  -webkit-filter: invert(1) grayscale(100%);
  filter: invert(1) grayscale(100%);
  background-color: #999;
}
#share .fa-stack {
  width: 1.5em;
  height: 1.8em;
}
@media (min-width: 768px) {
  #share ul {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  #share {
    width: inherit;
    background: none;
  }
}
@media (max-width: 767.98px) {
  #share {
    position: fixed;
    z-index: 2000;
    bottom: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 0.8) !important;
  }
  #share ul {
    padding-left: 1em !important;
  }
}
@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  #share {
    position: fixed;
    z-index: 2000;
    bottom: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 0.8) !important;
  }
  #share ul {
    flex-direction: row;
    margin-bottom: 0;
  }
}
/* Homepage Styles */
.page-source-from-ontario p.text-summary {
  margin-bottom: 0 !important;
}
p.text-summary:not(.page-source-from-ontario) {
  margin-bottom: 2rem;
}
.page-source-from-ontario .container-fluid.home-pad {
  margin: 0 !important;
  padding: 0;
}
.page-source-from-ontario .text-subheading {
  font-size: clamp(2.5rem, 1.94rem + 2.31vw, 3.25rem) !important;
  font-weight: 400 !important;
}
html[lang='fr'] .page-source-from-ontario .text-subheading {
  font-size: clamp(1.7rem, 1.54rem + 1.71vw, 2.2rem) !important;
}
.page-information-and-communications-technology .hero-content {
  max-width: 70rem;
}
.page-source-from-ontario h2.text-subheading.display-4 {
  font-weight: 400;
}
.page-source-from-ontario .responsive-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.page-source-from-ontario .hero-content {
  /* Text-summary max-width issue */
  padding: 21rem 1.5rem 1.5rem 1.5rem;
}
.page-source-from-ontario .hero-heading, .page-source-from-ontario .text-summary {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
}
/* Mobile specific overrides */
@media (max-width: 767.98px) {
  .page-source-from-ontario header.t-block {
    min-height: 100%;
  }
  .page-source-from-ontario .hero-container {
    position: relative;
    padding: 2rem 0 0;
  }
  .page-source-from-ontario .card-image {
    height: auto;
    min-height: 348px;
  }
  .page-source-from-ontario .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .page-source-from-ontario .row, .page-source-from-ontario .col-md-12 {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .page-source-from-ontario .hero-heading {
    margin-bottom: 1rem !important;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .swiper-buttons-wrapper {
    display: none;
  }
  .swiper-pagination {
    margin-top: 0 !important;
  }
}
/* Browser-specific adjustments */
@supports (-webkit-appearance: none) {
  .page-source-from-ontario .card-gap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
  }
  .page-source-from-ontario .spotlight-container {
    margin-right: auto;
    margin-left: auto;
  }
}
@supports (-ms-ime-align: auto) {
  .page-source-from-ontario .card-gap {
    display: flex;
    justify-content: space-between;
  }
  .page-source-from-ontario .card-column:first-child {
    margin-right: 15px;
  }
  .page-source-from-ontario .card-column:last-child {
    margin-left: 15px;
  }
}
/* Feature block home page (Spotlight Block) */
.page-source-from-ontario .spotlight-block {
  position: relative;
  z-index: 5;
  top: -87px;
  display: block;
  width: 100%;
  margin: -40px 0 -4rem 0;
  padding: 158px 0 61px 0;
  border-radius: 0;
  background: url(/sites/default/files/2025-04/sfo-spotlight-bg-202957295--op7.png);
  background-color: #d5e0e1;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .page-source-from-ontario .spotlight-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .page-source-from-ontario .spotlight-block {
    padding: 100px 0 22px 0 !important;
  }
  .page-source-from-ontario .text-summary {
    padding-bottom: 10px !important;
  }
  .page-source-from-ontario .spotlight-container {
    width: 100%;
    margin-top: 4rem;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
  }
  .page-source-from-ontario .card-gap {
    flex-direction: column;
    gap: 2rem;
  }
  .page-source-from-ontario .card-column {
    flex: none;
    width: 100%;
  }
  .page-source-from-ontario article.card {
    height: auto !important;
  }
}
@media (min-width: 992px) {
  .page-source-from-ontario .spotlight-bg {
    margin-top: -4rem;
  }
  .page-source-from-ontario .spotlight-item {
    flex: 1 1 49%;
    box-sizing: border-box;
    max-width: 49%;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
/**********************/
/* Main content cards */
.home-card-2.card-image.row1 {
  background: url('/sites/default/files/2025-03/main-figure-home-gridrow1.jpg');
  background-size: cover;
}
.home-card-1.card-image.row2 {
  background: url('/sites/default/files/2025-03/main-figure-home-gridrow2.jpg');
  background-size: cover;
}
.home-card-2.card-image.row3 {
  background: url('/sites/default/files/2025-03/main-figure-home-gridrow3-advanced-manu-worker.jpg');
  background-position-x: 75%;
}
.home-card-1.card-image.row4 {
  background: url('/sites/default/files/2025-03/main-figure-home-gridrow4.jpg');
  background-size: cover;
}
/* Card layout */
.page-source-from-ontario .card-column {
  flex: 1;
  width: calc(50% - 15px);
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.page-source-from-ontario .card-gap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.page-source-from-ontario article.card {
  display: flex;
  flex-direction: column;
  height: 100% !important;
}
.page-source-from-ontario .card1 {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  border: none;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}
.page-source-from-ontario .swiper-wrapper {
  align-items: stretch;
  width: 100%;
}
.page-source-from-ontario li.swiper-slide {
  width: 100%;
}
.page-source-from-ontario .card-body {
  padding: 1rem;
}
.page-source-from-ontario .card-img-container {
  position: relative;
  flex-shrink: 0;
}
.page-source-from-ontario .card-logo {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  max-height: 33px;
  padding: 1px;
  background-color: rgb(255 255 255 / 1);
}
.page-source-from-ontario .card-2 {
  max-height: 75px;
}
.page-source-from-ontario .calendar-icon {
  position: relative;
  top: -0.11rem;
  margin-right: 0.5rem;
  color: #000;
}
.page-source-from-ontario .card-subtitle {
  margin-bottom: 0.45rem;
  color: var(--prime-color-link);
  font-size: 1.5rem;
  font-weight: 700;
}
.page-source-from-ontario .card-meta {
  margin-bottom: 0;
  font-size: 1.25rem;
}
.page-source-from-ontario .home-card-2.card-image {
  background-position-x: 64% !important;
}
/* Swiper Card CTA */
.page-source-from-ontario .card {
  min-height: 100%;
  transition: transform 0.2s ease-in-out;
}
.page-source-from-ontario .caradial {
  color: white;
  border-radius: 0 !important;
  background: linear-gradient(135deg, #191919 0%, #2c2c2c 100%);
}
.page-source-from-ontario .card-icon img {
  width: 54px;
  height: 50px;
  margin-bottom: 20px;
  padding: 1px 2px;
  border: 1px solid #fff;
  border-radius: 2px;
}
.page-source-from-ontario .card-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
.page-source-from-ontario .swiper-align {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.btn-outline-light {
  padding: 12px 24px;
  color: white;
  border: 2px solid rgb(255 255 255 / 0.7);
  background: transparent;
  font-weight: 500;
}
.btn-outline-light:hover {
  text-decoration: none;
  color: white;
  border-color: white;
  background-color: rgb(255 255 255 / 0.1);
}
/* Services and Resources */
.page-services-and-resources h2.section-hr {
  padding: 22px 0 0 0;
  border-top: 1px solid #ccc;
}
.page-services-and-resources .org-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid #eaeaea;
}
.page-services-and-resources .org-section:last-child {
  border-bottom: none;
}
.page-services-and-resources .logo-container {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
}
.page-services-and-resources .logo-placeholder {
  width: auto;
  max-height: 2.64em;
}
html[lang='fr'] .page-services-and-resources .logo-placeholder {
  max-width: 9.64em !important;
}
ul.list li {
  padding-bottom: 0.5em;
}
select#countrySelect {
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .page-services-and-resources .logo-container {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767.98px) {
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 0;
    text-align: left;
  }
}
/* French safe area increase gradient for expanded ch count */
html[lang='fr'] .t-block::before {
  background: linear-gradient(to top, rgb(0 0 0 / 1) 0%, rgb(0 0 0 / 0) 60%);
}
/* ********************** */
/* Short titles align end */
.page-services-and-resources .card-img-top {
  height: auto;
  padding: 0;
}
/*  old style? remove issue on Team pages */
.card-img-top {
  height: 200px;
  padding: 0.75rem;
  background-color: #eee;
  background-image: none !important;
}
/* Signature logos */
.signature-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.signature-logo-container img[src*='.jpg'], .signature-logo-container img[src*='.jpeg'], .signature-logo-container img {
  mix-blend-mode: multiply;
}
/* Swiper */
.swiper-wrapper {
  padding-left: 0;
}
.page-services-and-resources .swiper-pagination-bullet {
  margin: 0 6px !important;
}
.cornice-padding {
  padding: 0 10%;
}
.page-services-and-resources .card-footer .btn {
  height: 46px !important;
}
.page-services-and-resources .card .btn {
  margin-top: 2.5em !important;
}
.page-services-and-resources .card-body {
  padding: 2.6em;
}
.page-services-and-resources .card.bg-dark .card-img-top {
  position: relative;
}
.page-services-and-resources .card.bg-dark .card-img-top::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 33%;
  content: '';
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(33 37 41 / 0) 0%, rgb(33 37 41 / 1) 100%);
}
.page-services-and-resources .btn-outline-dark.text-white {
  transition: all 0.3s ease;
  color: white !important;
}
.page-services-and-resources .btn-outline-dark.text-white:hover {
  color: #212529 !important;
  background-color: white;
}
@media (max-width: 575.98px) {
  .page-services-and-resources .hero-content .hero-heading {
    font-size: 1.75rem;
  }
  .page-services-and-resources .hero-content h2 {
    font-size: 1rem;
  }
}
/*  ************ Swiper Styles ************ */
.swiper-container {
  position: relative;
  width: auto;
}
@media (min-width: 992px) {
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -60px) !important;
    left: auto;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    right: auto;
    left: var(--swiper-navigation-sides-offset, -60px) !important;
  }
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-family: 'Font Awesome 6 Pro' !important;
  font-weight: 100;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  display: inline-block;
  padding: 0;
  border-radius: 50%;
  background-color: rgb(236 255 251 / 0.22);
}
.swiper-button-next::after {
  content: '\f0a9' !important;
}
.swiper-button-prev::after {
  content: '\f0a8' !important;
}
.swiper-pagination {
  position: unset !important;
  padding: 1rem;
}
@media (max-width: 991.98px) {
  .swiper-buttons-wrapper {
    position: relative;
    margin: 0;
    margin-top: 32px;
    margin-bottom: 10px;
    padding: 0;
    text-align: center;
  }
  .swiper-pagination {
    position: unset !important;
    margin-top: -1.75rem;
    padding: 1rem;
  }
  .swiper-button-prev, .swiper-rtl {
    right: auto;
    left: var(--swiper-navigation-sides-offset, calc(30%)) !important;
  }
  .swiper-button-next, .swiper-rtl {
    right: auto;
    left: var(--swiper-navigation-sides-offset, calc(65%)) !important;
  }
}
@media (max-width: 767.98px) {
  .page-services-and-resources .swiper-button-next, .page-services-and-resources .swiper-button-prev {
    top: auto;
    bottom: 24px;
    width: 30px;
    height: 30px;
    transform: translateY(0);
  }
  .page-services-and-resources .swiper-button-prev {
    right: calc(50% + 100px);
    left: auto;
  }
  .page-services-and-resources .swiper-button-next {
    right: auto;
    left: calc(50% + 100px);
  }
  .page-services-and-resources .swiper-button-next::after, .page-services-and-resources .swiper-button-prev::after {
    font-size: 16px;
  }
  .page-services-and-resources .swiper-pagination {
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .page-services-and-resources .spotlight-block {
    padding-bottom: 50px;
  }
}
/* ***************** */
/* Results and Forms */
.page-services-and-resources .results-count {
  color: #495057;
}
#results-count {
  color: #212529;
  font-weight: 700;
}
.page-services-and-resources label {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  #edit-items-per-page {
    width: auto;
    min-width: 80px;
  }
  .page-services-and-resources .form-group label, .page-services-and-resources .form-group select {
    display: inline-block;
  }
}
@media (max-width: 991.98px) {
  .page-services-and-resources .results-count {
    margin-bottom: 1rem;
  }
  #edit-items-per-page {
    margin-top: 0.5rem;
  }
  .page-services-and-resources .form-group label, .page-services-and-resources .form-group select {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
section .noresults, 
div .event-results {
    padding: 0px !important;
 }
}
/* ******************************* */
/* Two column lists and accordions */
.page-services-and-resources .two-column-list {
  column-count: 2;
  column-gap: 2rem;
}
@media (max-width: 767.98px) {
  .page-services-and-resources .two-column-list {
    column-count: 1;
  }
}
/* Accordion start */
.accordion-item {
  border: 1px solid rgb(0 0 0 / 0.125);
}
.accordion-button {
  display: block;
  padding: 1rem 1.25rem;
  background-color: transparent;
  font-size: 18px;
}
.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: #f8f9fa;
  box-shadow: none;
}
.accordion-button:focus {
  border-color: rgb(0 0 0 / 0.125);
  box-shadow: none;
}
.accordion-header {
  position: relative;
}
.accordion-header p {
  padding-right: 5rem;
}
.accordion-content {
  padding: 1rem 1.25rem;
}
.accordion-item p {
  font-weight: 300;
}
.associations-header {
  display: block;
  margin-bottom: 4px;
  padding: 1rem 1.25rem;
  color: #000;
  background-color: #cce2de;
  font-size: 14px;
}
.accordion-title {
  display: block;
  width: 100%;
  padding: 0.5rem 1.25rem;
  text-align: left;
  font-weight: bold;
}
.accordion-description {
  display: block;
  margin-top: 0.25rem;
  padding: 0 1.25rem 1rem 1.25rem;
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: normal;
}
.accordion-button::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-button.collapsed::after {
  transform: translateY(-50%);
}
.agenda-table .accordion-button:hover {
  background-color: #f8f9fa;
}
/* Acccordion style end */
.association-badge {
  display: inline-block;
  margin-right: 0.75rem;
  padding: 0.25rem 0.5rem;
  color: #064e3b !important;
  border-radius: 0.25rem;
  background-color: #cce2de !important;
  font-size: 0.875rem;
  font-weight: 700;
}
.page-services-and-resources body {
  background-color: #fff;
}
.page-our-team-in-ontario .hero-content, .page-our-international-team .hero-content {
  padding: 25rem 1.5rem 1.5rem 1.5rem !important;
}
.page-our-international-team .icon-padding {
  display: inline-block;
  vertical-align: middle;
}
.page-our-international-team .icon-padding .fa-stack-2x {
  font-size: 40px !important;
}
.page-our-international-team .icon-padding .fa-stack {
  height: 40px !important;
  font-size: 1em;
  line-height: 40px;
}
.page-our-international-team .social-icons {
  max-height: 35px;
  margin: 0;
  margin-top: -10px;
  margin-bottom: 3rem;
  margin-left: -35px;
  padding-right: 5px;
  list-style: none;
}
.social-icons .icon-padding {
  display: inline-block;
  padding: 5px;
  list-style: none;
}
.social-icons .fa-stack {
  width: 40px;
  height: 35px;
}
.social-icons .fa-stack .fa {
  font-size: 1em;
}
.icon-padding:hover .fa-circle {
  color: #0077b5;
}
.page-our-international-team .font-weight-bold {
  font-weight: 600;
}
.page-our-international-team .inner-page-subheader .overlay {
  height: auto;
  min-height: auto;
}
.page-our-international-team .name-class {
  font-weight: 500 !important;
}
.page-our-international-team .icon-padding:hover .fa-stack-1x {
  color: #000;
}
.page-our-international-team .icon-padding:hover .fa-circle {
  color: #5ab2ff;
}
.page-our-international-team .icon {
  display: inline-block;
  margin-right: 1rem;
  margin-left: 0;
  padding: 8px;
  vertical-align: middle;
  border-radius: 50%;
  background-color: lightgrey;
}
.page-our-international-team .btn-split-1 {
  margin-right: 0.05rem;
  border-radius: 0.25rem 0 0 0.25rem;
}
.page-our-international-team .btn-split-2 {
  min-width: 2.5rem;
  border-radius: 0 0.25rem 0.25rem 0;
}
.page-our-international-team ul.list li {
  padding-bottom: 0.5em;
}
.page-our-international-team select#countrySelect {
  font-size: 1.25rem;
}
.page-our-international-team .btn:hover {
  background-color: #5ab2ff !important;
}
.page-our-international-team .btn-secondary {
  color: black !important;
  background-color: #e4e7ec !important;
}
@media (max-width: 767.98px) {
  .hero-container {
    padding: 23rem 1rem 1rem 1rem;
  }
  [class*="page-trade-and-investment-"] .hero-content {
    padding-right: 2rem !important;
  }
}
.t-block {
  background-position-x: right;
}
.t-block::before {
  background: linear-gradient(to top, rgb(0 0 0 / 1) 15%, rgb(0 0 0 / 0) 58%) !important;
}
.page-our-international-team .t-block {
  background-position-x: 68% !important;
}
}
@media (max-width: 575.98px) {
  .page-our-international-team h3.h5 {
    margin-bottom: 0 !important;
  }
  .page-our-international-team ul.bullets {
    padding-top: 1em !important;
  }
}
@media screen and (max-width: 767.98px) {
  .page-our-international-team .hero-content {
    padding: 1.5rem !important;
  }
}
.page-our-team-in-ontario .font-weight-medium {
  font-weight: 400;
}
.page-our-team-in-ontario .icon-padding {
  margin-right: 1rem;
}
.page-our-team-in-ontario .icon-padding:hover .fa-stack-1x {
  color: black;
}
.page-our-team-in-ontario .icon-padding:hover .fa-circle {
  color: #5ab2ff;
}
.page-our-team-in-ontario .social-icons {
  display: flex;
  margin-top: -1rem;
  margin-left: -0.5rem;
  padding: 8px;
  list-style: none;
}
@media (min-width: 992px) {
  .page-our-team-in-ontario .t-block {
    background-position-y: 39%;
  }
  .hero-content {
    max-width: 60rem;
  }
}
@media screen and (max-width: 767.98px) {
  .page-our-team-in-ontario .hero-content, .page-contact-us-to-start-a-conversation .hero-content, .page-services-and-resources .hero-content {
    padding: 1.7rem !important;
  }
}
.page-sectors .sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.page-sectors .sector-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
  background-color: black;
}
.page-sectors .sector-panel {
  min-height: 254px;
  color: white;
  background-position-x: 41% !important;
  background-size: cover !important;
}
/* Sector background fades */
.page-sectors .advanced-fade {
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0) 66%, rgb(0 0 0 / 0.7) 100%, rgb(0 0 0 / 1) 116%), url('/sites/default/files/2025-04/sector-cadvancedmanu-card-25.jpg');
}
.page-sectors .aerospace-fade {
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0) 66%, rgb(0 0 0 / 0.7) 100%, rgb(0 0 0 / 1) 116%), url('/sites/default/files/2025-04/sector-aerospace-card-25.jpg');
}
.page-sectors .automotive-fade {
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0) 66%, rgb(0 0 0 / 0.7) 100%, rgb(0 0 0 / 1) 116%), url('/sites/default/files/2025-04/sector-automotive-card-25.jpg');
}
.page-sectors .cleantech-fade {
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0) 66%, rgb(0 0 0 / 0.8) 100%, rgb(0 0 0 / 1) 116%), url('/sites/default/files/2025-04/sector-cleantech1-card-25.jpg');
}
.page-sectors .ict-fade {
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0) 66%, rgb(0 0 0 / 0.8) 100%, rgb(0 0 0 / 1) 116%), url('/sites/default/files/2025-04/sector-ict-card-25.jpg');
}
.page-sectors .lifesciences-fade {
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0) 66%, rgb(0 0 0 / 0.7) 100%, rgb(0 0 0 / 1) 116%), url('/sites/default/files/2025-04/sector-lifesciences-card-25.jpg');
}
.page-sectors .btn-dark {
  padding: 0.3rem 1rem;
  letter-spacing: 0;
  color: white;
  border: 2px solid #fff;
  border-radius: 0 !important;
  font-weight: 500;
}
.page-sectors .btn-dark:hover {
  color: #000;
  background-color: #fff;
}
.page-sectors .sector-button {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1rem;
}
#subheader-banner {
  height: 830px;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-sectors .sfo-body {
  width: 80%;
  margin-top: 33%;
}
/* Infographics */
.page-sectors .infostat-overhang {
  position: relative;
  z-index: 10;
  width: 80%;
  height: auto;
  margin: 0 10% auto;
  color: white;
  background-color: black !important;
}
.page-sectors .dark-block {
  color: white;
  background-color: #000;
}
.page-sectors .sector-text-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-sectors .sector-text-panel h2 {
  min-height: 3.3rem;
  margin-top: 1rem;
  font-size: 1.4rem;
}
.page-sectors .sector-text-panel p.sector-text {
  font-size: 1.1rem;
}
.page-sectors .sector-text {
  flex-grow: 1;
  padding-right: 2rem;
  padding-left: 2rem;
}
.page-sectors p.text-summary {
  margin-bottom: 4px;
}
.page-sectors .t-block::before {
  background: linear-gradient(to top, rgb(0 0 0 / 1) 0%, rgb(0 0 0 / 0) 75%);
}
@media (max-width: 767.98px) {
  .sector-text {
    flex-grow: 1;
    padding: 0 10% !important;
  }
  .sector-text-panel h2 {
    flex-grow: 2;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .page-sectors .sector-item {
    width: calc((100% - 1rem) / 2);
  }
  .page-sectors p.text-summary {
    margin-bottom: 12px !important;
  }
}
@media (min-width: 1400px) {
  .page-sectors .sector-item {
    width: calc((100% - 2rem) / 3);
    margin-bottom: 0;
  }
  .page-sectors .container.w-80 {
    width: 80% !important;
    max-width: none;
  }
}
@media screen and (max-width: 767.98px) {
  .page-sectors .container.sector-cards {
    width: 100% !important;
    padding: 1rem !important;
  }
}
.page-your-ontario-canada-advantage .infostat-overhang, .page-sectors .infostat-overhang, .page-node-sector_page .infostat-overhang {
  position: relative;
  z-index: 10;
  height: auto;
  padding: 1rem 1.5rem;
  color: white;
  background-color: black !important;
}
.page-your-ontario-canada-advantage header.t-block::before {
  position: absolute;
  z-index: 1;
  content: '';
  background: linear-gradient(to top, rgb(0 0 0 / 0.9) 0%, rgb(0 0 0 / 0) 60%);
  inset: 0;
}
.page-your-ontario-canada-advantage .hero-content {
  position: relative;
  z-index: 2;
  padding: 25rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
  color: rgb(255 255 255);
}
.page-global-events .hero-content, [class*="page-"]:not(.page-your-ontario-canada-advantage) .hero-content {
  padding: 33rem 1.5rem 1.5rem 1.5rem;
}
.page-services-and-resources .hero-content {
  padding: 25rem 1.5rem 1.5rem 1.5rem;
}
html[lang='fr'] .page-your-ontario-canada-advantage .text-subheading {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.67rem);
}
.page-your-ontario-canada-advantage .hero-heading {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 700;
}
.page-your-ontario-canada-advantage .text-subheading {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.9rem);
}
.page-your-ontario-canada-advantage .text-summary {
  margin-bottom: 0;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}
@media (max-width: 767.98px) {
  .page-your-ontario-canada-advantage header.t-block {
    clip-path: none;
    align-items: flex-start;
    padding-top: 1rem;
  }
  .page-your-ontario-canada-advantage .hero-container {
    padding: 1rem;
  }
  .page-your-ontario-canada-advantage .hero-content {
    padding-top: 1rem;
  }
  .page-your-ontario-canada-advantage header.t-block::before {
    background: linear-gradient(to top, rgb(0 0 0 / 1) 20%, rgb(0 0 0 / 0) 50%);
  }
}
@media (max-width: 767.98px) {
  .page-your-ontario-canada-advantage .hero-container {
    padding: 18rem 1rem 0 1rem;
  }
}
/*** Font reset ***/
@media (min-width: 1400px) {
  p {
    font-size: calc(var(--prime-font-size-base) + 0.145rem);
  }
  #footer-container p {
    font-size: inherit;
  }
  .hero-content .hero-heading, .hero-banner h1, .hero-banner-press-release h1, .hero-banner-short h1, .home-hero-banner h1 {
    font-size: clamp(3.25rem, calc(3.5rem + 0.5rem * ((100vw - 1400px) / 520px)), 3.8rem);
    width: 100%;
  }
  .hero-content {
    max-width: 78rem;
  }
}
/* ********** */
html:lang(ko) .page-trade-and-investment-office-seoul-south-korea .h1, html:lang(ko) .page-trade-and-investment-office-seoul-south-korea h1 {
  font-size: calc(1.375rem + 1.3vw) !important;
}
.page-global-events .events-list-img {
  max-width: 300px;
  max-height: 200px;
  margin-bottom: 2rem;
}
.page-global-events .backdrop-event {
  position: relative;
  z-index: 5;
  top: -28px;
  display: block;
  width: 100%;
  margin: -40px 0 -4rem 0;
  padding: 158px 0 61px 0;
  border-radius: 0;
  background-color: #d5e0e1;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.page-global-events .events-calendar li a {
  height: 200px;
}
.page-global-events .events-calendar li a img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 0.5rem;
}
.page-global-events .events-calendar li:hover .d-block a {
  box-shadow: 1px 5px 13px 1px #a5a5a5;
}
@media (min-width: 768px) {
  .page-global-events .t-block {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 90%, 90% 100%, 10% 100%, 10% 90%, 0% 90%);
  }
  .page-global-events #trade-calender-form {
    flex-direction: column;
    padding-right: 10%;
    padding-left: 10%;
  }
  .page-global-events .events-list-group {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .page-global-events #trade-calender-form {
    flex-direction: row;
  }
  .page-global-events .events-list-group {
    flex-direction: row;
  }
  .page-global-events .form-group {
    width: 50%;
  }
  .page-global-events .events-group-item {
    max-width: 30%;
  }
}
@media (min-width: 1200px) {
  .page-global-events #trade-calender-form {
    flex-wrap: nowrap;
  }
  .page-global-events #edit-submit-trade-calendar {
    margin-top: 1.6rem;
  }
  .page-global-events #edit-reset {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .page-global-events .hero-content {
    position: relative;
    z-index: 2;
    top: -20px;
    padding: 0 2rem !important;
    text-align: left;
  }
  .page-global-events .t-block {
    background-position: 50% 75%;
  }
  [class*="page-"] .hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    padding: 0 1.5rem !important;
    text-align: left;
    color: rgb(255 255 255);
  }
}
/* Typography */
.intro {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: clamp(20px, 0.735vw + 12.71px, 23px) !important;
  font-weight: 400;
}
.lead {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: clamp(22px, 0.735vw + 12.71px, 24.6px) !important;
  font-weight: 300;
}
#subheader .titleblock h1, #subheader .titleblock .h1 {
  text-transform: none;
}
/* Touch-screen accessibility */
.btn {
    min-height: 44px !important;
    padding: 12px;
}
.fa-square {
  background-color: #191919 !important;
}
/* TIO Card Trade Anchors (CTA) */
.page-our-international-team .tio-cta {
  padding: 0 !important;
  text-align: left;
  color: black !important;
  background-color: #fff !important;
}
.page-our-international-team .tio-cta .card-body {
  min-height: 6em;
  color: white;
  background: black;
}
.page-our-international-team .card-img-bg {
  height: 200px;
  border-top-left-radius: 0.275rem;
  border-top-right-radius: 0.275rem;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767.98px) {
  .page-our-international-team .tio-cta {
    padding: 2rem !important;
    text-align: center;
    color: rgb(255 255 255) !important;
    background-color: #000 !important;
  }
  /* Search bar title */
  .feature-search-title {
    padding-left: 1rem !important;
  }
}
/*** Sector Pages - Updated UX 2026/03/12 ***/
/* Custom card layout */
.content-card {
  min-height: 360px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.content-card p:last-child {
  margin-bottom: 0;
}
/* Custom background image panel */
.card-img {
  min-height: 360px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* Multi-column company list */
.ul-col-3-2-1 {
  column-count: 3;
  column-gap: 2rem;
  padding-left: 1rem;
}
.ul-col-3-2-1 li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}
/* Responsive */
@media (max-width: 991.98px) {
  .content-card, .card-img {
    min-height: 260px;
  }
  .content-card {
    padding: 2rem 1.75rem;
  }
  .ul-col-3-2-1 {
    column-count: 2;
  }
}
@media (max-width: 575.98px) {
  .ul-col-3-2-1 {
    column-count: 1;
  }
}
/* ************************************************ */
.no-results-state__status {
  display: flex;
  align-items: center; /* vertical alignment */
  gap: 0.5rem; /* space between icon and text */
}

.no-results-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*** Sector expansion overrides on mobile devices ***/
@media (max-width: 1200px) {
  .relevents h2 {
    font-size: 2rem; /* calc(1.325rem + .9vw); */
    padding-bottom: 8px;
  }
  section.relevents {
    margin-top: 0px !important;
  }
  .relevents {
    padding-left: 1.5rem !important;
  }
  section.sector-main {
    margin-bottom: 1rem !important;
  }
}
/*******************************************/
/*** Sector and About ontario CTA banner ***/
.cta-right-card {
  background-color: rgb(25 25 25);
}
.cta-mobile-bg {
  background-image: url('/sites/default/files/2025-06/section-partner-discussion-cta-callout-v2-25.jpg');
  min-height: 25rem;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-mobile-bg-partner-discussion {
  background-image: url('/sites/default/files/2025-06/section-partner-discussion-cta-callout-v2-25.jpg');
}
.cta-right-text {
  position: relative;
  background-color: rgb(25 25 25);
}
.btn-sfor-teal {
  color: #000;
  background-color: var(--sfor-teal);
  border: 2px solid var(--sfor-teal);
}
.btn-sfor-teal:hover, .btn-sfor-teal:focus, .btn-sfor-teal:active {
  color: #000;
  background-color: var(--sfor-teal-hsl-darker);
  border-color: var(--sfor-teal-hsl-darker);
}
/* Small + medium: stacked layout, image on top, text below */
@media (max-width: 991.98px) {
  .cta-right-text {
    z-index: 2;
  }
  .cta-right-text::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    height: 60px;
    background: linear-gradient(180deg, rgb(25 25 25 / 0) 0%, rgb(25 25 25 / 0.7) 40%, rgb(25 25 25 / 1) 100%);
    pointer-events: none;
  }
}
/* Tablet image height */
@media (min-width: 768px) and (max-width: 991.98px) {
  .cta-mobile-bg {
    min-height: 300px;
  }
}
/* Title spacing equal between image/grdient and p.lead  */
@media (max-width: 991.98px) {
  .card-body {
    padding-top: .25rem !important;
  }
}
/* Desktop: image is full-card background, text stays on left */
/* About Ontario Callout - Move to page inline style bg image */
.cta-right-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.cta-desktop-bg {
  position: absolute;
  inset: 0;
  background-image: url('/sites/default/files/2025-06/section-partner-discussion-cta-callout-v2-25.jpg');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.cta-right-desktop-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(25 25 25 / 1) 0%, rgb(25 25 25 / 0.6) 50%, rgb(25 25 25 / 0.1) 75%, rgb(25 25 25 / 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.cta-right-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 420px;
}
.cta-right-text {
  background-color: transparent;
  min-height: 320px;
}
/* } */
/* Mobile heading */
@media (max-width: 767.98px) {
  .cta-right-text .display-5 {
    font-size: 2rem;
    line-height: 1.15;
  }
}
a.cta-submit.btn {
  min-height: 55px !important;
}
a.cta-submit.btn-lg {
  padding: 1rem 1rem;
}
/* Mobile image + button */
@media (max-width: 575.98px) {
  .cta-mobile-bg {
    min-height: 250px;
    background-position: right center;
  }
  .btn-sfor-teal {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/*** 2026-03-12: Added to address the image height (letter-boxing) when text stretch the height of the CTA **/
@media (max-width:1199.98px) {
  .cta-desktop-bg {
    background-size: cover;
  }
}
/*** 2026-03-17 ***/
.cta-text {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
}