:root {
	--blue: #002469;
	--dark: #494949;
	--yellow: #F7D117;
	--font-family-default: 'Inter', sans-serif;
	--font-family-title: 'Inter', sans-serif;
	--font-size-default: 14px;
	--font-size-title: 18px;
	--font-color-default: var(--dark);
	--font-color-title: var(--blue);
	--default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

#wpadminbar {
	opacity: 0;
}

#wpadminbar:hover {
	opacity: 1;
}

html {
	margin-top: 0 !Important;
}

body {
	font-family: var(--font-family-default);
	font-size: var(--font-size-default);
	background: #fff;
	color: var(--font-color-default);
	margin: 0px;
}

.d-none {
	display: none;
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0px;
	overflow: visible;
	clip: auto;
}

.custom-container {
	width: 77.5%;
	max-width: 930px;
	margin: 0px auto;
}

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

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

.section-title :is(h1, h2) {
	font-size: 33px;
	font-weight: 700;
	color: var(--font-color-title);
	margin: 0px 0px 20px;
	line-height: 120%;
}

.section-title.is-white :is(h1, h2) {
	color: #fff;
}

.section-btn {
	display: inline-block;
	background: var(--yellow);
	color: var(--font-color-default);
	text-decoration: none;
	text-transform: uppercase;
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 10.5px;
	font-weight: 600;
	border: 2px solid var(--yellow);
	transition: all 0.5s ease 0s;
	line-height: normal;
}

.section-btn i {
	margin-left: 8px;
	font-style: normal !important;
}

.section-btn i.icon-left {
	margin-right: 8px;
	margin-left: 0;
	top: 1px;
}

.section-btn.is-transparent {
	background: transparent;
	border-radius: 8px;
	border-color: #00244D;
	color: #00244D;
}

.section-btn.is-white {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

button.section-btn {
	cursor: pointer;
}

.section-btn:hover {
	background: var(--font-color-title);
	color: #fff;
}

.section-btn.is-white:hover {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--font-color-default);
}

.section-btn.icon-only {
	font-size: 0px;
	border-radius: 50%;
	padding: 0px;
	width: 80px;
	height: 80px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.section-btn.icon-only i {
	font-size: 25px;
	font-weight: 700;
}

.section-btn.is-transparent-blue {
	background: transparent;
	border-color: var(--blue);
}

.section-btn.is-transparent-blue:hover {
	background: var(--blue);
}

.canvas-img {
	display: block;
	position: relative;
	overflow: hidden;
}

.canvas-img canvas {
	display: block;
	width: 100%;
	height: auto;
}

.canvas-img img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	transition: var(--default-transition);
	object-fit: cover;
}

.header {
	width: 100%;
	height: auto;
	z-index: 20;
	position: absolute;
	top: 0px;
	left: 0px;

}

/* body.home .header:not(.fixed) {
    background: #fff;
  } */

.header.fixed {
	padding: 12px;
	position: fixed;
	background: rgba(0, 36, 105, 0.9);
	animation: 1s ease 0s 1 normal forwards running fixedHeaderScroll;
}

@keyframes fixedHeaderScroll {
	0% {
		transform: translateY(-40px);
	}

	100% {
		transform: translateY(0px);
	}
}

.header-top {
	background: var(--font-color-title);
	color: #fff;
	padding: 12px 0px;
}

.header.fixed .header-top {
	display: none;
}

