@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.css";
/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap");
body {
  font-size: 100%;
  font-family: "Inter Tight", sans-serif;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a:hover,
a,
a:active {
  text-decoration: none;
  outline: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}

.wl-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 25px;
}

.wl-container-small {
  max-width: 960px;
}

.section-sm {
  padding: 40px 0;
}

.section-md {
  padding: 60px 0;
}

.section-lg {
  padding: 100px 0;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-gap: 35px;
}

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  transition: 0.3s ease;
}
.site-header .site-logo img {
  width: 185px;
  padding: 15px 0;
}

.header-right {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #1a1a1a;
}
.header-right a {
  margin-left: 5px;
  vertical-align: middle;
  font-size: 25px;
  color: rgba(17, 17, 17, 0.6274509804);
}
.header-right a:hover {
  color: #224f7a;
}
.header-right div {
  line-height: 1;
}
.header-right .button {
  padding: 8px 24px 8px 24px;
  font-size: 15px;
  color: #fff;
}
.header-right .button:hover {
  color: #fff;
}

.navigation {
  background: #224f7a;
}
.navigation.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}

.header-nav {
  display: flex;
  align-items: center;
}
.header-nav > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.header-nav > ul > li {
  position: relative;
  height: 100%;
  padding: 15px 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-nav > ul > li > i {
  font-size: 12px;
  margin: 3px 0 0 3px;
  color: #fff;
}
.header-nav > ul > li:hover > ul {
  max-height: inherit;
  opacity: 1;
  top: 100%;
}
.header-nav > ul > li > ul {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  width: 230px;
  list-style-type: none;
  padding: 0px 0 12px 0px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin: 0;
  opacity: 0;
  z-index: 12;
  transition: 0.45s linear, opacity 0.3s linear;
}
.header-nav > ul > li > ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5px 15px;
  position: relative;
}
.header-nav > ul > li > ul > li > a {
  text-align: left;
  font-size: 16px;
  color: #000;
  padding: 7px 0;
  display: inline-block;
  line-height: 1;
  position: relative;
}
.header-nav > ul > li > ul > li > a:hover {
  color: #224f7a;
}
.header-nav > ul > li > ul > li > ul {
  position: absolute;
  left: 100%;
  background: #224f7a;
  width: 320px;
  list-style-type: none;
  top: 0;
  margin: 0;
  padding: 0;
  display: none;
  border-radius: 6px;
}
.header-nav > ul > li > ul > li > ul li {
  padding: 8px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.header-nav > ul > li > ul > li > ul li > a {
  color: #fff;
  display: block;
  font-size: 15px;
}
.header-nav > ul > li > ul > li > ul li:hover > a {
  color: #fff;
  opacity: 0.85;
}
.header-nav > ul > li > ul > li > i {
  transform: rotate(270deg);
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 14px;
}
.header-nav > ul > li > ul > li:hover > a {
  color: #224f7a;
}
.header-nav > ul > li > ul > li:hover > ul {
  display: block;
}
.header-nav > ul > li > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.header-nav > ul > li > a {
  color: #fff;
  position: relative;
  font-size: 17px;
  font-family: "Vend Sans", sans-serif;
}
.header-nav > ul > li > a:before {
  width: 100%;
  height: 1px;
  content: "";
  background: #224f7a;
  top: 100%;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
  z-index: 12;
}
.header-nav > ul > li:hover {
  background: #fff;
}
.header-nav > ul > li:hover > a,
.header-nav > ul > li:hover i {
  color: #224f7a;
}

.responsive--nav {
  background-color: #efefef;
  position: fixed;
  top: 0;
  right: -100%;
  will-change: transform;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  z-index: 1000;
  max-width: 330px;
}
.responsive--nav .nav__inner {
  padding: 40px 0px 0px 0px;
  position: relative;
  height: calc(100vh - 0px);
  overflow-y: auto;
}
.responsive--nav .nav__inner nav {
  height: 100%;
}
.responsive--nav .nav__inner nav > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.responsive--nav .nav__inner nav > div > ul > li {
  position: relative;
}
.responsive--nav .nav__inner nav > div > ul > li:hover > i {
  color: #224f7a;
}
.responsive--nav .nav__inner nav > div > ul > li > i {
  color: rgba(17, 17, 17, 0.5098039216);
  font-size: 17px;
  margin-left: 7px;
  position: absolute;
  right: 12px;
  top: 16px;
  cursor: pointer;
}
.responsive--nav .nav__inner nav > div > ul > li > ul {
  background: #fff;
  list-style-type: none;
  text-align: left;
  display: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5px 15px;
  position: relative;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li > a {
  font-weight: 500;
  text-align: left;
  font-size: 15px;
  color: #000;
  padding: 7px 0 7px 10px;
  display: inline-block;
  line-height: 1;
  position: relative;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li > a:hover {
  color: #224f7a;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li > i {
  position: absolute;
  right: 9px;
  top: 13px;
  font-size: 14px;
  cursor: pointer;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li > ul {
  margin: 0;
  padding: 0;
  display: none;
  list-style-type: none;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li > ul > li > a {
  padding: 9px 0 9px 10px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6196078431);
  display: block;
  line-height: 1;
  font-weight: 600;
}
.responsive--nav .nav__inner nav > div > ul > li > ul > li > ul > li:hover > a {
  color: #224f7a;
}
.responsive--nav .nav__inner nav > div > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(18, 10, 10, 0.11);
}
.responsive--nav .nav__inner nav > div > ul > li > a {
  color: rgba(17, 1, 1, 0.7607843137);
  padding: 15px 0px 15px 20px;
  font-size: 24px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
}
.responsive--nav .nav__inner nav > div > ul > li:hover > a {
  color: #224f7a;
}

.cross {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  z-index: 1;
}

.show__side--menu .responsive--nav {
  right: 0;
  transition: all 0.4s ease;
}

.hamburger {
  display: none;
}

.skip-ad-wrapper {
  position: relative;
  z-index: 13;
}
.skip-ad-wrapper .wl-container .banner-promo {
  margin: 0;
}
.skip-ad-wrapper .wl-container .banner-promo > div {
  position: fixed;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.68);
  transition: 0.3s linear;
  width: 100%;
  display: grid;
  place-content: center;
  height: 100vh;
  padding: 0 20px;
  left: 0;
  top: 0;
  text-align: right;
}
.skip-ad-wrapper .wl-container .banner-promo > div iframe {
  width: 100%;
}
.skip-ad-wrapper .wl-container .banner-promo > div a {
  max-width: 800px;
  display: block;
}
.skip-ad-wrapper .wl-container .banner-promo > div.hide {
  top: -100%;
  transition: 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.skip-ad-wrapper .wl-container .banner-promo > div:first-child {
  z-index: 3;
}
.skip-ad-wrapper .wl-container .banner-promo > div:nth-child(even) {
  z-index: 2;
}
.skip-ad-wrapper .wl-container .banner-promo > div .cross {
  font-size: 14px;
  background: #224f7a;
  height: 25px;
  margin-left: auto;
  width: 25px;
  color: #fff;
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  display: block;
  align-items: center;
  line-height: 25px;
  text-align: center;
  position: relative;
  top: 40px;
  right: 30px;
}
.skip-ad-wrapper .wl-container .banner-promo > div > div {
  height: calc(100vh - 50px);
  overflow-y: scroll;
  min-height: 100vh;
}

.site-footer {
  background: #224f7a url(../img/transparent-bg.png);
  padding: 40px 0 0 0;
}
.site-footer .footer-bar {
  background: rgba(0, 0, 0, 0.1411764706);
  margin-top: 30px;
  font-size: 13px;
  padding: 10px 0;
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Vend Sans", sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}

.contact .header-right {
  gap: 0;
}
.contact .header-right a {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 20px;
  color: #fff;
}
.contact .header-right a:hover {
  opacity: 0.86;
}
.contact .header-right div a {
  color: #fff;
}
.contact p {
  margin: 0 0px 7px 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.66;
}
.contact p i {
  font-weight: 600;
  margin-right: 8px;
}
.contact p a {
  color: #fff;
}
.contact ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contact ul li a {
  color: #fff;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 15px;
}
.contact ul li a:hover {
  color: #fff;
  opacity: 0.87;
}

/* Button */
.button {
  padding: 11px 30px 13px 30px;
  border-radius: 50px;
  font-size: 14.2px;
  cursor: pointer;
  border: none;
  font-family: "Vend Sans", sans-serif;
  background-size: 250%;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  display: inline-block;
}

.primary-button-fill {
  transition: 0.3s ease-in-out;
  color: #fff;
  background: #224f7a;
}
.primary-button-fill:hover {
  color: #fff;
  background: #e26440;
  background-size: 250%;
}

.primary-button-outline {
  transition: 0.3s ease-in-out;
  border: #224f7a 2px solid;
  color: #224f7a;
}
.primary-button-outline:hover {
  border-color: #224f7a;
  color: #fff;
  background: #224f7a;
  background-size: 250%;
}

.secondary-button {
  border-color: #e26440;
  color: #fff;
  background: #e26440;
}
.secondary-button:hover {
  color: #fff;
  background: #224f7a;
}

/* Button */
/* Section Title */
.section-heading {
  margin-bottom: 25px;
}
.section-heading span {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  padding-top: 8px;
  opacity: 0.5;
  color: #000;
}
.section-heading .heading {
  font-family: "Vend Sans", sans-serif;
  font-size: 30px;
  color: #224f7a;
  font-weight: 600;
}

/* Section Title */
.section-heading-center {
  display: block;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.section-heading-center .heading {
  padding-bottom: 10px;
}
.section-heading-center p {
  font-size: 20px;
  padding: 0 80px;
  opacity: 0.85;
  line-height: 1.55;
}

/* Card */
.w-card {
  transition: 0.3s ease-in-out;
  background: #fff;
  border-radius: 0 0 4px 4px;
  height: 100%;
}
.w-card .w-card__media {
  height: 190px;
  display: block;
}
.w-card .w-card__media a {
  border-radius: 4px 4px 0 0;
  display: block;
  overflow: hidden;
  height: 100%;
  position: relative;
  width: 100%;
}
.w-card .w-card__media a img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 4px 4px 0 0;
}
.w-card .w-card__description {
  padding: 12px 22px 22px 22px;
  font-size: 18px;
}
.w-card .w-card__description .w-overlay__date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 6px;
  display: inline-block;
}
.w-card .w-card__description .w-card__title {
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 1.4;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.w-card .w-card__description .w-card__title a {
  color: inherit;
  font-weight: 500;
  line-height: 1.12;
  transition: 0.3s ease-in-out;
  display: block;
}
.w-card .w-card__description .w-card__title:hover {
  transition: 0.3s ease-in-out;
}
.w-card .w-card__description .w-card__title:hover a {
  color: #224f7a;
}
.w-card .w-card__description p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
  font-weight: 300;
}

/* Card */
.team-member {
  text-align: center;
  background: #fff;
  padding: 14px;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  font-size: 14px;
  -o-border-radius: 4px;
}
.team-member img {
  object-fit: cover;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.team-member h3 {
  font-size: 14px;
  color: #1f1f1f;
  margin-top: 12px;
  line-height: 1;
  margin-bottom: 3px;
}
.team-member h3 a {
  color: #1f1f1f;
}
.team-member span {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.3;
  display: block;
  color: #224f7a;
}

.scale a {
  overflow: hidden;
}
.scale img {
  transition: 0.3s linear;
}
.scale:hover .wl-card__title a {
  color: #224f7a;
  transition: 0.3s linear;
}
.scale:hover .wl-overlay__title {
  color: #cba83f;
  transition: 0.3s linear;
}
.scale:hover .wl-overlay__title a {
  color: #cba83f;
  transition: 0.3s linear;
}
.scale:hover img {
  transition: 0.3s linear;
  transform: scale(1.1);
}

.overlay-card {
  height: 100%;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.overlay-card .overlay-media {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.overlay-card .overlay-media > a {
  border-radius: 6px;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.overlay-card .overlay-media > a:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.4705882353), transparent, transparent);
  z-index: 4;
  border-radius: 2px;
}
.overlay-card .overlay-media > a img {
  transition: transform 2s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-card .overlay__description {
  position: absolute;
  width: 100%;
  padding: 25px 30px;
  z-index: 5;
  left: 0;
  bottom: 0;
}
.overlay-card .overlay__description h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.38;
  margin: 0;
}
.overlay-card .overlay__description h3 a {
  color: #fff;
  text-decoration: none;
}
.overlay-card .overlay__description .overlay__date {
  color: #fff;
  margin-bottom: 8px;
}

.overlay__date {
  color: #000;
  font-size: 13px;
  display: inline-block;
  padding-bottom: 0px;
}

.page-no-banner-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.page-no-banner-wrap .wl-container {
  width: 100%;
}
.page-no-banner-wrap h1 {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  margin: 12px 0 25px 0;
  color: #224f7a;
}

.breadcrumb {
  align-items: center;
  white-space: nowrap;
  margin: 0;
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  font-size: 13px;
  font-weight: 600;
}
.breadcrumb li a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s linear;
}
.breadcrumb li a:hover {
  transition: 0.3s linear;
  opacity: 1;
}
.breadcrumb li.active {
  opacity: 1;
  color: #224f7a;
}

ul.breadcrumb li + li::before {
  content: "/";
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.2784313725);
  opacity: 0.75;
  font-size: 13px !important;
  display: inline-block;
  vertical-align: top;
}

.gallery-card {
  min-height: auto;
  height: 250px;
}
.gallery-card .overlay-media a:before {
  background: none;
}
.gallery-card .overlay__description {
  opacity: 0;
  visibility: hidden;
  bottom: -60px;
  padding: 20px 20px;
  transition: 0.3s ease;
}
.gallery-card .overlay__description h3 {
  background: #e26440;
  display: inline-block;
  padding: 9px 15px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}
.gallery-card:hover .overlay__description {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
  bottom: 0;
}

.thumbnail-news:first-child a {
  padding-top: 0;
  border-top: none;
}
.thumbnail-news:last-child {
  padding-bottom: 0;
}
.thumbnail-news > a {
  display: flex;
  color: #000;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.0901960784);
}
.thumbnail-news > a img {
  max-width: 130px;
  min-width: 130px;
  height: 78px;
  margin-right: 20px;
  object-fit: cover;
  border-radius: 3px;
  flex: auto;
}
.thumbnail-news > a .news-title {
  font-weight: 500;
  color: rgba(35, 37, 45, 0.9490196078);
  line-height: 1.45;
  font-size: 17px;
}
.thumbnail-news > a p {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 6px;
  display: inline-block;
}
.thumbnail-news > a span {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 5px;
  display: inline-block;
  opacity: 0.7;
}

.team-col {
  text-align: center;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.6901960784);
  font-weight: 300;
  font-size: 14px;
}
.team-col img {
  position: relative;
  display: block;
  width: 130px !important;
  height: 130px;
  border-radius: 100%;
  overflow: hidden;
  z-index: 2;
  object-fit: cover;
  margin: 0 auto 14px auto;
}
.team-col h3 {
  color: #000;
  font-size: 18px;
}

.thumbnail-posts {
  display: flex;
  color: inherit;
}
.thumbnail-posts:hover {
  color: #224f7a;
}
.thumbnail-posts:hover span {
  color: #000;
}
.thumbnail-posts img {
  width: 100px;
  height: 80px;
  margin-right: 20px;
  border-radius: 5px;
  flex: 1;
}
.thumbnail-posts div {
  flex: auto;
}
.thumbnail-posts span {
  font-size: 11px;
  margin-bottom: 4px;
  display: block;
}
.thumbnail-posts h3 {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

.gallery-col {
  height: 250px;
  display: block;
  border-radius: 4px;
}
.gallery-col img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wl-card .wl-card__media a {
  border-radius: 6px;
  display: block;
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.wl-card .wl-card__media a img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.wl-card .wl-card__description {
  padding: 13px 0 0 0;
}
.wl-card .wl-card__description p {
  font-size: 16px;
}
.wl-card .wl-card__description .wl-overlay__date {
  color: #000;
  font-size: 13px;
  display: inline-block;
  padding-bottom: 8px;
  opacity: 0.55;
}
.wl-card .wl-card__description .wl-card__title {
  font-size: 18px;
  padding-bottom: 5px;
  line-height: 1.4;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.wl-card .wl-card__description .wl-card__title a {
  color: inherit;
}

.sticky {
  position: sticky;
  top: 100px;
  left: 0;
}

.c-breadcrumb {
  display: flex;
  padding: 0;
  border-radius: 4px 4px 0 0;
  margin: 0;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: auto;
  white-space: nowrap;
}
.c-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
}
.c-breadcrumb li a {
  color: inherit;
}
.c-breadcrumb li:not(:first-child)::before {
  margin-left: 9px;
  margin-right: 9px;
  display: inline-block;
  opacity: 0.5;
  content: "/";
}
.c-breadcrumb li:hover > a, .c-breadcrumb li.active > a {
  color: #224f7a;
}

.section-banner {
  position: relative;
}
.section-banner:before {
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.79), rgba(0, 0, 0, 0.06), transparent, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.section-banner .banner-wrap {
  height: 780px;
  background: #000;
}
.section-banner .banner-wrap img {
  height: 100%;
  opacity: 0.6;
  object-fit: cover;
}
.section-banner .banner-wrap .wl-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  max-width: inherit;
}
.section-banner .banner-wrap .wl-container .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-banner .banner-wrap .wl-container .content span {
  font: 400 18px/1em "Inter Tight", sans-serif;
  color: #fff;
  margin-bottom: 15px;
  display: inline-block;
  max-width: 540px;
}
.section-banner .banner-wrap .wl-container .content h2 {
  max-width: 650px;
  margin-bottom: 20px;
  color: #fff;
  font: 600 45px/1.3 "Vend Sans", sans-serif;
}
.section-banner .banner-wrap .wl-container .content p {
  max-width: 540px;
}

.section-muted {
  background: #f8f5f3;
  position: relative;
}

.page__section.about__section {
  background: linear-gradient(180deg, #fff 0%, rgba(92, 136, 178, 0.34) 100%);
  position: relative;
}
.page__section.about__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/cube_pattern.png");
  background-repeat: repeat;
  background-size: 100%;
  opacity: 0.15;
  mix-blend-mode: color-burn;
}
.page__section.about__section .about__contents {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page__section.about__section .about__contents .section__minititle {
  font-family: "Vend Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.7px;
  color: #224f7a;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding-bottom: 8px;
}
.page__section.about__section .about__contents .section__title {
  font-size: 35px;
  color: #224f7a;
  font-weight: inherit;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  line-height: 40px;
  font-family: "Vend Sans", sans-serif;
}
.page__section.about__section .about__contents p {
  margin: 20px 0 25px 0;
  font-size: 17.4px;
  color: #000;
  line-height: 1.68;
}

.board__members {
  background: #f2f7fb;
}

.section-partners {
  background: #f1f1f1;
  padding: 40px 0;
}
.section-partners .partner-lists {
  background: #fff;
  padding: 40px 15px;
  border: 1px solid #ddd;
  margin-right: 10px;
  text-align: center;
  height: 150px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

.aid-section {
  padding: 25px 0;
}
.aid-section .aid-section-single {
  position: relative;
}
.aid-section .aid-section-single a {
  color: inherit;
}
.aid-section .aid-section-single i {
  font-size: 30px;
  display: inline-block;
  color: #fff;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}
.aid-section .aid-section-single i.icon-hand-heart {
  background-color: #ff9707;
  color: #ffe3bc;
}
.aid-section .aid-section-single i.icon-hand {
  background-color: #85c13f;
  color: #bbe490;
}
.aid-section .aid-section-single i.icon-handshake {
  background-color: #3cb27f;
  color: #95dabc;
}
.aid-section .aid-section-single .padding {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 105px;
}
.aid-section .aid-section-single .padding.yellow h3 {
  color: #ff9707;
}
.aid-section .aid-section-single .padding.green h3 {
  color: #85c13f;
}
.aid-section .aid-section-single .padding.lightgreen h3 {
  color: #3cb27f;
}
.aid-section .aid-section-single .padding p {
  color: #564d3b;
  font-size: 16px;
}
.aid-section .aid-section-single .padding h3 {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.section__news-update {
  background: rgba(0, 102, 179, 0.08);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 25px;
}

.col7 {
  grid-column: span 7;
}

.col5 {
  grid-column: span 5;
}

.service__section {
  display: flex;
  padding-top: 20px;
}
.service__section .service__block {
  padding: 90px 48px;
}
.service__section .service__block .primary-button-fill {
  background: none;
  border: 1px solid #fff;
}
.service__section .service__block h3 {
  color: #ffffff;
}
.service__section .service__block p {
  color: #ffffff;
  font-size: 16px;
  line-height: 37px;
  margin: 0px 0 15px 0;
}
.service__section .service__block > div {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}
.service__section .service__block > div img {
  margin-right: 20px;
  max-width: 60px;
}
.service__section .block__volunteer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-left: 15%;
  flex-basis: 50%;
}
.service__section .donate__volunteer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  flex-basis: 50%;
}
.service__section .donate__volunteer:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(233, 171, 52, 0.9);
  content: "";
  z-index: 1;
}

.gallery__section .owl-nav {
  position: absolute;
  right: 0;
  top: 45%;
  width: 100%;
  transform: translateY(-50%);
}
.gallery__section .owl-nav button {
  width: 30px !important;
  height: 30px !important;
  background: #224f7a !important;
  margin: 0;
  border-radius: 100%;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 30px !important;
}
.gallery__section .owl-nav button.owl-prev {
  position: absolute;
  left: -13px;
  top: 50%;
}
.gallery__section .owl-nav button.owl-next {
  position: absolute;
  right: -12px;
  top: 50%;
}

.partners-section {
  background: rgba(34, 96, 191, 0.031372549);
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding-bottom: 25px;
}
.partners-section .partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 23px;
}
@media (max-width: 768px) {
  .partners-section .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

.partners-col {
  border: 1px solid rgba(0, 0, 0, 0.0588235294);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  border-radius: 12px;
  background: #fff;
  min-height: 80px;
  height: 100%;
}

.page-header {
  position: relative;
  overflow: hidden;
  display: block;
  background: #f1f1f1;
}
.page-header .wl-container {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.page-header .wl-container h2 {
  margin: 0px;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: #224f7a;
}

.about-section-wrap {
  margin-bottom: 30px;
}

.about-card .card-title-wrap {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 20px 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  z-index: 1;
}
.about-card .card-title-wrap h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.about-card .card-title-wrap i {
  background: rgba(51, 51, 51, 0.4392156863);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}
.about-card .card-title-wrap p {
  font-size: 15px;
}
.about-card a {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}
.about-card a > img {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  -o-object-fit: contain;
  object-fit: contain;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.about-card a:hover img {
  transform: scale(1.1);
}
.about-card a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 1.72%, rgba(0, 0, 0, 0.35) 63.3%);
  z-index: 1;
}

.load-more {
  margin-top: 15px;
  text-align: center;
}

.block-hero-contact__content-col {
  padding-right: 40px;
}

.block-hero-contact__form-col form {
  background: #f1f1f1;
  border: rgba(0, 0, 0, 0.05) 1px solid;
  border-radius: 4px;
  padding: 22px;
  padding-bottom: 22px;
  padding-bottom: 15px;
  margin-top: 20px;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.block-hero-contact__form-col form div {
  flex: 1;
}
.block-hero-contact__form-col form div input,
.block-hero-contact__form-col form div select,
.block-hero-contact__form-col form div textarea {
  display: block;
  width: 100%;
  padding: 0 0 0 16px;
  height: 46px;
  margin-top: 10px;
  color: #0f1419;
  font-weight: 600;
  border: 1px solid rgba(17, 17, 17, 0.1490196078);
  border-radius: 0.25rem;
  background-color: #fff;
  outline: none;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out, background-color 0.3s ease-in-out;
  font-size: 16px;
  line-height: 1.5rem;
  font-family: "Inter Tight", sans-serif;
  transition: all 0.35s ease-in-out;
}
.block-hero-contact__form-col form div input:focus,
.block-hero-contact__form-col form div select:focus,
.block-hero-contact__form-col form div textarea:focus {
  border: 1px solid #224f7a;
}
.block-hero-contact__form-col form div textarea {
  height: 150px;
  padding: 13px 20px;
}
.block-hero-contact__form-col form div .btn {
  width: 120px;
  display: inline-block;
}
.block-hero-contact__form-col form div:first-child + div + div {
  grid-column: span 2;
}

.block-hero-contact__content-col .section-heading span,
.block-hero-contact__form-col .section-heading span {
  margin-top: 7px;
  display: block;
  font-size: 17px;
}

.contact-detail {
  margin: 25px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.contact-detail li {
  position: relative;
  padding: 15px 0;
  font-size: 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
}
.contact-detail li h4,
.contact-detail li .h4 {
  color: #0f1419;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.contact-detail li p {
  font-weight: 500;
  color: #111;
  font-size: 16px;
}
.contact-detail li p a {
  font-weight: 500;
  color: #111;
}
.contact-detail .social-media {
  margin-top: 12px;
}
.contact-detail .social-media a {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 26px;
  color: #000;
  margin-right: 8px;
  opacity: 0.5;
}
.contact-detail .social-media a:hover {
  opacity: 1;
  color: #224f7a;
}

.section_project-detail .content-container .post-info-date {
  padding: 15px 0;
  font-size: 13px;
  margin-top: 15px;
  border-top: 1px dashed rgba(17, 17, 17, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.section_project-detail .content-container .post-info-date i {
  margin-right: 5px;
  font-size: 13px;
  opacity: 0.76;
}
.section_project-detail .heading {
  font-size: 38px;
  line-height: 1.2;
  padding-top: 15px;
  color: #000;
  font-weight: 700;
}
.section_project-detail .featured-banner {
  margin-bottom: 20px;
}
.section_project-detail .featured-banner img {
  border-radius: 4px;
  width: 100%;
}
.section_project-detail .about-card a {
  height: 200px;
}
.section_project-detail .about-card a:before {
  background: none;
}

.contentarea {
  font-size: 17px;
  line-height: 1.7;
}
.contentarea p:not(:last-child) {
  margin-bottom: 15px;
}
.contentarea img,
.contentarea iframe {
  margin-bottom: 15px;
  border-radius: 4px;
}
.contentarea h1,
.contentarea h2,
.contentarea h3,
.contentarea h4,
.contentarea h5,
.contentarea h6 {
  margin-bottom: 15px;
  font-family: "Inter Tight", sans-serif;
}
.contentarea iframe {
  width: 100%;
}

.sidebar ul {
  margin: 15px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.sidebar ul li a {
  font-size: 15px;
  color: #000;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
}
.sidebar ul li:hover {
  color: #224f7a;
}
.sidebar ul li:first-child a {
  padding-top: 0;
}

.content-area p {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .site-header .header-right {
    display: none;
  }
  .navigation {
    display: none;
  }
  .hamburger {
    display: inline-block;
    width: 28px;
    margin: 11px 0 0 auto;
    cursor: pointer;
    vertical-align: middle;
    overflow: hidden;
  }
  .hamburger span {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111;
    margin-bottom: 8px;
  }
  .section-banner .banner-wrap .wl-container .content h2 {
    max-width: 650px;
    font: 40px/1.3 "Integral-Regular";
  }
}
@media (max-width: 640px) {
  .section-banner {
    text-align: center;
  }
  .section-banner .banner-wrap {
    height: 600px;
  }
  .section-banner .banner-wrap .wl-container .content span {
    font: 400 16px/1em "Inter Tight", sans-serif;
    color: #fff;
    display: block;
    max-width: inherit;
    text-align: center;
  }
  .section-banner .banner-wrap .wl-container .content h2 {
    max-width: 650px;
    text-align: center;
    font: 40px/1.3 "Integral-Regular";
  }
}
@media (max-width: 480px) {
  .section-exclusions .service-card .card-content h3 {
    font-size: 15px;
    margin: 5px 0;
  }
  .section_project-detail .heading {
    font-size: 24px;
    padding-top: 15px;
  }
  .page-header .wl-container {
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 10;
  }
  .page-header .wl-container h2 {
    font-size: 22px;
    text-align: left;
  }
  .button {
    padding: 10px 25px 14px 25px;
    border-radius: 50px;
    font-size: 13px;
  }
  .section__work.section-sm {
    padding: 19px 0px;
  }
  .section-sm.latest__news {
    padding-bottom: 15px;
  }
  .site-header .site-logo img {
    width: 135px;
    padding: 11px 0;
  }
  .section-md {
    padding: 35px 0;
  }
  .section-heading .heading {
    font-size: 28px;
  }
  .page__section.about__section .about__contents p {
    margin: 20px 0 20px 0;
    font-size: 15px;
    color: #000;
    line-height: 1.68;
  }
  .page__section.about__section .about__contents .section__title {
    font-size: 27px;
    margin-bottom: 10px;
    line-height: 28px;
  }
  .section-banner .banner-wrap {
    height: 400px;
  }
  .section-banner .banner-wrap .wl-container .content span {
    font: 400 16px/1.4 "Inter Tight", sans-serif;
    color: #fff;
    display: block;
    max-width: inherit;
    margin-bottom: 7px;
    text-align: center;
  }
  .section-banner .banner-wrap .wl-container .content h2 {
    max-width: 650px;
    text-align: center;
    font: 30px/1.3 "Inter Tight", sans-serif;
  }
}
