@font-face {
  font-family: "BreuerText";
  src: url("../fonts/BreuerText.eot");
  src: url("../fonts/BreuerText.eot?#iefix") format("embedded-opentype"), url("../fonts/BreuerText.woff2") format("woff2"), url("../fonts/BreuerText.woff") format("woff"), url("../fonts/BreuerText.ttf") format("truetype"), url("../fonts/BreuerText.svg#BreuerText") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BreuerText";
  src: url("../fonts/BreuerText-Light.eot");
  src: url("../fonts/BreuerText-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/BreuerText-Light.woff2") format("woff2"), url("../fonts/BreuerText-Light.woff") format("woff"), url("../fonts/BreuerText-Light.ttf") format("truetype"), url("../fonts/BreuerText-Light.svg#BreuerText-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BreuerText";
  src: url("../fonts/BreuerText-Bold.eot");
  src: url("../fonts/BreuerText-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BreuerText-Bold.woff2") format("woff2"), url("../fonts/BreuerText-Bold.woff") format("woff"), url("../fonts/BreuerText-Bold.ttf") format("truetype"), url("../fonts/BreuerText-Bold.svg#BreuerText-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #000;
  --white: #fff;
  --lightBlue: #e3f2fb;
  --darkBlue: #2d499d;
  --fontBreuer: "BreuerText";
}

.BreuerText {
  font-family: "BreuerText";
}

html,
body {
  font-family: "BreuerText";
}

a {
  text-decoration: none;
}

p {
  font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
  color: var(--black);
  line-height: 1.2;
}

.smallTitle {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
  font-weight: 700;
  color: var(--darkBlue);
  background-color: var(--white);
  border: 1px solid var(--darkBlue);
  border-radius: 30px;
  padding: 0.3rem 2rem;
}

.commonTitle {
  color: var(--darkBlue);
  font-size: clamp(1.625rem, 1.3935rem + 1.2346vw, 2.875rem);
  font-weight: 900;
  letter-spacing: -1.8px;
}

.summaryText {
  font-size: clamp(1.25rem, 1.2037rem + 0.2469vw, 1.5rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.commonCTA {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--darkBlue);
  padding: 12px 28px;
  margin-top: 34px;
  font-size: 18px;
  font-weight: 400;
  color: var(--darkBlue);
  transition: all 0.4s ease-in-out;
}
.commonCTA:hover {
  color: var(--white);
  background-color: var(--darkBlue);
}

.customContainer {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .customContainer {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .customContainer {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .customContainer {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .customContainer {
    max-width: 1028px;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1400px) {
  .customContainer {
    max-width: 1028px;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .customContainer {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .customContainer {
    max-width: 1366px;
  }
}

.header {
  width: 100%;
  background-color: var(--lightBlue);
  padding-top: 16px;
  padding-bottom: 16px;
  z-index: 999;
}
.header .logo {
  display: block;
}
.header .downloadReport {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  font-weight: 600;
  color: var(--darkBlue);
}
@media (max-width: 767px) {
  .header .downloadReport span {
    display: none;
  }
}

.banner {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: var(--white);
}
@media (max-width: 767px) {
  .banner {
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .banner {
    height: auto;
  }
}
.banner .bannerInner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.banner .bannerInner .bannerLeft {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner .bannerInner .bannerLeft {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .banner .bannerInner .bannerLeft {
    width: 100%;
  }
}
.banner .bannerInner .bannerLeft img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}
.banner .bannerInner .bannerRight {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
}
@media (max-width: 767px) {
  .banner .bannerInner .bannerRight {
    width: 100%;
    padding: 100px 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .banner .bannerInner .bannerRight {
    width: 100%;
    padding: 100px 24px;
  }
}
.banner .bannerInner .bannerRight .bannerText {
  width: 70%;
  color: var(--darkBlue);
  font-family: "BreuerText";
  font-size: clamp(1.625rem, 1.3935rem + 1.2346vw, 2.875rem);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -2.2px;
  opacity: 0;
}
@media (max-width: 767px) {
  .banner .bannerInner .bannerRight .bannerText {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .banner .bannerInner .bannerRight .bannerText {
    width: 100%;
  }
}
.banner .bannerInner .bannerRight .bannerText img {
  display: block;
  margin-top: 50px;
}
.banner .bannerInner .bannerRight .bannerText .line {
  overflow: hidden;
}

.overview {
  position: relative;
  background-color: var(--lightBlue);
  overflow: hidden;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .overview {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .overview {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .overview {
    padding: 80px 0;
  }
}
.overview h2 {
  font-size: clamp(1.625rem, 1.3935rem + 1.2346vw, 2.875rem);
  color: var(--darkBlue);
  font-weight: 400;
}
.overview p {
  font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
  color: var(--black);
  line-height: 1.2;
}
.overview .overviewGrid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
  border: 1px solid var(--darkBlue);
}
@media (max-width: 767px) {
  .overview .overviewGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .overview .overviewGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.overview .overviewGrid .gridItem {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  justify-content: center;
  padding: 24px 0;
  transition: all 0.5s ease-in-out;
}
.overview .overviewGrid .gridItem .counter .num {
  font-size: 56px;
  line-height: 1;
  color: var(--darkBlue);
}
.overview .overviewGrid .gridItem .counter .num .unit {
  font-size: 20px;
}
.overview .overviewGrid .gridItem .counter p {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}
.overview .overviewGrid .gridItem:first-child {
  border-right: 1px solid var(--darkBlue);
}
@media (max-width: 767px) {
  .overview .overviewGrid .gridItem:first-child {
    border-right: none;
    border-bottom: 1px solid var(--darkBlue);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .overview .overviewGrid .gridItem:first-child {
    border-right: none;
    border-bottom: 1px solid var(--darkBlue);
  }
}
.overview .overviewGrid .gridItem:hover {
  background-color: var(--darkBlue);
}
.overview .overviewGrid .gridItem:hover svg path {
  fill: var(--white);
}
.overview .overviewGrid .gridItem:hover .counter .num {
  color: var(--white);
}
.overview .overviewGrid .gridItem:hover .counter p {
  color: var(--white);
}
.overview .overviewGrid::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--darkBlue);
  position: absolute;
  left: -30px;
  bottom: -30px;
}

.whoWeAre {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .whoWeAre {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .whoWeAre {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .whoWeAre {
    padding: 80px 0;
  }
}
.whoWeAre .whoWeAreTop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media (max-width: 767px) {
  .whoWeAre .whoWeAreTop {
    grid-template-columns: repeat(1, 1fr);
  }
}
.whoWeAre .whoWeAreTop > :first-child {
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  .whoWeAre .whoWeAreTop > :last-child {
    margin-top: 24px;
  }
}
.whoWeAre .whoWeAreBottom {
  margin-top: 40px;
}
.whoWeAre .whoWeAreBottom .vmGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
  border: 1px solid var(--darkBlue);
}
@media (max-width: 767px) {
  .whoWeAre .whoWeAreBottom .vmGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.whoWeAre .whoWeAreBottom .vmGrid .item {
  background-color: var(--white);
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.whoWeAre .whoWeAreBottom .vmGrid .item:not(:last-child) {
  border-right: 1px solid var(--darkBlue);
}
@media (max-width: 767px) {
  .whoWeAre .whoWeAreBottom .vmGrid .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--darkBlue);
  }
}
.whoWeAre .whoWeAreBottom .vmGrid .item .itemInner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.whoWeAre .whoWeAreBottom .vmGrid .item .itemInner .logo {
  height: 100px;
}
.whoWeAre .whoWeAreBottom .vmGrid .item .itemInner .text {
  position: relative;
  flex: 1;
  top: 120px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .whoWeAre .whoWeAreBottom .vmGrid .item .itemInner .text {
    top: 0;
  }
}
.whoWeAre .whoWeAreBottom .vmGrid .item .itemInner .text h3 {
  font-size: clamp(1.575rem, 1.5741rem + 1.6049vw, 3rem);
  font-weight: 400;
  color: var(--darkBlue);
}
.whoWeAre .whoWeAreBottom .vmGrid .item .itemInner .text p {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .whoWeAre .whoWeAreBottom .vmGrid .item .itemInner .text p {
    opacity: 1;
  }
}
.whoWeAre .whoWeAreBottom .vmGrid .item:hover {
  background-color: var(--lightBlue);
}
.whoWeAre .whoWeAreBottom .vmGrid .item:hover .text {
  top: 0;
}
.whoWeAre .whoWeAreBottom .vmGrid .item:hover .text p {
  opacity: 1;
}

.howwework {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--white);
}
@media (max-width: 767px) {
  .howwework {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}
.howwework img {
  clip-path: circle(0% at 50% 50%);
}

.ourPresence {
  position: relative;
  padding: 100px 0;
  background-color: #efeef7;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ourPresence {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ourPresence {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .ourPresence {
    padding: 80px 0;
  }
}
.ourPresence .countryList {
  list-style: none;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding-left: 0;
  margin-top: 50px;
}
.ourPresence .countryList li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #999999;
  font-size: 18px;
}
@media (max-width: 767px) {
  .ourPresence .countryList li {
    font-size: 16px;
  }
}
.ourPresence .countryList li span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--white);
  background-color: var(--darkBlue);
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  margin-right: 5px;
}
.ourPresence::before {
  content: "";
  width: 80px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .ourPresence::before {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ourPresence::before {
    display: none;
  }
}

.chairpersonMessage {
  position: relative;
  padding: 100px 0;
  background-color: #fff5ef;
  overflow: hidden;
}
@media (max-width: 767px) {
  .chairpersonMessage {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .chairpersonMessage {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .chairpersonMessage {
    padding: 80px 0;
  }
}
.chairpersonMessage::before {
  content: "";
  width: 80px;
  height: 100%;
  background-color: var(--darkBlue);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .chairpersonMessage::before {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .chairpersonMessage::before {
    display: none;
  }
}
.chairpersonMessage .smallTitle {
  background-color: transparent;
}
.chairpersonMessage p {
  font-size: clamp(1.125rem, 0.7289rem + 1.2676vw, 2.25rem);
  color: var(--darkBlue);
}
@media (max-width: 767px) {
  .chairpersonMessage p {
    margin-top: 24px;
  }
}
.chairpersonMessage h4 {
  font-weight: 600;
  color: var(--black);
  font-size: 28px;
  margin-bottom: 0;
  margin-top: 24px;
}
.chairpersonMessage img {
  margin-left: -32%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .chairpersonMessage img {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .chairpersonMessage img {
    margin-left: -15%;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .chairpersonMessage img {
    margin-left: -10%;
  }
}

.ourPartners {
  position: relative;
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}
@media (max-width: 767px) {
  .ourPartners {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ourPartners {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .ourPartners {
    padding: 80px 0;
  }
}
.ourPartners .logo-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .ourPartners .logo-grid {
    display: none;
  }
}
.ourPartners .logo-grid .logo {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.ourPartners .logo-grid .logo:hover {
  box-shadow: 0px 4px 4px 0.25px rgba(0, 0, 0, 0.27);
}
.ourPartners .logo-slider {
  display: none;
}
@media (max-width: 767px) {
  .ourPartners .logo-slider {
    display: block;
  }
}
.ourPartners .logo-slider .logoSwiper {
  padding-bottom: 50px;
  overflow: visible;
  margin-top: 16px;
}
.ourPartners .logo-slider .logoSwiper .swiper-slide {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--lightBlue);
  overflow: hidden;
}
.footer h6 {
  text-align: center;
  color: var(--darkBlue);
  font-size: 16px;
  margin-bottom: 0;
}

.downloadCenter {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/dc-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .downloadCenter {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .downloadCenter {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .downloadCenter {
    padding: 80px 0;
  }
}
.downloadCenter .ar p {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  margin-top: 16px;
}
.downloadCenter .dc-wrap {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .downloadCenter .dc-wrap {
    padding-left: 0;
  }
}
.downloadCenter .commonTitle {
  color: var(--white);
}
.downloadCenter ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .downloadCenter ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.downloadCenter ul li a {
  display: flex;
  padding: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid var(--white);
}

.ourFocusArea {
  position: relative;
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}
@media (max-width: 767px) {
  .ourFocusArea {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ourFocusArea {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .ourFocusArea {
    padding: 80px 0;
  }
}
.ourFocusArea .thumbsSlider-wrp {
  position: relative;
  width: 73%;
  margin: 24px auto 0;
}
@media (max-width: 767px) {
  .ourFocusArea .thumbsSlider-wrp {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .ourFocusArea .thumbsSlider-wrp {
    width: 95%;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .ourFocusArea .thumbsSlider-wrp {
    width: 81%;
  }
}
@media (max-width: 767px) {
  .ourFocusArea .thumbsSlider-wrp .navSwiper {
    overflow: visible;
  }
}
.ourFocusArea .thumbsSlider-wrp .navSwiper .swiper-wrapper .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.ourFocusArea .thumbsSlider-wrp .navSwiper .swiper-wrapper .swiper-slide .slideLabel {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
  font-weight: 700;
  color: #999999;
  background-color: #ffffff;
  border: 1px solid #999999;
  border-radius: 30px;
  padding: 0.3rem 2rem;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 767px) {
  .ourFocusArea .thumbsSlider-wrp .navSwiper .swiper-wrapper .swiper-slide .slideLabel {
    font-size: 12px;
  }
}
.ourFocusArea .thumbsSlider-wrp .navSwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .slideLabel {
  color: var(--clr) !important;
  background-color: var(--bg) !important;
  border: 1px solid var(--clr) !important;
}
.ourFocusArea .thumbsSlider-wrp .swiper-button-next {
  right: -50px;
  height: 27px;
  top: 27px;
}
.ourFocusArea .thumbsSlider-wrp .swiper-button-prev {
  left: -50px;
  height: 27px;
  top: 27px;
}
.ourFocusArea .fcSwiper {
  position: relative;
  margin-top: 48px;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner {
  background-color: var(--bg);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner {
    flex-wrap: wrap;
  }
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left {
    width: 100%;
    padding: 24px;
  }
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content {
  width: 80%;
}
@media (max-width: 767px) {
  .ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content {
    width: 100%;
  }
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .ico {
  width: 50px;
  margin-bottom: 16px;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .text h3 {
  color: var(--clr);
  font-size: clamp(1.5rem, 1.4881rem + 0.6349vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -1.8px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .sdgCounter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-top: 24px;
  align-items: center;
}
@media (max-width: 767px) {
  .ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .sdgCounter {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .sdgCounter .sdg {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--clr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .sdgCounter .counter .num {
  font-size: 36px;
  color: var(--clr);
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .sdgCounter .counter .num .unit {
  font-size: 40px;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .sdgCounter .counter p {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .left .content .commonCTA {
  display: flex;
  align-items: center;
  background-color: var(--clr) !important;
  color: var(--white);
  border: 1px solid var(--clr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-radius: 4px;
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .right {
  width: 48%;
}
@media (max-width: 767px) {
  .ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .right {
    width: 100%;
  }
}
.ourFocusArea .fcSwiper .swiper-wrapper .swiper-slide .slideInner .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourFocusArea .fakeAfter {
  display: block;
  content: "";
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 50%;
  height: 400px;
  background-color: #eb2628;
}
@media (max-width: 767px) {
  .ourFocusArea .fakeAfter {
    display: none;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

.swiper,
.swiper * {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.back-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: block;
  background: rgba(45, 73, 157, 0.8);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

.back-top.back-top-show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.back-top:hover {
  background: rgba(0, 0, 0, 0.8);
}

.back-top .up-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=style.css.map */