.header-top-container {
	width: 77.5%;
	max-width: 930px;
	margin: 0px auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-top-search {
	position: relative;
}

.header-top-search input {
	border: 0;
	padding: 5px 0 5px 2.5em;
	border-radius: 4px;
	width: 0;
	transition: all .5s;
	background: transparent;
	outline: 0;
	cursor: pointer
}

.header-top-search i {
	font-size: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	color: #fff;
	pointer-events: none;
}

.header-top-search input:focus {
	width: 250px;
	cursor: text;
	background: #fff;
	color: #494949;
	padding: 5px 4px 5px 2.5em;
}

.header-top-search input:focus+i {
	color: #002469;
	left: 5px;
}

.hdrtopnav {
	display: flex;
}

.hdrtopnav li {
	position: relative;
	font-size: 12px;
	margin-right: 22px;
}

.hdrtopnav li a {
	color: #fff;
	text-decoration: none;
}

.hdrtopnav li.current_page_item::after {
	content: '';
	position: absolute;
	height: 1px;
	width: 100%;
	left: 0;
	bottom: -2px;
	background: #fff;
}

.hdrtopnav>li:not(:last-child) {
	margin-right: 30px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 77.5%;
	max-width: 930px;
	margin: 0px auto;
	padding: 20px 0px;
}

.header.fixed .header-container {
	padding: 20px 0px;
}

.header-logo a {
	text-decoration: none;
}

.header-logo-text {
	font-size: 26px;
	font-weight: 700;
	color: var(--font-color-title);
}

.header.fixed .header-logo-text {
	color: #fff;
}

.header-nav {
	margin-left: auto;
}

.header-nav .hdrnav {
	display: flex;
}

.header-nav .hdrnav a {
	text-decoration: none;
}

.header-nav .hdrnav>li {
	font-size: 12px;
	margin-right: 22px;
	font-weight: 500;
}

.header-nav .hdrnav>li>a {
	color: #000;
}

.header-nav .hdrnav>li.current_page_item>a,
.header-nav .hdrnav>li>a:hover {
	color: var(--font-color-title);
}

.header.fixed .header-nav .hdrnav>li>a {
	color: #fff;
}

.header-nav .hdrnav>li:not(:last-child) {
	margin-right: 30px;
}

.header-nav .hdrnav>li .menu-item-sub-panel {
	position: absolute;
	left: 0px;
	width: 100%;
	padding: 47px 0px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease 0s;
}

.header-nav .hdrnav>li:hover .menu-item-sub-panel {
	opacity: 1;
	pointer-events: all;
}

.header-nav .hdrnav>li .menu-item-sub-panel::before {
	content: "";
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #2a2a2a;
	z-index: 1;
	opacity: 0;
	transition: all 0.5s ease 0s;
	pointer-events: none;
}

.header-nav .hdrnav>li:hover .menu-item-sub-panel::before {
	opacity: 0.5;
}

.header-nav .hdrnav>li .menu-item-sub-panel-inner {
	background: #fff;
    padding: 22.5px 0;
    z-index: 2;
    position: relative;
    min-height: 245px;
}

.header-nav .hdrnav>li .menu-item-sub-panel .custom-container {
	display: flex;
	justify-content: space-between;
}

.header-nav .hdrnav>li .menu-item-sub-panel .custom-container>div {
	width: 33.33%;
}

.header-nav .hdrnav>li .menu-item-sub-panel .menu-item-sub-panel-info {
	max-width: 190px;
	padding-right: 30px;
	border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.menu-item-info-short-desc {
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.header-nav .hdrnav>li .menu-item-sub-panel .menu-item-sub-panel-info a {
	color: var(--font-color-title);
	font-size: 12px;
	font-weight: 700;
}

.header-nav .hdrnav>li .menu-item-sub-panel .menu-item-sub-panel-info a i {
	font-size: 10px;
	margin-left: 15px;
	font-weight: 600;
}

.menu-item-sub-panel-menu {
	padding-right: 5px;
}

.menu-item-sub-panel-menu ul {
	columns: 2;
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

.menu-item-sub-panel-menu ul li {
	margin-bottom: 12px;
	line-height: 120%;
	font-size: 12px;
}

.menu-item-sub-panel-menu ul li.item-force-right {
	break-before: column;
}

.menu-item-sub-panel-menu ul li a {
	color: #000;
	border-bottom: 2px solid transparent;
}

.menu-item-sub-panel-menu ul li a:hover {
	color: var(--font-color-title);
	border-color: var(--font-color-title);
}

.menu-item-sub-panel-featured {
	max-width: 360px;
	min-width: 360px;
	display: flex;
	justify-content: space-between;
}

.menu-item-sub-panel-featured-item {
	background: #fff;
	border: 1px solid #d5dff4;
	width: calc(50% - 10px);
	border-radius: 5px;
	overflow: hidden;
}

.menu-item-sub-panel-featured-text {
	padding: 15px;
}

.menu-item-sub-panel-featured-text-title {
	color: var(--font-color-title);
	font-size: 12px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 5px;
}

.menu-item-sub-panel-featured-text-desc {
	color: var(--font-color-default);
	;
	font-size: 10px;
	font-weight: 400;
	line-height: 150%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.menu-item-sub-panel-featured-img canvas {
	width: 100%;
	background-size: cover;
}

.header-donate {
	margin-left: 30px;
}

.header-donate i {
	margin-right: 8px;
	margin-left: 0;
	top: 1px;
}

.header-mobile-menu-toggle {
	margin-left: 30px;
	display: none;
}

.header-mobile-menu-toggle a {
	color: var(--font-color-title);
	font-size: 0px;
}

.header-mobile-menu-toggle a::before {
	font-size: 20px;
}

.footer {
	width: 100%;
	background: #142233;
	padding: 70px 0px 30px;
	color: #bbc3cf;
	font-size: 12px;
}

.footer a {
	color: #bbc3cf;
	text-decoration: none;
}

.footer a:hover {
	color: var(--yellow);
}

.footer-container {
	width: 77.5%;
	max-width: 930px;
	margin: 0px auto;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer-top-col {
	flex-grow: 1;
}

.footer-top-col-full {
	width: 100%;
}

.footer-address-logo>div {
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 15px;
}

.footer-address-text {
	font-weight: 400;
	line-height: 180%;
}

.footer-contact {
	line-height: 180%;
}

.footer-contact .ai-icon {
	color: var(--yellow);
	font-size: 14px;
	margin-right: 10px;
	display: inline-block;
	width: 16px;
	text-align: center;
}

.footer-contact .ai-font-envelope {
	font-size: 12px;
}

.footer-contact-media {
	margin-top: 16px;
}

.footer-contact-media strong {
	font-weight: 600;
}

.footer-nav h3 {
	font-size: 12px;
	font-weight: 700;
	line-height: 180%;
}

.footernav {
	font-weight: 400;
	line-height: 180%;
}

.footer-logos-imgs {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logos-imgs img {
	margin: 0px 7.5px;
	max-width: 85px;
	height: auto;
}

.footer-logos-imgs img:nth-child(2) {
	max-width: 60px;
}

.footer-logos-imgs img:nth-child(3) {
	max-width: 50px;
}

.footer-smis {
	margin-top: 45px;
}

.footer-smi {
	font-size: 30px;
	margin: 0px 15px;
	display: inline-block;
	vertical-align: middle;
	color: var(--yellow) !important;
}

.footer-smi:hover {
	color: #fff !important;
}

.footer-smi.ai-font-inspire::before {
	content: "";
	width: 36px;
	display: inline-block;
	background-image: url("../images/global/icon-inspire.png");
	background-repeat: no-repeat;
	background-size: 32px;
	height: 34px;
}

.footer-disclaimer>div {
	max-width: 890px;
	margin: 35px auto 0px;
}

.footer-disclaimer p {
	text-align: center;
	font-size: 10.5px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.footer-bottom {
	border-top: 1px solid #bbc3cf;
	margin-top: 70px;
	padding-top: 30px;
}

.footer-copyright {
	display: flex;
	justify-content: space-between;
	font-size: 10.5px;
	line-height: 180%;
}

.footer-copyright-links a:not(:last-child)::after {
	content: "";
	width: 5px;
	height: 5px;
	display: inline-block;
	vertical-align: middle;
	margin: 0px 20px;
	background-color: var(--yellow);
	border-radius: 50%;
}

.global-signup-content {
	background: #f5f9ff;
	padding: 100px 25px;
}

.global-signup-content-inner {
    max-width: 640px;
    margin: 0px auto;
}

.global-signup-content-inner p {
    color: var(--font-color-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    margin: 15px 0px 25px;
}

.global-signup-content form input[type="text"],
.global-signup-content form input[type="email"]{
    border: 1px solid rgb(213, 223, 244);
    width: 150px;
    border-radius: 8px;
    color: rgb(187, 195, 207);
    padding: 12px 15px;
    font-size: 10.5px;
    margin-right: 5px;
}

.global-signup-content form input[type="email"] {
    width: 187.5px;
}

.global-signup-content .section-title :is(h1, h2)::before {
	content: "";
	width: 79px;
	height: 79px;
	display: block;
	border-radius: 50%;
	margin: 0px auto 25px;
	background-color: var(--yellow);
	background-image: url("../images/global/icon-mail.png");
	background-repeat: no-repeat;
	background-size: 49px 32px;
	background-position: center center;
}

.global-signup-content .wpcf7-form {
	display: flex;
	position: relative;
	flex-wrap: wrap;
}

.global-signup-content .su-field {
	width: 50%;
	padding: 5px;
}

.global-signup-content .su-field-full {
	width: 100%;
}

.global-signup-content .su-field .wpcf7-form-control {
	width: 100%;
}

.global-signup-content .su-submit {
	width: 100%;
	text-align: center;
}

.global-signup-content .su-submit .wpcf7-spinner {
	position: absolute;
}

.global-signup-content .wpcf7-not-valid-tip {
	position: absolute;
	width: auto;
	left: auto;
	right: 0;
	font-size: 11px;
}

.global-signup-content .wpcf7 form .wpcf7-response-output {
	position: absolute;
	width: 100%;
	text-align: center;
	margin: 0;
	bottom: -40px;
}

.ip-banner {
	position: relative;
	width: 100%;
	margin-top: 50px;
}

.ip-banner::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0.31%, rgba(255, 255, 255, 0) 70.13%, rgba(255, 255, 255, 0) 100.5%);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.ip-banner canvas {
	display: block;
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: 378px;
	background-color: #eee;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.ip-banner .container {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 77.5%;
	max-width: 930px;
}

.ip-banner h1 {
	color: var(--font-color-title);
	font-size: 43px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 20px;
}

.ip-banner h1 span {
	display: block;
	font-size: 24px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.01em;
}

.ip-banner p {
	color: #000;
	font-size: 18px;
	line-height: 150%;
	max-width: 460px;
}

.ip-banner p#breadcrumbs {
	color: #000;
	font-size: 12px;
	font-weight: 700;
	line-height: 150%;
	margin-top: 20px;
}

.ip-banner p#breadcrumbs a {
	color: #000;
	text-decoration: none;
	font-weight: 400;
}

#inner-page-wrapper .container {
	width: 77.5%;
	max-width: 930px;
	margin: 0px auto;
}

#inner-page-wrapper>.container {
	width: 100%;
	max-width: 100%;
}

#content-sidebar,
#content-full {
	min-height: 500px;
	margin-top: 20px;
}

#content-sidebar #content {
	width: 77.08%;
}

#content-full #content {
	width: 100%;
}

.sidebar {
	width: 20.83%;
}

.page-template-template-fullwidth #content {
	padding-left: 15px;
	padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
	margin-left: -15px;
	margin-right: -15px;
}

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
	line-height: 1.7;
}

