@font-face {
  font-family: "FreightSans Pro";
  src: url("../fonts/FreightSans-Pro-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "FreightSans Pro";
  src: url("../fonts/FreightSans-Pro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

:root {
  --fp-navy: #142864;
  --fp-bright-blue: #3264e6;
  --fp-yellow: #fad200;
  --fp-green: #46be46;
  --fp-purple: #8c4aeb;
  --text-default-color: #000000;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Inter";
  line-height: 1.5;
  color: var(--text-default-color);
  letter-spacing: -0.015em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: bold;
  line-height: 1.2;
}

a {
  color: var(--fp-bright-blue);

}

a:hover {
  text-decoration: underline;
}

p {
  margin-block-end: 0.9rem;
}

p:last-child {
  margin-block-end: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ol,
ul {
  margin-block-end: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-default-color);
}

select {
  width: auto;
  padding: 0.5rem 2rem;
  border: 1px solid;
  border-color: var(--fp-bright-blue);
  border-radius: 1.875rem;
  color: var(--fp-navy);
  font-weight: bold;
}

table,
tbody,
tr,
td {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

table {
  margin-block-end: 0px;
}

/*  */
.text-freight-sans-pro {
  font-family: "FreightSans Pro";
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.text-navy {
  color: var(--fp-navy) !important;
}

.text-bright-blue {
  color: var(--fp-bright-blue) !important;
}

.text-yellow {
  color: var(--fp-yellow);
}

.text-green {
  color: var(--fp-green);
}

.text-purple {
  color: var(--fp-purple);
}

.text-uppercase {
  text-transform: uppercase;
}

.font-thin {
  font-weight: 100 !important;
}

.font-extralight {
  font-weight: 200 !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.font-black {
  font-weight: 900 !important;
}

.text-48 {
  font-size: clamp(2.4rem, 3.333vw, 3rem);
}

.text-42 {
  font-size: clamp(1.75rem, 2.91667vw, 2.625rem);
}

.text-36 {
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
}

.text-32 {
  font-size: clamp(1.6rem, 2.222vw, 2rem);
}

.text-28 {
  font-size: clamp(1.4rem, 1.9444vw, 1.75rem);
}

.text-26 {
  font-size: clamp(1.3rem, 1.8055vw, 1.625rem);
}

.text-24 {
  font-size: clamp(1.25rem, 1.6667vw, 1.5rem);
}

.text-21 {
  font-size: clamp(1rem, 1.4583vw, 1.3125rem);
}

.text-18 {
  font-size: clamp(0.9375rem, 1.25vw, 1.125rem);
}

.text-15 {
  font-size: 0.9375rem;
}

.text-14 {
  font-size: 0.9375rem;
}

.text-12 {
  font-size: 0.75rem;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

.text-center {
  text-align: center;
}

.lead {
  font-size: 18px;
  font-weight: 600;
}

/*  */
.d-block {
  display: block;
}

@media screen and (min-width: 992px) {
  .lg-d-none {
    display: none;
  }
}

.flex-1 {
  flex: 1 !important;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.m-0 {
  margin: 0 !important;
}

.mx-auto {
  margin-inline: auto;
}

.px-0 {
  padding-inline: 0;
}

.py-0.e-cond-full,
.py-0.e-con-boxed > .e-con-inner {
  padding-block: 0;
}

.pt-0.e-cond-full,
.pt-0.e-con-boxed > .e-con-inner {
  padding-block-start: 0;
}

.ms-auto {
  margin-inline-start: auto;
}

.me-auto {
  margin-inline-end: auto;
}

.ms-0 {
  margin-inline-start: 0;
}

.mr-0 {
  margin-inline-end: 0;
}

.mt-20 {
  margin-block-start: 1.25rem;
}

.mb-20 {
  margin-block-end: 1.25rem;
}

.p-0 {
  padding: 0 !important;
}

/*  */
.list-style--none {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.text-truncate-3-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.row-gap-96.e-con-full,
.row-gap-96.e-con-boxed > .e-con-inner {
  row-gap: clamp(2rem, 6.6667vw, 6rem);
}

.row-gap-62.e-con-full,
.row-gap-62.e-con-boxed > .e-con-inner {
  row-gap: clamp(2rem, 4.66165vw, 3.875rem);
}

.row-gap-50.e-con-full,
.row-gap-50.e-con-boxed > .e-con-inner {
  row-gap: clamp(1.25rem, 3.4722vw, 3.125rem);
}

.col-gap-90.e-con-full,
.col-gap-90.e-con-boxed > .e-con-inner {
  column-gap: clamp(1.875rem, 6.4583vw, 5.625rem);
}

.max-w-239 {
  max-width: 14.9375rem !important;
}

/*  */
.container-ml-0.e-con-boxed > .e-con-inner {
  margin-inline-start: 0 !important;
}

.container-mr-0.e-con-boxed > .e-con-inner {
  margin-inline-end: 0 !important;
}

.layout-default {
  row-gap: clamp(1.875rem, 6.77083vw, 8.125rem);
  column-gap: 1.875rem;
}

.e-con-full.layout-default,
.e-con-boxed.layout-default > .e-con-inner {
  column-gap: clamp(1.875rem, 6.77083vw, 8.125rem);
  row-gap: 1.875rem;
}

.layout-default.e-cond-full,
.layout-default.e-con-boxed > .e-con-inner {
  padding-block-start: 0;
  padding-block-end: clamp(3.125rem, 6.667vw, 6rem);
}

.layout-default.e-cond-full > .layout-default--main,
.layout-default.e-con-boxed > .e-con-inner > .layout-default--main {
  flex: 1 !important;
}

.layout-default.e-cond-full > .layout-default--sidebar,
.layout-default.e-con-boxed > .e-con-inner > .layout-default--sidebar {
  width: min(40%, 30rem);
  row-gap: clamp(1.875rem, 4.1667vw, 3.75rem);
}

@media screen and (min-width: 992px) {
}

@media screen and (max-width: 991px) {
  .layout-default.econ-full,
  .layout-default.e-con-boxed > .e-con-inner {
    flex-direction: column !important;
  }

  .layout-default.e-cond-full > .layout-default--sidebar,
  .layout-default.e-con-boxed > .e-con-inner > .layout-default--sidebar {
    padding-block-start: 0 !important;
    width: min(100%, 30rem);
  }
}

.column-gap-38.e-con-full,
.column-gap-38.e-con-boxed > .e-con-inner {
  column-gap: clamp(1.5rem, 2.63889vw, 2.375rem);
}

.column-gap-129.e-con-full,
.column-gap-129.e-con-boxed > .e-con-inner {
  column-gap: clamp(2.5rem, 8.3984375vw, 8.0625rem);
}

/*  */
.page-header-wrap.e-con-full,
.page-header-wrap.e-con-boxed > .e-con-inner {
  padding-block: 0;
}

.breadcrumbs {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b1b1b1;
  padding-block: clamp(1.25rem, 3.4722vw, 3.125rem);
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs a:hover {
  color: var(--fp-bright-blue);
}

.breadcrumbs .current-item {
  color: var(--fp-bright-blue);
}

body.single-event .breadcrumbs {
  padding-block-end: 1.25rem;
}

.team-inline-box {
  column-gap: clamp(1.875rem, 5.0694vw, 4.5625rem);
  row-gap: clamp(1.875rem, 4.1667vw, 3.75rem);
}

.custom-checkbox {
  position: relative;
  overflow: hidden;
}

.post-filter__list.post-filter__list--child
  > li:not(:last-child)
  .custom-checkbox {
  margin-block-end: 1.0625rem;
}

.post-filter__list--child {
    padding-left: 2.1875rem;
}

.custom-checkbox > input[type="checkbox"] {
  position: absolute;
  left: -0.625rem;
  opacity: 0;
}

.custom-checkbox > label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  color: #333333;
}

.custom-checkbox > label:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #adadad;
  border-radius: 0.1875rem;
  background-color: white;
}

.custom-checkbox > input:checked ~ label:before {
  background-color: var(--fp-bright-blue);
  border-color: var(--fp-bright-blue);
}

.custom-checkbox > label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgNS4zMzMzM0w2Ljk0MTE4IDEwTDE0IDIiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=");
  background-size: 1rem auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}

.custom-checkbox > input:checked ~ label:after {
  opacity: 1;
}

.custom-accordion {
  display: flex;
  flex-direction: column;
}

.custom-accordion .custom-accordion__header {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.625rem;
  border-bottom: 0.0313rem solid #bcc8eb;
  cursor: pointer;
}

.custom-accordion .custom-accordion__header .custom-accordion-label {
  flex: 1;
}

.custom-accordion .custom-accordion__header .custom-accordion__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-accordion
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-icon {
  width: 1.3125rem;
  height: 1.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  border-radius: 50%;
  background-color: var(--fp-bright-blue);
  color: white;
}

.custom-accordion.expand
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-icon {
  background-color: #e0e9ff;
  color: var(--fp-bright-blue);
}

.custom-accordion
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-icon
  svg {
  width: 0.7338rem;
  height: auto;
}

.custom-accordion
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-expand,
.custom-accordion.expand
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-collapse {
  display: flex;
}

.custom-accordion.expand
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-expand,
.custom-accordion
  .custom-accordion__header
  .custom-accordion__toggle
  .custom-accordion__toggle-collapse {
  display: none;
}

.custom-accordion .custom-accordion__body {
  padding-block: 0.9375rem;
}

.custom-accordion.expand .custom-accordion__body {
  display: block;
}

.post-layout {
  display: flex;
  flex-direction: column;
  column-gap: 2.4375rem;
  row-gap: 2.5rem;
  margin-block-start: 1.25rem;
  margin-block-end: 4rem;
}

.post-layout > .post-layout__sidebar {
  width: min(100%, 25.5rem);
}

.post-layout > .post-layout__sidebar .post-filter {
  background-color: rgb(217, 217, 217, 0.16);
  border-radius: 0.75rem;
  padding: 1.375rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}

.post-filter .post-filter__header {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
}

.post-filter .post-filter-header__label {
  flex: 1;
}

.post-filter .post-filter-header__label .filter--selected {
  color: #8c8c8c;
}

.post-filter .post-filter__toggle {
  cursor: pointer;
}

.post-filter .post-filter__toggle .filter__toggle--close.hidden,
.post-filter .post-filter__toggle .filter__toggle--open.hidden {
  display: none;
}

.post-filter__list--root > li > .custom-checkbox {
  padding-block: 0.625rem;
  border-bottom: 0.0313rem solid #bcc8eb;
}

.post-filter__list--root > li > .custom-checkbox label {
  font-weight: bold!important;
  color: var(--fp-navy);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.post-layout > .post-layout__main {
  flex: 1;
}

.post-layout > .post-layout__main > .post-layout__header {
  margin-block-end: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}

.post-layout > .post-layout__main > .post-layout__header select.post-sort {
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
  color: var(--fp-bright-blue);
  border: none;
}

.post-layout > .post-layout__main > .post-layout__results {
  margin-block-end: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.29167vw, 2.0625rem);
}

.post-layout > .post-layout__main > .post-layout__footer {
  margin-block-start: 2.5rem;
}

.post-layout > .post-layout__main > .post-layout__footer .post-pagination {
  display: flex;
  justify-content: center;
}

.post-layout
  > .post-layout__main
  > .post-layout__footer
  .post-pagination__load-more {
  display: flex;
  gap: 0.8125rem;
  align-items: center;
  font-size: clamp(1.05rem, 1.4583vw, 1.3125rem);
  font-weight: bold;
  color: var(--fp-bright-blue);
  cursor: pointer;
}

.post-layout
  > .post-layout__main
  > .post-layout__footer
  .post-pagination__load-more.hidden {
  display: none !important;
}

.post-layout
  > .post-layout__main
  > .post-layout__footer
  .post-pagination__load-more
  span {
  text-decoration: underline;
}

.post-layout
  > .post-layout__main
  > .post-layout__footer
  .post-pagination__load-more
  svg {
  width: 1em;
  height: auto;
}

.results--past-event {
  margin-top: 3rem;
}

@media screen and (min-width: 992px) {
  .post-layout {
    flex-direction: row;
  }
}

.post-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -2rem;
  z-index: 99;
}

.post-loading img {
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.event-date-note {
  margin-block-start: 1.875rem;
}

.list-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-start: 1.25rem;
}

.grid-date-time {
  display: flex;
  flex-direction: column;
  border: 1px solid #bcc8eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.grid-date-time .row-date-time {
  display: flex;
}

.grid-date-time .row-date-time:not(:first-child) {
  border-block-start: 1px solid #bcc8eb;
}

.grid-date-time .row-date-time .grid-label {
  width: min(100%, 7.375rem);
  padding: 1rem;
  background-color: #f8f8f8;
  border-inline-end: 1px solid #bcc8eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.grid-date-time .row-date-time .date-time-value {
  flex: 1;
  padding: 1rem 0.875rem;
  display: flex;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
}
.grid-date-time .row-date-time .date-time-value span {
  display: flex;
  align-items: center;
  gap: .75rem;
}
@media screen and (min-width: 992px) {
  .grid-date-time .row-date-time .date-time-value {
    padding: 1.25rem 2rem;
  }

  .grid-date-time .row-date-time .grid-label {
    width: min(100%, 9.125rem);
  }
}

/* elementor */
hr,
.elementor hr {
  opacity: 0.25;
  margin-block: 1.25rem;
  border-top: 1px solid;
  border-bottom: 0;
  border-color: var(--fp-bright-blue);
}

body.postid-50.elementor-editor-active .mega-menu-dropdown,
body.postid-50.elementor-editor-active .menu-mobile-wrap {
  display: block !important;
  position: static !important;
  visibility: visible;
}

.elementor-menu-toggle {
  width: 3.125rem;
  height: 3.125rem;
}

.elementor-heading-title {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  line-height: inherit;
}

h1.elementor-heading-title,
h2.elementor-heading-title,
h3.elementor-heading-title,
h4.elementor-heading-title,
h5.elementor-heading-title,
h6.elementor-heading-title {
  line-height: 1.2;
}

.image-full,
.image-full a {
  width: 100%;
  height: 100%;
}

.image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.elementor-button {
  line-height: 1.2;
}

.btn-medium > .elementor-button {
  line-height: 1.28;
  min-width: 10.1875rem;
}

.btn-width-100 > .elementor-button {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
  padding: 0.4375rem 1.5rem 0.4375rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7222em;
  font-weight: 800;
  background-color: var(--fp-bright-blue);
  color: white;
}
.btn-light {
  background-color: #3264e60d;
  fill: var(--e-global-color-6e76974);
  color: var(--e-global-color-6e76974);
}
.btn:hover {
  color: white;
  background-color: var(--fp-navy);
}
.btn-light:hover {
  background-color: var(--e-global-color-6e76974);
  color: #ffffff;
}

.list-icon-text ul {
  font-size: 0.9375rem;
  line-height: 1.73333;
  font-weight: 500;
}

.ele-clickable {
  cursor: pointer;
}

.square-message > .elementor-heading-title {
  display: inline-block;
  background-color: var(--fp-bright-blue);
  color: white;
  padding: 0.375rem 0.5625rem 0.375rem 0.875rem;
  position: relative;
}

.square-message > .elementor-heading-title:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.3125rem solid var(--fp-bright-blue);
  border-right: 0.4375rem solid transparent;
  border-bottom: 0.3125rem solid transparent;
  border-left: 0.4375rem solid var(--fp-bright-blue);
  position: absolute;
  bottom: 2px;
  left: 0;
  transform: translateY(0.625rem);
}

form.e-search-form {
  position: relative;
}

form.e-search-form .e-search-input-wrapper .e-search-input {
  border-radius: 2.625rem;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  min-height: unset;
}

.elementor-widget-search .e-search .e-search-submit {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0.5rem;
  width: 3rem;
  background-color: transparent;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.elementor-widget-search .e-search .e-search-submit svg {
  margin: 0;
}

/*  */
.mega-menu-main-list.elementor-widget-icon-list > .elementor-icon-list-items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 6px solid;
  border-color: var(--fp-navy);
  margin: 0;
}

body.has-featured-image
  .mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items {
  border-bottom: 0;
}

.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item {
  margin: 0;
}

.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item {
  color: var(--fp-navy);
  flex: 1 1 auto;
}

.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item
  > a {
  padding-block: 1.6875rem;
}

.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item
  > a
  > .elementor-icon-list-text {
  width: 100%;
  padding-inline: 1rem;
  text-align: center;
}

.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item:not(:last-child)
  > a
  > .elementor-icon-list-text {
  border-inline-end: 1px solid;
  border-color: rgb(50, 100, 230, 0.25);
}

.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item.active
  > a,
.mega-menu-main-list.elementor-widget-icon-list
  > .elementor-icon-list-items
  > .elementor-icon-list-item.active
  > a
  > .elementor-icon-list-text {
  background-color: var(--fp-navy);
  color: white;
}

.mega-menu > .e-con-inner {
  position: relative;
}

.mega-menu-dropdown {
  padding-block: clamp(2rem, 3.0598vw, 2.9375rem);
  padding-inline: clamp(1rem, 3.9vw, 3.75rem);
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 99;
  display: none;
  box-shadow: 0 0.5rem 3.5rem rgb(0, 0, 0, 0.08);
}

body.has-featured-image .mega-menu-dropdown {
  border-top: 0.375rem solid;
  border-color: var(--fp-navy);
}

.menu-toggle-open .elementor-icon-wrapper,
.menu-toggle-close .elementor-icon-wrapper {
  line-height: 1;
}

.menu-mobile-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  z-index: 999;
}

.menu-mobile-wrap.open {
  display: flex;
  visibility: visible;
}

.menu-mobile-wrap .menu-mobile-body {
  max-height: 100%;
  flex: 1;
  overflow: auto;
}

.menu-mobile-body form.gsc-search-box {
  border-radius: 42px;
  border: 1.5px solid #e2e2e2;
}

.menu-dropdown-angle-icon ul.elementor-nav-menu--dropdown .elementor-sub-item {
  padding-inline-start: 2rem !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxMCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUw4IDhMMSAxNSIgc3Ryb2tlPSIjMzI2NEU2IiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 0.4375rem;
  background-position: 0.8rem center;
}

.menu-item-clickable .elementor-nav-menu--dropdown {
  display: none !important;
}

.menu-item-clickable a.has-submenu {
  cursor: pointer;
}

.menu-item-clickable a.has-submenu:hover {
  text-decoration: underline !important;
}

.menu-item-clickable .elementor-nav-menu--dropdown.show {
  display: block !important;
}

/*  */
.list-page-navigation.elementor-widget-icon-list .elementor-icon-list-item a {
  align-items: stretch;
  border-radius: 0.5rem;
  background-color: rgb(196, 196, 196, 0.14);
  overflow: hidden;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.list-page-navigation.elementor-widget-icon-list
  .elementor-icon-list-item
  .elementor-icon-list-icon {
  background-color: var(--fp-bright-blue);
  color: white;
  padding: 1.0625rem;
}

.list-page-navigation.elementor-widget-icon-list
  .elementor-icon-list-item
  .elementor-icon-list-icon
  svg {
  width: 1.625rem;
  height: auto;
}

.list-page-navigation.elementor-widget-icon-list
  .elementor-icon-list-item
  .elementor-icon-list-text {
  padding: 0.9375rem 1.5625rem !important;
}

.e-n-accordion .e-n-accordion-item {
  border-radius: 0.5rem;
  overflow: hidden;
}

.e-n-accordion .e-n-accordion-item .e-n-accordion-item-title {
  background-color: rgb(217, 217, 217, 0.33);
  padding: 0;
  gap: 0;
  border: none;
  align-items: stretch;
}

.e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-header {
  flex: 1;
  padding: 0.8125rem 0.8125rem 0.8125rem 1.1875rem;
  align-items: center;
}

.e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-text {
  font-size: clamp(1rem, 1.4583vw, 1.3125rem);
  font-weight: bold;
  line-height: 1.2;
  color: var(--fp-navy);
}

.e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-icon {
  color: white;
  background-color: var(--fp-bright-blue);
  padding: 1.25rem 0.9375rem;
}

.e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title[aria-expanded="true"]
  .e-n-accordion-item-title-icon {
  color: var(--fp-bright-blue);
  background-color: #e0e9ff;
}

.e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-icon
  svg {
  width: 0.875rem;
  height: auto;
}

.e-n-accordion .e-n-accordion-item > .e-con {
  background-color: rgb(217, 217, 217, 0.08);
  border: none;
  padding: 1.5rem 1.3125rem 1.5rem 1.1875rem;
}

.e-n-accordion .e-n-accordion-item > .e-con a {
  color: var(--fp-bright-blue);
}

@media screen and (min-width: 768px) {
  .e-n-accordion
    .e-n-accordion-item
    .e-n-accordion-item-title
    .e-n-accordion-item-title-header {
    flex: 1;
    padding: 0.9375rem 2rem;
  }

  .e-n-accordion
    .e-n-accordion-item
    .e-n-accordion-item-title
    .e-n-accordion-item-title-icon {
    padding: 1.25rem 1.125rem;
  }

  .e-n-accordion
    .e-n-accordion-item
    .e-n-accordion-item-title
    .e-n-accordion-item-title-icon
    svg {
    width: 1.25rem;
  }

  .e-n-accordion .e-n-accordion-item > .e-con {
    padding: 0.9375rem 2rem;
  }
}

.simple-accordion.elementor-widget-n-accordion .e-n-accordion {
  display: flex;
  flex-direction: column;
  row-gap: 2.25rem;
}

.simple-accordion.elementor-widget-n-accordion
  .e-n-accordion
  .e-n-accordion-item {
  border-radius: 0;
}

.simple-accordion.elementor-widget-n-accordion
  .e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title {
  background-color: transparent;
}

.simple-accordion.elementor-widget-n-accordion
  .e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-header {
  padding: 0;
}

.simple-accordion.elementor-widget-n-accordion
  .e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-header
  .e-n-accordion-item-title-text {
  font-size: clamp(0.9375rem, 1.25vw, 1.125rem);
  font-weight: 600;
}

.simple-accordion.elementor-widget-n-accordion
  .e-n-accordion
  .e-n-accordion-item
  .e-n-accordion-item-title
  .e-n-accordion-item-title-icon {
  padding: 0;
  background-color: transparent;
}

.simple-accordion.elementor-widget-n-accordion
  .e-n-accordion
  .e-n-accordion-item
  > .e-con {
  background-color: transparent;
  padding: 0.9375rem 1rem;
}

.post-tags-btn.elementor-widget-post-info
  .elementor-post-info__item--type-terms {
  display: flex;
  gap: 0.8125rem;
}

.post-tags-btn
  .elementor-post-info__item--type-terms
  .elementor-post-info__item-prefix {
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.post-tags-btn.elementor-widget-post-info
  .elementor-post-info__item--type-terms
  .elementor-post-info__terms-list {
  flex: 1;
  font-size: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4063rem;
}

.post-tags-btn
  .elementor-post-info__item--type-terms
  .elementor-post-info__terms-list
  .elementor-post-info__terms-list-item {
  background-color: #e8f1fc;
  border-radius: 0.3125rem;
  color: var(--fp-bright-blue);
  padding: 0.375rem 1rem;
  font-weight: bold;
  font-size: 0.9375rem;
}

.elementor-widget-author-box .elementor-author-box {
  background-color: rgb(23, 117, 228, 0.1);
  border-radius: 0.75rem;
  padding: 2rem 2.1875rem;
  flex-direction: column;
  column-gap: 1.875rem;
  row-gap: 1.5rem;
}

.elementor-widget-author-box .elementor-author-box__avatar {
  width: min(100%, 6rem);
  margin-inline-end: 0;
}

.elementor-widget-author-box .elementor-author-box__text {
  flex: 1;
}

.elementor-widget-author-box
  .elementor-author-box__text
  .elementor-author-box__name {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.elementor-widget-author-box
  .elementor-author-box__text
  .elementor-author-box__bio {
  font-size: 1rem;
}

@media screen and (min-width: 640px) {
  .elementor-widget-author-box .elementor-author-box {
    flex-direction: row;
  }
}

.feature-image-full,
.feature-image-full > a {
  height: 100%;
}

.feature-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*  */
.btn-tag {
  display: inline-block;
  background-color: #eff4ff;
  color: var(--fp-bright-blue);
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.25rem 0.8125rem;
  border-radius: 1.6875rem;
}

.btn-read-more {
  display: inline-flex;
  gap: 0.5625rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 3rem;
  background-color: var(--fp-bright-blue);
  color: #ffffff;
  font-size: clamp(1.05rem, 1.4583vw, 1.3125rem);
  font-weight: 800;
}

.btn-read-more svg {
  width: 1em;
  height: auto;
}

.btn-width-medium .elementor-button {
  min-width: min(100%, 19.4375rem);
}

.box-inline {
  min-width: 15.625rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 3.75rem rgb(0, 0, 0, 0.08);
  overflow: hidden;
}

.box-inline .box-inline__header {
  width: 100%;
  background-color: var(--fp-navy);
}

@media screen and (min-width: 768px) {
  .box-inline {
    flex-direction: row;
  }

  .box-inline .box-inline__header {
    aspect-ratio: 1;
    width: min(100%, clamp(12.5rem, 16.276vw, 15.625rem));
  }
}

.box-inline .box-inline__header a {
  display: block;
  width: 100%;
  height: 100%;
}

.box-inline .box-inline__header img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.box-inline .box-inline__body {
  flex: 1;
  padding: clamp(1.6875rem, 1.8229vw, 1.75rem)
    clamp(1.6875rem, 1.8229vw, 1.75rem) clamp(1.6875rem, 1.8229vw, 1.75rem)
    clamp(1.625rem, 2.604vw, 2.5rem);
  position: relative;
}

.box-inline .box-inline__body .box-inline__title-link {
  color: #000000;
}

.box-inline .box-inline__body .box-inline__title {
  margin-block-end: 0.5rem;
}

.box-inline .box-inline__body .box-inline__info {
  font-size: 0.9375rem;
  color: #8e8e8e;
}

.box-inline .box-inline__body .box-inline__short-content {
  margin-block-start: 0.8125rem;
  color: #333333;
  max-width: 22.4375rem;
}

.box-inline .box-inline__body .box-inline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-end;
  margin-block-start: 0.8125rem;
}

@media screen and (min-width: 1200px) {
  .box-inline .box-inline__body .box-inline__short-content {
    max-width: 100%;
    padding-right: 190px;
  }

  .box-inline .box-inline__body .box-inline__actions {
    margin-block-start: 0;
    max-width: 180px;
    position: absolute;
    right: clamp(1.6875rem, 1.8229vw, 1.75rem);
    bottom: 0.5rem;
  }
}

.box-inline.post-event .box-inline__header {
  background-color: #00bd64;
  color: white;
}

.box-inline.post-event .box-inline__header a {
  color: white;
  height: auto;
}

.box-inline.post-event .box-inline__header .event-calendar__label {
  text-align: center;
}

.box-inline.post-event .box-inline__header .event-calendar__label div {
  /* font-size: clamp(1.8rem, 2.5vw, 2.25rem); */
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.box-inline.post-event .box-inline__header .event-calendar__label .divider {
  display: block;
  width: 100%;
  max-width: 80%;
  height: 0.0625rem;
  background-color: currentColor;
  margin-inline: auto;
  margin-block: 0.5rem;
}

.box-inline.post-event .box-inline__header .event-calendar__label div span {
  /* font-size: clamp(1.25rem, 1.6667vw, 1.5rem); */
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.box-inline.post-event .box-inline__header .event-calendar__label--single div {
  font-size: clamp(2rem, 2.91667vw, 2.625rem);
}

.box-inline.post-event
  .box-inline__header
  .event-calendar__label--single
  div
  span {
  font-size: clamp(1.6rem, 2.222vw, 2rem);
}

.box-inline.post-event .box-inline__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
}

.box-inline.post-event .box-inline__body .box-inline__body--first {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  column-gap: clamp(1.25rem, 1.3vw, 2.5rem);
  row-gap: 0.625rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.box-inline.post-event.box-inline--small
  .box-inline__body
  .box-inline__body--first {
  flex-direction: column;
}

.box-inline.post-event
  .box-inline__body
  .box-inline__body--first
  .event-header-content {
  flex: 1;
}

.box-inline.post-event .box-inline__header {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-inline.post-event .box-inline__body .box-inline__body--second {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: clamp(1.25rem, 1.3vw, 40px);
  row-gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
}

.box-inline.post-event
  .box-inline__body
  .box-inline__body--second
  .box-inline__short-content {
  flex: 1;
  min-width: min(100%, 18.75rem);
}
.box-new-inline .elementor-widget-theme-post-featured-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.box-inline__event-type {
  max-width: 11.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
}

.post-inline__info--event-date {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #000000;
}

.box-inline.post-event.post-event--past .box-inline__header {
  background-color: rgb(136, 136, 136, 0.44);
}

.box-inline.post-event.post-event--past .btn-tag {
  background-color: #f4f4f4;
  color: #bfbfbf;
}

.box-inline.post-event.post-event--past .btn-tag.btn-tag--completed {
  background-color: rgb(218, 24, 105, 0.13);
  color: #ff0080;
}

.box-inline.post-event.post-event--past .btn-read-more {
  background-color: rgb(217, 217, 217, 0.3);
  color: rgb(136, 136, 136, 0.49);
}

.cursor-pointer {
  cursor: pointer;
}

.icon-text {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.icon-text svg {
  width: 1em;
  height: auto;
}
.icon-text.icon-text-md svg{
  width: 1.875rem;
}
.icon-text span {
  flex: 1;
}

.list-upcoming-event {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.box-inline.box-inline--small.post-event {
  flex-direction: row !important;
}

.box-inline.box-inline--small.post-event .box-inline__header {
  width: 31.25%;
  /* background-color: var(--fp-navy); */
  background-color: var(--e-global-color-22c1313)
}

.box-inline.box-inline--small.post-event
  .box-inline__header
  .event-calendar__label
  div {
  font-size: 1.36rem;
}

.box-inline.box-inline--small.post-event
  .box-inline__header
  .event-calendar__label
  div
  span {
  font-size: 0.9375rem;
}

.box-inline.box-inline--small.post-event
  .box-inline__header
  .event-calendar__label--single
  div {
  font-size: 1.4831rem;
}

.box-inline.box-inline--small.post-event
  .box-inline__header
  .event-calendar__label
  div
  span {
  font-size: 1.095rem;
}

.box-inline.box-inline--small.post-event .box-inline__body {
  padding: 1.125rem 1.375rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.box-inline.box-inline--small.post-event .box-inline__body .box-inline__title {
  font-size: 1rem;
}

.box-inline.box-inline--small.post-event .post-inline__info--event-date {
  gap: 0;
  color: #000000;
}

.box-inline.box-inline--small.post-event .btn-read-more {
  font-size: 0.875rem;
  font-family: "FreightSans Pro";
  background-color: rgb(50, 100, 230, 0.05);
  color: var(--fp-navy);
  padding: 0.5rem 0.625rem;
}

.box-inline.box-inline--small.post-event
  .box-inline__body
  .box-inline__body--second {
  max-width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}

.box-inline.box-inline--small.post-event .box-inline__event-type {
  justify-content: flex-start;
}

.box-inline.box-inline--small.post-event .box-inline__event-type .btn-tag {
  padding: 0.375rem 0.625rem;
}

@media screen and (min-width: 992px) and (max-width: 1300px) {
  .box-inline.post-event .box-inline__body .box-inline__body--first,
  .box-inline.post-event .box-inline__body .box-inline__body--second {
    flex-direction: column;
  }

  .box-inline__event-type {
    max-width: 100%;
  }
}

.filter-trigger--mobile-close {
  max-width: 2rem;
  margin-inline-start: auto;
}

@media screen and (max-width: 991px) {
  .post-layout > .post-layout__sidebar .post-filter {
    position: fixed;
    z-index: 99;
    background-color: rgb(0, 0, 0, 0.6);
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1rem;
    border-radius: 0;
    display: none;
  }

  .post-layout > .post-layout__sidebar .post-filter.show {
    display: block;
  }

  .post-layout > .post-layout__sidebar .post-filter .post-filter__header {
    display: none;
  }

  .post-layout > .post-layout__sidebar .post-filter .post-filter__body {
    background: #ffffff;
    padding: 1rem;
    border-radius: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .box-inline.post-event .box-inline__body .box-inline__body--first,
  .box-inline.post-event .box-inline__body .box-inline__body--second {
    flex-direction: column;
  }

  .box-inline__event-type {
    max-width: 100%;
  }
}

@media screen and (max-width: 512px) {
  .box-inline.box-inline--small.post-event .box-inline__header {
    width: 32.75%;
    padding-inline: 0.375rem;
  }

  .box-inline.box-inline--small.post-event
    .box-inline__header
    .event-calendar__label
    div {
    font-size: 1.1594rem;
  }

  .box-inline.box-inline--small.post-event
    .box-inline__header
    .event-calendar__label
    div
    span {
    font-size: 0.9337rem;
  }
}

.award-wrap {
  row-gap: clamp(1.25rem, 2.86458vw, 2.75rem);
}

.award-group {
  column-gap: clamp(1.875rem, 3.776vw, 3.625rem);
  row-gap: clamp(1.25rem, 2.86458vw, 2.75rem);
}

.award-group-column {
  row-gap: clamp(1.25rem, 2.86458vw, 2.75rem);
}

.award-element {
  padding: clamp(1.875rem, 3.515625vw, 3.375rem);
}

.award-element.award-element-winner {
  margin-top: clamp(4.5625rem, 7.8125vw, 7.5rem);
}

.award-winner__image {
  width: clamp(9.125rem, 15.625vw, 15rem);
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, -50%);
  border-radius: 50%;
  z-index: 0;
  overflow: hidden;
}

.award-winner__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .award-winner__image {
    right: 0;
    transform: translate(-30px, -50%);
  }
}

@media screen and (max-width: 767px) {
  .award-element.award-element-winner {
    margin-top: clamp(4.5625rem, 7.8125vw, 7.5rem);
    padding-top: clamp(4.5625rem, 7.8125vw, 7.5rem);
  }
}



.elementor-widget-text-editor,
.page-content-wrap,
.layout-default.e-con-boxed,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content {
  letter-spacing: 0;
}

.page-content-wrap h1,
.page-content-wrap h2,
.page-content-wrap h3,
.page-content-wrap h4,
.page-content-wrap h5,
.page-content-wrap h6,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h1,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h2,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h3,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h4,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h5,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h6,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h1,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h2,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h3,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h4,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h5,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h6 {
  margin-block-end: 1rem;
}

.page-content-wrap h1:not(:first-child),
.page-content-wrap h2:not(:first-child),
.page-content-wrap h3:not(:first-child),
.page-content-wrap h4:not(:first-child),
.page-content-wrap h5:not(:first-child),
.page-content-wrap h6:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h1:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h2:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h3:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h4:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h5:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h6:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h1:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h2:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h3:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h4:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h5:not(:first-child),
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h6:not(:first-child) {
  margin-block-start: 2.5rem;
}

.page-content-wrap h1,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h1,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h1,
body.page h1,
body.single h1 {
  color: var(--fp-navy);
  font-size: clamp(1.75rem, 2.91667vw, 2.625rem);
}

.page-content-wrap h2,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h2,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h2 {
  color: var(--fp-bright-blue);
  font-size: clamp(1rem, 1.4583vw, 1.3125rem);
}

.page-content-wrap h3,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h3,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h3 {
  font-size: 1rem;
  color: inherit;
}

.page-content-wrap h4,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h4,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h4 {
  font-size: 1rem;
  color: var(--fp-navy);
}

.page-content-wrap h5,
.page-content-wrap h6,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h5,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-text-editor
  h6,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h5,
.layout-default.e-con-boxed
  > .e-con-inner
  > .layout-default--main
  .elementor-widget-theme-post-content
  h6 {
  font-weight: 400;
  font-size: 1rem;
  color: inherit;
}

/* custom */

.no-wrap-text {
  white-space: nowrap;
}

.number-circle {
  display: inline-block;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  border-radius: 50%;
  background-color: white;
  color: var(--fp-navy);
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0px 0.25rem 0px rgba(0, 0, 0, 0.12);
}

.rounded-tl-large {
  border-top-left-radius: clamp(1rem, 3.889vw, 3.5rem);
}

.rounded-tr-large {
  border-top-right-radius: clamp(1rem, 3.889vw, 3.5rem);
}

.rounded-bl-large {
  border-bottom-left-radius: clamp(1rem, 3.889vw, 3.5rem);
}

.rounded-br-large {
  border-bottom-right-radius: clamp(1rem, 3.889vw, 3.5rem);
}

.p-box-large {
  padding: clamp(2.4rem, 3.3333vw, 3rem) clamp(1rem, 4.1667vw, 3.75rem);
}

.site-leader-side--left {
  position: relative;
  padding-inline-start: max(1rem, calc(50vw - 41.5625rem));
}

.site-leader-side--right {
  position: relative;
  padding-inline-end: max(1rem, calc(50vw - 41.5625rem));
}

.site-leader-side--left:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  transform: translateX(100%);
  display: block;
  height: 100%;
  width: auto;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCAzNCA1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI5LjEzOTkgMjcuODY4OEwxNy4wMDY4IDM5LjU4MTlMNS4wMDI4IDUxLjE3MDRMMCA1NlYwSDE3QzI2LjQwMDYgMCAzNCA3LjMzNjMgMzQgMTYuNDExNUMzNCAyMC42NTcxIDMyLjI2NjcgMjQuNzc4MSAyOS4xMzMxIDI3Ljg2ODhIMjkuMTM5OVoiIGZpbGw9IiMzMjY0RTYiLz4KPC9zdmc+Cg==);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  aspect-ratio: 34 / 56;
}

.footer-wrap {
  padding-block: 2.0625rem;
}

.footer-wrap.e-con-boxed > .e-con-inner {
  column-gap: clamp(2.5rem, 6.9444vw, 6.25rem);
  row-gap: 2.5rem;
  flex-direction: column !important;
}

.footer-wrap .footer__col--left,
.footer-wrap .footer__col--right {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .footer-wrap.e-con-boxed > .e-con-inner {
    flex-direction: row !important;
  }

  .footer-wrap .footer__col--left {
    width: min(100%, 20rem);
  }

  .footer-wrap .footer__col--right {
    flex: 1 !important;
  }

  .footer-wrap {
    padding-block-start: 4.25rem;
    padding-block-end: 5.9375rem;
  }
}

.footer-wrap .elementor-widget-nav-menu {
  width: 100%;
}

.footer-wrap .elementor-nav-menu {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(1.5rem, 2.63889vw, 2.375rem);
  row-gap: 2.5rem;
}

.footer-wrap .elementor-nav-menu a {
  white-space: normal !important;
}

.footer-wrap .elementor-nav-menu .elementor-item {
  font-size: inherit;
  padding: 0;
}

.footer-wrap .elementor-nav-menu .menu-item .elementor-item {
  color: inherit;
}

.footer-wrap .elementor-nav-menu .menu-item .elementor-sub-item {
  color: inherit;
  border: none;
  padding: 0;
  line-height: 1.6;
}

.footer-wrap .elementor-nav-menu a {
  flex-grow: unset;
}

.footer-wrap .elementor-nav-menu > .menu-item {
  flex-direction: column;
}

.footer-wrap .elementor-nav-menu > .menu-item > .sub-menu {
  display: block !important;
  max-width: unset;
  min-width: unset;
  width: 100%;
  position: static;
}

@media screen and (min-width: 460px) {
  .footer-wrap .elementor-nav-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .footer-wrap .elementor-nav-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 991px) {
  .footer-wrap .elementor-nav-menu {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* gravity form */
.gform_wrapper.gravity-theme input[type="color"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme input[type="datetime-local"],
.gform_wrapper.gravity-theme input[type="datetime"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="month"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme input[type="search"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="time"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="week"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  border: 0.0938rem solid #e2e2e2;
  border-radius: 0.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.8125rem 1.375rem;
}

.gform_wrapper.gravity-theme #field_submit,
.gform_wrapper.gravity-theme .gform_footer {
  justify-content: flex-end;
}

@media screen and (max-width: 460px) {
  .sm-btn-full,
  .sm-btn-full .elementor-button {
    width: 100%;
  }
}

.main-online {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: center;
}

.main-course-type-item {
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 700;
  max-width: 100px;
}

.main-course-type-item {
  background-color: #eff4ff;
  color: #3264e6;
}

.main-course-type-item.course-types-73 {
  background-color: #ffe1ed;
  color: #da1869;
}

.main-course-type-item.course-types-71 {
  background-color: #e1ffe1;
  color: #009500;
}

.main-course-type-item.course-types-72 {
  background-color: #eff4ff;
  color: #3264e6;
}

.course-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}

.course-type-tags .course-type-tag {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.3125rem 0.5rem;
  border-radius: 3.75rem;
  background-color: #eff4ff;
  color: var(--fp-bright-blue);
}

.course-type-tags .course-type-tag.course-type-tag-73 {
  background-color: #ffe1ed;
  color: #da1869;
}

.course-type-tags .course-type-tag.course-type-tag-71 {
  background-color: #e1ffe1;
  color: #009500;
}

@media (max-width: 767px) {
  .main-online {
    position: relative;
  }

  .main-course-types {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .main-online .main-course-type-item {
    margin-bottom: 0px;
  }
}

.text-align-end {
  text-align: end;
}
/*  */
form.gsc-search-box {
  background: #fff !important;
  border-radius: 999px !important;
  padding: 8px 16px 8px 44px !important;
  position: relative !important;
  height: 48px !important;
  box-sizing: border-box;
  display: flex !important;
  align-items: center !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  max-width: 500px;
}

input.gsc-input {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  font-size: 16px !important;
  color: #0b2661 !important;
  background: transparent !important;
  width: 100% !important;
  line-height: 1.4 !important;
}

.gsc-input-box {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.gsc-search-button-v2 {
  background: #fff !important;
  border: none !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  position: absolute !important;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  color: #3264e6 !important;
}

.gsc-search-button-v2 svg {
  width: 18px !important;
  height: 18px !important;
  fill: #3264e6 !important;
}

.gsc-clear-button,
.gsib_b,
.gsst_a {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


.gsc-control-cse {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

form.gsc-search-box {
  margin-bottom: 0 !important;
  min-width: 300px;
}


input.gsc-input {
  padding-left: 10px !important;
}

.gsst_a,
.gsc-completion-container {
  background: #fff !important;
  color: #0b2661 !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

.gsc-completion-title {
  font-size: 14px !important;
  padding: 8px 12px !important;
  color: #0b2661 !important;
}

.gsc-completion-container table tr:hover {
  background-color: #f5f5f5 !important;
}

.gsc-completion-container table,
.gsc-completion-container tbody,
.gsc-completion-container tr,
.gsc-completion-container td {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gsc-clear-button {
  background: transparent !important;
  color: #999 !important;
}

.gsc-completion-container {
  margin-top: 30px !important;
  background: #fff !important;
  color: #0b2661 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  z-index: 9999 !important;
}

.gsc-completion-container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
  left: 0 !important;
  right: 0 !important;
  position: absolute !important;
}

.gsc-completion-container td {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  display: block !important;
}

.gsst_b {
  line-height: 6px;
}

.gcsc-find-more-on-google {
  display: none !important;
}

.gsc-control-wrapper-cse > .gsc-search-box {
  border: 1px solid #dfdfdf;
  border-radius: 3rem;
}
.gsc-control-cse,
.gsc-control-cse .gsc-table-result,
.gs-fileFormatType {
  font-size: 0.9375rem !important;
}

.menu-header-new .sub-menu{
  padding: 20px 12px !important;
}

.menu-header-new ul.elementor-nav-menu--dropdown .elementor-sub-item{
  background-size: 0.5rem !important;
  background-position: 0.4rem center !important;
}

.menu-header-new .elementor-nav-menu .menu-item-has-children > ul.sub-menu::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 40px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff; 
  z-index: 2;
}

.menu-header-new .sub-menu.show{
  margin-top: 14px !important;
}

@media (max-width: 1200px) {
  form.gsc-search-box {
    min-width: 200px;
  }
}

@media (max-width: 1110px) {
  form.gsc-search-box {
    min-width: 148px;
  }
  input.gsc-input {
    padding-left: 1px !important;
  }
}

table.gsc-search-box,
table.gsc-search-box tbody,
table.gsc-search-box tr,
table.gsc-search-box td {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
table {
  font-size: 1rem;
}
table,
table thead,
table tbody,
table tr,
table th,
table td {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
