@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
:root{
    --mainColor         : #27AAE1;
    --buttonMainColor   : #27AAE1;
    --buttonHoverColor  : #0072bc;
}

/* --------------------Reset css------------------ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	font-size: inherit;
	background: transparent;
	border: 0;
	outline: none;
	-webkit-font-smoothing: subpixel-antialiased;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
	display: block;
}

/* ------------------Text-level semantics------------------ */
sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* ------------------P------------------ */
p {
	margin-top: 0;
	margin-bottom: 1rem;
}

/* ------------------Embedded content------------------ */
audio,
video,
iframe {
	display: block;
	max-width: 100%;
}

ul,
ol,
li{
	list-style: none;
}

/* ------------------Anchor/Link------------------ */
a, a:not([href]){
	text-decoration: none;
    transition: all 0.3s ease 0s;
}
a:hover, a:not([href]):hover{
	text-decoration: none;
}

body{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #3a4c56;
    top: 0 !important;
}
body.mobile-menu-open{
    overflow: hidden;
}

.container{
    max-width: 1440px;
}


/**
* Inputs
*/
input[type=text],
input[type=url],
input[type=email],
input[type=tel],
textarea{
    width: 100%;
    border: 1px solid #cbcbcb;
    background-color: #ffffff;
	padding: 12px 18px;
    font-size: 13px;
    line-height: 1;
	color: #3a4c56;
	outline: none;
}
input[type=text]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea {
	color: #3a4c56;
}
input[type=text]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea {
	color: #3a4c56;
}
input[type=text]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea {
	color: #3a4c56;
}
input[type=text]:-moz-placeholder ,
input[type=url]:-moz-placeholder ,
input[type=email]:-moz-placeholder ,
input[type=tel]:-moz-placeholder ,
textarea{ 
	color: #3a4c56;
}

input[type=text]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus{
	border-color: #007dc5;
}


/* ------------------Headings------------------ */
h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
	font-weight: normal;
    line-height: 1.2;
	color: var(--maincolor);
}

h1,.h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
}

h2,.h2 {
    font-size: 30px;
    color: #007dc5;
    font-weight: 300;
}

h3,.h3 {
    font-size: 25px;
    color: #007dc5;
    font-weight: normal;
}

h4,.h4 {
    font-size: 20px;
    font-weight: normal;
}

h5,.h5 {
	font-size: 15px;
    font-weight: bold;
}

h6,.h6 {
	font-size: 1rem;
}

.white-heading h1, 
.white-heading h2, 
.white-heading h3, 
.white-heading h4, 
.white-heading h5 { 
    color: #ffffff;
}

.content-cover ul{
    margin-left: 12px;
    padding: 0;
    margin-bottom: 10px;
    /* list-style:disc; */
}
.content-cover ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: -12px;
    width: 3px;
    height: 3px;
    background-color: #007dc5;
    border-radius: 2px;
}
.content-cover ul li {
    position: relative;
}

.content-cover ul li a{
    color: #3a4c56;
}
.content-cover ul li a:hover{
    color: #007dc5;
}

/**
* Button
*/
.button, .button-new, button, input[type=submit]{
    background-color: var(--buttonMainColor);
    padding: 8px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    border: none;
    min-width: 106px;
    transition: all 0.3s ease 0s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}
.button:hover, .button-new:hover, button:hover, input[type=submit]:hover{
    background-color: var(--buttonMainColor);
    color: #ffffff;
}

:root{
    --headerHeight : 134px;
}

.content-cover.scrolled{
    padding-top: var(--headerHeight);
}