#inner-page-wrapper {
	margin-bottom: 0px;
}

body.archive #inner-page-wrapper {
	margin-bottom: 0px;
}

body.archive #inner-page-wrapper>.container {
	width: 100%;
	max-width: 100%;
}

body.archive.ip-container .header:not(.fixed) {
	position: absolute;
}

.ip-cat-bottom-cta {
	background: var(--font-color-title);
	color: #fff;
	text-align: center;
	padding: 70px 0px;
	position: relative;
	overflow: hidden;
}

.ip-cat-ribbon-1 {
	position: absolute;
	bottom: -145px;
	left: 40px;
	pointer-events: none;
}

.ip-cat-ribbon-2 {
	position: absolute;
	bottom: -586px;
	right: -33px;
	pointer-events: none;
}

.ip-cat-bottom-cta p {
	color: #bbc3cf;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	max-width: 618px;
	margin: 0px auto 35px;
}

#content .ip-cat-bottom-cta p {
	margin: 0px auto 35px;
}

.ip-cat-short-intro .container {
	padding: 100px 0px 80px;
	border-bottom: 1px solid #bacbde;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px !important;
}

.ip-cat-more {
	margin: 50px 0px 100px;
}

.ip-cat-short-intro-title {
	color: var(--font-color-title);
	font-family: Inter;
	font-size: 26px;
	font-weight: 700;
	line-height: normal;
	max-width: 290px;
	width: 23.55%;
}

