@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
}

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

.container-fluid {
  max-width: 1920px;
  padding-left: 75px;
  padding-right: 75px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container {
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.container-xl {
  max-width: 1118px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-small {
  max-width: 900px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.padding-section-large {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .padding-section-large {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .padding-section-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.padding-section-small {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .padding-section-small {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.margin-section-large {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .margin-section-large {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .margin-section-large {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.margin-section-small {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .margin-section-small {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

a {
  color: #023E5A;
  text-decoration: none;
  transition: all 0.4s;
}

.text-link-underline {
  text-decoration: underline;
}

input,
select,
textarea {
  outline: none;
  box-shadow: none;
  font-family: "DM Sans", sans-serif;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: transparent;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: transparent;
}
input:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: transparent;
}

.site blockquote {
  margin-bottom: 30px;
}
.site blockquote p {
  font-size: 24px;
  line-height: 30px;
  color: #EF7D00;
  font-style: italic;
  font-weight: 700;
}
@media (max-width: 767px) {
  .site blockquote p {
    font-size: 20px;
    line-height: 26px;
  }
}

.text-color-primary {
  color: #023E5A;
}

.text-color-secondary {
  color: #009FE1;
}

.bg-color-primary {
  background-color: #023E5A;
}

.bg-secondary {
  background-color: #95DFE8;
}

.bg-blue-light {
  background-color: #F0F6F9;
}

.bg-blue-lighter {
  background-color: #D5F2F6;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray-lighter {
  background-color: #F5F5F5;
}

.relative {
  position: relative;
}

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.overlay::after {
  content: "";
  background: linear-gradient(95.24deg, #6C4796 0.18%, #023E5A 52.08%, #0484C0 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.76;
}

.grey-shape {
  position: relative;
  z-index: 1;
}
.grey-shape:after {
  content: "";
  height: 234px;
  max-width: 442px;
  width: 100%;
  background-image: url(../images/grey-shape.svg);
  position: absolute;
  bottom: -220px;
  pointer-events: none;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 991px) {
  .grey-shape:after {
    bottom: -180px;
  }
}

.custom-arrow {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 1px;
  margin: 4.3px 0;
  border-radius: 9999px;
  background-color: #009FE1;
  transition: all 0.4s;
}
.custom-arrow::before {
  transform: rotate(45deg);
}
.custom-arrow::after {
  transform: rotate(-45deg);
}

.custom-arrow::before,
.custom-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #009FE1;
  transform-origin: calc(100% - 0.5px) 50%;
}

.swiper-custom-arrow {
  display: inline-flex;
  align-items: center;
  gap: 25px;
}
.swiper-custom-arrow .next-arrow {
  background-image: url("../images/slide-arrow.svg");
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .swiper-custom-arrow .next-arrow {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}
.swiper-custom-arrow .next-arrow:hover {
  background-image: url("../images/slide-arrow-blue.svg");
  transform: rotate(0);
}
.swiper-custom-arrow .prev-arrow {
  background-image: url("../images/slide-arrow.svg");
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .swiper-custom-arrow .prev-arrow {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}
.swiper-custom-arrow .prev-arrow:hover {
  background-image: url("../images/slide-arrow-blue.svg");
  transform: rotate(180deg);
}

.underline {
  text-decoration: underline !important;
}

.fancybox__container .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-width: 2px;
  border-color: #D5F2F6;
}

/*
This file can be used to overwrite any normailze settings.
*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

a {
  text-decoration: none;
}

menu,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */
[hidden] {
  display: none;
}

/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/
/**
 * Basic typography style for copy text
 */
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  font-size: 18px;
  line-height: 26px;
  color: #023E5A;
}

p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  font-size: 17px;
  line-height: 26px;
  color: #023E5A;
  margin-bottom: 30px;
}
p:last-child {
  margin-bottom: 0;
}
p:empty {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
}

h1 {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

h2 {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

h3 {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}

h4 {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

h5 {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 42px;
}

.heading-style-h1 {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
}
@media (max-width: 991px) {
  .heading-style-h1 {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .heading-style-h1 {
    font-size: 36px;
    line-height: 47px;
  }
}

.heading-style-h2 {
  color: #95DFE8;
  font-family: "DM Sans", sans-serif;
  font-size: 39px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
}
@media (max-width: 991px) {
  .heading-style-h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .heading-style-h2 {
    font-size: 34px;
    line-height: 32px;
  }
}

.content-part-xxl {
  color: #023E5A;
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
}
.content-part-xxl p {
  font-size: 19px;
  line-height: 28px;
  font-weight: 500;
}

.content-part-xl {
  color: #023E5A;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.content-part-xl p {
  font-size: 18px;
  line-height: 27px;
}

.content-part-sm {
  color: #023E5A;
  font-size: 17px;
  font-weight: 400;
  line-height: 42px;
}

.content-part-xs {
  color: #023E5A;
  font-size: 14px;
  font-weight: 600;
  line-height: 27px;
}
.content-part-xs p {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}

.topbar-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}
.topbar-links li {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #ffffff;
}
.topbar-links li a {
  color: #ffffff;
}
.topbar-links li a.head-call {
  font-weight: 400;
}
.topbar-links li a:hover {
  color: #EF7D00;
}
.topbar-links li .head-whatsapp-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-branding {
  margin-bottom: -75px;
  position: relative;
  z-index: 1;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .site-branding {
    margin-bottom: -65px;
    max-width: 123px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    right: 0;
  }
}
@media (max-width: 991px) {
  .site-branding.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }
}

@media (max-width: 991px) {
  .secondary-topbar {
    background-color: #D6F0FA;
    min-height: 142px;
    position: relative;
  }
}

.site-header {
  background-color: #F5F5F5;
}
.site-header .header-search {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  right: 0;
  height: 34px;
  border: 1px solid transparent;
  padding: 6px 0 6px 6px;
}
.site-header .header-search.focused {
  width: 500px;
  border-color: #95DFE8;
  background: #ffffff;
}
.site-header .header-search .search-icon {
  background: transparent;
  border: 0;
  font-size: 0;
  background-image: url(../images/search-icon.svg);
  width: 23px;
  height: 17px;
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center;
}
.site-header .header-search .search {
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  padding: 0;
}
.site-header .header-search .search::-moz-placeholder {
  color: #023E5A;
  opacity: 1;
}
.site-header .header-search .search::placeholder {
  color: #023E5A;
  opacity: 1;
}
.site-header .searchform {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 77px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}
@media (max-width: 991px) {
  .nav-container {
    padding: 23px 0;
    justify-content: flex-end;
  }
}
.nav-container .nav-items {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 991px) {
  .nav-container .nav-items {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .nav-container .nav-items {
    align-items: flex-start;
  }
}
.nav-container .menu {
  gap: 64px;
}
@media (min-width: 991px) {
  .nav-container .menu {
    display: inline-flex;
  }
}
@media (max-width: 1600px) {
  .nav-container .menu {
    gap: 35px;
  }
}
@media (max-width: 1440px) {
  .nav-container .menu {
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .nav-container .menu {
    gap: 0;
  }
}
.nav-container .menu .menu-item a {
  padding: 10px;
  display: block;
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1440px) {
  .nav-container .menu .menu-item a {
    font-size: 16px;
    line-height: 20px;
  }
}
.nav-container .menu .menu-item a:hover::after {
  width: 100%;
}
.nav-container .menu .menu-item a::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background: #023E5A;
  margin-top: 2px;
  transition: all 0.4s;
}
.nav-container .menu .menu-item.current-menu-item a::after {
  width: 100%;
}

.navigation-menubar {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .navigation-menubar {
    display: none;
  }
}
.navigation-menubar .btn.btn-orange-text-white {
  background-color: #FF9623;
  color: #023E5A;
}
.navigation-menubar .btn.btn-orange-text-white:hover {
  background-color: #EF7DBA;
}
.navigation-menubar .btn.btn-orange-text-white.active-top-btn {
  background-color: #EF7DBA;
}
.navigation-menubar .btn.btn-white.active-top-btn {
  background-color: #009FE1;
  color: #ffffff;
}
.navigation-menubar .btn:nth-child(3).active-top-btn {
  background-color: #000000;
  color: #ffffff;
}

.mobile-menu {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  z-index: 999999;
  right: 20px;
}
.mobile-menu .mobile-search .serch-close-icon {
  display: none;
}
.mobile-menu .menu-toggle {
  height: 18px;
  display: flex;
  align-items: center;
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .mobile-search {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
}
@media (max-width: 991px) {
  .mobile-menu .mobile-navigation {
    display: none;
  }
}

@media (max-width: 767px) {
  .mm-ocd .mm-ocd__content {
    min-width: 100%;
  }
}
.mm-ocd .mm-ocd__content .mobile-navigation.mm-spn {
  background: #023E5A;
  padding: 30px 20px;
  display: block;
}
.mm-ocd .mm-ocd__content .mobile-navigation .menu-header-menu-container .menu .menu-item {
  margin-bottom: 16px;
}
.mm-ocd .mm-ocd__content .mobile-navigation .menu-header-menu-container .menu .menu-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .mm-ocd .mm-ocd__content .mobile-navigation .menu-header-menu-container .menu .menu-item a {
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    display: inline-block;
    margin-top: -3px;
  }
  .mm-ocd .mm-ocd__content .mobile-navigation .menu-header-menu-container .menu .menu-item a:hover::after {
    width: 100%;
  }
  .mm-ocd .mm-ocd__content .mobile-navigation .menu-header-menu-container .menu .menu-item a::after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    background: #ffffff;
    transition: all 0.4s;
  }
}
.mm-ocd .mm-ocd__content .mobile-navigation .menu-header-menu-container .menu .menu-item.current-menu-item a::after {
  width: 100%;
}
@media (max-width: 767px) {
  .mm-ocd .mm-ocd__backdrop {
    display: none;
  }
}
.mm-ocd .mm-spn ul:after {
  height: 26px;
}

.mm-ocd-opened .mobile-search-form .searchform {
  z-index: 99999;
}
.mm-ocd-opened .mobile-menu .mobile-search svg {
  fill: #ffffff;
}
.mm-ocd-opened .menuicon {
  position: relative;
  z-index: 99999;
  background-color: transparent;
}
.mm-ocd-opened .menuicon::before {
  background-color: #ffffff;
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.mm-ocd-opened .menuicon::after {
  background-color: #ffffff;
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.mmenu-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid #009FE1;
  border-bottom: 1px solid #009FE1;
  padding-top: 26px;
  padding-bottom: 26px;
  margin-bottom: 26px;
}
.mmenu-buttons .btn.btn-white.active-top-btn {
  background-color: #EF7DBA;
}
.mmenu-buttons .btn:nth-child(2).btn-white {
  background-color: #FF9623;
  color: #023E5A;
}
.mmenu-buttons .btn:nth-child(2).btn-white:hover {
  background-color: #EF7DBA;
}
.mmenu-buttons .btn:nth-child(2).btn-white.active-top-btn {
  background-color: #EF7DBA;
}
.mmenu-buttons .btn.btn-join-us.active-top-btn {
  background-color: #EF7DBA;
}

@media (min-width: 991px) {
  .mobile-search-form {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-search-form .searchform {
    min-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 20px;
    margin: auto;
    top: 0;
    padding: 50px 20px 20px;
    align-items: flex-end;
    display: none;
    background-color: #D6F0FA;
    z-index: 1;
  }
  .mobile-search-form .searchform.active {
    display: flex !important;
  }
  .mobile-search-form .searchform .header-search {
    position: relative;
    width: 100%;
    padding: 0;
    border-color: #023E5A;
    background: transparent;
    border-width: 0 0 1px 0;
  }
  .mobile-search-form .searchform .header-search .search-icon {
    background-image: url(../images/arrow-right.svg);
    position: absolute;
    right: 0;
    width: 23px;
    height: 28px;
    background-size: 23px;
    cursor: pointer;
  }
  .mobile-search-form .searchform .header-search .search {
    font-size: 16px;
    line-height: 25px;
    color: rgba(2, 62, 90, 0.3);
    padding-right: 30px;
  }
  .mobile-search-form .searchform .header-search .search::-moz-placeholder {
    color: #023E5A;
    opacity: 1;
    color: rgba(2, 62, 90, 0.3);
  }
  .mobile-search-form .searchform .header-search .search::placeholder {
    color: #023E5A;
    opacity: 1;
    color: rgba(2, 62, 90, 0.3);
  }
}

.serch-active .mobile-menu .mobile-search .search-opn-icon {
  display: none;
}
.serch-active .mobile-menu .mobile-search .serch-close-icon {
  display: block;
}
.serch-active .mobile-menu .mobile-search svg {
  fill: #023E5A;
}
.serch-active .menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  .main-navigation {
    display: none;
  }
}

.navigation-button-items {
  display: flex;
  justify-content: space-between;
}

.desktop-adviceline-block {
  display: none;
  margin-left: 30px;
}
@media (min-width: 991px) {
  .desktop-adviceline-block {
    display: block;
  }
}

div.mobile-adviceline-block {
  display: block;
  background-color: #95DFE8;
  padding: 25px 0;
}
@media (min-width: 991px) {
  div.mobile-adviceline-block {
    display: none;
  }
}
div.mobile-adviceline-block .block-link {
  justify-content: center;
}
div.mobile-adviceline-block .adviceline-text-wrapper .adviceline-number {
  color: #023E5A;
}
div.mobile-adviceline-block .adviceline-text-wrapper .adviceline-text {
  color: #023E5A;
}

.adviceline-block .block-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.adviceline-block .adviceline-text-wrapper {
  display: flex;
  flex-direction: column;
}
.adviceline-block .adviceline-text-wrapper .adviceline-number {
  font-size: 28px;
  line-height: 26px;
  color: #009FE1;
  font-weight: 700;
}
.adviceline-block .adviceline-text-wrapper .adviceline-text {
  color: #009FE1;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
}

.mm-ocd-opened .mobile-adviceline-block {
  display: none;
}

@media (min-width: 992px) {
  .btn.desktop_topbtn_hide {
    display: none;
  }
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1200px) {
  .footer-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer-row {
    gap: 50px;
  }
}

.footer-middle {
  display: flex;
  gap: 32px;
}
@media (max-width: 991px) {
  .footer-middle {
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .footer-middle {
    display: none;
  }
}
.footer-middle .menu .menu-item a {
  color: #D5F2F6;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.footer-middle .menu .menu-item a:hover {
  text-decoration: underline;
}
.footer-middle .menu .menu-item.current_page_item a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

@media (max-width: 1200px) {
  .footer-col-6 {
    width: 100%;
  }
}

.footer-col-1 .menu .menu-item {
  margin-bottom: 4px;
}
.footer-col-1 .menu .menu-item:last-child {
  margin-bottom: 0;
}
.footer-col-1 .menu .menu-item.current_page_item a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
.footer-col-1 .menu .menu-item a {
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}
.footer-col-1 .menu .menu-item a:hover {
  text-decoration: underline;
}

.site-footer {
  position: relative;
}
.site-footer .widget-title {
  font-family: "DM Sans", sans-serif;
  color: #95DFE8;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 6px;
}
.site-footer .widget {
  margin: 0;
}

.contact-link-grp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .contact-link-grp {
    align-items: flex-start;
  }
}
.contact-link-grp .social-two-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .contact-link-grp .social-two-col {
    justify-content: flex-start;
  }
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
  margin: 40px 0 68px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .social-links {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .social-links {
    margin: 10px 0 50px;
  }
}
.social-links li .footer-twitter {
  width: 22px;
  height: 22px;
}
.social-links li .footer-instagram {
  width: 24px;
  height: 25px;
}
.social-links li .footer-facebook {
  width: 12px;
  height: 23px;
}
.social-links li .footer-youtube {
  width: 32px;
  height: 23px;
}
.social-links li .footer-linkdin {
  width: 28px;
  height: 28px;
}
.social-links li a {
  color: #ffffff;
}
.social-links li a:hover {
  color: #FF9623;
  opacity: 0.6;
}

.email-contact {
  color: #ffffff;
  text-align: right;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .email-contact {
    text-align: left;
  }
}

.email-address {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  .email-address {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .email-address {
    flex-direction: column;
    margin-top: 3px;
    margin-bottom: 8px;
  }
}
.email-address li a {
  color: #ffffff;
  text-align: right;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
@media (max-width: 767px) {
  .email-address li a {
    color: #95DFE8;
  }
  .email-address li a:hover {
    text-decoration: underline;
  }
}
.email-address li a:hover {
  text-decoration: underline;
}

.footer-address {
  color: #ffffff;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 1200px) {
  .footer-address {
    text-align: left;
  }
}
.footer-address p {
  color: #ffffff;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 1200px) {
  .footer-address p {
    text-align: left;
  }
}

.footer-bottom-center {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 13px;
       column-gap: 13px;
  row-gap: 28px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1500px) {
  .footer-bottom-center {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bottom-image {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 52px;
}
.bottom-image li {
  line-height: 0;
}
.bottom-image li img {
  max-height: 60px;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-content {
  color: #023E5A;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  text-align: right;
}
@media (max-width: 1500px) {
  .footer-bottom-content {
    text-align: left;
  }
}
.footer-bottom-content p {
  color: #023E5A;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
}

.menu-footer-menu-container .menu {
  display: flex;
  gap: 50px;
}
@media (max-width: 1023px) {
  .menu-footer-menu-container .menu {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .menu-footer-menu-container .menu {
    flex-direction: column;
    gap: 12px;
  }
}
.menu-footer-menu-container .menu .menu-item {
  line-height: 19px;
}
.menu-footer-menu-container .menu .menu-item a {
  color: #023E5A;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
}
.menu-footer-menu-container .menu .menu-item a:hover {
  text-decoration: underline;
}

.bottom-bar {
  padding: 20px 0;
}

@media (max-width: 767px) {
  .footer-top-address {
    max-width: 200px;
  }
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.copyrights {
  color: #023E5A;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 767px) {
  .copyrights {
    font-size: 12px;
    font-weight: 500;
  }
}
.copyrights p {
  color: #023E5A;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 767px) {
  .copyrights p {
    font-size: 12px;
    font-weight: 500;
  }
}

@media (max-width: 991px) {
  .menubar-desktop {
    display: none;
  }
}

.menuicon {
  transition-duration: 0s;
  transition-delay: 0.2s;
  width: 24px;
  height: 2px;
  background-color: #023E5A;
  display: block;
  border-radius: 2px;
}
.menuicon::before {
  margin-top: -6px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
.menuicon::after {
  margin-top: 6px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}

.menuicon::before, .menuicon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #023E5A;
  display: block;
}

.top-button {
  border: 0;
  position: fixed;
  right: 75px;
  bottom: 130px;
  padding: 0;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  z-index: 99;
  display: none;
}
@media (max-width: 1440px) {
  .top-button {
    right: 70px;
  }
}
@media (max-width: 1200px) {
  .top-button {
    right: 40px;
  }
}
@media (max-width: 991px) {
  .top-button {
    bottom: 20px;
  }
}
@media (max-width: 991px) {
  .top-button svg {
    width: 40px;
    height: 40px;
  }
}
.top-button:hover rect {
  fill: #023E5A;
}
.top-button path {
  color: #ffffff;
  transition: all 0.4s;
}
.top-button rect {
  fill: #009FE1;
  transition: all 0.4s;
}

.btn {
  padding: 6px 16px;
  font-size: 14px;
  line-height: 22px;
  background-color: #023E5A;
  color: #ffffff;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #023E5A;
  font-weight: 400;
}
.btn.btn-white:hover {
  background-color: #F0F6F9;
  color: #023E5A;
}
.btn.btn-orange {
  background-color: #FF9623;
  color: #023E5A;
  font-weight: 600;
}
.btn.btn-orange:hover {
  background-color: #FBAA52;
  color: #023E5A;
}
.btn.btn-orange-text-white {
  background-color: #EF7D00;
  color: #ffffff;
  font-weight: 500;
}
.btn.btn-orange-text-white:hover {
  background-color: #FF9623;
  color: #023E5A;
}
.btn.btn-blue-light {
  background-color: #D5F2F6;
  color: #023E5A;
  font-weight: 800;
  text-transform: uppercase;
}
.btn.btn-blue-light:hover {
  background-color: #ffffff;
  color: #023E5A;
}
.btn.btn-blue-dark {
  background-color: #95DFE8;
  color: #023E5A;
}
.btn.btn-blue-dark:hover {
  background-color: #D5F2F6;
  color: #023E5A;
}
.btn.btn-whatsapp {
  background-color: #25D366;
  color: #023E5A;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn.btn-whatsapp:hover {
  background-color: #85F1AE;
  color: #023E5A;
}
.btn.btn-callback {
  background-color: #EF7DBA;
  color: #023E5A;
}
.btn.btn-callback:hover {
  background-color: #F5C4DE;
  color: #023E5A;
}
.btn.btn-join-us {
  background-color: #009FE1;
  color: #ffffff;
}
.btn.btn-join-us:hover {
  background-color: #EF7DBA;
  color: #ffffff;
}

.banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.banner-content .heading-style-h1 {
  color: #ffffff;
  max-width: 500px;
  margin: auto;
}
.banner-content .btn {
  text-transform: uppercase;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .banner-content .btn {
    margin-top: 15px;
  }
}

.hero-banner-img-wrap {
  height: 500px;
}
@media (max-width: 767px) {
  .hero-banner-img-wrap {
    height: 430px;
  }
}
.hero-banner-img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: luminosity;
}

.disable-subtitle .hero-banner-img-wrap {
  height: 315px;
}

.banner-sub-title {
  font-size: 27px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  line-height: 28px;
  color: #ffffff;
  max-width: 860px;
  margin: 30px auto auto;
}
@media (max-width: 767px) {
  .banner-sub-title {
    font-size: 21px;
    line-height: 29px;
    margin: 15px auto auto;
  }
}

.enable-subtitle .hero-banner-img-wrap {
  height: 434px;
}

.simple-header {
  padding: 100px 0 100px;
  background: linear-gradient(95.24deg, #6C4796 0.18%, #0484C0 100%);
}
@media (max-width: 767px) {
  .simple-header {
    padding: 80px 0 50px;
  }
}
.simple-header .overlay:after {
  display: none;
}
.simple-header .banner-content {
  max-width: 890px;
  margin: 0 auto;
  position: static;
  transform: translateY(0);
}
.simple-header .banner-content .heading-style-h1 {
  max-width: 100%;
  margin-bottom: 0;
}
.simple-header .banner-content .banner-sub-title {
  margin-top: 28px;
}

.inner-header .banner-content .heading-style-h1 {
  max-width: 860px;
}

.mobile-hero-btn {
  display: flex;
  flex-direction: column;
}
@media (min-width: 991px) {
  .mobile-hero-btn {
    display: none;
  }
}
.mobile-hero-btn .btn {
  text-transform: uppercase;
  border-radius: 0;
  font-size: 20px;
  padding: 14px 0;
  line-height: 22px;
}
.mobile-hero-btn .btn.btn-orange-text-white {
  color: #023E5A;
}

.stats-section {
  margin-bottom: 140px;
}
@media (max-width: 767px) {
  .stats-section {
    margin-bottom: 160px;
  }
}

.stats-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .stats-items {
    grid-template-columns: auto;
    gap: 32px;
  }
}

.stat-box-inner {
  padding: 0 10px;
}
.stat-box-inner img {
  margin: 0 auto;
}

.stat-box {
  text-align: center;
  display: flex;
  justify-content: center;
  border-right: 1px dashed #009FE1;
}
@media (max-width: 767px) {
  .stat-box {
    border-right: 0;
    border-bottom: 1px dashed #009FE1;
    padding-bottom: 30px;
  }
}
.stat-box:last-child {
  border-right: 0;
}
@media (max-width: 767px) {
  .stat-box:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.stat-box .count {
  margin-top: 16px;
  color: #009FE1;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 49px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: -2.45px;
}
.stat-box .count-subtitle {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  margin: 8px auto auto;
  max-width: 300px;
}
@media (max-width: 767px) {
  .stat-box .count-subtitle {
    max-width: 100%;
  }
}

.impact-section.padding-section-large {
  padding-top: 130px;
}

.impact-number {
  color: #009FE1;
  text-align: center;
  font-family: "Roboto Mono", monospace;
  font-size: 49px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: -2.45px;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .help-and-guidance.padding-section-large {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
@media (max-width: 767px) {
  .help-and-guidance.padding-section-large {
    padding-bottom: 60px;
  }
}
.help-and-guidance .guidance-list {
  margin-top: 36px;
}

.guidance-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 16px;
  max-width: 650px;
  margin: auto;
}
@media (max-width: 767px) {
  .guidance-list {
    max-width: 200px;
    grid-template-columns: auto;
  }
}
.guidance-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.guidance-list li .custom-arrow {
  width: 16px;
}
.guidance-list li:hover .custom-arrow {
  width: 35px;
  background-color: #EF7D00;
}
.guidance-list li:hover .custom-arrow::before {
  background-color: #EF7D00;
}
.guidance-list li:hover .custom-arrow::after {
  background-color: #EF7D00;
}

.help-and-guidance-two-col .guidance-list {
  max-width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1200px) {
  .help-and-guidance-two-col .guidance-list {
    -moz-column-gap: 76px;
         column-gap: 76px;
  }
}
@media (max-width: 767px) {
  .help-and-guidance-two-col .guidance-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-calc-padding {
  padding-left: calc((100% - 1770px) / 2);
}
@media (max-width: 1850px) {
  .section-calc-padding {
    padding-left: 70px;
  }
}
@media (max-width: 1200px) {
  .section-calc-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.asthma-advocates-section {
  position: relative;
}
@media (max-width: 991px) {
  .asthma-advocates-section {
    margin-top: 110px;
  }
}
@media (max-width: 767px) {
  .asthma-advocates-section {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .asthma-advocates-section:before {
    content: "";
    background-image: url(../images/blue-top-shape.svg);
    position: absolute;
    top: -100px;
    right: 0;
    height: 215px;
    width: 283px;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
  }
}
.asthma-advocates-section::after {
  content: "";
  background-image: url("../images/union-shape-1.svg");
  max-width: 450px;
  width: 100%;
  height: 233px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  bottom: -110px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .asthma-advocates-section::after {
    bottom: -90px;
  }
}
.asthma-advocates-section .swiper-custom-arrow {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .asthma-advocates-section .swiper-custom-arrow {
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 0;
    z-index: 1;
  }
}

.asthma-advocates-card {
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 6px;
  transition: all 0.4;
  display: block;
}
.asthma-advocates-card:hover {
  background: rgba(32, 224, 104, 0.5);
}

.advocates-photo {
  width: 132px;
  height: 132px;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid #95DFE8;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .advocates-photo {
    width: 120px;
    height: 120px;
  }
}
.advocates-photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.advocates-name {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 32px;
}

.advocates-position {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 28px;
}

@media (max-width: 767px) {
  .asthma-advocates {
    display: flex;
    flex-direction: column-reverse;
  }
}

img.advocate-img {
  float: left;
  width: 332px;
  height: 332px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  border: 2px solid #95DFE8;
  margin-right: 20px;
}
@media (max-width: 991px) {
  img.advocate-img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 479px) {
  img.advocate-img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
  }
}

.advocate-single:after {
  content: "";
  clear: both;
  display: table;
}

.news-slider .swiper-slide {
  height: auto;
}

.view-all-new {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .view-all-new {
    margin-top: 0;
  }
}
.view-all-new .btn {
  text-transform: uppercase;
}

.news-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 6px;
}

.news-tag {
  color: #007BAE;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news-tag:before {
  content: "";
  height: 1px;
  width: 48px;
  background-color: #007BAE;
  display: block;
  margin-bottom: 4px;
}
.news-tag:after {
  content: "";
  height: 1px;
  width: 48px;
  background-color: #007BAE;
  display: block;
}

.news-date {
  color: #007BAE;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
}

.news-title {
  line-height: 34px;
}

.news-photo {
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.news-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 2px;
  overflow: hidden;
}

.card-link {
  display: block;
}
.card-link:hover .news-title {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .news-list {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .news-list .swiper-custom-arrow {
    justify-content: center;
    margin: 35px 0;
  }
}

.default-content-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
}
.default-content-wrapper.cloud-extra-margin {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .default-content-wrapper.cloud-extra-margin {
    margin-top: 50px;
  }
}

.default-content ul {
  margin-bottom: 30px;
}
.default-content ul li {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  line-height: 28px;
  padding: 8px 16px 8px 20px;
  position: relative;
}
.default-content ul li::before {
  content: "";
  display: inline-flex;
  width: 11px;
  height: 11px;
  background: #95DFE8;
  border-radius: 9999px;
  position: absolute;
  left: 0;
  top: 18px;
}
.default-content ol {
  list-style-position: inside;
}
.default-content ol li {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
  padding: 8px 16px 8px 0;
  position: relative;
}
.default-content p a {
  font-weight: 500;
  text-decoration: underline;
}
.default-content p a:hover {
  color: #009FE1;
}
.default-content .btn-group {
  display: inline-flex;
  gap: 20px;
}
.default-content .content-part-xxl {
  margin-bottom: 20px;
}
.default-content .content-part-xl {
  margin-bottom: 20px;
}
.default-content .content-part-sm {
  margin-bottom: 20px;
}
.default-content .content-part-xs {
  margin-bottom: 20px;
}

.list-inner .list-item {
  display: flex;
  border-radius: 2px;
  background: #F5F5F5;
  padding: 16px;
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  align-items: center;
  gap: 8px;
  transition: all 0.4s;
  margin-bottom: 8px;
}
.list-inner .list-item:hover {
  background-color: #D5F2F6;
}
.list-inner .list-item:hover .custom-arrow {
  width: 35px;
  background-color: #009FE1;
}
.list-inner .list-item:hover .custom-arrow::before {
  background-color: #009FE1;
}
.list-inner .list-item:hover .custom-arrow::after {
  background-color: #009FE1;
}
.list-inner .list-item .custom-arrow {
  width: 16px;
  min-width: 16px;
  background-color: #EF7D00;
}
.list-inner .list-item .custom-arrow::before {
  background-color: #EF7D00;
}
.list-inner .list-item .custom-arrow::after {
  background-color: #EF7D00;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-wrapper .video-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  cursor: pointer;
  border-radius: 2px;
}
.video-wrapper .video-cover-image:after {
  content: "";
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(103.54deg, rgba(108, 71, 150, 0.7) 2.2%, rgba(2, 62, 90, 0.7) 100%);
  z-index: 9;
}
.video-wrapper .video-cover-image img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.video-wrapper .video-cover-image .video-start-btn {
  z-index: 99;
}
.video-wrapper .video-cover-image .video-start-btn svg {
  width: 94px;
  height: 119px;
}
@media (max-width: 479px) {
  .video-wrapper .video-cover-image .video-start-btn svg {
    width: 65px;
    height: 66px;
  }
}

.resource-tips-search .header-search {
  position: relative;
}
.resource-tips-search .search-icon {
  background: transparent;
  border: 0;
  font-size: 0;
  background-image: url(../images/symbols_search.svg);
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 10px;
  top: 18px;
  cursor: pointer;
}
.resource-tips-search .search {
  height: 59px;
  padding: 10px 10px 10px 40px;
  background-color: #F1F1F1;
  border: 0;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 42px;
  color: rgba(2, 62, 90, 0.5);
}
.resource-tips-search .search::-moz-placeholder {
  color: rgba(2, 62, 90, 0.5);
  opacity: 1;
}
.resource-tips-search .search::placeholder {
  color: rgba(2, 62, 90, 0.5);
  opacity: 1;
}
.resource-tips-search .result {
  margin-top: 7px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.resource-tips-search .result .reset-btn .reset {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
}
.resource-tips-search .result .reset-btn .reset:before {
  position: absolute;
  left: 15px;
  content: "";
  height: 13px;
  width: 2px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.resource-tips-search .result .reset-btn .reset:after {
  position: absolute;
  left: 15px;
  content: "";
  height: 13px;
  width: 2px;
  background-color: #ffffff;
  transform: rotate(-45deg);
}
.resource-tips-search .result .reset-btn .reset img {
  display: none;
}

.search-box .search-result {
  font-style: italic;
}

.resource-tips-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.resource-tips-filter .btn {
  color: #023E5A;
  background-color: transparent;
  border: 2px solid #95DFE8;
}
.resource-tips-filter .btn:hover {
  background-color: #95DFE8;
  color: #023E5A;
}
.resource-tips-filter .btn.active-term {
  background-color: #95DFE8;
  color: #023E5A;
}

.resource-tips-orderby .select-filter {
  justify-content: flex-start;
}
.resource-tips-orderby .select-filter select {
  background-color: #F0F6F9;
}

.resource-tips-block-content p {
  margin-bottom: 10px;
}

.resource-tips-block {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .resource-tips-block {
    margin-bottom: 40px;
  }
}

.tips-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 70px;
}
@media (max-width: 991px) {
  .tips-link {
    gap: 20px;
  }
}
.tips-link .resource-tips-block-content {
  width: calc(63% - 35px);
}
@media (max-width: 991px) {
  .tips-link .resource-tips-block-content {
    width: calc(60% - 10px);
  }
}
@media (max-width: 767px) {
  .tips-link .resource-tips-block-content {
    width: 100%;
  }
}
.tips-link .resource-tips-block-media {
  width: calc(37% - 35px);
}
@media (max-width: 991px) {
  .tips-link .resource-tips-block-media {
    width: calc(40% - 10px);
  }
}
@media (max-width: 767px) {
  .tips-link .resource-tips-block-media {
    width: 100%;
  }
}
.tips-link .resource-tips-block-media img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  height: 100%;
}
.tips-link .resource-tips-block-media .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70.25%;
}
.tips-link .resource-tips-block-media .video-wrapper .video-cover-image .video-start-btn svg {
  width: 44px;
  height: 60px;
}
.tips-link .resource-tips-block-media .booklet-pdf img {
  width: 150px;
  height: auto;
  left: 0;
  right: 0;
  margin: auto;
}
.tips-link .news-tag {
  color: #EF7D00;
}
.tips-link .news-tag::before {
  background-color: #EF7D00;
}
.tips-link .news-tag::after {
  background-color: #EF7D00;
}
.tips-link .tips-title {
  margin: 10px 0;
  text-decoration: underline;
  transition: all 0.4s;
}
.tips-link .tips-title:hover {
  color: #009FE1;
}

.resource-tips-block-image {
  position: relative;
  width: 100%;
  padding-top: 70.25%;
}

.navigation.posts-navigation {
  margin-bottom: 50px;
}
.navigation.posts-navigation .nav-links a {
  padding: 6px 16px;
  font-size: 14px;
  line-height: 22px;
  background-color: #023E5A;
  color: #ffffff;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.navigation.posts-navigation .nav-links a:hover {
  background-color: #000000;
  color: #ffffff;
}

.portraitImage .tips-link .resource-tips-block-content {
  width: calc(78% - 35px);
}
@media (max-width: 991px) {
  .portraitImage .tips-link .resource-tips-block-content {
    width: calc(65% - 10px);
  }
}
@media (max-width: 767px) {
  .portraitImage .tips-link .resource-tips-block-content {
    width: 100%;
  }
}
.portraitImage .tips-link .resource-tips-block-media {
  width: calc(22% - 35px);
}
@media (max-width: 991px) {
  .portraitImage .tips-link .resource-tips-block-media {
    width: calc(35% - 10px);
  }
}
@media (max-width: 767px) {
  .portraitImage .tips-link .resource-tips-block-media {
    width: 100%;
  }
}
.portraitImage .tips-link .resource-tips-block-media .resource-tips-block-image {
  padding: 0;
  aspect-ratio: 5/6.3;
}
.portraitImage .tips-link .resource-tips-block-media .resource-tips-block-image img {
  position: static;
}

.card-section {
  background-color: #F0F6F9;
}
.card-section .card-heading {
  margin-bottom: 40px;
  max-width: 620px;
}
@media (max-width: 479px) {
  .card-section .card-heading {
    text-align: center;
  }
}
.card-section.card-section-cloud {
  position: relative;
}
@media (max-width: 1023px) {
  .card-section.card-section-cloud {
    margin: 140px 0;
  }
}
.card-section.card-section-cloud:before {
  background-image: url(../images/card-top-right-cloud.svg);
  content: "";
  max-width: 380px;
  width: 100%;
  height: 221px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 0;
  top: -85px;
  z-index: -1;
}
.card-section.card-section-cloud:after {
  background-image: url(../images/card-bottom-left-cloud.svg);
  content: "";
  max-width: 453px;
  width: 100%;
  height: 238px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  bottom: -85px;
  z-index: -1;
}
@media (max-width: 767px) {
  .card-section.card-section-cloud:after {
    max-width: 245px;
  }
}
.card-section.card-orange {
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .card-section.card-orange {
    margin-top: 150px;
  }
}
.card-section.card-orange .cards-row .card-col {
  background-color: #FF9623;
}
.card-section.card-orange .cards-row .card-col:hover {
  background-color: #95DFE8;
}
.card-section.card-grey-bg {
  background-color: #F1F1F1;
  margin-bottom: 140px;
}
.card-section.card-grey-bg:after {
  background-image: url("../images/grey-shape-light.svg");
  content: "";
  width: 268px;
  height: 226px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  bottom: -85px;
  z-index: -1;
}
.card-section.card-grey-bg .card-col .card-details p {
  font-weight: 700;
}

.cards .cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 16px;
}
@media (max-width: 767px) {
  .cards .cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}
@media (max-width: 479px) {
  .cards .cards-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 16px;
  }
}
.cards .cards-row .card-col {
  background-color: #ffffff;
  transition: all 0.2s;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.cards .cards-row .card-col:hover {
  background-color: #D6F0FA;
}
.cards .cards-row .card-col:hover .custom-arrow {
  margin-left: 25px;
  width: 35px;
}
.cards .cards-row .card-col .card-img {
  line-height: 0;
}
.cards .cards-row .card-col .card-img img {
  width: 100%;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.cards .cards-row .card-col .card-details {
  padding: 24px;
}
@media (max-width: 991px) {
  .cards .cards-row .card-col .card-details {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .cards .cards-row .card-col .card-details {
    padding: 24px;
  }
}
.cards .cards-row .card-col .card-details h4 {
  margin-bottom: 4px;
}
.cards .cards-row .card-col .card-details .custom-arrow {
  transition: all 0.4s;
  background-color: #023E5A;
}
.cards .cards-row .card-col .card-details .custom-arrow:after {
  background-color: #023E5A;
}
.cards .cards-row .card-col .card-details .custom-arrow:before {
  background-color: #023E5A;
}

.card-two-col {
  position: relative;
}
@media (max-width: 991px) {
  .card-two-col {
    margin-bottom: 140px;
  }
}
.card-two-col:after {
  background-image: url(../images/card-two-col-cloud.svg);
  content: "";
  width: 268px;
  height: 226px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  bottom: -85px;
  z-index: -1;
}
.card-two-col .cards .cards-row {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .card-two-col .cards .cards-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card-two-col .cards .cards-row .card-col .card-img {
  aspect-ratio: 6/4;
}
.card-two-col .cards .cards-row .card-col .card-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-two-col .cards .cards-row .card-col .card-details h3 {
  margin-bottom: 10px;
  line-height: 30px;
}

.card-three-col .card-col {
  position: relative;
  padding-bottom: 10px;
}
.card-three-col .card-col .custom-arrow {
  position: absolute;
  bottom: 25px;
}
.card-three-col .card-img {
  aspect-ratio: 3/2;
}
.card-three-col .card-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-row {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media (max-width: 767px) {
  .team-row {
    row-gap: 30px;
  }
}

@media (max-width: 767px) {
  .team-info {
    gap: 15px;
  }
}
@media (min-width: 768px) {
  .team-info {
    position: relative;
  }
}
.team-info .swiper-custom-arrow {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .team-info .swiper-custom-arrow {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .team-text {
    margin-bottom: 20px;
    text-align: center;
  }
}
.team-text p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .team-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.team-card {
  background-color: #F0F6F9;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  height: auto;
  position: relative;
  padding-bottom: 20px;
}
.team-card:hover .team-image::before {
  opacity: 0;
  visibility: hidden;
}
.team-card h3 {
  line-height: 26px;
  margin-bottom: 9px;
}
.team-card .info {
  padding: 27px 10px 35px 10px;
  border-top: 4px solid #009FE1;
}
.team-card .social-icons {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  justify-content: center;
}

.social-icons {
  display: inline-flex;
  gap: 15px;
  margin-top: 9px;
}
.social-icons li {
  display: flex;
  align-items: center;
}
.social-icons li a {
  color: #009FE1;
  display: inline-flex;
}
.social-icons li a:hover {
  color: #023E5A;
}

.team-designation {
  color: #023E5A;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.team-image {
  position: relative;
  aspect-ratio: 1/1;
}
.team-image::before {
  content: "";
  background: linear-gradient(291.97deg, rgba(2, 62, 90, 0.4) 2.85%, rgba(14, 157, 216, 0.4) 99.93%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
}
.team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.directors .team-card .info {
  border-color: #EF7D00;
}

.advisory .team-card .info {
  border-color: #20E068;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 111;
}

.popup-content {
  background: #ffffff;
  padding: 56px;
  max-width: 1118px;
  width: calc(100% - 30px);
  position: relative;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  overflow: auto;
  max-height: calc(100% - 30px);
}
@media (max-width: 991px) {
  .popup-content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .popup-content {
    padding: 40px 20px 20px;
  }
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: none;
  padding: 0;
  color: #009FE1;
  background: transparent;
  transition: all 0.4s;
}
.close-popup:hover {
  color: #023E5A;
}
@media (max-width: 767px) {
  .close-popup {
    top: 6px;
    right: 6px;
  }
}
@media (max-width: 767px) {
  .close-popup svg {
    width: 26px;
    height: 26px;
  }
}

.team-profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 54px;
  align-items: center;
}
@media (max-width: 767px) {
  .team-profile-card {
    gap: 24px;
  }
}

.team-profile-image {
  width: calc(40% - 27px);
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .team-profile-image {
    width: 100%;
  }
}
.team-profile-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  border-right: 10px solid #009FE1;
}
@media (max-width: 991px) {
  .team-profile-image img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .team-profile-image img {
    border-right: 0;
    border-bottom: 5px solid #009FE1;
  }
}

.team-profile-content {
  width: calc(60% - 27px);
}
@media (max-width: 767px) {
  .team-profile-content {
    width: 100%;
  }
}
.team-profile-content .team-profile-title {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .team-profile-content .team-profile-title {
    margin-bottom: 10px;
  }
}
.team-profile-content .team-sub-title {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .team-profile-content .team-sub-title {
    margin-bottom: 10px;
  }
}
.team-profile-content .social-icons {
  margin-top: 0;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .team-profile-content .social-icons {
    margin-bottom: 10px;
  }
}

.loading-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #009fe1);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 10px), #000 0);
  animation: s3 1s infinite linear;
  z-index: 1111;
  position: relative;
}

.loading-img {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  margin: auto;
  z-index: 11;
}
.loading-img:after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.loading-img.hide {
  display: none;
}

@keyframes s3 {
  to {
    transform: rotate(1turn);
  }
}
.bredcrumb-section {
  padding-top: 16px;
}
.bredcrumb-section .bredcrumb-inner .breadcrumb {
  color: #A0A0A0;
  font-family: "Inter", sans-serif;
}
.bredcrumb-section .bredcrumb-inner .breadcrumb a, .bredcrumb-section .bredcrumb-inner .breadcrumb .current {
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  color: #A0A0A0;
  vertical-align: bottom;
  font-family: "Inter", sans-serif;
}
.bredcrumb-section .bredcrumb-inner .breadcrumb a:hover {
  text-decoration: underline;
}
.bredcrumb-section .bredcrumb-inner .breadcrumb .current {
  text-decoration: underline;
}
.bredcrumb-section.lightblue-bg {
  background-color: #F0F6F9;
}

.page-template-template-campaigns .bredcrumb-section {
  background: #F1F1F1;
}

.feature-text-section {
  background-color: #D6F0FA;
  padding: 50px 0;
  position: relative;
}
@media (max-width: 767px) {
  .feature-text-section {
    margin-bottom: 80px;
  }
}
.feature-text-section:after {
  background-image: url(../images/Union.svg);
  content: "";
  width: 380px;
  height: 217px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 0;
  bottom: -87px;
  background-size: 380px;
}
@media (max-width: 991px) {
  .feature-text-section:after {
    width: 330px;
    bottom: -90px;
    background-size: 330px;
  }
}
@media (max-width: 767px) {
  .feature-text-section:after {
    bottom: -80px;
    width: 100%;
    background-color: #fff;
    background-position: right;
    z-index: -1;
  }
}
.feature-text-section .feature-text-inner {
  position: relative;
  z-index: 9;
}
@media (max-width: 479px) {
  .feature-text-section .feature-text-inner {
    text-align: center;
  }
}
.feature-text-section .feature-text-inner h4 {
  margin: 0;
}
.feature-text-section .feature-text-icon {
  position: absolute;
  right: 0;
  bottom: -85px;
}

@media (max-width: 767px) {
  .feature-text-section.breadcrumbs_on {
    margin-bottom: 80px;
  }
}

@media (max-width: 479px) {
  .feature-heading-text-section .feature-heading-text-inner {
    text-align: center;
  }
}

.our-people-section .our-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 69px;
}
@media (max-width: 991px) {
  .our-people-section .our-row {
    gap: 0 20px;
  }
}
@media (max-width: 767px) {
  .our-people-section .our-row {
    flex-direction: column;
    gap: 15px 20px;
  }
}
.our-people-section .our-row .our-col {
  width: 50%;
}
@media (max-width: 767px) {
  .our-people-section .our-row .our-col {
    width: 100%;
  }
}
.our-people-section .our-row .our-col img {
  width: 100%;
}

@media (max-width: 991px) {
  .section_1 .our-row {
    margin-top: 110px;
  }
}

.annual-report-section .annual-report-inner .annual-report-lists {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .annual-report-section .annual-report-inner .annual-report-lists {
    margin-left: 0;
  }
}
.annual-report-section .annual-report-inner .annual-report-lists li {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  margin: 16px 0;
  line-height: 28px;
  font-family: "Jost", sans-serif;
  padding: 0;
}
.annual-report-section .annual-report-inner .annual-report-lists li:before {
  background-image: url(../images/material-symbols_download.svg);
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  display: inline-block;
  position: static;
  background-color: transparent;
}
.annual-report-section .annual-report-inner .annual-report-lists li a:hover {
  text-decoration: underline;
  text-decoration-color: #023E5A;
}
.annual-report-section .annual-report-inner .btn-all {
  margin-top: 30px;
}

.section-reports_and_documents {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .section-reports_and_documents {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .section-reports_and_documents {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.our-funder-section .swiper-slide {
  height: 50px;
}
.our-funder-section .swiper-slide img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}

@media (max-width: 767px) {
  .talk-expert-section .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}
.talk-expert-section .talk-expert-rows {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 767px) {
  .talk-expert-section .talk-expert-rows {
    flex-direction: column;
  }
}
.talk-expert-section .talk-expert-rows .talk-expert-image {
  width: 31%;
  line-height: 0;
}
@media (max-width: 767px) {
  .talk-expert-section .talk-expert-rows .talk-expert-image {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .talk-expert-section .talk-expert-rows .talk-expert-image {
    width: 40%;
  }
}
.talk-expert-section .talk-expert-rows .talk-expert-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .talk-expert-section .talk-expert-rows .talk-expert-image img {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
}
.talk-expert-section .talk-expert-rows .talk-expert-info {
  width: 69%;
  background: #023E5A;
  padding: 35px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}
@media (max-width: 767px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info {
    width: 100%;
    padding: 20px 20px 32px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info {
    width: 60%;
  }
}
.talk-expert-section .talk-expert-rows .talk-expert-info h2 {
  color: #95DFE8;
  margin-bottom: 6px;
}
.talk-expert-section .talk-expert-rows .talk-expert-info p {
  color: #ffffff;
  line-height: 28px;
}
.talk-expert-section .talk-expert-rows .talk-expert-info .talk-expert-detials p {
  font-size: 19px;
}
@media (min-width: 768px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info .btns {
    margin-top: 58px;
  }
}
@media (max-width: 991px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info .btns {
    margin-top: 25px;
  }
}
.talk-expert-section .talk-expert-rows .talk-expert-info .btns p {
  margin-bottom: 11px;
}
@media (max-width: 767px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info .btns p {
    margin-bottom: 17px;
  }
}
.talk-expert-section .talk-expert-rows .talk-expert-info .btns .btns-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 767px) {
  .talk-expert-section .talk-expert-rows .talk-expert-info .btns .btns-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .asthma-awareness-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.asthma-awareness-section .asthma-awareness-rows {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 767px) {
  .asthma-awareness-section .asthma-awareness-rows {
    flex-direction: column;
  }
}
.asthma-awareness-section .asthma-awareness-rows .awareness-col {
  width: 50%;
}
@media (max-width: 767px) {
  .asthma-awareness-section .asthma-awareness-rows .awareness-col {
    width: 100%;
  }
}
.asthma-awareness-section .asthma-awareness-rows .awareness-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.asthma-awareness-section .asthma-awareness-rows .asthma-awareness-image {
  line-height: 0;
}
@media (max-width: 767px) {
  .asthma-awareness-section .asthma-awareness-rows .asthma-awareness-image {
    order: 1;
  }
}
.asthma-awareness-section .asthma-awareness-rows .asthma-awareness-info {
  background-color: #FF9623;
  padding: 36px 42px;
}
@media (max-width: 991px) {
  .asthma-awareness-section .asthma-awareness-rows .asthma-awareness-info {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .asthma-awareness-section .asthma-awareness-rows .asthma-awareness-info {
    order: 2;
    padding: 20px 20px 30px 20px;
  }
}
.asthma-awareness-section .asthma-awareness-rows .asthma-awareness-info .asthma-awareness-detials h2 {
  margin-bottom: 16px;
}
.asthma-awareness-section .asthma-awareness-rows .asthma-awareness-info .asthma-awareness-detials p {
  max-width: 503px;
}

.quote-massage {
  max-width: 632px;
  margin: 0 auto;
}
.quote-massage p {
  font-size: 24px;
  line-height: 30px;
  color: #EF7D00;
  font-style: italic;
  font-weight: 700;
}
@media (max-width: 767px) {
  .quote-massage p {
    font-size: 20px;
    line-height: 26px;
  }
}

.section-content_editor a {
  font-weight: 500;
  text-decoration: underline;
}
.section-content_editor a:hover {
  color: #009FE1;
}
.section-content_editor .btn {
  text-decoration: none;
  margin-top: 27px;
}
.section-content_editor ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.section-content_editor ol li {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 16px;
}
.section-content_editor ul {
  margin-bottom: 30px;
}
.section-content_editor ul li {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  line-height: 28px;
  padding: 8px 16px 8px 20px;
  position: relative;
}
.section-content_editor ul li::before {
  content: "";
  display: inline-flex;
  width: 11px;
  height: 11px;
  background: #95DFE8;
  border-radius: 9999px;
  position: absolute;
  left: 0;
  top: 18px;
}

.section_1.section-content_editor {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section_1.section-content_editor {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.main-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 64px;
}
@media (max-width: 479px) {
  .main-video {
    margin-bottom: 30px;
  }
}
.main-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-video .video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main-video .video-cover:after {
  content: "";
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(103.54deg, rgba(108, 71, 150, 0.7) 2.2%, rgba(2, 62, 90, 0.7) 100%);
  z-index: 9;
}
.main-video .video-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 9;
}
.main-video .video-cover .play-icon {
  position: absolute;
  z-index: 99;
}
.main-video .video-cover .play-icon svg {
  width: 107px;
  height: 136px;
}
@media (max-width: 479px) {
  .main-video .video-cover .play-icon svg {
    width: 65px;
    height: 66px;
  }
}

.video-slider iframe {
  width: 100%;
}
.video-slider img {
  width: 100%;
  height: 124px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 479px) {
  .video-slider img {
    height: 90px;
  }
}
.video-slider .swiper-wrapper {
  height: auto;
}
.video-slider .swiper-slide {
  position: relative;
}
.video-slider .swiper-slide .vide-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
@media (max-width: 479px) {
  .video-slider .swiper-slide .vide-play-icon svg {
    width: 30px;
  }
}
.video-slider .swiper-slide .video-item {
  position: relative;
  line-height: 0;
  cursor: pointer;
}
.video-slider .swiper-slide .video-item:after {
  content: "";
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(103.54deg, rgba(108, 71, 150, 0.7) 2.2%, rgba(2, 62, 90, 0.7) 100%);
  z-index: 1;
}

.section-video_slider .btn-allvideo {
  text-align: center;
  margin-top: 35px;
}
.section-video_slider .btn-allvideo .btn {
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}
.gallery-grid .gallery-grids {
  display: grid;
  gap: 20px;
}
.gallery-grid .gallery-grids .gallery-item {
  line-height: 0;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid .gallery-grids .gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  line-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-grid .gallery-grids-row {
  display: grid;
  gap: 20px;
}
@media (min-width: 479px) {
  .gallery-grid .gallery-grids-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 479px) {
  .gallery-grid .gallery-grids-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 479px) {
  .gallery-grid .gallery-grids-last {
    gap: 2.5%;
    grid-template-columns: 58.5% 39%;
  }
}

.news-event-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.news-event-tab .btn {
  color: #023E5A;
  background-color: transparent;
  border: 2px solid #023E5A;
}
.news-event-tab .btn:hover, .news-event-tab .btn.activecat {
  background-color: #023E5A;
  color: #ffffff;
}

.select-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.select-filter label {
  font-weight: 600;
  font-size: 17px;
  font-family: "Jost", sans-serif;
}
.select-filter select {
  padding: 10px;
  padding-right: 36px;
  border: 0;
  font-size: 15px;
  cursor: pointer;
  color: #023E5A;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.4728 0.644774L13.5362 1.70234L7.77795 7.49999C7.68568 7.59344 7.57585 7.66773 7.45476 7.71857C7.33367 7.76941 7.20373 7.7958 7.0724 7.79622C6.94108 7.79665 6.81097 7.7711 6.68955 7.72104C6.56814 7.67099 6.45783 7.59742 6.36496 7.50456L0.5663 1.74428L1.62287 0.680859L7.06538 6.08729L12.4728 0.644774Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.news-events-block-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 50px;
}
@media (max-width: 1023px) {
  .news-events-block-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 479px) {
  .news-events-block-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}
.news-events-block-list .news-event-list .news-card {
  height: 100%;
}

.load-more-cnt {
  text-align: center;
}
.load-more-cnt .btn {
  text-transform: uppercase;
}

.news-event-content ul {
  margin-bottom: 30px;
}
.news-event-content ul li {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
  padding: 8px 16px 8px 20px;
  position: relative;
}
.news-event-content ul li::before {
  content: "";
  display: inline-flex;
  width: 11px;
  height: 11px;
  background: #95DFE8;
  border-radius: 9999px;
  position: absolute;
  left: 0;
  top: 18px;
}

.single-post .section_1.video-section {
  margin-top: 40px;
}

.news-event-single .news-tag {
  margin-bottom: 24px;
}
.news-event-single .news-tag a {
  color: #EF7DBA;
}
.news-event-single .news-date {
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width: 479px) {
  .news-event-single .news-date {
    margin-bottom: 20px;
  }
}
.news-event-single p a {
  text-decoration: underline;
}
.news-event-single p a:hover {
  color: #009FE1;
}
.news-event-single .video-section {
  margin-bottom: 25px;
}

.news-event-img {
  margin-bottom: 40px;
  line-height: 0;
}
@media (max-width: 479px) {
  .news-event-img {
    margin-bottom: 20px;
  }
}
.news-event-img img {
  width: 100%;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .two-col-grid {
    padding-top: 28px;
  }
}
.two-col-grid .two-col-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .two-col-grid .two-col-grid-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.two-col-grid .two-col-grid-row .two-col-gride-item .two-col-gride-details {
  padding: 24px 24px 0 0;
  transition: 0.4s;
}
.two-col-grid .two-col-grid-row .two-col-gride-item .two-col-gride-details h2 {
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .two-col-grid .two-col-grid-row .two-col-gride-item .two-col-gride-details {
    padding: 24px 0 0 0;
  }
}
.two-col-grid .two-col-grid-row .two-col-gride-item:hover h2 {
  text-decoration: underline;
}
.two-col-grid .two-col-grid-row .two-col-gride-item:hover img {
  transform: scale(1.1);
}
.two-col-grid .two-col-grid-row .two-col-gride-item .two-col-gride-img {
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 7/3.8;
}
.two-col-grid .two-col-grid-row .two-col-gride-item img {
  width: 100%;
  transition: 0.4s;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-content-with-bgcolor {
  position: relative;
}
@media (max-width: 991px) {
  .image-content-with-bgcolor {
    margin-top: 130px;
  }
}
.image-content-with-bgcolor:before {
  background-image: url(../images/image-content-top-left-cloud.svg);
  content: "";
  width: 293px;
  height: 221px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  top: -85px;
  z-index: -1;
}
.image-content-with-bgcolor img {
  width: 100%;
  margin: 30px 0;
}
@media (max-width: 767px) {
  .image-content-with-bgcolor img {
    margin: 20px 0;
  }
}
.image-content-with-bgcolor a {
  text-decoration: underline;
}
.image-content-with-bgcolor a:hover {
  color: #009FE1;
}

@media (max-width: 991px) {
  .image-content-bottom-right-cloud {
    margin-bottom: 130px;
  }
}
.image-content-bottom-right-cloud:after {
  background-image: url(../images/image-content-bottom-right-cloud.svg);
  content: "";
  width: 293px;
  height: 232px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 0;
  bottom: -85px;
  z-index: -1;
}

@media (max-width: 767px) {
  .register-bg-content-section .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}
.register-bg-content-section .register-bg {
  background-image: url(https://testsites.pointblank.ie/asthma/wp-content/uploads/2025/03/Register-bg.jpg);
  background-repeat: no-repeat;
  position: relative;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .register-bg-content-section .register-bg {
    border-radius: 0;
  }
}
.register-bg-content-section .register-bg:after {
  content: "";
  background: linear-gradient(95.81deg, rgba(108, 71, 150, 0.8) -1.77%, rgba(2, 62, 90, 0.8) 99.74%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .register-bg-content-section .register-bg:after {
    border-radius: 0;
  }
}
.register-bg-content-section .register-bg .register-bg-content-inner {
  max-width: 815px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 9;
}
.register-bg-content-section .register-bg .register-bg-content-inner h2 {
  color: #95DFE8;
  margin-bottom: 15px;
}
.register-bg-content-section .register-bg .register-bg-content-inner p {
  color: #ffffff;
}
.register-bg-content-section .register-bg .register-bg-content-inner .btn {
  margin-top: 40px;
}

.resource-tip-single-wrapper .rt-single-image {
  margin-bottom: 32px;
  line-height: 0;
}
.resource-tip-single-wrapper .rt-single-image img {
  width: 100%;
}
.resource-tip-single-wrapper .rt-single-video {
  margin-bottom: 32px;
}
.resource-tip-single-wrapper .rt-single-content {
  margin-bottom: 20px;
}
.resource-tip-single-wrapper .download-lists ul li {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  font-family: Jost, sans-serif;
  margin: 16px 0px;
}
.resource-tip-single-wrapper .download-lists ul li:before {
  background-image: url(../images/material-symbols_download.svg);
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-repeat: no-repeat;
  display: inline-block;
}
.resource-tip-single-wrapper .download-lists ul li a {
  text-decoration: underline;
}
.resource-tip-single-wrapper .download-lists ul li a:hover {
  color: #009FE1;
}
.resource-tip-single-wrapper .dot-lits ul li {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
  padding: 8px 16px 8px 20px;
  position: relative;
}
.resource-tip-single-wrapper .dot-lits ul li:before {
  content: "";
  display: inline-flex;
  width: 11px;
  height: 11px;
  background: #95DFE8;
  border-radius: 9999px;
  position: absolute;
  left: 0;
  top: 16px;
}
.resource-tip-single-wrapper .rt-single-publish-date {
  margin-top: 52px;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #009FE1;
}

.get-in-touch .gi-touch-row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 35px;
}
@media (max-width: 767px) {
  .get-in-touch .gi-touch-row {
    flex-direction: column;
    gap: 25px;
  }
}
.get-in-touch .gi-touch-row .gi-touch-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-family: "Jost", sans-serif;
}
.get-in-touch .gi-touch-row .gi-touch-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  font-family: "Jost", sans-serif;
}
.get-in-touch .gi-touch-row .gi-touch-col ul li a:hover {
  color: #009FE1;
}
.get-in-touch .gi-touch-row .gi-touch-col ul li svg {
  min-width: 24px;
}
.get-in-touch .gi-touch-row .gi-touch-col .btn-get {
  margin-top: 38px;
}
@media (max-width: 767px) {
  .get-in-touch .gi-touch-row .gi-touch-col .btn-get {
    margin-top: 20px;
  }
}
.get-in-touch .gi-touch-note {
  margin-top: 50px;
  font-style: italic;
}

.custom-form-heading h3 {
  margin-bottom: 0;
}

.custom-form-boolean .gfield_label {
  display: inline-block !important;
}

.form-content .gform-theme .gform_heading {
  margin-bottom: 10px;
}

.section-newsletter .newsletter-form-cnt > div {
  color: #023E5A;
  font-family: "Jost", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}
@media (max-width: 767px) {
  .section-newsletter .newsletter-form-cnt > div {
    font-size: 36px;
    line-height: 44px;
  }
}

.js-cm-form label {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 42px;
  font-size: 17px;
}
.js-cm-form input {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px;
  border: 0;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: rgba(2, 62, 90, 0.6980392157);
  background: #F1F1F1;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .js-cm-form input {
    margin-bottom: 20px;
  }
}
.js-cm-form input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px !important;
  height: 22px !important;
  border: 2px solid #95DFE8;
  padding: 0;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 8px;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
}
.js-cm-form input[type=checkbox]:checked {
  background-color: #00BBE3;
  border-color: #00BBE3;
}
.js-cm-form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.js-cm-form input[type=checkbox] + label {
  display: inline-block;
  margin-bottom: 30px;
}
.js-cm-form button {
  padding: 6px 16px;
  font-size: 14px;
  line-height: 22px;
  background-color: #FF9623;
  color: #023E5A;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.js-cm-form button:hover {
  background-color: #FBAA52;
  color: #023E5A;
}

.gform_wrapper form .gform-footer .gform_button {
  padding: 6px 16px !important;
  font-size: 14px !important;
  line-height: 22px !important;
  background-color: #023E5A !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-family: "DM Sans", sans-serif !important;
  text-align: center !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: all 0.3s ease-in-out !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.gform_wrapper form .gform-footer .gform_button:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}/*# sourceMappingURL=style.css.map */