/* ==============================
  Gibson Font Family (.otf)
============================== */

@font-face {
  font-family: 'Gibson';
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_Thin.otf') format('opentype');
}

@font-face {
  font-family: 'Gibson';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_Light.otf') format('opentype');
}

@font-face {
  font-family: 'Gibson';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Gibson';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Gibson';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_SemiBold.otf') format('opentype');
}

@font-face {
  font-family: 'Gibson';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Gibson';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/gibson/fonnts.com-Gibson_Heavy.otf') format('opentype');
}

:root {
  --theme-blue: #1877ca;
  --theme-dark-blue: #104877;
  --theme-yellow: #ff9f19;
}

body {
  font-family: 'Gibson', Arial, sans-serif;
  font-weight: 300;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1{
  font-size: 2.5rem;
}

h2{
  font-size: 2rem;;
}

h3{
  font-size: 1.5rem;
}

p{
  font-size: 1.125rem;
}

p strong{
  font-weight: 600;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.theme-container {
  max-width: 1160px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}

.theme-color {
  color: var(--theme-blue);
}

.theme-dark-color {
  color: var(--theme-dark-blue) !important;
}

.theme-button {
  text-decoration: none;
  background-color: var(--theme-blue);
  color: white;
  border: 0;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 500;
  min-width: 244px;
  /* min-width: 100px; */
  min-height: 50px;
  padding: 10px 30px;
}

.theme-button:hover {
  background-color: var(--theme-dark-blue);
}

.section-spacing {
  margin-bottom: 80px;
}

.text-left{
  text-align: left;
}

.alignleft{
  float: left;
}


.alignright{
  float: right;
  margin-left: 20px;
}

.aligncenter{
  margin-inline: auto;
}

.top-bar {
    background-color: var(--theme-blue);
    height: 56px;
  }

  .top-bar .nav-link_ a:hover {
    color: var(--theme-dark-blue) !important;
  }

  .top-bar .nav-link_ a.btn{
    font-size: 1rem;
  }

  .top-bar .nav-link_ a.btn:hover {
    background-color: var(--theme-dark-blue);
    border-color: var(--theme-dark-blue);
    color: white !important;
  }

  .social-icons a:hover svg,
  .social-icons a:hover svg path {
    fill: var(--theme-dark-blue) !important;
  }

  .nav-link_ a {
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 20px;
  }

  .nav-link_ a:hover {
    color: var(--theme-blue);
  }

  .main-nav {
    min-height: 119px;
  }

  .navbar-toggler .icon-open {
    display: block;
  }

  .navbar-toggler .icon-close {
    display: none;
  }

  .navbar-toggler:not(.collapsed) .icon-open {
    display: none;
  }

  .navbar-toggler:not(.collapsed) .icon-close {
    display: block;
  }

  .dropdown-hover {
    position: relative;
  }

  .dropdown-hover > a {
    display: inline-block;
    padding: 10px 0;
    position: relative;
  }

  .dropdown-menu-hover {
    border-left: 5px solid var(--theme-yellow);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: none;
    flex-direction: column;
    z-index: 999;
    padding: 10px;
  }

  .dropdown-hover:hover .dropdown-menu-hover {
    display: flex;
  }

  .dropdown-menu-hover a {
    border-bottom: 1px solid #ccc;
    color: var(--theme-blue);
    text-decoration: none;
    padding: 10px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 0;
  }

  .dropdown-menu-hover a:hover {
    color: var(--theme-yellow);
  }

  .chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    transition: transform 0.25s ease;
    margin-left: 6px;
    vertical-align: middle;
  }

  .chevron::before,
  .chevron::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.25s ease;
    border-radius: 1px;
  }

  .chevron::before {
    top: 3px;
    left: 0;
    transform: rotate(45deg);
  }
  .chevron::after {
    top: 3px;
    right: 0;
    transform: rotate(-45deg);
  }

  a[aria-expanded='true'] .chevron {
    transform: rotate(180deg);
  }

  @media (max-width: 576px) {
    .top-bar .nav-link_ a {
      font-size: 1rem;
      font-weight: 400;
      margin-left: 10px;
    }
  }

    .bottom-footer {
    background-color: #f4f4f4;
  }

  .bottom-footer a, .bottom-footer p {
    color: #202020;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
  }

  .bottom-footer a:hover {
    text-decoration: underline;
  }

  @media (max-width: 576px) {
    .bottom-footer a, .bottom-footer p {
      font-size: 12px;
    }
  }

.event-card {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.event-card .date {
  background-color: white;
  border-radius: 10px;
  padding: 5px;
  width: 73px;
  min-width: 73px;
  height: 73px;
  margin-right: 25px;
  text-align: center;
}

.event-card .date span {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-blue);
}

.event-card .date h3 {
  margin: 0;
  font-size: 38px;
  font-weight: 800;
  color: var(--theme-yellow);
  line-height: normal;
}

.event-card .flex-grow-1 h3,
.news-card h3 {
  font-size: 22px;
}

.news-card .date {
  font-size: 12px;
}

.heading {
  color: var(--theme-blue);
  /* font-size: 2.25rem; */
  font-weight: 600;
  margin-bottom: 6px;
}