.ip-cat-short-intro-text {
	color: var(--font-color-default);
	;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	max-width: 890px;
	width: 72%;
}

.ip-cat-search-donate {
	margin-bottom: 60px;
}

.ip-cat-search-donate .custom-container {
	display: flex;
	justify-content: space-between;
}

.ip-cat-search-filter {
    margin-top: 20px;
    margin-bottom: 40px;
}

.ip-cat-search-filter .custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ip-cat-search input[type="text"]::placeholder {
	color: #bbc3cf;
}

.ip-cat-search input[type="text"] {
	border: 1px solid #d5dff4;
	width: 350px;
	padding: 12px 15px;
	border-radius: 8px;
	color: #000;
	font-size: 10.5px;
}

.ip-cat-tabs-filters {
	margin-bottom: 50px;
}

.ip-cat-tabs-filters .custom-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ip-cat-tabs ul li {
	display: inline-block;
	color: #000;
	font-size: 12.75px;
	font-weight: 500;
}

.ip-cat-tabs ul li:not(:last-child) {
	margin-right: 30px;
}

.ip-cat-tabs ul li a {
	color: inherit;
	text-decoration: none;
}

.ip-cat-filters {
	color: #000;
	font-size: 12.75px;
	position: relative;
}

.ip-cat-filters::before {
	content: "";
	display: inline-block;
	width: 16.5px;
	height: 16.5px;
	background: url("../images/global/filter.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-right: 10px;
	top: -2px;
	position: relative;
}

.ip-cat-filters select {
	border: 0px;
	appearance: none;
	color: #000;
	font-size: 12.75px;
	font-weight: 500;
	outline: none;
	padding: 0 12px;
	margin-right: -12px;
}

.ip-cat-posts {
	display: flex;
	flex-wrap: wrap;
}

.ip-cat-posts>article {
	width: calc(25% - 20px);
	border-radius: 12px;
	border: 1px solid #d5dff4;
	background: #eef4ff;
	overflow: hidden;
	padding-bottom: 0px !important;
	margin: 0px 10px 30px !important;
}

.ip-cat-posts>article.type-webinar {
	width: calc(33.33% - 20px);
}

#content .ip-cat-posts>article .archive-thumbnail {
	float: none;
	width: 100%;
}