/**
* Header
*/
header.main-header {
    background-color: #ffffff;
    transition: all 0.3s ease 0s;
}
header.main-header.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    /* animation: smoothScroll 0.3s forwards; */
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
header.main-header .header-top{
    background-color: #ffffff;
    position: relative;
    z-index: 3;
}
body:not(.page-template-template-home) header.main-header .header-top::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 1;
    background-color: #cccccc;
    transition: all 0.3s ease 0s;
}
body:not(.page-template-template-home) header.main-header.sticky .header-top:before{
    opacity: 0;
}
header.main-header .header-box{
    display: flex;
    height: var(--headerHeight);
    align-items: center;
    position: relative;
}
header.main-header .header-left{
    width: 234px;
}
header.main-header .header-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
header.main-header .header-logo a{
    max-width: 100%;
    max-height: 100%;
    display: flex;
}
header.main-header .header-logo a img{
    max-width: 100%;
    max-height: 100%;
}
header.main-header .header-right{
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    height: 100%;
}
header.main-header .header-right-box{
    height: 100%;
    display: flex;
    flex-direction: column;
}
header.main-header .header-right-top{
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #cccccc;
    position: relative;
}
header.main-header .header-right-top::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #27aae1;
}
header.main-header .custom-search button{
    border: none;
}
header.main-header .header-search{
    display: flex;
    align-items: center;
}
header.main-header .header-search form.search{
    height: 34px;
    width: 230px;
    position: relative;
    float: right;
}
header.main-header .header-search form.search input[type=text] {
    padding: 4px 38px 2px 8px;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid #0e9eda;
    border-radius: 5px;
    width: 230px;
    height: 34px;
    opacity: 0;
    display: none;
}
header.main-header .header-search form.search input[type=text].search-open {
    opacity: 1;
    display: block;
}
header.main-header .header-search form.search .btn-search {
    font-size: 18px;
    position: absolute;
    background: transparent;
    right: 8px;
    top: 8px;
    width: 20px;
    height: 20px;
    color: #b0b2b4;
    background-image: url(../images/search-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: unset;
    min-width: unset;
    padding: unset;
    outline: none;
}
header.main-header .header-search form.search button[type=submit].btn-search{
    display:none;
}
header.main-header .header-search form.search.search-form-open button[type=button].btn-search{
    display:none;
}
header.main-header .header-search form.search.search-form-open button[type=submit].btn-search{
    display:block;
}
header.main-header .header-language{
    margin-left: 20px;
    display: flex;
    align-items: center;
}
.goog-te-gadget-icon {
    display: none !important;
}
.skiptranslate iframe {
    display: none !important;
}
.goog-te-gadget-simple {
    height: 30px;
    display: table-cell !important;
    vertical-align: middle;
    border: 1px solid #dfe1ec !important;
    width: 127px;
    height: 30px;
}
.goog-te-gadget-simple span{
    /* width: 127px; */
}
.goog-te-gadget-simple span a span{
}
.goog-te-gadget-simple span a {
    position: relative;
    padding-right: 20px;
    width: 116px;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
}
.goog-te-gadget-simple span a span:first-child{
    width: 100%;
    display: inline-block;
    font-size: 0;
    color: #3d3d3d;
    padding-left: 3px;
}
.goog-te-gadget-simple span a span:first-child::before{
    content:'English';
    font-size: 13px;
}
.goog-te-gadget-simple span a span:nth-of-type(2) {
    border: none !important;
}
.goog-te-gadget-simple span a span:last-child {
    font-size: 0;
}
.people-card-cta{
    background-color: #edeff0;
    padding:20px !important;
    margin:20px;
    justify-content:space-between;
}

.people-card-cta a {
    font-size: 14px;
    /* min-width: 180px; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: var(--buttonMainColor);
    padding: 13px 18px;
    color: #ffffff;
    font-weight: 300;
}
.goog-te-gadget-simple span a span:last-child:before {
    /* font-family: 'FontAwesome';
    content: "\f107";
    position: absolute;
    top: -2px;
    right: 3px;
    font-size: 24px;
    line-height: 24px;
    color: #3a4c56; */
    content: "\61";
    font-family: "inghaminstitute" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #3a4c56;
    font-size: 24px;
    position: absolute;
    top: -1px;
    right: -3px;
}
header.main-header .header-donate-cta{
    margin-left: 20px;
}
header.main-header .header-donate-cta a{
    background-color: var(--buttonMainColor);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 130px;
    min-height: 40px;
    font-size: 14px;
    border-radius: 40px;
    font-weight: 500;
}
header.main-header .header-donate-cta a:hover{
    background-color: var(--buttonMainColor);
}
header.main-header .mbnav{
    display: none;
}

/* Desktop Header Menu */
header.main-header ul.desktop-menu{
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}
header.main-header ul.desktop-menu > li{
    list-style: none;
    padding: 0;
    margin: 0;
}
header.main-header ul.desktop-menu > li > a{
    display: flex;
/*    font-size: 15px;*/
    color: #3a4c56;
    padding: 15px 20px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}
header.main-header ul.desktop-menu > li:hover > a{
    background-color: #27aae1;
    color: #ffffff;
}
header.main-header ul.desktop-menu > li.menu-item-has-children:hover > a::after{
    display: block;
    opacity: 1;
}
header.main-header ul.desktop-menu:hover > li > a, header.main-header ul.desktop-menu:hover > li.current_page_item > a{
    background-color: #ffffff;
    color: #3a4c56;
    box-shadow: unset;
}
header.main-header ul.desktop-menu:hover > li.current_page_item > a::after{
    display: none;
}
header.main-header ul.desktop-menu:hover > li.menu-item-has-children:hover > a::after{
    display: block;
    opacity: 1;
}
header.main-header ul.desktop-menu > li.menu-item-has-children:hover + li.current_page_item > a::after{
    opacity: 0;
}
header.main-header ul.desktop-menu:hover > li:hover > a{
    background-color: #27aae1;
    color: #ffffff;
}
header.main-header ul.desktop-menu > li.current_page_item > a{
    background-color: #27aae1;
    color: #ffffff;
}
header.main-header ul.desktop-menu > li > a::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    display: none;
    background-color: #27aae1;
    clip-path: polygon(0 0, 100% 0, 27% 100%, 0 16%);
    transition: display 0s ease 0s, opacity 0.3s ease 0s;
    opacity: 0;
}
header.main-header ul.desktop-menu > li.current_page_item > a::after{
    display: block;
    opacity: 1;
}
header.main-header ul.desktop-menu > li > ul {
    position: absolute;
	width: 578px;
    max-height: calc(100vh - var(--headerHeight) - 75px);
    /* max-height: 50vh; */
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 37px 0 2px 0;
	margin: 0 15px;
	background: #edeff0;
	left: -9999px;
    opacity: 0;
    transition: left 0s ease 0.1s, opacity 0.3s ease 0s;
    z-index: -1;
}
header.main-header ul.desktop-menu > li.menu-large > ul{
	width: 925px;
}
header.main-header ul.desktop-menu > li.two-column > ul {
	width: 840px;
}
header.main-header ul.desktop-menu > li.open-menu-for-test > ul {
    left: unset;
    right: 0;
	opacity: 1;
}
header.main-header ul.desktop-menu > li:hover > ul{
    left: unset;
    right: 0;
	opacity: 1;
	transition: left 0s ease 0s, opacity 0.3s ease 0s;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container{
    display: flex;
    flex-direction: column;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-right: 30px;
}
header.main-header ul.desktop-menu .mCSB_scrollTools{
    right: 8px;
    margin-bottom: 37px;
}
header.main-header ul.desktop-menu .mCSB_scrollTools .mCSB_draggerRail{
    background-color: #edeff0;
}
header.main-header ul.desktop-menu .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background-color: #e2e2e2;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li{
	display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 40px 0 0;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > a{
    color: #007dc5;
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    padding: 9px 10px 9px 72px;
    background-color: #e2e2e2;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > a:hover{
    border-color: #27aae1;
    color: #27aae1;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul{
    display: flex;
    flex-wrap: wrap;
    padding: 8px 0 22px 72px;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li.two-column-sub > ul{
    max-width: 66.66%;
    width: 100%;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul a{
    display: flex;
    color: #3a4c56;
    font-size: 15px;
    padding: 4px 0px;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul a:hover{
    color: #27aae1;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul > li{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
}
header.main-header ul.desktop-menu > li.two-column > ul .mCSB_container > li > ul > li{
    width: 50%;
}
header.main-header ul.desktop-menu > li.menu-large > ul .mCSB_container > li > ul > li{
    width: 33%;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li.two-column-sub > ul > li{
    width: 50%;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul > li.menu-item-has-children > a{
    font-weight: 800;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul > li.menu-item-has-children > a:hover{
    color: #3a4c56;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul > li > ul{
    display: flex;
    flex-direction: column;
    padding: 0;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul > li.menu-item-has-children > ul{
    padding: 5px 0 0 0;
}
header.main-header ul.desktop-menu > li > ul .mCSB_container > li > ul > li > ul li{
    display: flex;
    flex-direction: column;
}
table td a {
    color: #3a4c56;
}
table td a:hover{
    color: #007dc5;
}
.current-vaccancies-section{
    padding-left: 60px;
}

.people-detail .current-vaccancies-section .people-detail-left {
    max-width:100%;
    width:100%;
}

.people-detail .current-vaccancies-section .people-detail-left table {
  border-collapse: separate; /* must be separate */
  /* border-spacing: 5px;      /* adjust the gap size */ */
}
/*.page-template-template-research .greyed-out {
    opacity: 0.5;
    pointer-events: none;
}
*/
/**
* Home Banner
*/
.home-banner-et{
    width: 100%;
}
.home-banner-et .home-banner-et-box{
    width: 100%;
}
.home-banner-et .home-banner-et-slide-bg{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 750px;
}
.home-banner-et .home-banner-et-content{
    max-width: 530px;
    padding-bottom: 120px;
}
.home-banner-et .home-banner-et-content .home-banner-et-content-title h2{
    font-weight: 300;
    font-size: 63px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}
.home-banner-et .home-banner-et-content .home-banner-et-content-link{
    padding-top: 30px;
    display: flex;
}
.home-banner-et .home-banner-et-content .home-banner-et-content-link a{
    width: 220px;
    padding: 13px 16px;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-align: center;
    font-weight: 300;
}
.home-banner-et .home-banner-et-content .home-banner-et-content-link a:hover{
    background-color: #ffffff;
    color: #3a4c56;
}

/**
* Home Title With Description
*/
.title-with-description{
    width: 100%;
    background-color: #ffffff;
    display: flex;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 90px;
    padding-bottom: 96px;
}
.title-with-description h2{
    font-weight: 300;
    font-size: 34.41px;
    max-width: unset;
    text-align: center;
    color: #007DC5;
    margin-bottom: 22px;
}
.title-with-description p{
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    color: #3a4c56;
}

/**
* Home Title With Fifty Fifty Block
*/
.title-with-fifty-fifty-block{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.title-with-fifty-fifty-block h2{
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 26px !important;
    color: #007dc5;
}
.title-with-fifty-fifty-block .title-wiht-cta{
    background-color: #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px 20px 42px;
    min-height: 162px;
    position: relative;
    overflow: hidden;
}
.title-with-fifty-fifty-block .view-all-box .title-wiht-cta{
    background-color: unset;
    color: #3a4c56;
    padding: 20px 0px 20px 42px;
    min-height: 162px;
}
.title-with-fifty-fifty-block .title-wiht-cta::before{
    content: '';
    position: absolute;
    background-color: #007dc5;
    transform: rotate(65deg);
    height: 360%;
    width: 100%;
    left: -37%;
    z-index: 1;
}
.title-with-fifty-fifty-block .view-all-box .title-wiht-cta::before{
    display: none;
}
.title-with-fifty-fifty-block .title-wiht-cta::after{
    content: '';
    position: absolute;
    transform: rotate(-73deg);
    height: 360%;
    width: 100%;
    left: -29%;
    z-index: 0;

    background: rgb(76,181,184);
    background: -moz-linear-gradient(107deg, rgba(76,181,184,1) 0%, rgba(110,191,145,1) 100%);
    background: -webkit-linear-gradient(107deg, rgba(76,181,184,1) 0%, rgba(110,191,145,1) 100%);
    background: linear-gradient(107deg, rgba(76,181,184,1) 0%, rgba(110,191,145,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4cb5b8",endColorstr="#6ebf91",GradientType=1); 
}
.title-with-fifty-fifty-block .view-all-box .title-wiht-cta::after{
    display: none;
}
.title-with-fifty-fifty-block .title-with-fifty-fifty-block-row .wpb_column:nth-child(odd) .title-wiht-cta{
    margin-right: 12px;
}
.title-with-fifty-fifty-block .title-with-fifty-fifty-block-row .wpb_column:nth-child(even) .title-wiht-cta{
    margin-left: 12px;
}
.title-with-fifty-fifty-block .title-wiht-cta .twc-left-title{
    flex-grow: 1;
    position: relative;
    max-width: 360px;
    font-size: 21px;
    font-weight: 300;
    z-index: 2;
}
.title-with-fifty-fifty-block .view-all-box .title-wiht-cta .twc-left-title{
    font-size: 20px;
    max-width: 376px;
}
.title-with-fifty-fifty-block .title-wiht-cta .twc-right-cta{
    position: relative;
    z-index: 2;
}
.title-with-fifty-fifty-block .title-wiht-cta .twc-right-cta a{
    background-color: var(--buttonMainColor);
    font-size: 14px;
    color: #ffffff;
    padding: 11px 18px;
    font-weight: 300;
}
.title-with-fifty-fifty-block .title-wiht-cta .twc-right-cta a:hover{
    background-color: var(--buttonMainColor);
}
.title-with-fifty-fifty-block .view-all-box .title-wiht-cta .twc-right-cta a{
    font-size: 16px;
    min-width: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--buttonMainColor);
    padding: 13px 18px;
}
.title-with-fifty-fifty-block .view-all-box .title-wiht-cta .twc-right-cta a:hover{
    background-color: var(--buttonMainColor);
}

/**
* Home Title Description With CTA
*/
.title-description-with-cta{
    background: rgb(170,200,58);
    background: -moz-linear-gradient(90deg, rgba(170,200,58,1) 0%, rgba(30,162,184,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(170,200,58,1) 0%, rgba(30,162,184,1) 100%);
    background: linear-gradient(90deg, rgba(170,200,58,1) 0%, rgba(30,162,184,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aac83a",endColorstr="#1ea2b8",GradientType=1);
    color: #ffffff;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
    padding-bottom: 76px;
}
.title-description-with-cta::before{
    content: '';
    background-color: #007dc5;
    width: 720px;
    height: 350px;
    position: absolute;
    left: -240px;
    bottom: -170px;
    transform: rotate(31deg);
}
.title-description-with-cta::after{
    content: '';
    background-color: #007dc5;
    width: 720px;
    height: 350px;
    position: absolute;
    right: -120px;
    top: -280px;
    transform: rotate(13deg);
}
.title-description-with-cta .block-title{
    display: flex;
    justify-content: center;
    padding-top: 50px;
}
.title-description-with-cta .block-title.icon-heart::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-image: url('../images/heart.png');
    width: 44px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.title-description-with-cta .block-title h2{
    font-size: 36px;
    font-weight: 300;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.title-description-with-cta .block-title h2::after{
    content: '';
    position: absolute;
    width: 100%;
    max-width: 160px;
    height: 5px;
    background-color: #ffffff40;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
}
.title-description-with-cta .title-description-with-cta-content{
    padding-bottom: 16px;
}
.title-description-with-cta .title-description-with-cta-content h5{
    max-width: 374px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}
.title-description-with-cta .title-description-with-cta-content p{
    font-size: 15px;
    max-width: 520px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.2;
}
.title-description-with-cta .block-donate-cta a{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: var(--buttonMainColor);
    padding: 12px 40px;
    border-radius: 40px;
}
.title-description-with-cta .block-donate-cta a:hover{
    background-color: var(--buttonMainColor);
}

/**
* Home Title Description CTA With Right Image
*/
.title-description-cta-with-right-image.tdcwri{
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #edeff0;
}
.tdcwri p{
    margin: 0;
}
.tdcwri .tdcwri-right-image{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}
.tdcwri .tdcwri-right-image > div{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 67%;
    padding: 0;
    position: relative;
}
.tdcwri .tdcwri-right-image > div::before{
    content: '';
    background-color: #edeff0;
    clip-path: polygon(0 0, 100% 66%, 72% 100%, 0% 100%);
    position: absolute;
    left: -1px;
    height: 101%;
    width: 120px;
}
.tdcwri .tdcwri-right-image > div::after{
    content: '';
    clip-path: polygon(0 0, 100% 0, 100% 100%, 61% 100%, 43% 92%, 78% 73%);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100px;
    mix-blend-mode: multiply;
    background: rgb(123,195,132);
    background: -moz-linear-gradient(175deg, rgba(123,195,132,1) 0%, rgba(70,179,190,1) 100%);
    background: -webkit-linear-gradient(175deg, rgba(123,195,132,1) 0%, rgba(70,179,190,1) 100%);
    background: linear-gradient(175deg, rgba(123,195,132,1) 0%, rgba(70,179,190,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7bc384",endColorstr="#46b3be",GradientType=1); 
}
.tdcwri .tdcwri-left-content{
    position: relative;
    z-index: 2;
}
.tdcwri .tdcwri-left-content > div{
    width: 34%;
}
.tdcwri.vc_row-has-fill > .vc_column_container > .vc_column-inner{
    padding: 0;
}
.tdcwri .vc_row-has-fill{
    background-repeat: no-repeat;
    background-position: right;
}
.tdcwri .vc_row-has-fill .vc_column-inner{
    padding: 0 !important;
}
.tdcwri .vc_row-has-fill > div > .vc_column-inner{
    position: relative;
}
.tdcwri .tdcwri-box .wpb_wrapper{
    display: flex;
    flex-direction: column;
    max-width: 470px;
    min-height: 386px;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}
.tdcwri .tdcwri-box .wpb_wrapper h2{
    color: #007dc5;
    font-weight: 300;
    font-size: 30px;
    position: relative;
    padding-bottom: 40px;
}
.tdcwri .tdcwri-box .wpb_wrapper h2::after{
    content: '';
    position: absolute;
    width: 100%;
    max-width: 160px;
    height: 5px;
    background-color: #007dc540;
    left: 0;
    bottom: 20px;
}
.tdcwri .tdcwri-box .wpb_wrapper p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #3a4c56;
    padding-bottom: 30px;
}
.tdcwri .tdcwri-box .wpb_wrapper p:empty{
    display: none;
}
.tdcwri .tdcwri-box .wpb_wrapper p a{
    background-color: var(--buttonMainColor);
    font-size: 14px;
    color: #ffffff;
    padding: 11px 18px;
    font-weight: 300;
}
.tdcwri .tdcwri-box .wpb_wrapper p a:hover{
    background-color: var(--buttonMainColor);
}

/**
* Latest News And Events
*/
.latest-news-and-events.lnae{
    padding-bottom: 20px;
}
.latest-news-and-events.lnae p:empty{
    display: none;
}
.lnae h3{
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 26px !important;
    color: #007dc5;
}
.lnae .latest-news-and-events-box{
    padding-bottom: 30px;
    background-color: #fff;
}
.lnae .lnae-col:nth-child(1){
    padding-right: 12px;
}
.lnae .lnae-col:nth-child(2){
    padding-left: 12px;
    padding-right: 12px;
}
.lnae .lnae-col:nth-child(3){
    padding-left: 12px;
    padding-right: 12px;
}
.lnae .lnae-thumbnail{
    max-width: 100%;
    height: 262px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lnae .lnae-thumbnail a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lnae .lnae-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lnae .lnae-date{
    font-size: 12px;
    font-weight: 500;
    color: #1f1f1f;
    padding: 12px 0px 4px 0px;
}
.lnae .lnae-title{
    line-height: 1.2;
    padding: 4px 0px;
}
.lnae .lnae-title a{
    font-size: 16px;
    font-weight: 400;
    color: #007dc5;
}
.lnae .lnae-excerpt{
    font-size: 14px;
    font-weight: 400;
    color: #3a4c56;
    padding: 5px 0px;
    line-height: 1.2;
}
.lnae .lnae-form{
    width: 100%;
    padding-left: 50px;
    padding-top: 40px;
}
.lnae .lnae-form h6{
    color: #007dc5;
    font-size: 18px;
    padding-bottom: 12px;
}
.lnae .lnae-form p{
    font-size: 14px;
    margin-bottom: 16px;
}
.lnae .lnae-form .wpcf7{
    display: flex;
    flex-direction: column;
    position: relative;
}
.lnae .lnae-form .newsletter_fields p{
    display:flex;
    flex-direction:row;
}

.lnae .lnae-form .wpcf7 *{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lnae .lnae-form .wpcf7 .wpcf7-form p{
    align-items: flex-start;
}

.tdcwri .vc_column_container{
  padding-left: 15px;
  padding-right: 15px;
}

.lnae .vc_column_container{
  padding-left: 15px;
  padding-right: 15px;
}

.lnae .lnae-form .wpcf7 .wpcf7-form .wpcf7-not-valid-tip{
    font-size: 12px;
}
.lnae .lnae-form .wpcf7 input[type=submit]{
    margin-top: 18px;
}
.lnae .lnae-form .wpcf7 .wpcf7-form .wpcf7-response-output{
    font-size: 12px;
    padding: 10px 20px;
    border-width: 1px;
    margin: 0;
    line-height: 1.5;
}
.lnae .lnae-form .wpcf7 .wpcf7-form .wpcf7-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translateY(-50%) translateX(-50%);
}

/* Footer */
footer.main-footer .footer-top{
    color: #3a4c56;
    background: rgb(237,239,240);
    background: -moz-linear-gradient(90deg, rgba(237,239,240,1) 0%, rgba(237,239,240,1) 50%, rgba(58,76,86,1) 50%, rgba(58,76,86,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(237,239,240,1) 0%, rgba(237,239,240,1) 50%, rgba(58,76,86,1) 50%, rgba(58,76,86,1) 100%);
    background: linear-gradient(90deg, rgba(237,239,240,1) 0%, rgba(237,239,240,1) 50%, rgba(58,76,86,1) 50%, rgba(58,76,86,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#edeff0",endColorstr="#3a4c56",GradientType=1); 
}
footer.main-footer .footer-top .container{
    background-color: #edeff0;
}
footer.main-footer .footer-top ul{
    padding: 40px 0;
    margin: 0;
}
footer.main-footer .footer-top ul li{
    margin-top: 12px;
    margin-bottom: 12px;
}
footer.main-footer .footer-top a{
    color: #3a4c56;
    font-size: 16px;
    font-weight: 400;
}
footer.main-footer .footer-top .footer-last-col a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
footer.main-footer .footer-top a:hover{
    color: #007dc5;
}
footer.main-footer .footer-top .footer-last-col{
    display: flex;
    justify-content: flex-end;
}
footer.main-footer .footer-top .footer-last-box{
    display: flex;
    position: relative;
    /* max-width: 260px; */
    max-width: calc(100% - 70px);
    width: 100%;
    background-color: #3a4c56;
    margin-right: -15px;
    padding: 50px 15px 40px 0;
    flex-direction: column;
    align-items: flex-end;
}
footer.main-footer .footer-top .footer-last-box::before{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    right: calc(100% - 1px);
    background-color: #3a4c56;
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 37% 100%, 0 79%);
}
footer.main-footer .footer-top .footer-address-col{
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    
}
/*footer.main-footer .footer-top .footer-address-col.top-col-address{
    align-items: center;
}*/
footer.main-footer .footer-last-col .footer-address-col{
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    color: #fff;
    max-width: 200px;
    width: calc(100% - 1px);
}
footer.main-footer .footer-top .footer-address-col .footer-col-title{
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}
footer.main-footer .footer-top .footer-address-col a{
    padding: 3px 0;
}
footer.main-footer .footer-top .footer-address-col a.footer-mail{
    color: #007dc5;
    text-decoration: underline;
}
footer.main-footer .footer-top .footer-address-col span.footer-address{
    font-size: 16px;
    font-weight: 400;
    padding-top: 6px;
}
footer.main-footer .footer-top .footer-address-col span.footer-badge{
    padding-top: 16px;
}
footer.main-footer .footer-top .footer-last-box a.footer-contact-cta{
    background-color: var(--buttonMainColor);
    font-size: 14px;
    color: #ffffff;
    padding: 9px 18px;
    max-width: 204px;
    width: calc(100% - 1px);
    border: 1px solid #ffffff;
    text-align: center;
}
footer.main-footer .footer-top .footer-last-box a.footer-contact-cta:hover{
    background-color: var(--buttonMainColor);
}
footer.main-footer .footer-top .footer-last-box a.the-spot-intranet-cta{
    font-size: 14px;
    color: #ffffff;
    padding: 9px 18px;
    max-width: 204px;
    width: calc(100% - 1px);
    border: 1px solid #ffffff;
    text-align: center;
    margin-top: 18px;
}
footer.main-footer .footer-top .footer-last-box a.the-spot-intranet-cta:hover{
    background-color: #ffffff;
    color: #29353b;
}
footer.main-footer .footer-bottom .footer-last-box ul{
    padding: 18px 0 0 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
footer.main-footer .footer-bottom .footer-last-box ul li{
    padding: 0;
    margin: 0;
}
footer.main-footer .footer-bottom .footer-last-box ul li span{
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-left: 16px;
    padding-top: 3px;
    transition: all 0.3s ease 0s;
}
footer.main-footer .footer-bottom .footer-last-box ul li a span.icon-facebook{
    background-color: #4173b9;
}
footer.main-footer .footer-bottom .footer-last-box ul li a:hover span.icon-facebook{
    background-color: #ffffff;
    color: #4173b9;
}
footer.main-footer .footer-bottom .footer-last-box ul li a span.icon-twitter{
    background-color: #63cdf1;
}
footer.main-footer .footer-bottom .footer-last-box ul li a:hover span.icon-twitter{
    background-color: #ffffff;
    color: #63cdf1;
}
footer.main-footer .footer-bottom .footer-last-box ul li a span.icon-linkedin{
    background-color: #2368b2;
}
footer.main-footer .footer-bottom .footer-last-box ul li a:hover span.icon-linkedin{
    background-color: #ffffff;
    color: #2368b2;
}
footer.main-footer .footer-bottom-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer.main-footer .footer-bottom{
    background-color: #ffffff;
}
footer.main-footer .footer-bottom .footer-bottom-left{
    font-size: 13px;
    padding-top: 30px;
    display: flex;
    padding-bottom: 10px;
}
footer.main-footer .footer-bottom .copyright-info{
    max-width: 260px;
    display: inline;
    line-height: 2;
    margin-top: -4px;
}
footer.main-footer .footer-bottom .abn-info{
    margin-left: 24px;
    display: flex;
}
footer.main-footer .footer-bottom ul.footer-bottom-menu{
    display: flex;
    padding: 0;
    margin-left: 40px;
}
footer.main-footer .footer-bottom ul.footer-bottom-menu li{
    display: flex;
    padding: 0 14px;
    border-left: 1px solid #3a4c56;
    margin-top: 5px;
    line-height: 0.8;
}
footer.main-footer .footer-bottom ul.footer-bottom-menu li:first-child{
    border-left: unset;
}
footer.main-footer .footer-bottom ul.footer-bottom-menu li a{
    display: flex;
    color: #3a4c56;
    font-weight: 400;
}
footer.main-footer .footer-bottom ul.footer-bottom-menu li a:hover{
    color: #007dc5;
}
footer.main-footer .footer-bottom-right{
    width: 210px;
}
footer.main-footer .footer-donate-cta{
    max-width: 210px;
    width: 100%;
    background-color: var(--buttonMainColor);
    color: #ffffff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
    border-radius: 40px;
    font-weight: 500 !important;
    padding: 10px !important;
}
footer.main-footer .footer-donate-cta:hover{
    background-color: var(--buttonMainColor);
}

/* Loading Spinner */
.loading-spinner-et {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: #20222680;
	z-index: 999;
}
.loading-spinner-et .spinner-et {
    position: absolute;
	left: 50%;
	top: 50%;
    width: 50px;
	height: 50px;
	margin: 0 auto;
	transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.loading-spinner-et .spinner-et span{
    width: calc(50% - 3px);
    height: calc(50% - 3px);
    animation: spinner-et 1s linear infinite;
}
.loading-spinner-et .spinner-et span:nth-child(1){
    background-color: #cadb2b;
}
.loading-spinner-et .spinner-et span:nth-child(2){
    background-color: #29abdf;
    animation-delay: 0.5s;
}
.loading-spinner-et .spinner-et span:nth-child(3){
    background-color: #cadb2b;
    margin-top: 6px;
    animation-delay: 0.5s;
}
.loading-spinner-et .spinner-et span:nth-child(4){
    background-color: #29abdf;
    margin-top: 6px;
}
@keyframes spinner-et {
	0%,
	100% {
		background-color: #cadb2b;
	}
	50% {
		background-color: #29abdf;
	}
}

/* Research Tab Section */
.research-tab{
    width: 100%;
}
.research-tab .research-tab-box{
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}
.research-tab .research-tab-search{
    padding-bottom: 15px;
}
.research-tab .research-tab-search > div{
    justify-content: flex-end;
}
.research-tab .research-tab-search-box{
    display: flex;
    width: 100%;
}
.research-tab .research-tab-search-box form{
    display: flex;
    width: 100%;
}
.research-tab .research-tab-search-box form input[type="text"]{
    width: 100%;
}
.research-tab .research-tab-title-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 320px;
    color: #ffffff;
    padding-bottom: 40px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.research-tab .research-tab-title-box:hover::before{
    top: 0%;
    height: calc(100% - 40px);
    opacity: 1;
}
.research-tab .research-tab-title-box::before{
    content: '';
    width: 100%;
    height: 0%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    background-color: #48b4bc;
    transition: all 0.3s ease 0s;
    z-index: 1;
}
.research-tab .research-tab-title-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background-color: #3a4c56;
    display: flex;
    overflow: hidden;
    z-index: 0;
}
.research-tab .research-tab-title-bg::before{
    content: '';
    position: absolute;
    left: 0;
    clip-path: polygon(0 0, 63% 31%, 25% 100%, 0 100%);
    height: 500px;
    width: 120px;
    z-index: 0;
    opacity: 0.4;
    
    background: rgb(147,202,104);
    background: -moz-linear-gradient(180deg, rgba(147,202,104,1) 0%, rgba(110,191,145,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(147,202,104,1) 0%, rgba(110,191,145,1) 100%);
    background: linear-gradient(180deg, rgba(147,202,104,1) 0%, rgba(110,191,145,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#93ca68",endColorstr="#6ebf91",GradientType=1);     
}
.research-tab .research-tab-title-content{
    max-width: 166px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
    position: relative;
    z-index: 1;
}
.research-tab .research-tab-title-icon{
    position: relative;
    padding-bottom: 22px;
}
.research-tab .research-tab-title-icon::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 114px;
    height: 5px;
    background-color: #ffffff;
    opacity: 0.2;
}
.research-tab .research-tab-title-title{
    font-size: 22px;
    font-weight: 500;
    padding-top: 10px;
    text-align: center;
    line-height: 1.2;
    height: 64px;
}
.research-tab .research-tab-title > div > div:nth-child(1) .research-tab-title-bg::before{
    top: 48%;
}
.research-tab .research-tab-title > div > div:nth-child(2) .research-tab-title-bg::before{
    top: 20%;
}
.research-tab .research-tab-title > div > div:nth-child(3) .research-tab-title-bg::before{
    bottom: 0;
}
.research-tab .research-tab-title-box.active::before{
    height: calc(100% - 20px);
    opacity: 1;
    top: 0;
}
.research-tab .research-tab-title-box::after{
    content: '';
    position: absolute;
    background-color: #48b4bc;
    bottom: 50%;
    width: 0px;
    height: 0px;
    left: 50%;
    opacity: 0;
    transform: rotate(45deg) translateX(-75%);
    transition: all 0.3s ease 0s;
}
.research-tab .research-tab-title-box.active::after{
    opacity: 1;
    width: 40px;
    height: 40px;
    bottom: -4%;
}
.research-tab .research-tab-body{
    padding-top: 40px;
    display: flex;
    flex-direction: column;
}
.research-tab .research-tab-body-desc{
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.research-tab .research-list-col{
    padding-top: 50px;
}
.research-tab .research-list-row > div{
    display: flex;
}
.research-tab .research-list-box{
    width: 100%;
    border: 1px solid #dddddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.research-tab .research-list-thumb{
    width: 100%;
    height: 276px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.research-tab .research-list-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.research-tab .research-list-title{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    
    display: flex;
    align-items: center;
    justify-content: space-between;    
    min-height: 82px;
    padding: 6px 22px 6px 20px;
    
    background: rgb(78,182,182);
    background: -moz-linear-gradient(90deg, rgba(78,182,182,1) 0%, rgba(141,201,111,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(78,182,182,1) 0%, rgba(141,201,111,1) 100%);
    background: linear-gradient(90deg, rgba(78,182,182,1) 0%, rgba(141,201,111,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4eb6b6",endColorstr="#8dc96f",GradientType=1); 
}
.research-tab .research-list-title-text{
    flex-grow: 1;
    font-size: 22px;
    padding-left: 8px;
    padding-right: 8px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}
.research-tab .research-list-title-hover::before{
    content: '';
    background-color: #007dc5;
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 0;
}
.research-tab .research-list-title-hover a{
    color: #007dc5;
    background-color: #ffffff;
    font-size: 14px;
    padding: 12px 16px 10px 16px;
    opacity: 0;
    pointer-events: none;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}
.research-tab .research-list-title-hover a:hover{
    background-color: #6ebf91;
    color: #ffffff;
}
.research-tab .research-list-box:hover .research-list-title-hover::before{
    left: 0%;
    opacity: 1;
}
.research-tab .research-list-box:hover .research-list-title-hover a{
    opacity: 1;
    pointer-events: unset;
}
.research-tab .research-list-content{
    display: flex;
    flex-grow: 1;
    padding: 28px 16px 28px 28px;
}
.research-tab .research-list-content-left{
    width: 50%;
    padding-right: 14px;
    display: flex;
    line-height: 1.4;
    border-right: 1px solid #dddddd;
}
.research-tab .research-list-content.no-groups .research-list-content-left{
    width: 100%;
    padding-right: 12px;
    border-right: unset;
}
.research-tab .research-list-content-left p{
    margin: 0;
}
.research-tab .research-list-content-right{
    width: 50%;
    padding-left: 14px;
    display: flex;
    flex-direction: column;
}
.research-tab .research-list-content-right span{
    color: #007dc5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}
.research-tab .research-list-content-right ul,
.research-tab .research-list-content-right li{
    margin: 0;
    padding: 0;
    list-style: none;
}
.research-tab .research-list-content-right li{
    line-height: 1.7;
    font-size: 14px;
}
.research-tab .back-to-top-wrap{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.research-tab .back-to-top-wrap a.back-to-top{
    width: 62px;
    background-color: #27aae1;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    font-size: 12px;
    margin-top: -20px;
    position: relative;
}
.research-tab .back-to-top-wrap a.back-to-top:hover{
    background-color: #007dc5;    
}

/* People List Page */
.people-list{
    width: 100%;
}
.people-list .people-list-box{
    width: 100%;
    background-color: #ffffff;
}
.people-list .people-list-banner{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.people-list .people-list-banner h1{
    color: #ffffff;
    font-size: 46px;
    margin: 0;
    font-weight: 300;
    max-width: 500px;
    text-align: center;
}
.people-list .people-list-cat-desc{
    padding: 50px 0 0 0;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}
.people-list .people-list-cat-desc h2{
    font-weight: 400;
	font-size: 24px;
	margin-bottom: 10px;
	color: #007dc5;
}
.people-list .people-list-cat-desc p{
    margin-bottom: 10px;
}
.people-list .people-list-cat-desc p:last-child{
    margin-bottom: 0;
}
.people-list .people-list-cat-row{
    padding-top: 10px;
    padding-bottom: 50px;
}
.people-list .people-list-cat-title h2{
	font-weight: 400;
	font-size: 30px;
    margin-top: 26px;
	margin-bottom: 16px;
	color: #007dc5;
}
.people-list .people-list-search-wrap{
    max-width: 490px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-top: 56px;
    padding-bottom: 26px;
}
.people-list .people-list-search-wrap input[type=text]{
    font-size: 16px;
}
.people-list .people-list-search-wrap button{
    font-size: 16px;
    min-width: 124px;
    outline: none;
}
.people-list .people-list-result-col{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}
.people-list .people-list-result{
    font-size: 13px;
    font-weight: 300;
    color: #3d3d3d;
}
.people-list .people-filter-wrap{
    background-color: #ffffff;
    border: 1px solid #cbcbcb;
    padding-right: 10px;
}
.people-list .people-filter-wrap select{
    background: unset;
    min-width: 150px;
    color: #3d3d3d;
    font-size: 13px;
    border: unset;
    padding: 12px 16px;
    outline: none;
}
.people-list .people-card-col{
    display: flex;
}
.people-list .people-card-col:nth-child(odd){
    padding-right: 10px;
}
.people-list .people-card-col:nth-child(even){
    padding-left: 10px;
}
.people-list .people-card{
    background-color: #edeff0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 20px;
}
.people-list .people-card .people-card-photo{
    display: flex;
    width: 160px;
    height: 160px;
}
.people-list .people-card .people-card-photo-box{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #ffffff;
    position: relative;
}
.people-list .people-card .people-card-photo-box::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;

    clip-path: polygon(0 0, 100% 82%, 100% 100%, 0% 100%);
    opacity: 0.8;

    background: rgb(131,198,122);
    background: -moz-linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    background: linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#83c67a",endColorstr="#69be97",GradientType=1); 
}
.people-list .people-card .people-card-photo-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.people-list .people-card .people-card-name{
    width: calc(100% - 160px - 224px - 40px);
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.people-list .people-card .people-card-name.no-meta{
    width: calc(100% - 160px - 20px);
}
.people-list .people-card h4,
.people-list .people-card .people-card-name h4 a{
    font-size: 20px;
    font-weight: 400;
    color: #007dc5;
    line-height: 1;
}
.people-list .people-card .people-card-name span{
    font-size: 16px;
    color: #3a4c56;
    padding-top: 4px;
    line-height: 1.3;
}
.people-list .people-card .people-card-meta{
    width: 224px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-left: 1px solid #b9bbbb;
    padding: 8px 0 8px 24px;
}
.people-list .people-card .people-card-meta .people-card-division{
    display: flex;
    flex-direction: column;
    padding-bottom: 5px;
}
.people-list .people-card .people-card-meta span{
    font-weight: 500;
    color: #3a4c56;
}
.people-list .people-card .people-card-meta .people-card-group{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}
.people-list .people-card .people-card-meta .people-card-group:not(.no-employer)::before{
    content: '';
    position: absolute;
    border-left: 1px solid #b9bbbb;
    left: -12px;
    top: 0px;
    width:1px;
    background:unset;
    height: calc(100% + 4px);
    display: none;
}
.people-list .people-card .people-card-meta ul, 
.people-list .people-card .people-card-meta li{
    list-style: none;
    padding: 0;
    margin: 0;
}
.people-list .people-card .people-card-meta li{
    color: #3a4c56;
    font-weight: 400;
    line-height: 1.2;
}
.people-list .people-card .people-card-meta a,
.people-list .people-card a.no-meta-link {
	color: #27aae1;
	margin-top: 12px;
	font-weight: 400;
    text-decoration: underline;
	line-height: 1.1;
}
.people-list .people-card .people-card-meta a:hover,
.people-list .people-card a.no-meta-link:hover{
    color: #007dc5;
}
.people-list .people-list-loadmore-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.people-list .people-list-loadmore-btn a{
    font-size: 14px;
    padding: 10px 63px;
    position: relative;
}
.people-list .people-list-loadmore-btn a:before, .people-list .people-list-loadmore-btn a:after{
    content: '';
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid #ffffff;
    border-left: unset;
    border-top: unset;
    transform: rotate(45deg) translateX(-100%);
}
.people-list .people-list-loadmore-btn a:before{
    left: 24px
}
.people-list .people-list-loadmore-btn a:after{
    right: 12px
}

/* Researcher */
.researcher-et{
    width: 100%;
}
.researcher-et .researcher-et-box{
    width: 100%;
    min-height: 800px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}
.researcher-et .researcher-et-header{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #edeff0;
    position: relative;
}
.researcher-et .researcher-et-header::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background-color: #e4e5e5;
    z-index: 0;
    
    clip-path: polygon(63% 0, 100% 0, 100% 100%, 20% 100%, 0 72%);
}
.researcher-et .researcher-et-header-left{
    display: flex;
    flex-direction: column;
    height: 370px;
    max-height: 370px;
    width: 100%;
    max-width: 494px;
    position: relative;
    z-index: 1;
}
.researcher-et .researcher-et-photo-box{
    width: 100%;
    height: 488px;
    border: 3px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e4e5e5;
    position: relative;
}
.researcher-et .researcher-et-photo-box img{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 488px;
    object-fit: cover;    
}
.researcher-et .researcher-et-photo-box::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    z-index: 1;
    opacity: 0.8;
    clip-path: polygon(0 16%, 8% 0, 76% 100%, 0 99%);

    background: rgb(136,199,117);
    background: -moz-linear-gradient(90deg, rgba(136,199,117,1) 0%, rgba(82,183,178,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(136,199,117,1) 0%, rgba(82,183,178,1) 100%);
    background: linear-gradient(90deg, rgba(136,199,117,1) 0%, rgba(82,183,178,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#88c775",endColorstr="#52b7b2",GradientType=1); 
}
.researcher-et .researcher-et-header-links{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.researcher-et .researcher-et-header-cta-box{
    display: flex;
    padding-top: 22px;
}
.researcher-et .researcher-et-header-cta-box a{
    border: 1px solid #27aae1;
    color: #3a4c56;
    background-color: #ffffff;
    text-transform: unset;
    padding: 11px 20px;
    margin-left: 26px;
    min-width: 154px;
    font-size: 16px;
    font-weight: 400;
}
.researcher-et .researcher-et-header-cta-box a:first-child{
    margin-left: 0;
}
.researcher-et .researcher-et-header-cta-box a:hover{
    background-color: #27aae1;
    color: #ffffff;
}
.researcher-et .researcher-et-header-social-box{
    display: flex;
    padding-top: 20px;
}
.researcher-et .researcher-et-header-social-box ul, .researcher-et .researcher-et-header-social-box ul li{
    display: flex;
    padding: 0;
    margin: 0;
}
.researcher-et .researcher-et-header-social-box ul li{
    margin-left: 20px;
}
.researcher-et .researcher-et-header-social-box ul li:first-child{
    margin-left: 0;
}
.researcher-et .researcher-et-header-social-box a span{
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease 0s;
}
.researcher-et .researcher-et-header-social-box a span.icon-twitter{
    background-color: #63cdf1;
    border-color: #63cdf1;
}
.researcher-et .researcher-et-header-social-box a:hover span.icon-twitter{
    background-color: #ffffff;
    color: #63cdf1;
}
.researcher-et .researcher-et-header-social-box a span.icon-linkedin{
    background-color: #2368b2;    
    border-color: #2368b2;
}
.researcher-et .researcher-et-header-social-box a:hover span.icon-linkedin{
    background-color: #ffffff;
    color: #2368b2;
}
.researcher-et .researcher-et-header-right{
    width: 100%;
    max-width: calc(100% - 494px - 60px);
    display: flex;
    flex-direction: column;
    padding: 18px 0 0 0;
    position: relative;
    z-index: 1;
}
.researcher-et .researcher-et-name{
    display: flex;
    position: relative;
    padding-bottom: 16px;
}
.researcher-et .researcher-et-name::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 5px;
    width: 116px;
    background-color: #c9ced1;
}
.researcher-et .researcher-et-name h1{
    font-size: 22px;
    font-weight: 400;
    color: #007dc5;
    line-height: 1.4;
}
.researcher-et .researcher-et-deg{
    display: flex;
    padding-bottom: 16px;
    padding-top: 10px;
}
.researcher-et .researcher-et-deg ul, .researcher-et .researcher-et-deg li{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.researcher-et .researcher-et-deg li{
    font-size: 18px;
    line-height: 1.2;
    padding: 5px 0;
}
.researcher-et .researcher-et-meta{
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 16px;
    padding-top: 16px;
}
.researcher-et .researcher-et-meta::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 1px;
    width: 116px;
    background-color: #c9ced1;
}
.researcher-et .researcher-et-meta p{
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}
.researcher-et .researcher-et-meta p span{
    font-weight: 500;
}
.researcher-et .researcher-et-contact{
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 16px;
    font-size: 16px;
    line-height: 1.2;
}
.researcher-et .researcher-et-contact::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 1px;
    width: 116px;
    background-color: #c9ced1;
}
.researcher-et .researcher-et-contact span{
    font-weight: 500;
    display: flex;
}
.researcher-et .researcher-et-contact span a{
    font-size: 16px;
    font-weight: 400;
    color: #3a4c56;
    word-wrap: anywhere;
    margin-left: 5px;
}
.researcher-et .researcher-et-contact span a.et-contact-email{
    color: #007dc5;
    text-decoration: underline;
}
.researcher-et .researcher-et-contact span a:hover{
    color: #007dc5;
}
.researcher-et .researcher-et-content{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.researcher-et .researcher-et-content-right{
    width: 100%;
    max-width: calc(100% - 494px - 40px - 60px);
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}
.researcher-et .researcher-et-content h4{
    color: #007dc5;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 0 12px;
}
.researcher-et .researcher-et-content p{
    color: #3a4c56;
    line-height: 1.3;
}
.researcher-et .researcher-et-content ul{
    padding: 0;
    margin: 1rem 0 1rem 0;
}
.researcher-et .researcher-et-content p + ul{
    margin-top: unset;
}
.researcher-et .researcher-et-content ul li{
    font-size: 16px;
    line-height: 1.2;
    padding-left: 10px;
    position: relative;
}
.researcher-et .researcher-et-content ul li::before{
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #007dc5;
}
.researcher-et .researcher-et-content hr{
    margin: 20px 0 0 0;
    border: unset;
    border-bottom: 1px solid #c7c7c7;
}
.researcher-et .researcher-et-content p + hr,
.researcher-et .researcher-et-content ul + hr{
    margin-top: unset;
}
.researcher-et .researcher-et-content h4 + ul{
    margin-top: unset;
}

/* Research Detail */
.research-detail{
    width: 100%;
}
.research-detail .research-detail-box{
    width: 100%;
    background-color: #ffffff;
}
.research-detail .research-detail-banner{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
}
.research-detail .research-detail-banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(154,204,97);
    background: -moz-linear-gradient(90deg, rgba(154,204,97,1) 0%, rgba(81,183,178,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(154,204,97,1) 0%, rgba(81,183,178,1) 100%);
    background: linear-gradient(90deg, rgba(154,204,97,1) 0%, rgba(81,183,178,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9acc61",endColorstr="#51b7b2",GradientType=1); 

    /* opacity: 0.8; */
    mix-blend-mode: multiply;

    clip-path: polygon(100% 0, 100% 80%, 97.8% 74.2%, 62% 100%, 5% 100%, 0 89%, 0 0);
}
.research-detail .research-detail-banner h1{
    color: #ffffff;
    font-size: 49.43px;
    margin: 0;
    font-weight: 300;
    max-width: 500px;
    text-align: center;
    position: relative;
}
.research-detail .research-detail-desc-box{
    padding: 80px 30px 26px 46px;
    display: flex;
    justify-content: space-between;
}
.research-detail-desc-left > p:first-child {
    font-weight: 500;
}
.research-detail .research-detail-desc-left{
    width: 100%;
    max-width: calc(100% - 160px - 162px);
    line-height: 1.2;
    font-weight: 400;
}
.research-detail .research-detail-desc-left.no-researchers{
    max-width: 100%;
    padding-top: 0;
}
.research-detail .research-detail-desc-left h1,
/*.research-detail .research-detail-desc-left h2,*/
.research-detail .research-detail-desc-left h3,
.research-detail .research-detail-desc-left h4,
.research-detail .research-detail-desc-left h5,
.research-detail .research-detail-desc-left h6{
    font-weight: 500;
    color: #0e9eda;
    line-height: 1.2;
}
.research-detail .research-detail-desc-left h1{
    font-size: 40px;
    margin-bottom: 20px;
}
.research-detail .research-detail-desc-left h2{
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #0e9eda;
    line-height: 1.2;
}
.research-detail .research-detail-desc-left h3{
    font-size: 30px;
    margin-bottom: 16px;
}
.research-detail .research-detail-desc-left h4{
    font-size: 26px;
    margin-bottom: 16px;
}
.research-detail .research-detail-desc-left h5{
    font-size: 20px;
    margin-bottom: 14px;
}
.research-detail .research-detail-desc-left h6{
    font-size: 16px;
    margin-bottom: 14px;
}

.research-detail .research-detail-desc-right{
    width: 100%;
    max-width: 160px;
    display: flex;
}
.research-detail .research-researchers-box{
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: -184px;
}
.research-detail .research-researchers-meta{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.research-detail .research-researchers-thumb{
    width: 100%;
    max-width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 3px solid #ffffff;
}
.research-detail .research-researchers-thumb::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;

    clip-path: polygon(0 0, 100% 82%, 100% 100%, 0% 100%);
    opacity: 0.8;

    background: rgb(131,198,122);
    background: -moz-linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    background: linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#83c67a",endColorstr="#69be97",GradientType=1); 
}
.research-detail .research-researchers-thumb img{
    width: 154px;
    height: 154px;
    object-fit: cover;
}
.research-detail .research-researchers-job-title{
    padding-top: 12px;
    padding-bottom: 4px;
    display: flex;
    color: #007dc5;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #c7c7c7;
    line-height: 1.3;
}
.research-detail .research-researchers-name{
    color: #3a4c56;
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    display: flex;
    line-height: 1.3;
}
.research-detail .research-researchers-link{
    padding-top: 4px;
    display: flex;
}
.research-detail .research-researchers-link a{
    color: #27aae1;
    font-size: 14px;
    text-decoration: underline;
}
.research-detail .research-researchers-link a:hover{
    color: #007dc5;
}
.research-detail .research-detail-tab-wrap{
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
}
.research-detail .research-detail-tab-nav{
    width: 100%;
    overflow: hidden;
}
.research-detail .research-detail-tab-nav > .row > div{
    padding-left: 8px;
    padding-right: 8px;
}
.research-detail .research-detail-tab-nav > .row > div:first-child{
    padding-left: 15px;
}
.research-detail .research-detail-tab-nav > .row > div:last-child{
    padding-right: 15px;
}
.research-detail .research-detail-tab-nav-slide{
    display: flex;
    position: relative;
}
.research-detail .research-detail-tab-nav-slide::after{
    content: '';
    position: absolute;
    width: 37px;
    height: 37px;
    left: calc(50% - 18px);
    top: calc(100% - 80px);
    background-color: #007dc5;
    transform: rotate(45deg);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0s, top 0.3s ease 0s;
}
.research-detail .research-detail-tab-nav-slide.active::after{
    opacity: 1;
    top: calc(100% - 54px);
}
.research-detail .research-detail-tab-nav-slide > span{
    height: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3a4c56;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.research-detail .research-detail-tab-nav-slide:hover > span{
    background-color: #26353e;
}
.research-detail .research-detail-tab-nav-slide.active > span{
    background-color: #007dc5;
}
.research-detail .research-detail-tab-nav-slide > span::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    height: 0px;
    width: 0px;
    background-color: #2690ce;
    clip-path: polygon(0 0, 100% 0, 35% 25%, 0 100%);
    transition: all 0.3s ease 0s;
    z-index: 0;
}
.research-detail .research-detail-tab-nav-slide.active > span::before{
    opacity: 1;
    height: 130px;
    width: 130px;
}
.research-detail .research-detail-tab-nav-slide > span > span{
    position: relative;
    text-align: center;
    z-index: 1;
}
.research-detail .research-detail-tab-body{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.research-detail .research-detail-tab-body-acc-title{
    display: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    position: relative;
    margin-bottom: 4px;
}
.research-detail .research-detail-tab-body-acc-title span{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #3a4c56;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 20px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.research-detail .research-detail-tab-body-acc-title::after{
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: calc(50% - 18px);
    top: calc(100% - 30px);
    background-color: #007dc5;
    transform: rotate(45deg);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0s, top 0.3s ease 0s;
}
.research-detail .research-detail-tab-body-acc-title.active span{
    background-color: #007dc5;
}
.research-detail .research-detail-tab-body-acc-title.active::after{
    top: calc(100% - 12px);
    opacity: 1;
}
.research-detail .research-detail-tab-body-acc-title:nth-last-child(2){
    margin-bottom: 0;
}
.research-detail .research-detail-tab-content{
    display: flex;
    flex-direction: column;
    border: 1px solid #dddddd;
    border-top-color: #edeff0;
}
.research-detail .research-content-title{
    width: 100%;
    display: flex;
    background-color: #edeff0;
}
.research-detail .research-content-title-box{
    height: 128px;
    max-width: 50%;
    display: flex;
    background-color: #e5e6e6;
    color: #007dc5;
    font-size: 22px;
    font-weight: 400;
    position: relative;
}
.research-detail .research-content-title-box::before{
    content: '';
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    width: 34px;
    height: 100%;
    background-color: #d7d9da;
    clip-path: polygon(83% 0, 15% 70%, 100% 100%, 0 100%, 0 0);
    z-index: 0;
}
.research-detail .research-content-title-box::after{
    content: '';
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    width: 34px;
    height: 100%;
    background-color: #e5e6e6;
    clip-path: polygon(40% 0, 80% 38%, 34% 100%, 0 100%, 0 0);
    z-index: 0;
}
.research-detail .research-content-title-box span{
    display: flex;
    align-items: center;
    position: relative;
    padding: 32px 50px 32px 32px;
    background-color: #e5e6e6;
    z-index: 1;
}
.research-detail .rdtcb{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 32px;
}
.research-detail .rdtcb .rdtcb-left-content-right-image{
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
}
.research-detail .rdtcb .rdtcb-lcri-left{
    width: 100%;
    max-width: calc(100% - 571px - 38px);
}
.research-detail .rdtcb .rdtcb-lcri-left.no-image{
    max-width: 100%;
}
.research-detail .rdtcb .rdtcb-lcri-left h1,
.research-detail .rdtcb .rdtcb-lcri-left h2,
.research-detail .rdtcb .rdtcb-lcri-left h3,
.research-detail .rdtcb .rdtcb-lcri-left h4,
.research-detail .rdtcb .rdtcb-lcri-left h5,
.research-detail .rdtcb .rdtcb-lcri-left h6{
    margin-bottom: 16px;
}
.research-detail .rdtcb .rdtcb-lcri-left p{
    line-height: 1.3;
    margin-bottom: 14px;
}
.research-detail .rdtcb .rdtcb-lcri-left p a{
    color: #27aae1;
    text-decoration: underline;
}
.research-detail .rdtcb .rdtcb-lcri-left p a:hover{
    color: #007dc5;
}
.research-detail .rdtcb .rdtcb-lcri-left ul{
    padding: 0;
    margin: 0 0 1rem 0;
}
.research-detail .rdtcb .rdtcb-lcri-left ul li{
    font-size: 16px;
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}
.research-detail .rdtcb .rdtcb-lcri-left ol{
    list-style: decimal;
    padding: 0 0 0 20px;
    margin: 0 0 1rem 0;
}
.research-detail .rdtcb .rdtcb-lcri-left ol li{
    list-style: decimal;
    font-size: 16px;
    line-height: 1.5;
}
.research-detail .rdtcb .rdtcb-lcri-left ul li::before{
    content: '';
    position: absolute;
    top: 10px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #27aae1;
}
.research-detail .rdtcb .rdtcb-lcri-right{
    display: flex;
    max-width: 571px;
    width: 100%;
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.research-detail .rdtcb .rdtcb-lcri-right::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    opacity: 0.85;
    clip-path: polygon(18% 0, 100% 77%, 100% 100%, 0 100%, 0 16%);

    background: rgb(148,203,104);
    background: -moz-linear-gradient(90deg, rgba(148,203,104,1) 0%, rgba(53,174,209,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(148,203,104,1) 0%, rgba(53,174,209,1) 100%);
    background: linear-gradient(90deg, rgba(148,203,104,1) 0%, rgba(53,174,209,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#94cb68",endColorstr="#35aed1",GradientType=1); 
}
.research-detail .rdtcb .rdtcb-lcri-right img{
    max-width: 100%;
    position: relative;
    width: 100%;
}
.research-detail .rdtcb .accordion-label-wrap{
    width: 100%;
    display: flex;
    padding-top: 36px;
}
.research-detail .rdtcb .accordion-label{
    padding: 12px 10px 10px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #3a4c56;
    background-color: #dee0e1;
    position: relative;
}
.research-detail .rdtcb .accordion-label::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    left: calc(100% - 1px);
    top: 0;
    background-color: #dee0e1;

    clip-path: polygon(40% 0, 80% 38%, 54% 100%, 0 100%, 0 0);
}
.research-detail .rdtcb .accordion-et{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.research-detail .rdtcb .accordion-et.no-accordion-label{
    margin-top: 80px;
}
.research-detail .rdtcb .accordion-et .accordion-et-row{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}
.research-detail .rdtcb .accordion-et .accordion-et-row:last-child{
    padding-bottom: 0;
}
.research-detail .rdtcb .accordion-et .accordion-et-title{
    width: 100%;
    display: flex;
    cursor: pointer;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    
    background: rgb(56,175,206);
    background: -moz-linear-gradient(90deg, rgba(56,175,206,1) 0%, rgba(173,210,76,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(56,175,206,1) 0%, rgba(173,210,76,1) 100%);
    background: linear-gradient(90deg, rgba(56,175,206,1) 0%, rgba(173,210,76,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38afce",endColorstr="#add24c",GradientType=1); 
m
    transition: all 0.3s ease 0s;
}
.research-detail .rdtcb .accordion-et .accordion-et-open .accordion-et-title{
    background-size: 100%;
}
.research-detail .rdtcb .accordion-et .accordion-et-title{
    background-size: 200%;
}
.research-detail .rdtcb .accordion-et .accordion-et-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f1f2f3;
    padding: 24px 32px 32px 32px;
}
.research-detail .rdtcb .accordion-et-content-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.research-detail .rdtcb .accordion-et-left{
    width: 100%;
    max-width: calc(100% - 539px - 37px);
}
.research-detail .rdtcb .accordion-et-left.no-research-group-leads{
    max-width: 100%;
}
.research-detail .rdtcb .accordion-et-left p{
    line-height: 1.3;
    margin-bottom: 14px;
}
.research-detail .rdtcb .accordion-et-left ul li a,
.research-detail .rdtcb .accordion-et-left ol li a,
.research-detail .rdtcb .accordion-et-left p a{
    color: #27aae1;
    text-decoration: underline;
}
.research-detail .rdtcb .accordion-et-left ul li a:hover,
.research-detail .rdtcb .accordion-et-left ol li a:hover,
.research-detail .rdtcb .accordion-et-left p a:hover{
    color: #007dc5;
}
.research-detail .rdtcb .accordion-et-left h4{
    font-size: 16.4px;
    color: #3a4c56;
    font-weight: 500;
    margin-bottom: 6px;
}
.research-detail .rdtcb .accordion-et-left h5{
    font-size: 16.4px;
    color: #007dc5;
    font-weight: 400;
    margin-bottom: 6px;
}
.research-detail .rdtcb .accordion-et-left ul{
    padding: 0;
    margin: 0 0 1rem 0;
}
.research-detail .rdtcb .accordion-et-left ul li{
    font-size: 16px;
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}
.research-detail .rdtcb .accordion-et-left ol{
    list-style: decimal;
    padding: 0 0 0 20px;
    margin: 0 0 1rem 0;
}
.research-detail .rdtcb .accordion-et-left ol li{
    list-style: decimal;
    font-size: 16px;
    line-height: 1.5;
}
.research-detail .rdtcb .accordion-et-left ul li::before{
    content: '';
    position: absolute;
    top: 10px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #27aae1;
}
.research-detail .rdtcb .accordion-et-left *:last-child{
    margin-bottom: 0;
}
.research-detail .rdtcb .accordion-et-right{
    width: 100%;
    max-width: 539px;
    display: flex;
    flex-direction: column;
}
.research-detail .rdtcb .r3.accordion-et-left{
    max-width: calc(100% - 396px - 37px);
}
.research-detail .rdtcb .r3.accordion-et-right {
    max-width: 396px;
}
.research-detail .rdtcb .r2.accordion-et-left{
    max-width: calc(100% - 254px - 37px);
}
.research-detail .rdtcb .r2.accordion-et-right {
	max-width: 254px;
}
.research-detail .rdtcb .r1.accordion-et-left{
    max-width: calc(100% - 112px - 37px);
}
.research-detail .rdtcb .r1.accordion-et-right {
	max-width: 112px;
}
.research-detail .rdtcb .research-group-title{
    display: flex;
    font-size: 16.4px;
    font-weight: 500;
    margin-bottom: 16px;
}
.research-detail .rdtcb .research-group-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}
.research-detail .rdtcb .research-researcher{
    width: 112px;
    display: flex;
    flex-direction: column;
    /* margin-right: 30px;
    margin-bottom: 30px; */
}
/* .research-detail .rdtcb .r4 .research-researcher:nth-child(4n){
    margin-right: 0px;
}
.research-detail .rdtcb .r3 .research-researcher:nth-child(3n){
    margin-right: 0px;
}
.research-detail .rdtcb .r2 .research-researcher:nth-child(2n){
    margin-right: 0px;
}
.research-detail .rdtcb .r1 .research-researcher{
    margin-right: 0px;
} */
.research-detail .rdtcb .research-researcher-thumb{
    width: 100%;
    height: 112px;
    position: relative;
}
.research-detail .rdtcb .research-researcher-thumb::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;

    clip-path: polygon(0 0, 100% 82%, 100% 100%, 0% 100%);
    opacity: 0.8;

    background: rgb(131,198,122);
    background: -moz-linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    background: linear-gradient(90deg, rgba(131,198,122,1) 0%, rgba(105,190,151,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#83c67a",endColorstr="#69be97",GradientType=1); 
}
.research-detail .rdtcb .research-researcher-thumb img{
    width: 100%;
    max-width: 100%;
    height: 112px;
}
.research-detail .rdtcb .research-researcher-meta{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.research-detail .rdtcb .research-researcher-name {
    font-size: 15px;
	color: #3a4c56;
	line-height: 1.3;
	padding-top: 6px;
	padding-bottom: 10px;
    flex-grow: 1;
}
.research-detail .rdtcb .research-researcher-link a{
    color: #27aae1;
    text-decoration: underline;
    font-size: 14px;
}
.research-detail .rdtcb .research-researcher-link a:hover{
    color: #007dc5;
}
.research-detail .rdtcb .accordion-et-content-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}
.research-detail .rdtcb .accordion-et-content-section-row{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 32px;
    background-color: #ffffff;
    margin-bottom: 30px;
}
.research-detail .rdtcb .accordion-et-content-section-row:last-child{
    margin-bottom: 0;
}
.research-detail .rdtcb .accordion-et-content-section-title{
    width: 100%;
    display: flex;
    min-height: 78px;
    align-items: center;
    padding: 10px 0;
}
.research-detail .rdtcb .accordion-et-content-section-title-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-right: 22px;
}
.research-detail .rdtcb .accordion-et-content-section-title-text{
    font-size: 20px;
    color: #007dc5;
    font-weight: 500;
}
.research-detail .rdtcb .accordion-et-content-section-title-icon img{
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}
.research-detail .rdtcb .accordion-et-content-section-content{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.research-detail .rdtcb .accordion-et-content-section-content.no-sub-content-title{
    padding-top: 32px;
}
.research-detail .rdtcb .spacer{
    width:100%;
    display: flex;
    height: 30px;
    margin-bottom: 38px;
    background-color: #f1f2f3;
}
.research-detail .rdtcb .acscc{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d4d8da;
    padding-bottom: 30px;
}
.research-detail .rdtcb .acscc .accordion-et-content-section-left{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 414px;
    padding-bottom: 54px;
}
.research-detail .rdtcb .acscc .acscc-left-title{
    display: flex;
    align-items: center;
    min-height: 73px;
    padding: 16px 32px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    
    background: rgb(0,103,163);
    background: -moz-linear-gradient(90deg, rgba(0,103,163,1) 0%, rgba(0,125,197,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,103,163,1) 0%, rgba(0,125,197,1) 100%);
    background: linear-gradient(90deg, rgba(0,103,163,1) 0%, rgba(0,125,197,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0067a3",endColorstr="#007dc5",GradientType=1); 
}
.research-detail .rdtcb .acscc .acscc-left-content{
    display: flex;
    padding: 24px 32px 32px 32px;
    background-color: #27aae1;
    position: relative;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 400;
}
.research-detail .rdtcb .acscc .acscc-left-content:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 48px;
    background-color: #27aae1;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 84% 100%, 0 0%);
}
.research-detail .rdtcb .acscc .accordion-et-content-section-right{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 24px;
    max-width: calc(100% - 414px - 30px);
}
.research-detail .rdtcb .acscc .accordion-et-content-section-right.no-acscc-left{
    max-width: 100%;
}
.research-detail .rdtcb .acscc .acscc-right-title{
    display: flex;
    font-size: 16.4px;
    font-weight: 500;
    color: #3a4c56;
    padding-bottom: 16px;
}
.research-detail .rdtcb .acscc .acscc-right-content h5{
    font-size: 16.4px;
    font-weight: 400;    
    color: #007dc5;
    margin-bottom: 8px;
}
.research-detail .rdtcb .acscc .acscc-right-content h4{
    font-size: 16.4px;
    font-weight: 500;    
    color: #3a4c56;
    margin-bottom: 4px;
}
.research-detail .rdtcb .acscc .acscc-right-content ul{
    padding: 0;
    margin: 0 0 1rem 0;
}
.research-detail .rdtcb .acscc .acscc-right-content ul:last-child{
    margin: 0;
}
.research-detail .rdtcb .acscc .acscc-right-content ul li{
    font-size: 16px;
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}
.research-detail .rdtcb .acscc .acscc-right-content ul li::before{
    content: '';
    position: absolute;
    top: 10px;
    left: 2px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #27aae1;
}
.research-detail .rdtcb .acscc .acscc-right-content p{
    line-height: 1.2;
    font-weight: 400;
}
.research-detail .rdtcb .acscc .acscc-right-content *:last-child{
    margin-bottom: 0;
}

/* 404 Page */
.four-o-four{
    width: 100%;
}
.four-o-four .four-o-four-box{
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
}
.four-o-four h1,
.search-page h1{
    color: #0e9eda;
    font-size: 48px;
    line-height: 50px;
    font-weight: 500;
}
.four-o-four h2,
.search-page h2{
    color: #0e9eda;
    font-size: 30px;
    line-height: 34px;
    padding: 25px 0;
    border-bottom: 1px solid #cccccc;
}
.four-o-four h3,
.search-page h3{
    font-size: 24px;
    line-height: 28px;
    padding: 25px 0;
    color: #898989;
    font-weight: 400;
}
.four-o-four .four-o-four-form-box{
    display: flex;
    width: 100%;
    padding-top: 30px;
}
.four-o-four .four-o-four-form-box form{
    display: flex;
    width: 100%;
}
.four-o-four .four-o-four-form-box form input[type="text"]{
    width: 100%;
}
.four-o-four .four-o-four-form-box form button{
    display: flex;
}
.four-o-four .four-o-four-form-box form button i{
    display: flex;
}

/* ------------------Search Page------------------ */
.search-page{
    padding: 120px 0;
}
.search-page a{
    color: var(--mainColor);
}
.search-page a:hover{
    color: var(--buttonMainColor);
}
.search-page .search-page-desc{
	font-size: 20px;
}
.search-page .search-search-form{
	padding-top: 45px;
	padding-bottom: 40px;
}
.search-page .search-search-form form{
    display: flex;
}
.search-page .search-search-form form button,
.search-page .search-search-form form button i{
    display: flex;
}
.search-page .search-search-result{
	display: flex;
	width: 100%;
	min-height: 8.9vw;
}
.search-page .search-result-box{
	padding-bottom: 20px;
}
.search-page .search-result-box h5{
	margin-bottom: 6px;
}
.search-page .search-result-box p{
	font-size: 16px;
}
.search-page .search-pag-nav{
	padding-top: 40px;
	display: flex;
	justify-content: center;
}
.search-page .search-pag-nav a{
	font-weight: 400;
	font-size: 16px;
	margin: 10px;
}

/* News List Page */
.page-template-template-latest-news p{
    margin-bottom: 0;
}
.page-template-template-latest-news .news-banner{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
}
.page-template-template-latest-news .news-banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(154,204,97);
    background: -moz-linear-gradient(90deg, rgba(154,204,97,1) 0%, rgba(81,183,178,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(154,204,97,1) 0%, rgba(81,183,178,1) 100%);
    background: linear-gradient(90deg, rgba(154,204,97,1) 0%, rgba(81,183,178,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9acc61",endColorstr="#51b7b2",GradientType=1); 

    /* opacity: 0.8; */
    mix-blend-mode: multiply;

    clip-path: polygon(100% 0, 100% 80%, 97.8% 74.2%, 62% 100%, 5% 100%, 0 89%, 0 0);
}
.page-template-template-latest-news .news-banner h1{
    color: #ffffff;
    font-size: 49.43px;
    margin: 0;
    font-weight: 300;
    max-width: 500px;
    text-align: center;
    position: relative;
}
.page-template-template-latest-news .news-list-heading-content{
    padding: 50px 0;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}
.news-list-heading-content h2{
    font-weight: 400;
    font-size: 30px;
    color: #0072bc;
}
.news-list-row{
    padding-top: 0px;
    padding-bottom: 60px;
}
.page-template-template-cases-for-support .row.news-list-row h2{
    font-weight:300;
}
.news-list-row .lat-new-item{
    margin: 0;
    min-height: unset;
    max-height: unset;
    max-width: unset;
    padding-bottom: 30px;
}
.news-list-row .lat-new-item .img-lat-new{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-list-row .lat-new-item .img-lat-new a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-list-row .lat-new-item:not(.lat-new-sm) img{
    width: 690px;
    height: 266px;
    object-fit: cover;
}
.news-list-row .lat-new-item.lat-new-sm img{
    width: 330px;
    height: 266px;
    object-fit: cover;
}

.news-list-row h2{
    padding: 4px 0 10px 0;
    line-height: 1;
}
.page-template-template-latest-news .news-list-row h2 a{
    color: #007dc5;
    font-size: 16px;
    font-weight: 400;
}
.page-template-template-latest-news .news-list-row p{
    line-height: 1.2;
}
.page-template-template-latest-news .news-list-row p.date{
    font-size: 12px;
    font-weight: 500;
    color: #1f1f1f;
    padding: 12px 0px 4px 0px;
    background-color: unset !important;
}
.page-template-template-latest-news .news-list-row .side-bar{
    margin-top: 0;
}
.page-template-template-latest-news .news-list-row .side-bar .checkboxes {
	padding-left: 0px;
}
.page-template-template-latest-news .pagination{
    margin: 0;
    display: flex
}
.page-template-template-latest-news .pagination span{
    color: var(--buttonMainColor);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-template-latest-news .pagination ul span{
    width: 30px
}
.page-template-template-latest-news .pagination a{
    font-weight: 500;
    font-size: 14px;
    background-color: var(--buttonMainColor);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-template-latest-news .pagination > a{
    padding: 4px 20px 3px 20px;
    text-transform: uppercase;
}
.page-template-template-latest-news .pagination > a i.icon-chevron-left{
    display: flex;
    margin-right: 8px;
}
.page-template-template-latest-news .pagination > a i.icon-chevron-right{
    display: flex;
    margin-left: 8px;
}
.page-template-template-latest-news .pagination ul{
    padding: 0;
    margin: 0 auto;
    display: flex;
    gap: 3px;
}
.page-template-template-latest-news .pagination ul li{
    display: flex;
}
.page-template-template-latest-news .pagination ul a,
.page-template-template-latest-news .pagination ul span{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-template-latest-news .pagination a:hover{
    background-color: var(--buttonHoverColor);
}

.page-template-default .content-cover{
    padding-top: 60px;
    padding-bottom: 60px;
}

.side-bar{
    display: flex;
    flex-direction: column;
    background-color: #ebebeb;
}
.side-bar .side-bar-item{
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.widget .widget-title{
    font-size: 18px;
    font-weight: 500;
    color: #0072bc;
    margin-bottom: 20px;
}
.checkboxes .wrap-chec {
	margin-bottom: 5px;
}
.checkboxes .checkbox:not(checked) {
	position: absolute;
	opacity: 0;
}
.checkboxes label {
	display: inline-block;
	font-size: 16px;
	line-height: 18px;
	color: #858585;
	cursor: pointer;
	position: relative;
	padding: 0 0 0 25px;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
    margin-bottom: .5rem;
}
.checkboxes .checkbox:checked + label::before {
    font-family: "inghaminstitute" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

	content: "\6d";
	font-size: 12px;
	line-height: 14px;
	color: #ffffff;
	text-align: center;
	border: 1px solid #0072bc;
	background: #0072bc;
	z-index: 1;
}
.checkboxes .checkbox:not(checked) + label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 16px;
	height: 16px;
	border: 1px solid #858585;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
.checkboxes .checkbox:not(checked) + label::after {
	content: '';
	position: absolute;
	left: -8px;
	top: -7px;
	width: 32px;
	height: 32px;
	background: transparent;
	opacity: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.breadcrumbs{
    padding-top: 70px;
}
.post-info {
	position: relative;
	font-size: 16px;
	color: #0e9eda;
	padding: 0 0 30px 0;
}
.blog-post-img {
	overflow: hidden;
	margin: 0px 0 15px 0;
}
.blog-post-content p{
	font-size: 16px;
	padding: 10px 0;
	line-height: 26px;
}
.blog-post-content .text-blue p {
	font-size: 20px;
	font-weight: 500;
}
.text-blue {
	color: #0e9eda;
}


/* START 08-06-2023 */

.side-bar img {
    margin: 0 auto;
    display: block;
}
img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
.item-sd-post {
    overflow: hidden;
    padding: 8px 0;
}
.latest-post {
    overflow: hidden;
}
.side-bar-item {
    padding: 20px;
    border-bottom: 1px solid #b4b4b4;
}
.blog-post-page .side-bar {
    margin-top: 9px;
}
.side-bar {
    background-color: #ebebeb;
    /* margin-top: 50px; */
    overflow: hidden;
}
.item-sd-post p {
    font-size: 14px;
    line-height: 18px;
    color: #0e9eda;
    font-weight: normal;
}

.item-sd-post img {
    float: left;
    margin-right: 10px;
}

.post-pagination {
	margin-top: 50px;
	overflow: hidden;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}
.post-pagination a {
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	display: block;
	max-width: 300px;
	position: relative;
	color: #0072bc;
}
.post-pagination a:first-child {
    float: left;
	padding-left: 30px;
}
.post-pagination a:last-child {
    text-align: right;
    padding-right: 30px;
}
.post-pagination a .icon {
	position: absolute;
	top: 6px;
	line-height: 24px;
    font-size: 20px;
    right: 0;
}
.post-pagination a:first-child .icon {
	left: 0;
    right: unset;
}
.post-pagination a span {
	font-size: 16px;
	text-transform: none;
	font-style: italic;
}
.post-social{
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
}
.post-social p{
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #0e9eda;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    padding-right: 20px;
}
.post-social ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-single .post-excerpt {
    color: rgb(14, 158, 218);
}

.news-single{
    padding-top: 70px;
}
.people-detail-faq .vc_toggle {
    border: none !important;
}

.people-detail-faq .vc_toggle_title:before {
    display: none;
}

.people-detail-faq .vc_toggle_content:before {
    display: none;
}

.people-detail-faq .vc_toggle_title {
    padding-right: 0 !important;
}

.people-detail-faq .vc_toggle_title h4 {
    width: 100%;
    display: flex;
    cursor: pointer;
    padding: 14px 16px;
    border-top:1px solid;
    border-bottom:1px solid;
    /*color: #ffffff !important;*/
    font-size: 22px !important;
    /*background: rgb(56,175,206);*/
    /*background: -moz-linear-gradient(90deg, rgba(56,175,206,1) 0%, rgba(173,210,76,1) 100%);*/
    /*background: -webkit-linear-gradient(90deg, rgba(56,175,206,1) 0%, rgba(173,210,76,1) 100%);*/
    /*background: linear-gradient(90deg, rgba(56,175,206,1) 0%, rgba(173,210,76,1) 100%);*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38afce",endColorstr="#add24c",GradientType=1);
    transition: all 0.3s ease 0s;
}

.people-detail-faq .vc_toggle_content {
    padding: 30px !important;
    border: 1px solid #ddd;
}

.people-detail-faq .vc_toggle_content h3 {
    color: #007dc5;
    font-size: 22px;
    margin: 15px 0;
}

.people-detail-faq .vc_toggle_content h4 {
    color: rgb(173,210,76);
    font-size: 20px;
    margin: 15px 0 10px;
}

.people-detail-faq .vc_toggle_content ul li {
    list-style: disc !important;
    margin: 0 0px 0 20px;
    padding: 0 0 10px 0;
}

.people-detail-faq .vc_toggle_title::after {
    right: 20px !important;
    top: 12px !important;
    width: 18px !important;
    height: 18px !important;
}

.people-detail-faq .vc_toggle_active .vc_toggle_title::after {
    top: 20px !important;
}
.research-images {
    padding-top: 44px;
    display: flex;
    justify-content: space-between;
    padding-left: 68px;
    align-items: center;
}

.people-detail-content h3 {
    color: #007dc5;
    font-size: 22px;
    margin: 15px 0;
}
.people-detail-content h4 {
    color: rgb(173,210,76);
    font-size: 20px;
    margin: 15px 0 10px;
}

.people-detail-faq .vc_toggle_content h5 {
    color: #3a4c56;
    font-size: 18px;
    margin: 15px 0;
    font-weight: normal;
}

.people-detail-faq .vc_toggle_content p {
    display: block !important;
}
.title-wiht-cta { 
    display: flex; align-items: center; 
    gap: 20px; 
    justify-content: space-between; 
    padding: 10px 0; 
    
} 
.title-wiht-cta .twc-left-title 
{ 
    max-width: 100%; 
    
} 
.title-wiht-cta .twc-right-cta a { 
    font-size: 14px; 
    min-width: 130px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: var(--buttonMainColor); 
    padding: 13px 18px; 
    color: #ffffff; 
    font-weight: 300; 
    
}


.pum .donate-now-form-title{
	padding: 15px 15px 0 15px;
	min-height: 70px;
	display: flex;
	align-items: center;
}
.pum .donate-now-form-title::before {
	content: '';
	background: url(../images/Heart.svg);
	background-repeat: repeat;
	background-size: auto;
	background-repeat: no-repeat;
	background-size: contain;
	height: 70px;
	width: 50px;
	display: block;
	/*position: absolute;*/
	/*left: 0;
	top: 0;*/
}

.pum .donate-now-form-title p.title{
	color: #000 !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	position: relative;
	margin: 0;
	box-shadow: none;
	border: 0;
	text-align: left;
	flex: unset;
	width: 100%;
	padding-left: 20px;
	font-family: 'Roboto';
}

.pum .donate-now-form-title p.title span{
	font-weight: 700;
	color: #007DC5;
}

.lat-new-item h2,
#eventsPosts .lat-new-item h2{
    padding-left: 0 !important;
}

.people-detail .people-detail-banner, .people-list .people-list-banner{
    justify-content:left !important;
}

.people-detail .people-detail-banner h1 , .people-list .people-list-banner h1{
    padding:60px 60px 60px 68px;
}

/*-----Start 22-5-24------*/

.two-col-content-list.imagine-section {
  height: 500px;
}

.wpb_content_element{
    margin-bottom: 0px !important;
}
.vc_column_container>.vc_column-inner {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/*.myform-row-section{*/
/*  float:unset;*/
/*  margin: 0 auto;*/
/*  max-width:960px;*/
/*}*/
/*.myform-section {*/
/*  padding-top:35px;*/
/*  padding-bottom:70px;*/
/*  background: rgb(0,125,197);*/
/*  background: linear-gradient(180deg, rgba(0,125,197,1) 61%, rgba(61,154,215,1) 82%);*/
/*}*/

/*.myform-row-section form{*/
/*  background: white;*/
/*  padding: 40px;*/
/*}*/
/*-----End 22-5-24------*/
@media screen and (max-width: 575px) { 
    .title-wiht-cta .twc-right-cta a {
        min-width: 90px; 
        font-size: 12px; 
        padding: 10px 14px; 
        margin: 0 auto 0 auto; 
        
    } 
    .title-wiht-cta .twc-left-title { 
        max-width: 100% ;
        
    } 
    
} 
@media screen and (max-width: 375px) { 
    .title-wiht-cta { 
        flex-direction: column; 
        
    } 
    .title-wiht-cta .twc-right-cta { 
        width: 100%; 
        
    }
}
@media screen and (max-width: 1470px) {
    .research-images {
        padding-left: 0px;
    }
}
@media screen and (max-width: 991px) {
    .research-images {
        padding-top: 24px;
    }
}
@media screen and (max-width: 767px) {
    .research-images {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .research-images .vc_align_left{
        text-align: center !important;
    }
    .current-vaccancies-section{
        padding-left: 0px;
    }
}

/*23-02-2024*/

/*.latest-news-and-events.lnae {
    display: none;
}*/
/*Start 6-5-24 */
#showMoreEvents_wrap .show_button{
    font-size: 14px;
    background-color: var(--buttonMainColor);
    padding: 8px 18px;
    color: #ffffff;
    font-weight: 300;
    border: none;
    /*max-width:10%;*/
    transition: all 0.3s ease 0s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}
.filter-area #showMoreEvents_wrap .show_button{
    margin: auto;
}
.news-list-row > h2{
    padding-left: 15px !important;
    color: #007dc5;
    font-size: 30px;
    /*margin-bottom: 4px;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    gap: 10px;
}
/*END 6-5-24*/


/*10-05-24*/
.people-two-column-detail-heading {
    background-color: #edeff0;
    padding: 64px 68px 64px 68px;
    font-size: 18px;
    display: flex;
    position: relative;
}

.people-two-column-detail-heading .people-inner-heading h2 {
    color: #007dc5;
    font-size: 30px;
    font-weight: 300;
}

.people-two-column-detail-heading .people-inner-content {
    padding-left: 80px;
    position: relative;
}

.people-two-column-detail-heading .people-inner-content:before {content: '';width: 4px;height: 96%;background-color: #c3c7c9;position: absolute;left: 4%;top: 3%;}

section.people-detail .people-detail-content .people-detail-left h4{
    padding-top: 15px;
}
section.people-detail .people-detail-content .people-detail-left h4:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.people-inner-content p {
    line-height: 1.3;
}

.people-detail .people-detail-left p {
    line-height: 1.3;
}
.people-two-column-detail-heading-wbg
 {
/*    background-color: #edeff0;*/
    padding: 52px 68px 52px 68px;
    font-size: 18px;
    display: flex;
    position: relative;
}

.people-two-column-detail-heading-wbg
 .people-inner-heading h2 {
    color: #007dc5;
    font-size: 30px;
    font-weight: 300;
}

.people-two-column-detail-heading-wbg
 .people-inner-content {
    padding-left: 80px;
    position: relative;
}

.people-two-column-detail-heading-wbg
 .people-inner-content:before {content: '';width: 4px;height: 96%;background-color: #c3c7c9;position: absolute;left: 4%;top: 3%;}

section.people-detail .people-detail-content .people-detail-left h4{
    padding-top: 15px;
}
section.people-detail .people-detail-content .people-detail-left h4:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.people-inner-content p {
    line-height: 1.3;
}

.people-detail .people-detail-left p {
    line-height: 1.3;
}


.people-two-column
 {
    background-color: #edeff0;
    padding: 64px 68px 64px 68px;
    font-size: 18px;
    display: flex;
    position: relative;
}

.people-two-column
 .people-inner-heading h2 {
    color: #007dc5;
    font-size: 30px;
    /* font-weight: 300; */
}

.people-two-column
 .people-inner-content {
    padding-left: 80px;
    position: relative;
}

.people-two-column .people-inner-heading:before {
    content: '';
    width: 4px;
    height:96%;
    background-color: #c3c7c9;
    position: absolute;
    top: 3%;
    left:-2%;
}


@media (max-width:1470px){
    .people-two-column-detail-heading .people-inner-heading h2 {
        font-size: 25px;
    }
    section.people-detail .people-detail-content {
        padding-left: 40px;
    }
    .people-two-column-detail-heading {
        padding: 44px 40px 44px 40px;
    }
    .people-inner-content p {
        font-size: 16px;
    }
    .people-detail .people-detail-left p {
        font-size: 16px;
    }
    .people-detail .people-detail-left ul {
        font-size: 16px;
    }   
    .people-two-column-detail-heading .people-inner-content{
        padding-left: 70px;
    }
    .people-two-column-detail-heading .people-inner-content h3{
        font-size: 20px;
    }
    section.people-detail .people-detail-content .people-detail-left h4 {
        padding-top: 10px;
        font-size: 16px;
    }
     .people-two-column-detail-heading-wbg
 .people-inner-heading h2 {
        font-size: 25px;
    }
    section.people-detail .people-detail-content {
        padding-left: 40px;
    }
    .people-two-column-detail-heading-wbg
    {
        padding: 44px 40px 44px 40px;
    }
    .people-two-column-detail-heading-wbg
 .people-inner-content{
        padding-left: 70px;
    }
    .people-two-column-detail-heading-wbg
 .people-inner-content h3{
        font-size: 20px;
    }
    section.people-detail .people-detail-content .people-detail-left h4 {
        padding-top: 10px;
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    .people-two-column-detail-heading {
        padding: 34px 30px 34px 30px;
    }
    section.people-detail .people-detail-content {
        padding-left: 30px;
    }
    .people-two-column-detail-heading .people-inner-content {
        padding-left: 60px;
    }
    .people-two-column-detail-heading .people-inner-heading h2 {
        font-size: 21px;
    }
    .people-inner-content p {
        font-size: 14px;
    }
    .people-detail .people-detail-left p {
        font-size: 14px;
    }
    .people-detail .people-detail-left ul {
        font-size: 14px;
    }  
    .people-two-column-detail-heading .people-inner-content h3 {
        font-size: 18px;
    }
     .people-two-column-detail-heading-wbg
    {
        padding: 34px 30px 34px 30px;
    }
    .emergency-section .content-right p{
        font-size: 14px;
    }
    section.people-detail .people-detail-content {
        padding-left: 30px;
    }
    .people-detail .people-detail-banner h1, .people-list .people-list-banner h1{
        padding-left: 40px;
    }
    .people-two-column-detail-heading-wbg
 .people-inner-content {
        padding-left: 60px;
    }
    .people-two-column-detail-heading-wbg
 .people-inner-heading h2 {
        font-size: 21px;
    }
    .people-inner-content p {
        font-size: 14px;
    }
    .people-two-column-detail-heading-wbg
 .people-inner-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .people-two-column-detail-heading {
        padding: 20px;
    }
    section.people-detail .people-detail-content {
        padding-left: 0;
    }
    .people-two-column-detail-heading {
        flex-direction: column;
        align-items: center;
    }
    
    .people-two-column-detail-heading > div {
        width: 100%;
    }
    
    .people-two-column-detail-heading .people-inner-content {
        padding: 10px 0 0;
    }
    
    .people-two-column-detail-heading .people-inner-content:before {
        display: none;
    }
      .people-two-column-detail-heading-wbg
 {
        padding: 20px;
    }
    section.people-detail .people-detail-content {
        padding-left: 0;
    }
    .people-two-column-detail-heading-wbg
 {
        flex-direction: column;
        align-items: center;
    }
    
    .people-two-column-detail-heading-wbg
 > div {
        width: 100%;
    }
    
    .people-two-column-detail-heading-wbg
 .people-inner-content {
        padding: 10px 0 0;
    }
    
    .people-two-column-detail-heading-wbg
 .people-inner-content:before {
        display: none;
    }
}

/*End 10-05-24*/



/*Start 15-05-24 signle page */
.container.news-single {
    padding-bottom: 40px;
}
.news-list-row {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 60px;
}
.news-single h1 {
    color: #007dc5;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 18px;
}

/*.news-single .blog-post-img > img {*/
/*    width: 100%;*/
/*}*/

.news-single .blog-post-img {
    margin-bottom: 45px;
}

.post-social {
    border-bottom: 5px solid #d8dbdd;
    margin: 60px 0 30px 0;
    padding: 20px 0;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
}

.post-social:before {
    content: "";
    background: #d8dbdd;
    height: 5px;
    width: 164px;
    position: absolute;
    top: 0;
}

.post-social > p {
    font-size: 16px;
    color: inherit;
    display: block;
    width: 100%;
}

.post-social ul a {
    width: 35px;
    height: 36px;
    background: #27aae1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    margin: 10px 0;
}

.post-social ul {
    gap: 0 20px;
}

.post-social ul a.a2a_button_facebook {
    background: #4072b7;
}

.news-list-row {
    margin-top: 20px;
    margin-bottom: 60px;
}

.news-list-row > h2 {
    margin-bottom: 30px;
}

.news-list-row .row > div {
    padding: 0 10px;
}

.news-list-row .row {
    margin: 0 -10px;
}

.news-list-row .lat-new-item h2 {
    font-size: 16px;
    margin-bottom: 15px;
}

.news-list-row .lat-new-item p {
    font-size: 16px;
}

.news-list-row .lat-new-item h2 > a {
    color: #007dc5;
}

.news-list-row .lat-new-item p.date {
    margin: 0 0 12px 0;
    font-size: 14px;
}

.news-list-row .img-lat-new {
    margin-bottom: 20px;
}

.news-list-row .img-lat-new > a > img {
    
    object-fit: cover;
    object-position: center;
}


.people-two-column.with-bg {
    padding-left:0;
    padding-right: 0;
}
.people-two-column.with-bg .people-inner-heading:first-child:before {
    display: none;
}
.people-two-column.with-bg .people-inner-heading {
    padding: 0 64px;
}

.gd-border-btm:after {
    content: "";
    background-image: linear-gradient(90deg, #cbdb2a 0%, #27aae1 100%);
    height: 5px;
    width: 100%;
    display: block;
    margin-top: 15px;
}

.gd-border-btm {
    padding-bottom: 15px;
}

.gd-border-btm h3 {
    font-size: 25px;
    color: #007dc5;
}
/*.people-two-column.with-bg .people-inner-heading h2 {*/
/*    font-size: 34px;*/
/*}*/
.people-two-column.with-bg .people-inner-heading:before{
    left:0;
}

.people-two-column.with-bg .people-inner-heading p{
    line-height: 1.3;
}

.heading-with-box-content {
    padding: 55px 50px;
}
.heading-with-box-content .title h2{
    text-align:center;
    color: #007dc5;
    font-weight: 700;
}

.box-content-row > div {
    text-align: center;
    padding: 10px 20px;
}
.box-content-row > div > .vc_column-inner {
    max-width: 250px;
    margin: 0 auto;
}

.box-content-row > div:first-child {
    padding-left: 0;
}

.box-content-row > div:last-child {
    padding-right: 0;
}

.box-content-row > div:not(:first-child) > .vc_column-inner:before {
    content: "";
    background: #9ca5aa;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}


.box-content-row {
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.box-content-row .wpb_text_column h4 {
    font-size: 18px;
    font-weight: 500;
    color: #007dc5;
    margin-bottom: 12px;
}

.two-col-content-list{
    padding: 65px 10px;
}
.with-gradient {
    color: #fff;
    background-image: linear-gradient(90deg, #cbdb2a 0%, #27aae1 100%);
    position: relative;
}
.with-gradient:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/images/full-gredient-bg.png) no-repeat center center;
    background-size: 100% 100%;
}
.two-col-content-list ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}
.two-col-content-list > div {
    padding: 0 50px;
}
.two-col-content-list h2 {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 5px solid currentColor;
    max-width: 225px;
    padding-bottom: 15px;
    /*font-size: 34px;*/
}
.two-col-content-list.with-gradient {
    margin: 25px 0;
}

.people-two-column.no-bg {
    background: transparent;
    padding: 60px 30px 50px 60px;
}

.people-two-column.no-bg .people-inner-heading:first-child:before {
    display: none;
}
.people-two-column.no-bg .people-inner-heading {padding-right: 80px;}

.people-two-column.no-bg .people-inner-heading + .people-inner-heading {
    padding-right: 0;
    padding-left: 80px;
}

.people-two-column.no-bg .people-inner-heading:before {
    left: 0;
}
.title.title-34 h2,
.title.title-34 h3,
.people-two-column .people-inner-heading .title-h2 h2{
    font-size: 34px;
    font-weight: 700;
}

.title.title-34 h2 strong,
.title.title-34 h3 strong,
.people-two-column .people-inner-heading .title-h2 h2 strong{
    font-weight: 700;
}


.people-two-column.no-bg .people-inner-heading a {
    color: #27aae1;
}

.people-two-column.no-bg .people-inner-heading {
    font-size: 22px;
}

.people-two-column.no-bg .people-inner-heading h4 {
    font-size: 22px;
    color: #007dc5;
}

.people-two-column.no-bg .people-inner-heading ul li {
    font-size: 17px;
    list-style-type: disc;
}

.people-two-column.no-bg .people-inner-heading ul {
    padding-left: 18px;
    margin-bottom: 30px;
}

.people-two-column.no-bg .people-inner-heading .title {
    padding-bottom: 25px;
}
.people-two-column.no-bg .people-inner-heading ul li::marker {
    color: #84bf59;
}

.content-gray-box {
    padding: 35px 50px;
    background-color: #edefef;
    margin: 30px 0 80px 0;
}

.content-gray-box .title h3 {
    color: #007dc5;
    text-align: center;
    text-transform: uppercase;
}

.content-gray-box .gd-border-btm.title:after {
    margin-top: 30px;
    margin-bottom: 10px;
}
.pillar-row {
    margin: 0 -40px;
}
.pillar-row .pillar-item{
    padding: 20px 40px;
}
.pillar-item .image-icon {
    margin-bottom: 20px;
}

.pillar-content h3 {
    margin-bottom: 12px;
    font-weight: 500;
    color: #007dc5;
    text-transform: uppercase;
}

/*News single page */
.cms-form.container {
    max-width: 1140px;
}
/*.cms-form .form-rows {*/
/*    margin: 0 -15px;*/
/*}*/
.cms-form .form-rows {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.cms-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cms-form .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
}
.cms-form .form-rows .form-class {
    width: 100%;
    padding: 0 15px;
}

.cms-form .form-rows .form-class.form-col-2 {
    width: 20%;
}

.cms-form .form-rows .form-class.form-col-4 {
    width: 40%;
}
.cms-form .form-class.form-col-6 {
    width: 50%;
}

.cms-form .form-class input.wpcf7-form-control,
.cms-form  .form-class textarea,
.cms-form .form-class select.wpcf7-form-control {
    border: none;
    border-radius: 0;
    padding: 15px 18px;
    font-size: 16px;
}

.cms-form .form-class label {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.cms-form .form-class br {
    display: none;
}
.cms-form > .vc_column-inner {
    padding: 80px 0 30px 0 !important;
}

.cms-form  .wpcf7 form.invalid .wpcf7-response-output,
.cms-form .wpcf7 form.unaccepted .wpcf7-response-output,
.cms-form .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #a0e3ff;
}
.cms-form .wpcf7-not-valid-tip{
    color: #a0e3ff;
}
.cms-form .submit-btn{
     padding: 0 15px;
}
.cms-form .submit-btn > p {
    display: flex;
    align-items: center;
}

.py-40{
    padding-top: 40px;
    padding-bottom: 40px;
}
.pl-70,
.imagine-section.right-shape-image > div.pl-70{
    padding-left: 70px;
}
.py-100,
.imagine-section.right-shape-image > div.column-left{
    padding-top: 100px;
    padding-bottom: 100px;
}
.imagine-section.right-shape-image > div.column-left {
    padding-right: 40px;
}

.row.custom-term-layout > .post-content {
    padding: 0 15px;
    width: 100%;
}
.imagine-section.right-shape-image {
    height: auto;
    background-color: #007dc5;
    color: #fff;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    margin-top: 30px !important;
}

.imagine-section.right-shape-image > div {
    padding: 0;
}

.myform-row-section.container {
    margin: 0 auto !important;
    float: none;
    padding: 0 15px;
}
.imagine-section.right-shape-image > .column-image div,
.imagine-section.right-shape-image > .column-image .wpb_single_image .vc_figure, .imagine-section.right-shape-image > .column-image img {
    height: 100%;
}

.imagine-section.right-shape-image > .column-image img {
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.imagine-section.right-shape-image .column-left h2,
.imagine-section.right-shape-image .column-left p{
    margin-bottom: 30px;
    font-size: 36px;
}
.imagine-section.right-shape-image .column-left p{
    font-size: 26px;
    font-weight: 300;
}
.imagine-section.right-shape-image .column-left p:last-of-type{
    margin-bottom: 0;
}

.imagine-section.right-shape-image > div.column-left {
    width: 64%;
    z-index: 1;
}
.imagine-section.right-shape-image > div.column-image {
    width: 36%;
}
.imagine-section.right-shape-image .vc_column-inner {
  padding-top: 0 !important;
}

.imagine-section.right-shape-image:after{
    content: '';
    background: url(../../assets/images/right-edge-shape.png) no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    width: 77%;
    height: 100%;
}

.imagine-section.right-shape-image .content-right{
    position: relative;
   
}

.people-two-column-detail-heading-wbg.emergency-section {
    padding-bottom: 0px;
}
.emergency-section .content-right{
     padding-top: 70px;
    padding-bottom: 70px;
}
.emergency-section .content-left {
    padding-top: 90px;
}
.emergency-section .content-right:after, 
.emergency-section .content-right:before {
    content: '';
    background: url(../../assets/images/green-qoute.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 67px;
    height: 55px;
        background-size: contain;
    background-repeat: no-repeat;
}

.emergency-section .content-right:after {
    top: auto;
    bottom: 51px;
    left: auto;
    right: -80px;
    transform: rotate(180deg);
}

.emergency-section .content-right > div {
    max-width: 820px;
}

.emergency-section .meta-info h4 {
    color: #007dc5;
    margin-bottom: 15px;
}
.emergency-section .meta-info {
    padding-top: 25px;
    line-height: 1;
}
.emergency-section .content-right h2 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 300;
    font-size: 40px;
}

.foetus-affect-section {
    position: relative;
    z-index:1;
    padding-bottom: 40px;
    font-size: 18px;
}
.foetus-affect-section:after {
    content: "";
    background: #f8f8f8;
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    top: 0;
    z-index: -1;
}

.section-content-rows .col-left .bottom-image {
    position: relative;
    bottom: -40px;
    margin-top: 20px;
}

.emergency-section .vc_column-inner,
.foetus-affect-section .vc_column-inner{
    padding-top: 0;
}

.heading-black-box {
    background: #394b55;
    color: #fff;
    padding: 35px 70px;
    position: relative;
        z-index: 1;
}

.heading-black-box h2 {
    font-weight: 300;
    max-width: 620px;
    font-size: 32px;
}
.section-content-rows > div {
    padding: 20px 35px;
}

.section-content-rows {
    padding: 0 35px;
}

.container.vc_column_container {
    float: none;
}
.heading-black-box:before {
    content: "";
    background: #394b55;
    position: absolute;
    left: -200%;
    width: 1000%;
    height: 100%;
    top: 0;
    z-index: -1;
    pointer-events: none;
}
.heading-black-box:after,
.shape-gray-bottom:after{
        content: "";
    position: absolute;
    left: auto;
    right: -240px;
    top: auto;
    bottom: 0;
    height: 100%;
    width: 65%;
    background: url(../../assets/images/shape-1200.png) no-repeat;
    z-index: 0;
    opacity: 0.2;
    background-position: bottom right;
    background-size: contain;
    pointer-events: none
}
.section-content-rows div ul,
.research-detail .research-detail-desc-box div ul,
.key-initiatives .col-left ul{
    padding-left: 18px;
}
.section-content-rows div ul li,
.research-detail .research-detail-desc-box div ul li,
.key-initiatives .col-left ul li{
    list-style-type: disc;
    margin-bottom: 15px;
}

.key-initiatives .col-left ul li{
  margin-bottom: 12px;
}

.section-content-rows div ul li::marker,
.research-detail .research-detail-desc-box div ul li::marker,
.key-initiatives .col-left ul li::marker{
    color: #29a9e1;
}

.research-detail .research-detail-desc-box div ul > li ul,
.section-content-rows div ul > li ul {
    padding-top: 9px;
}

.research-detail .research-detail-desc-box div ul > li ul > li,
.section-content-rows div ul > li ul > li {
    margin-bottom: 4px;
}
.key-initiatives {
    padding: 70px 0 90px 0;
    font-size: 18px;
}

.key-initiatives .col-left .vc_column-inner {
    max-width: 610px;
    width: 100%;
}

.key-initiatives .col-left h2 {
    margin-bottom: 26px;
    padding-bottom: 25px;
    font-weight: 300;
    color: #007dc5;
    position: relative;
}

.key-initiatives .col-left h3 {
    color: #007dc5;
    font-weight: 400;
    margin-bottom: 13px;
    margin-top: 40px;
}

.key-initiatives .col-left h2:after {
    content: "";
    width: 150px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #cce5f3;
}

.shape-gray-bottom {
    padding-bottom: 240px;
    position: relative;
}
.shape-gray-bottom:after {
    background: url(../../assets/images/gray-shape-bottom.png) no-repeat;
    top: auto;
    bottom: -40px;
    left: 0;
    right: 0;
    width: 100%;
    height: 280px;
    background-size: 100% 100%;
    background-position: bottom left;
    z-index: 1;
    opacity: 1;
}

.page-template-template-general-donation .people-detail-banner h1 {
    text-align: left !important;
}
.emergency-section .content-right p {
    margin-bottom: 15px;
    line-height: 1.3;
}
.section-content-rows > div p {
    line-height: 1.25;
    margin-bottom: 20px;
}

.people-detail .people-detail-box .container .wpb-content-wrapper > .people-detail-block {
    margin: 0;
}

.people-detail .people-detail-box .container .wpb-content-wrapper .people-two-column-detail-heading-wbg, .people-detail .people-detail-box .container .wpb-content-wrapper .imagine-section {
    margin: 0;
}

.imagine-news-tiles .imagine-section-column {
    margin: 0;
    padding-top: 28px;
    padding-bottom: 28px;
    display:flex;
}

.custom-layout-image-text-wrapper > div, .custom-layout-image-text-wrapper > div > div {
    height: 100%;
}

.imagine-news-tiles imagine-heading h2 {
    font-size: 38px;
}

.imagine-news-tiles .imagine-heading h2 {
    font-size: 38px;
    margin: 17px 0;
}

.imagine-news-tiles .imagine-heading {
    margin-bottom: 46px !important;
}
.custom-layout-image-text-wrapper .wpb_wrapper {
    display: flex;
    align-items: center;
}
.imagine-section-column .custom-layout-image-text-wrapper .custom-layout-image {
    max-width: 272px;
    width: 100%;
    height: 100%;
}
.imagine-section-column .custom-layout-image-text-wrapper .custom-layout-image .vc_single_image-wrapper,.imagine-section-column .custom-layout-image-text-wrapper .wpb_single_image .vc_figure{
    height: 100%;
}
.imagine-section-column .custom-layout-image-text-wrapper .custom-layout-image .vc_single_image-wrapper img {
    object-fit:cover;
    height: 100%;
}
.imagine-section-column .custom-layout-image-text-wrapper .custom-layout-text {
    max-width: 370px;
    width: 100%;
    padding: 0 30px;
    font-size: 20px;
}
.people-two-column-detail-heading-wbg .people-inner-content h3 {
    font-size: 18px;
}
.people-two-column-detail-heading-wbg .people-inner-content {
    width: 64%;
    margin-left:auto;
}


@media (min-width: 640px) {
    .container.news-single {
        max-width: 740px;
    }
}

@media (min-width: 991px) {
    .container.news-single {
        max-width: 860px;
    }
    .news-list-row .img-lat-new > a > img {
        max-height: 180px;
        min-height: 180px;
    }
}

@media (min-width: 1100px){
    .container.news-single {
        max-width: 980px;
    }
    .news-list-row .img-lat-new > a > img {
        max-height: 208px;
        min-height: 208px;
    }
    
}


@media (min-width: 1470px){
    .container.news-single {
        max-width: 1100px;
    }
    .news-list-row .img-lat-new > a > img {
        max-height: 266px;
        min-height: 266px;
    }
    
   
}

@media (max-width: 1470px){
    .title.title-34 h2,
    .title.title-34 h3,
    .people-two-column .people-inner-heading h2,
    .people-two-column .people-inner-heading .title-h2 h2{
        font-size: 28px;
    }
    .pillar-content h3 {
        font-size: 20px;
    }
    
    .emergency-section .content-right h2{
        font-size: 32px;
    }
        
    .foetus-affect-section,
    .key-initiatives,
    .people-two-column-detail-heading-wbg,
    .imagine-section-column .custom-layout-text p{
        font-size: 16px;
    }   
    
    .pl-70, .imagine-section.right-shape-image > div.pl-70 {
        padding-left: 40px;
    }
    
    .people-two-column.with-bg .people-inner-heading{
        padding: 0 40px;
    }
    .gd-border-btm h3{
        font-size: 20px;
    }
    .heading-with-box-content,
    .people-two-column.no-bg{
        padding-left: 40px;
        padding-right: 40px;
    }
    .two-col-content-list > div {
        padding: 0 30px;
    }
    .people-two-column.no-bg .people-inner-heading{
        padding-right: 50px;
    }
    .people-two-column.no-bg .people-inner-heading + .people-inner-heading{
        padding-left: 50px;
    }
    .people-two-column.no-bg .people-inner-heading,
    .people-two-column.no-bg .people-inner-heading h4{
        font-size: 18px;
    }
    .pillar-row{
        margin: 0 -25px;
    }
    .pillar-row .pillar-item {
        padding: 15px 25px;
    }
    
     .imagine-section.right-shape-image > div.column-left {
        padding-right: 0;
    }
    
    .py-100, .imagine-section.right-shape-image > div.column-left {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .imagine-section.right-shape-image:after {
            width: 78%;
            height: 100%;
            background-position: right
    }
    
    .imagine-section.right-shape-image .column-left h2, .imagine-section.right-shape-image .column-left p{
        margin-bottom: 20px;
        font-size: 30px;
    }
    .imagine-news-tiles .imagine-heading h2{
        font-size: 30px;
        margin: 5px 0;
    }
    .imagine-section.right-shape-image .column-left p {
        font-size: 21px;
    }
    .emergency-section .content-right {
        padding-left: 40px;
    }
    .emergency-section .content-right:after,
    .emergency-section .content-right:before {
        left: 40px;
    }
    .emergency-section .content-right:after {
        left: auto;
        right: -70px;
    }
    .heading-black-box h2 {
        font-size: 28px;
    }
    
    .key-initiatives {
        padding: 60px 0 60px 0;
    }
    .key-initiatives > .col-left {
        padding-right: 30px;
    }
    .shape-gray-bottom {
        padding-bottom: 180px;
    }
    .shape-gray-bottom:after{
       height: 180px;
    }
    .imagine-section-column .custom-layout-text h2 {
        font-size: 18px;
    }
    
    .emergency-section .content-right {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .emergency-section .content-right:after,
    .emergency-section .content-right:before {
        width: 40px;
        height: 40px;
    }
    .emergency-section .content-right {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .imagine-news-tiles .imagine-heading {
        margin-bottom: 30px !important;
    }
   
    .people-detail .people-detail-banner h1, .people-list .people-list-banner h1 {
        padding-left: 40px;
    }
    
    .imagine-news-tiles {
        margin-top:30px;
    }
    
    
}

@media (max-width: 1200px){
    
}

@media (max-width: 1100px){
    .emergency-section .content-right h2 {
        font-size: 28px;
    }
    .imagine-section.right-shape-image .column-left h2,
    .imagine-section.right-shape-image .column-left p {
        margin-bottom: 15px;
        font-size: 26px;
    }
    .imagine-section.right-shape-image .column-left p {
        font-size: 18px;
    }
    .gd-border-btm h3 {
        font-size: 16px;
    }
    .people-two-column.with-bg,
    .box-content-row > div,
    .two-col-content-list,
    .people-two-column.no-bg .people-inner-heading ul li{
        font-size: 14px;
    }
    .people-two-column.no-bg .people-inner-heading, .people-two-column.no-bg .people-inner-heading h4{
        font-size: 16px;
    }
    .pl-70, .imagine-section.right-shape-image > div.pl-70 {
        padding-left: 30px;
    }
    .key-initiatives .col-left h2 {
        margin-bottom: 24px;
        padding-bottom: 15px;
    }
    .cms-form > .vc_column-inner {
        padding: 50px 0 30px 0 !important;
    }
    .emergency-section .content-right{
        padding-bottom: 60px;
    }
    .emergency-section .content-right:before{
        left: 0;
    }
    .emergency-section .content-right:after{
        right: 0;
        bottom: 20px;
    }
}


@media (max-width: 991px){
    
    .two-col-content-list {
        padding: 30px 10px;
    }
    
    .people-two-column.no-bg {
        padding: 30px 20px 30px 20px;
    }
    
    .news-list-row .lat-new-item {
        margin-bottom: 30px;
    }
    
    .two-col-content-list > div {
        width: 100%;
        padding: 15px 20px;
    }
    .two-col-content-list ul {
        padding-left: 20px;
    }
    .pillar-row .pillar-item {
        width: 48%;
    }
    
    .pillar-row {
        display: flex;
        flex-wrap: wrap;
    }
    .people-two-column.no-bg{
        flex-wrap: wrap;
    }
    .people-two-column.no-bg .people-inner-heading {
        width: 100%;
        padding: 0;
    }
    .people-two-column.no-bg .people-inner-heading + .people-inner-heading{
        padding:0;
    }
    .people-two-column.no-bg .people-inner-heading + .people-inner-heading:before{
        display:none;
    }
    
    .emergency-section .content-left {
        padding-top: 20px;
        text-align: center;
    }
    
    .emergency-section .content-right {
        text-align: center;
        padding: 60px 40px 60px 40px;
        margin-top: 20px;
    }
 
    .emergency-section .content-left .wpb_single_image.vc_align_left {
        text-align: center;
    }
    .heading-black-box:after {
        width: 100%;
    }
    .section-content-rows > div,.key-initiatives > div {
        width: 100%;
        padding: 15px 20px;
    }

    .section-content-rows .col-left .bottom-image {bottom: 0;}
    .shape-gray-bottom {
        padding-bottom: 100px;
    }
    .shape-gray-bottom:after {
        height: 120px;
    }
    .section-content-rows {
        padding: 20px 20px;
    }
    .heading-black-box{
        padding: 30px 20px;
    }
    .key-initiatives {
        padding: 0 0 40px 0;
    }
    .imagine-section-wrapper .custom-layout-container > div,
    .people-two-column-detail-heading-wbg .people-inner-content{
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }
    .imagine-section.right-shape-image:after {
        width: 84%;
    }
    
    .custom-layout-image-text-wrapper .wpb_wrapper {
        flex-wrap: wrap;
        align-items: flex-start;
        height:auto;
    }
    .imagine-section-column .custom-layout-image-text-wrapper .custom-layout-image,.imagine-section-column .custom-layout-image-text-wrapper .custom-layout-text {
        max-width: 100%;
        width: 100%;
        flex: inherit;
                height: auto;
    }
    
    .imagine-section-column .custom-layout-image-text-wrapper .custom-layout-image .vc_single_image-wrapper img{
        max-height: 240px;
        min-height: 240px;
    }
    .imagine-section-column .custom-layout-image-text-wrapper .custom-layout-text{
        padding: 15px 0;
    }
    .imagine-section-column .custom-layout-image-text-wrapper {
        padding: 0 15px;
    }
    .imagine-news-tiles .imagine-section-column{
            padding-top: 10px;
    padding-bottom: 10px;
    }
    
}

@media (max-width: 767px){
    .title.title-34 h2,
    .title.title-34 h3, 
    .people-two-column .people-inner-heading h2, 
    .people-two-column .people-inner-heading .title-h2 h2 {
        font-size: 24px;
    }
    .imagine-section.right-shape-image .column-left h2, .imagine-section.right-shape-image .column-left p,.imagine-news-tiles .imagine-heading h2{
        font-size: 22px;
    }
    .imagine-section.right-shape-image .column-left p {
        font-size: 18px;
    }
    .with-gradient:before{
        background-size: cover;
    }
    .pillar-row .pillar-item {
        width: 100%;
    }
    .content-gray-box{
        padding:25px 15px;
        margin:20px 0 40px 0;
    }
    .news-list-row {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .news-single h1{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .container.news-single {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .post-info {
        padding-bottom: 0;
    }
    .news-single .blog-post-img {
        margin-bottom: 25px;
    }
    .post-social {
        margin: 30px 0 15px 0;
    }
    .news-list-row > h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .people-two-column.with-bg{
        flex-wrap: wrap;
    }
    .people-two-column{
        padding: 30px 20px;
    }
    .people-two-column.with-bg .people-inner-heading {
       width: 100%;
       padding: 12px 20px;
    }
    .people-two-column.with-bg .people-inner-heading:before,
    .box-content-row > div:not(:first-child) > .vc_column-inner:before{
        display:none;
    }
    .box-content-row > div:first-child,
    .box-content-row > div:last-child,
    .box-content-row > div {
        padding: 0 15px;
        margin: 15px 0;
    }
    .heading-with-box-content, 
    .people-two-column.no-bg {
        padding-left: 15px;
        padding-right: 15px;
    }
    .heading-black-box h2 {
        font-size: 20px;
        text-align: center;
    }
    .imagine-section.right-shape-image > div.column-left, 
    .imagine-section.right-shape-image > div.column-right {
        width: 100%;
        padding: 20px 20px;
    }
    .imagine-section.right-shape-image:after{
        width:100%;
        background-position: bottom;
    }
    .imagine-section.right-shape-image > div.column-image {
        width: 100%;
        z-index: 1;
    }
    .py-100, .imagine-section.right-shape-image > div.column-left {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .emergency-section .content-right {
        padding: 40px 0 60px 0;
    }
    .cms-form .form-rows .form-class.form-col-2, .cms-form .form-rows .form-class.form-col-4, .cms-form .form-rows .form-class.form-col-6 {
        width: 100%;
    }
    .imagine-section-wrapper .custom-layout-container > div {
        flex-wrap: wrap;
        gap: 15px 0;
    }
    
    .imagine-section-wrapper .custom-layout-container > div > div {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }
    .imagine-news-tiles .imagine-section-column{
       padding-top: 0;
        padding-bottom: 0;
    }
    .imagine-news-tiles .imagine-section-column > div {
        margin: 10px 0;
    }
    .imagine-section-column .custom-layout-image-text-wrapper .custom-layout-text{
        font-size: 16px;
    }
    
}

@media (max-width: 480px){
    .imagine-news-tiles .imagine-section-column {
        flex-wrap: wrap;
    }
}


/*2-04-25 */


.people-detail-block.two-column-custom .row {
    margin: 0;
}

.people-detail-block.two-column-custom .people-inner-heading.col-4 {
    padding: 0;
}

.people-detail-block.two-column-custom .people-two-column-detail-heading-wbg .people-inner-content {
    margin-left: auto;
    flex: 0 0 64%;
    max-width: 64%;
}

@media (max-width: 991px){
 .people-detail-block.two-column-custom  .people-two-column-detail-heading-wbg > div,
.people-detail-block.two-column-custom .people-two-column-detail-heading-wbg .people-inner-content{
    flex: 0 0 100%;
    max-width: 100%;
}
}

/*19-05-25*/
.popmake .donate-now-wrapper .popmake-close{
    position: absolute;
    top: 0;
    right: 0;
}

.popmake .donate-now-wrapper {
    position:relative;
}

.popmake .donate-now-wrapper button{
    min-width: 50px;
}

@media (max-width: 767px) {
    .popmake .donate-now-wrap{
        padding-top: 15px;
    }
    .research-pages-button{
       text-align: center;
    }
}