.sub-heading {
  color: var(--theme-blue);
  /* font-size: 1.5rem; */
  font-weight: 600;
  margin-bottom: 0;
}

.intro-text {
  max-width: 900px;
  text-align: center;
  padding: 0;
  margin-inline: auto;
}

.text-link {
  text-transform: uppercase;
  font-size: 1.125rem;
  color: var(--theme-blue);
  font-weight: 500;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.description-width {
  max-width: 852px;
  width: 100%;
}

.theme-card img {
  width: 100%;
  height: 177px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 23px;
}

.theme-card p {
  min-height: 80px;
}


.accordion-item {
    border: 1px solid #C0C0C0 !important;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button{
  background-color: white;
  color: var(--theme-blue);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 20px;
  border: none;
}

.accordion-button.resource{
  padding: 20px 20px 10px;
}

.accordion-info{
  padding: 0 20px;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--theme-blue);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("../images/+.svg");
  width: 20px;
  height: 20px;
}

.accordion-button.video-btn, .accordion-button.external-link-btn {
  color: var(--theme-dark-blue);
}
.accordion-button.video-btn::after {
  content: 'View Video';
  background-image: none;
  width: auto;
  height: auto;
  font-size: 1rem;
  font-weight: 500;
  color: var(--theme-blue);
  transform: none;
}

.accordion-button.video-btn:not(.collapsed)::after {
  content: 'Close Video';
  background-image: none;
  width: auto;
  height: auto;
}

.accordion-button.external-link-btn::after {
  content: 'Visit Resource';
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  font-size: 1rem;
  font-weight: 500;
  color: var(--theme-blue);
  transform: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/-.svg");
  width: 15px;
  height: 5px;
}

.accordion-body {
  padding: 0 50px 20px 20px;
  background-color: white;
}
.accordion-body p{
  font-size: 1.125rem;
}

.accordion-body img {
  border-radius: 16px;
  width: 100%;
}


.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--theme-yellow);
}


.webinar-series-section {
  max-width: 1200px;
  margin: 0 auto;
}

.webinar-card {
  background-color: white;
  border: 1px solid #C0C0C0;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.webinar-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.webinar-card h3 {
  color: var(--theme-dark-blue);
  font-weight: 600;
  margin-bottom: 0;
}

.webinar-card .sub-detail {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.webinar-links {
  /* margin-top: 15px; */
}

.webinar-links .text-link {
  font-size: 1rem;
}

.gradient-top-section {
  padding: 50px 30px;
  /* border-radius: 15px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(0deg, rgba(86, 164, 231, 0) 0%, rgba(86, 164, 231, 0.2) 100%) !important;
}

.gradient-top-section .section-header {
  width: 900px;
  margin: auto;
}


.dark-gradient-section {
  background-image: url('../images/svg/news-section-gradient.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 42px;
}

.dark-gradient-section h2,.dark-gradient-section p {
  color: white;
}

.blue-bg{
  background-color: #dfeefa;
  padding: 50px 0 20px;
  /* border-radius: 15px; */
  display: flex;
  align-items: center;
  flex-direction: column;
}

.blue-bg .intro-text{
  margin-bottom: 0;
}

.w-700 {
  width: 700px;
}

.rounded-8{
  border-radius: 8px;
}

.rounded-8 img{
  border-radius: 8px;
}

.rounded-18{
  border-radius: 18px;
}

@media (max-width: 992px) {
  .theme-container {
    padding-inline: 20px;
  }
  .swiper-padding {
    padding-inline: 50px;
  }
  .gradient-top-section .section-header{
    width: 100%;
  }
  .w-700 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .theme-container {
    padding-inline: 15px;
  }
  .alignright{
    margin-left: 0;
  }
  .gradient-top-section{
    padding-inline: 15px;
  }
  .w-300{
    width: 100% !important;
  }
}
.breadcrumb {
  font-size: 0.875rem;
  background-image: url('../images/breadcrumb-bg.svg');
   background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.breadcrumb nav ul{
  list-style: none;
  padding: 5px 0;
}

.breadcrumb a, .breadcrumb .breadcrumb-item {
  color: white;
  text-decoration: none;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: #FF9F19;
}

.banner {
  background-image: url('../images/home-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 496px;
  padding-block: 50px;
  display: flex;
  align-items: center;
}

.banner.page-banner{
  background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  min-height: 349px;
  display: flex;
  align-items: end;
  padding-block: 0;
  margin-bottom: 40px;
}
.banner.page-banner .banner-overlay{
  position: absolute;
  width: 100%;
  height: 349px;
  background: linear-gradient(90deg, #000000 0%, #00000000);
  z-index: 1;
}

.banner.page-banner .content{
  position: relative;
  z-index: 2;
}


.banner .content {
  max-width: 600px;
  width: 100%;
  color: white;
}

.banner .content h1 {
  font-size: 3rem;
  font-weight: 600;
}

.banner .content p {
  font-size: 1.25rem;
  font-weight: 100;
}

.gradient-section {
  background-image: url('../images/gradient.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 50px 30px;
}

.form-control{
  background: linear-gradient(0deg,rgba(247, 247, 247, 1) 0%, rgba(234, 234, 234, 1) 100%);;
}