#content .ip-cat-posts>article .archive-thumbnail a {
	display: block;
	height: 165px;
	overflow: hidden;
}

#content .ip-cat-posts>article .archive-thumbnail img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease 0s;
}

#content .ip-cat-posts>article:hover .archive-thumbnail img {
	transform: scale(1.1);
}

#content .ip-cat-posts>article .archive-content {
	width: 100%;
	float: none;
	padding: 0px 11.5px;
	color: #00244D;
}

#content .ip-cat-posts>article .archive-content .archive-date {
	color: #bbc3cf;
	font-family: Inter;
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
	display: none;
}

#content .ip-cat-posts>article.type-webinar .archive-content .archive-date {
	display: block;
	color: var(--Dark-Navy, #00244D);
	margin-bottom: -10px;
}

#content .ip-cat-posts>article.type-webinar .archive-content .ip-webinars-list-item-text-more {
	color: inherit;
	text-decoration: none;
}

#content .ip-cat-posts>article.type-webinar .archive-content .ip-webinars-list-item-text-more i {
	font-style: normal;
	font-size: 11px;
	margin-left: 7px;
}

#content .ip-cat-posts>article .archive-subtitle {
	color: var(--font-color-title);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

#content .ip-cat-posts>article .archive-subtitle a {
	color: inherit;
	text-decoration: none;
}

#content .ip-cat-posts>article .archive-text p {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 12px;
}

#content .ip-cat-posts>article .archive-text.show-full p {
	-webkit-line-clamp: initial;
}

#content .ip-cat-posts>article .archive-more {
	color: var(--blue);
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
	font-style: normal;
	text-decoration: none;
}

#content .ip-cat-posts>article .archive-more span {
	font-size: 10px;
	font-weight: 700;
	margin-left: 7px;
}

.ip-cat-posts>article.post-type-archive {
	width: calc(33.33% - 20px);
	background: transparent;
	border: 0px;
	border-radius: 0px;
}

#content .ip-cat-posts>article.post-type-archive .archive-thumbnail {
	border-radius: 12px;
	overflow: hidden;
}

#content .ip-cat-posts>article.post-type-archive .archive-content {
	display: flex;
	justify-content: space-between;
}

.ip-cat-posts>article.post-type-archive .archive-text {
	width: 81.5%;
}

.ip-cat-posts>article.post-type-archive .ip-content-tiles-item-icon {
	width: 30px;
	height: 30px;
	background: var(--yellow);
	border-radius: 50%;
	color: var(--blue);
	font-weight: 800;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	margin-top: 12px;
	font-style: normal !important;
}

/* make donation cta */
.ip-make-donation-cta {
	background: var(--font-color-title);
	color: #fff;
	text-align: center;
	padding: 70px 0px;
	position: relative;
	overflow: hidden;
}

.ip-make-donation-ribbon-1 {
	position: absolute;
	bottom: -80px;
	left: 40px;
	pointer-events: none;
}

.ip-make-donation-ribbon-1 img {
	max-width: 280px;
	height: auto;
}

.ip-make-donation-ribbon-2 {
	position: absolute;
	bottom: -586px;
	right: -33px;
	pointer-events: none;
}

.ip-make-donation-cta p {
	color: #bbc3cf;
	text-align: center;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	max-width: 460px;
	margin: 0px auto 35px;
}

#content .ip-make-donation-cta p {
	margin: 0px auto 35px;
}

.mfp-fullscreen .mfp-container {
    display: flex;
    justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
}

.mfp-fullscreen .ip-content-popup {
    max-width: 100%;
    height: 95%;
    overflow-y: scroll;
    padding: 50px 0 0;
}

.mfp-fullscreen .ip-content-popup-full {
    max-height: 100%;
    overflow-y: unset;
}


.ip-content-popup {
	position: relative;
	background: #FFF;
	padding: 50px 20px 50px 50px;
	width: auto;
	max-width: 1100px;
	margin: 20px auto;
	border-radius: 12px;
}

.ip-content-popup button.mfp-close {
	font-size: 52px;
	color: #8092A6;
	opacity: 1;
	padding: 0;
	width: auto;
	height: auto;
	padding: 12px 15px;
}

.ip-content-popup-inner {
	display: flex;
}

.ip-content-popup-left {
	margin-right: 65px;
}

.ip-content-popup-left img {
	width: 320px;
	height: 265px;
	border-radius: 12px;
	object-fit: cover;
}

.ip-content-popup-right {
	height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 65px;
}

.ip-content-popup-right::-webkit-scrollbar {
	width: 5px;
}

.ip-content-popup-right::-webkit-scrollbar-track {
	background: transparent
}

.ip-content-popup-right::-webkit-scrollbar-thumb {
	background-color: #E6E6E6;
	border-radius: 5px;
}

.ip-content-popup-right h2 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-size: 35px;
	line-height: 42px;
	color: #002469;
	margin-bottom: 25px;
}

.ip-content-popup-right p {
	font-size: 16px;
	line-height: 150%;
	color: #494949;
	margin-bottom: 30px;
}

.ip-content-popup-right h2 strong {
	display: block;
	font-size: 18px;
	color: #494949;
}

.ip-content-popup-full {
	width: 100%;
	margin-top: 16px;
	max-height: 600px;
	overflow-y: scroll;	
}


#content .ip-default h2.entry-title {
	font-size: 44px;
	font-weight: 700;
	color: var(--font-color-title);
	margin: 0px 0px 20px;
	line-height: 120%;
}

.ip-default {
	padding: 40px 0;
	font-size: 15px;
	line-height: 150%;
}

.ip-default a:not(.section-btn) {
	color: var(--font-color-title);
}

.ip-default ul.no-bullet {
	list-style: none !important;
	margin-left: 0 !important;
}

.ip-default ul.list-2-col {
	columns: 2;
}

/* */
.ip-tabs {
	margin-top: 60px;
}

.ip-tabs ul {
	list-style: none !important;
	margin: 0 !important;
}

.ip-tabs ul li {
	display: inline-block;
}

.ip-tabs ul li:not(:last-child) {
	margin-right: 15px;
}

.ip-tabs ul li a {
	display: block;
	background: #D7DDE5;
	text-decoration: none;
	font-weight: 600;
	font-size: 10.5px;
	line-height: 17px;
	text-transform: uppercase;
	color: var(--blue);;
	padding: 16px 30px;
	border-radius: 8px;
	transition: all .5s;
}

.ip-tabs ul li.is-active a, .ip-tabs ul li:hover a {
	background-color: var(--blue);;
	color: #fff;
}

.ip-st {	
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: var(--dark);
	padding: 45px 0;
}

.ip-st:first-child {
	padding-top: 20px;
}

.ip-st p.highlight {
	font-size: 18px; 
	color: #000;
}

.ip-st.light-blue-bg {
	background: #EEF4FF;
	padding: 100px 0;
}

.ip-st h2 {
	font-weight: 700;
	font-size: 33px;
	line-height: 40px;
	color: var(--blue);;
}

.ip-st-block-img {
	border-radius: 12px;
}

.ip-st-block-img.img-align-right {
	float: right;
	margin: 10px 0 50px 80px;
} 

.ip-st-block-img.img-align-left {
	float: left;
	margin: 10px 80px 50px 0;
} 

.ip-st-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0 60px;
}

.ip-st-card {
	width: calc(25% - 20px);
	background: #EEF4FF;
	border: 1px solid #D5DFF4;
	border-radius: 12px;
	padding: 5px 16px 15px;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #00244D;
	height: 230px;
}

.ip-st-card h3 {
	font-weight: 700;
	font-size: 16.5px;
	line-height: 20px;
	color: var(--blue);
	min-height: 38px;
}

.ip-st-card-more {
	font-weight: 500;
	font-size: 12px;
	line-height: normal;
	color: #00244D;
	text-decoration: none;
}

.ip-st-card-more i {
	font-style: normal !important;
	font-size: 9px;
	font-weight: 700;
	margin-left: 7px;
}

.ip-st-line-divider {
	height: 1px;
	background: #BACBDE;
	max-width: 1240px;
	margin: 0 auto;
}
/* */

.sarcoma-post-content {
	display: none;
}

.sarcoma-post-content.active {
	display: block;
}

.sarcoma-post-content .ip-st h3 {
	font-weight: 700;
    font-size: 30px;
    line-height: 40px;
	margin: 0.75em 0 0.80em;
    color: var(--blue);
}

@media (min-width: 992px) {
	.header-donate {
		margin-left: 22px;
	}

	.ip-cat-posts.ip-cat-list>article {
		width: 100%;
	}

	.ip-cat-posts.ip-cat-list>article .entry {
		display: flex;		
	}

	#content .ip-cat-posts.ip-cat-list>article .archive-thumbnail {
		width: 400px;
	}

	#content .ip-cat-posts.ip-cat-list>article .archive-thumbnail a {
		width: 100%;
		height: 100%;
	}

	#content .ip-cat-posts.ip-cat-list>article .archive-content {
		padding: 25px 40px;
	}

	#content .ip-cat-posts.ip-cat-list>article .archive-text p {
		-webkit-line-clamp: 4;
	}
}

#content .ip-cat-posts.ip-cat-list>article .archive-content .archive-date {
	display: block;
}

@media (max-width: 1500px) {

	.custom-container,
	.header-container,
	.footer-container {
		width: 85%;
	}
}

@media (max-width: 1366px) {

	.custom-container,
	.header-container {
		width: 90%;
	}

	.header-nav .hdrnav>li:not(:last-child) {
		margin-right: 25px;
	}
}

@media (max-width: 1280px) {

	.custom-container,
	.header-container,
	#inner-page-wrapper .container {
		width: 95%;
	}

	#inner-page-wrapper>.container {
		width: 100%;
	}

	.header-nav .hdrnav>li:not(:last-child) {
		margin-right: 10px;
	}
}

@media (max-width: 1199px) {
	.header-nav .hdrnav>li {
		font-size: 14px;
	}

	.ip-st-card h3 {
		word-break: break-all;
	}	
}

@media only screen and (max-width: 991px) {
	.header-top {
		display: none;
	}

	.header-nav {
		background: #fff;
		position: fixed;
		height: 100vh;
		top: 0;
		right: -100%;
		width: 90%;
		z-index: 1000;
		padding: 35px;
		transition: all .5s;
        overflow-y: auto;  /* Enable scrolling when content exceeds viewport height */
	}

	body.mobile-menu-open .header-nav {
		right: 0;
	}

	.header-nav .hdrnav {
		margin-top: 20px;
	}

	.header-nav .hdrnav>li {
		font-size: 16px;
		margin-bottom: 22px;
	}

	.header-nav .hdrnav {
		display: block;
	}

	.header-mobile-menu-toggle {
		display: block;
	}

	.header-donate {
		margin-left: auto;
	}

	/* temp */
	.header-nav .hdrnav>li:hover .menu-item-sub-panel,
	.header-nav .hdrnav>li:hover .menu-item-sub-panel::before {
		display: none;
	}

	.ip-container .header,
	body.archive.ip-container .header:not(.fixed) {
		position: relative;
	}

	.ip-banner {
		background: linear-gradient(rgb(245, 249, 255) 0%, rgb(225, 237, 255) 100%);
		padding: 40px;
		margin-top: 0;
	}

	.ip-banner canvas {
		display: none;
	}

	.ip-banner::before {
		display: none;
	}

	.ip-banner .container {
		text-align: center;
		position: relative;
		top: auto;
		left: auto;
		transform: translate(0px);
	}

	.ip-banner p#breadcrumbs {
		display: none;
	}

	.ip-banner p {
		max-width: 100%;
	}

	.inner {
		width: 100%;
	}

	#content-sidebar,
	#content-full {
		width: 100%;
	}

	.outer {
		width: 100%;
		min-width: 100%;
	}

	#content-sidebar #content {
		width: 100%;
	}

	.footer-top-col {
		width: 100%;
		text-align: center;
	}

	.footer-copyright {
		display: block;
		text-align: center;
		font-size: 12px;
	}

	.footer-smi {
		margin: 5px 22px;
	}

	.footer-contacts {
		margin: 25px auto;
	}

	.footer-contact:not(.footer-contact-media) {
		text-align: left;
		max-width: 220px;
		margin: 0px auto;
	}

	.footer-copyright-links a:not(:last-child)::after {
		margin: 0px 5px;
	}

	.header-container {
		width: 90%;
	}

	.ip-cat-short-intro .container {
		flex-wrap: wrap;
	}

	.ip-cat-short-intro-title,
	.ip-cat-short-intro-text {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.ip-cat-posts>article {
		width: calc(50% - 20px);
	}

	.ip-cat-ribbon-1,
	.ip-make-donation-ribbon-1 {
		bottom: -80px;
		left: 0px;
	}

	.ip-cat-ribbon-1 img,
	.ip-make-donation-ribbon-1 img {
		width: 200px;
		height: auto;
	}

	.ip-cat-ribbon-2,
	.ip-make-donation-ribbon-2 {
		right: 0px;
		bottom: -150px;
	}

	.ip-cat-ribbon-2 img,
	.ip-make-donation-ribbon-2 img {
		width: 400px;
		height: auto;
	}

	.custom-container,
	.header-container,
	#inner-page-wrapper .container {
		width: 90%;
	}

	#inner-page-wrapper > .container {
		width: 100%
	}

	.ip-content-popup-inner {
		flex-wrap: wrap;
	}

	.ip-content-popup-left {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.ip-content-popup-left img {
		width: 100%;
	}

	.ip-content-popup-right {
		padding-right: 20px;
	}

	.ip-content-popup {
		padding: 50px 20px;
	}

	.ip-default ul.list-2-col {
		columns: 1;
	}

	.ip-st-block-img.img-align-right, .ip-st-block-img.img-align-left  {
		float: none;
		margin: 10px 0 50px;
	} 

	.ip-tabs ul li {
		display: block;
		margin: 10px 0 !important;
	}

	.ip-st-card {
		width: 100%;
	}  	

	.global-signup-content form input[type="text"], .global-signup-content form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }	
}

@media only screen and (max-width: 767px) {
	.ip-banner .container {
		width: 100%;
	}

	.header-logo-text {
		font-size: 25px;
	}

	.header-logo img {
		max-width: 100px;
	}

	.header-donate .section-btn {
		font-size: 12px;
		padding: 12px 20px;
	}

	.header-mobile-menu-toggle {
		margin-left: 20px;
	}

	.section-title :is(h1, h2) {
		font-size: 32px;
	}

	.ip-cat-search-donate .custom-container,
	.ip-cat-tabs-filters .custom-container {
		flex-wrap: wrap;
	}

	.ip-cat-search,
	.ip-cat-donate,
	.ip-cat-tabs,
	.ip-cat-filters {
		width: 100%;
		text-align: center;
		margin: 0px;
	}

	.ip-cat-search .section-btn,
	.ip-cat-donate .section-btn,
	.ip-cat-search input[type="text"] {
		width: 100%;
		margin: 5px 0px;
	}

	.ip-cat-ribbon-1,
	.ip-cat-ribbon-2,
	.ip-make-donation-ribbon-1,
	.ip-make-donation-ribbon-2 {
		display: none;
	}
}

@media (max-width: 600px) {

	.ip-cat-posts>article,
	.ip-cat-posts>article.post-type-archive {
		width: 100%;
	}

	#content .ip-cat-posts>article.post-type-archive .archive-content {
		flex-wrap: wrap;
		justify-content: center;
	}

	.ip-cat-posts>article.post-type-archive .archive-text {
		width: 100%;
	}

	.ip-cat-posts {
		max-width: 290px !important;
	}

	.ip-cat-tabs ul li {
		display: block;
		margin: 10px 0px !important;
	}

	.ip-banner h1 {
		font-size: 40px;
	}

	.ip-banner p {
		font-size: 18px;
	}
}

@media (max-width: 390px) {
	.section-title :is(h1, h2) {
		max-width: 300px;
		margin: 0px auto 20px !important;
	}

	/* .global-signup-content form input[type="text"] {
		margin-bottom: 20px;
	} */

	.global-signup-content .su-field {
		width: 100%;
	}

	.ip-cat-short-intro-title {
		font-size: 30px;
	}
}