/*=================menu===================*/

* {
  /*transition: .25s ease-in-out;*/
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}


button:focus {
  outline: 0 !important;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

:root {
  --lato: "lato", sans-serif;
  --inter: "Inter", sans-serif;
}

.nobg {
  background: transparent !important;
}

.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}

.preloader:before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  transition: 1s;
}

.preloader:after {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  transition: 1s;
}

.preloader.complete:before {
  left: -50%;
}

.preloader.complete:after {
  right: -50%;
}

.preloader.complete {
  display: none;
}

.loader {
  display: inline-block;
  width: 117px;
  height: 117px;
  position: absolute;
  z-index: 3;
  background-image: url(../img/preloader-logo.png);
  top: 40%;
  left: 47%;
  transform: translate(-50%, -50%);
  animation: loader 8s infinite;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: scale(1) rotate(0deg);
  }

  100% {
    transform: scale(1.3) rotate(360deg);
  }
}

.loader-inner::before,
.loader-inner::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #289fd8;
  border-radius: 100%;
  animation: pops 2s infinite;
  opacity: 0;
}

.loader-inner::after {
  animation-delay: 0.5s;
}

@keyframes pops {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

body {
  font-family: var(--lato) !important;
  /* position   : relative; */
}

body.fixed {
  overflow: hidden;
}

.container {
  max-width: 1280px;
}

header.header-wrap {
  position: fixed;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
 
}

.header-innwrap {
  position: relative;
  transition: 0.5s;
}
header.header-wrap.scrolled{
  background: #d4d4d4;
}



.scrolled .header-innwrap {
  margin-top: -65px;
  background: #d4d4d4;
}

.scrolled .menu > ul {
  margin-top: 40px;
}

.menuwrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

a.logo {
  position: relative;
  display: block;
  float: left;
  transition: 0.5s;
  margin-right: 0;
  margin-top: 0;
}

.logo img {
  width: 100%;
  transition: 0.5s;
  max-width: 115px;
}
.scrolled .logo img {
  width: 100%;
  max-width: 88px;
  margin: 48px 0 4px 0;
  left: -10px;
}
.scrolled a.logo {
  /* transform: scale(0.8); */
}

.nav-click {
  position: absolute;
  display: block;
  width: 16px;
  height: 9px;
  /*background       : url(../img/menu-arrow.png);*/
  background-position: center center;
  top: 10px;
  right: 0;
  z-index: 999;
  background-repeat: no-repeat;
}

.menu > ul > li.has-child > .nav-click {
  top: 40px;
  right: 19px;
}

/* button.navbar-toggler {
    display: none;
} */

.menu ul > li > ul {
  transition: all 0.5s;
}

.menu {
  position: relative;
  display: block;
}

.menu.open > ul {
  left: -183px;
  top: -21px;
}

.menu ul {
  padding: 0;
  margin: 0;
}

.animated-icon1,
.animated-icon2,
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #fff;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.mobile-social {
  display: none;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menu ul > li > ul {
  position: absolute;
  max-height: 0px;
  overflow: hidden;
  background: #fff;
  border-radius: 21px;
  margin: 0;
  width: 260px;
  padding: 0;
  top: 76px;
  right: -142px;
  transition: 0.5s;
}

/* .menu>ul>li>ul:before {
    position  : absolute;
    content   : '';
    display   : block;
    width     : 15px;
    height    : 15px;
    background: #fff;
    top       : -8px;
    left      : 61px;
    transform : rotate(45deg);
} */

.menu ul > li > ul > li > ul {
  position: absolute;
  height: 0px;
  overflow: hidden;
  background: #191919;
  margin: 0 99px;
  width: 150px;
  padding: 0;
  display: none;
  top: 5px;
  z-index: 999;
}

.menu ul li:hover ul {
  overflow: hidden;
  max-height: 200px;
  padding: 12px 30px;
}

/* .menu>ul li:hover ul {
    overflow  : visible;
    max-height: 200px;

} */
.menu ul > li > ul > li > ul > li {
  display: block;
}

.menu ul > li > ul > li:last-child {
  background: transparent;
  /*padding    : 0*/
  border-bottom: 0;
}

.menu ul > li > ul > li:last-child::after {
  background: none;
}

.menu ul > li {
  display: block;
  float: left;
  list-style: none;
  margin: 0 3px;
  position: relative;
  border-radius: 40px;
  padding: 0 20px 38px;
  transition: 0.5s;
  /* min-width : 98px; */
  cursor: pointer;
  text-align: right;
}

.menu ul > li > ul > li {
  padding: 5px 0;
  text-align: left;
  display: block;
}

.menu ul > li > a {
  letter-spacing: 0px;
  color: #ffffff;
  transition: 0.5s;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
}

.menu ul > li > a:hover {
  letter-spacing: 0px;
  color: #ffffff;
  text-shadow: 1px -4px 11px #fff;
}

/* .menuwrap .menu>ul>li>a:after {
    position: absolute;
    display: block;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    content: '';
    transition: 0.5s;
    transform: scale(0);
} */

.menu {
  float: none;
  width: auto;
  background: none;
  z-index: 999;
  padding: 0;
  box-shadow: none;
}

.menu ul li:hover ul {
  overflow: hidden;
  max-height: 0;
  padding: 0;
}

.menu > ul > li > ul > li {
  text-align: right;
}

.menu ul li ul {
}

.menu ul > li > ul {
  position: relative;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0;
  margin: 0;
  width: 380px;
  top: 76px;
  right: 0;
  transition: 0.5s;
}

.menu ul li ul.subshow {
  position: relative;
  transition: all 1s;
  max-height: 300px;
  padding: 0 15px 0;
}

.menu ul > li > ul > li a {
  font-size: 14px;
}

.menu ul {
  padding: 0;
  margin: -10px 0 0 0px;
}

.menu ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 16px 10px;
  text-align: left;
  border-radius: 0;
  padding: 20px 32px;
  min-width: auto;
}

.menu ul {
  padding: 10px 0 0 0;
  margin: 0;
  transition: all 1s ease;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 9;
}

/* .popmenu-wrap {
    position: absolute;
    display: block;
    background: #324497;
    height: 100vh;
    width: 350px;
    left: -112px;
    top: -20px;
} */

.popmenu-wrap {
  position: absolute;
  display: block;
  background: #324497;
  height: 100vh;
  width: 350px;
  left: 126%;
  top: -20px;
  transition: 0.5s;
  opacity: 0;
}

.open .popmenu-wrap {
  position: absolute;
  display: block;
  background: #324497;
  height: 100vh;
  width: 350px;
  left: -60%;
  top: -20px;
  opacity: 1;
}

.scrolled .popmenu-wrap {
  top: 45px;
}

/* .menu.open ul {
    left: -536px;
    top : -21px;
} */

.menu ul > li {
  padding: 0px 30px !important;
  min-width: auto;
  float: none;
}

.menu ul.open-menu {
  margin: 0;
  width: 410px;
  left: -360px;
}

.menu > ul > li:hover {
  display: block;
  list-style: none;
  background: transparent;
}

.menu > ul > li > ul:before {
  display: none;
}

.nav-click {
  position: relative;
  display: block;
  z-index: 999;
  padding: 0;
  width: 10px;
  height: 10px;
  cursor: pointer;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s;
}

button.navbar-toggler.first-button {
  width: 185px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #353535;
  color: #353535;
  font-size: 15px;
  text-indent: 18px;
  font-style: normal;
  font-weight: 500;
  background-image: url(../img/menuicon.png);
  background-repeat: no-repeat;
  background-position: 17px center;
  position: relative;
  text-indent: 34px;
}
button.navbar-toggler.first-button:hover {
  color: #fff;
  background-image: url(../img/menuicon-hover.png);
}

.scrolled button.navbar-toggler.first-button {
  top: 72px;
}

button.navbar-toggler.first-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  z-index: -2;
}

button.navbar-toggler.first-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #324498;
  transition: all 0.3s;
  z-index: -1;
}

/* .button:hover {
    color: #fff;
  } */
button.navbar-toggler.first-button:hover:before {
  width: 100%;
}

.toptext {
  position: relative;
  display: block;
  padding-top: 25px;
}

.popmenu-wrap p {
  color: #959aaf;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.34px;
  text-transform: uppercase;
  padding: 40px 30px 0 30px;
}

span.btnclose {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
}

.toptext p {
  color: #26282b;
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
}

/*=================menu end===================*/

section.s1 {
  position: relative;
  display: block;
}

.banner-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.maininner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.hm-banner-wrap {
  position: relative;
  display: block;
  height: 740px;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainimage img {
  max-width: 100%;
}

.mainimage {
  position: relative;
  display: block;
  max-width: 1280px;
  height: auto;
  padding-top: 108px;
  left: 32px;
}
.home-bannerwrap .container-fluid {
  padding: 0;
  overflow: hidden;
}

.inro {
  position: relative;
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding-top: 200px;
  padding-left: 20px;
}

.inro h1 {
  color: #324498;
  font-size: 67px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  /* 91.892% */
}

.inro h1 span {
  color: #d40025;
  display: block;
}

.inro p {
  color: #151e27;
  font-family: var(--inter);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 10px;
  max-width: 375px;
}

.pointwrap1 {
  position: relative;
  display: block;
  margin-top: -248px;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.pw {
  position: absolute;
}

.pointer1 {
  top: 134px;
  left: 35%;
  transition: 0s;
  /* transition-property: top !important; */
}

.pointer1:hover {
  transition-duration: 0s;
  transform: scale(1.1) !important;
}

.pointer2 {
  top: -37px;
  left: 47%;
  transition: 0s;
  /* transition-property: top !important; */
}

.pointer2:hover {
  transition-duration: 0s;
  transform: scale(1.1) !important;
}

.pointer3 {
  top: -64px;
  left: 76%;
  transition: 0s;
  /* transition-property: top !important; */
}

.pointer3:hover {
  transition-duration: 0s;
  transform: scale(1.1) !important;
}

.pointer1:hover h5,
.pointer2:hover h5,
.pointer3:hover h5 {
  background: #fff;
}

.pointer2.pw h5 {
  text-align: right;
  font-weight: 700;
}

.pointer2.pw h6 {
  text-align: right;
  font-weight: 400;
}
.pointer2 .pointimg {
  left: 122px;
}

.pw.pointer3 h6 {
  text-align: right;
}

.pointer3 .pointimg {
  left: 145px;
}

.pw.pointer3 h5 {
  font-weight: 700;
  text-align: right;
}

.pw.pointer3 h6 {
  font-weight: 300;
}

.pw h5 {
  color: #3e3d3d;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
  letter-spacing: -0.32px;
  margin-bottom: 0;
  transition: 0.5s;
  padding: 5px;
  display: inline-block;
}
.pw h6 {
  color: #3e3d3d;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 23px;
  /* 143.75% */
  letter-spacing: -0.32px;
  font-weight: 700;
  display: inline-block;
}

.pointimg {
  position: relative;
  display: block;
  left: 42px;
}

.mainimage-mobile {
  display: none;
}

section.s1 {
  position: relative;
  display: block;
  background: #0b6dac;
  color: #fff;
  padding-bottom: 100px;
}

.abt-sec-col-1,
.abt-sec-col-2 {
  position: relative;
  display: block;
  padding-top: 80px;
}
.aboutimg1 img {
  transition: 0.5s;
}

.aboutimg1 img:hover {
  filter: brightness(1.3);
}

.abt-sec-col-1 h4 {
  color: #fff;
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  width: 725px;
  z-index: 9;
  position: relative;
  margin-top: 60px;
}

.abt-sec-col-1 p {
  width: 432px;
  color: #d1d1d1;
  font-family: var(--inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  position: relative;
  display: block;
  margin-top: 50px;
}

.abt-sec-col-1 {
  max-width: 725px;
  margin-left: 89px;
}

.abt-sec-col-1:before {
  position: absolute;
  display: block;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: rgba(66, 143, 192, 0.43);
  content: "";
  top: 62px;
  left: -50px;
  animation: circleanim 3s infinite;
}

@keyframes circleanim {
  0%,
  100% {
    left: -50px;
    top: 62px;
  }

  50% {
    left: -55px;
    top: 55px;
  }
}

.abt-sec-col-1:after {
  position: absolute;
  display: block;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: rgba(88, 140, 173, 0.13);
  content: "";
  top: 30px;
  left: 202px;
  animation: circleanim2 3s infinite;
}

@keyframes circleanim2 {
  0%,
  100% {
    top: 30px;
    left: 202px;
  }

  50% {
    top: 50px;
    left: 190px;
  }
}

a.btn-readmore {
  position: relative;
  display: block;
  width: 144px;
  height: 53px;
  border-radius: 6px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  margin-top: 50px;
  transition: 0.5s;
}

a.btn-readmore:hover {
  background-color: #fff;
  color: #0b6dac;
}

.abt-wrap {
  position: relative;
  display: block;
  margin-left: 55px;
}
section.s2 {
  background: #f6f6f6;
  position: relative;
  display: block;
  padding-top: 120px;
  padding-bottom: 850px;
  overflow-x: hidden;
}

section.s2 .container:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 95%;
  display: none;
}

.s2topsection {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 85px;
  z-index: 1;
}

.s2top-col1,
.s2top-col2 {
  position: relative;
  display: block;
}

.s2top-col1 h3 {
  position: relative;
  display: block;
  color: #042546;
  font-size: 66px;
  font-style: normal;
  font-weight: 400;
  line-height: 82px;
  letter-spacing: -1.32px;
}

.s2top-col2 p {
  color: #152935;
  text-align: right;
  font-family: var(--inter);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 47px;
}

.s2top-col2 strong {
  color: #ed1c24;
}

.s2top-col1 {
  width: 40%;
  top: -40px;
}

.s2top-col2 {
  width: 56%;
  margin-right: 35px;
}

/* a.btn-download {
  position: absolute;
  top: 60px;
  right: -150px;
  display: block;
  color: #183c53;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transition: 0.5s;
} */
a.btn-download {
  position: sticky;
  top: 75px;
  display: block;
  color: #183c53;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transform: rotate(90deg) translate(60%, -1280px);
  transition: 0.5s;
  z-index: 1;
  width: max-content;
  margin-left: -90px;
}

.sticky-btn-wrap {
}

a.btn-download:hover {
  color: #67a5cd;
}

.btn-download-mobile {
  display: none;
}

.s2top-col1:before {
  position: absolute;
  display: block;
  content: "";
  top: -47px;
  left: -84px;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: rgba(213, 235, 249, 0.43);
  animation: circleanim3 2s infinite;
}

@keyframes circleanim3 {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }
}

.visionmission-wrap {
  position: relative;
  display: block;
}

.vision-wrap h4 {
  color: #65c7c4;
  font-family: var(--inter);
  font-size: 127px;
  font-style: normal;
  font-weight: 300;
  line-height: 76px;
  letter-spacing: -7.62px;
  margin-bottom: 30px;
}

.vision-wrap p {
  color: #3d3b3b;
  text-align: right;
  font-family: var(--inter);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  max-width: 256px;
  width: 100%;
}

.vision-wrap {
  position: absolute;
  display: block;
  width: 432px;
  height: 432px;
  border-radius: 432px;
  background: #96d5d3;
  top: 0;
  left: 95px;
}

.vision-wrap h4 {
  position: relative;
  margin-top: 66px;
  margin-left: -46px;
}

.vismis-animation-wrap {
  position: relative;
  display: block;
}

.anim1-wrap {
  position: relative;
  display: block;
  text-align: center;
}

.values-wrap {
  position: absolute;
  display: block;
  bottom: -765px;
  left: 85px;
  width: 265px;
  height: 265px;
  border-radius: 265px;
  background: #ffdebb;
}

.values-wrap h4 {
  color: #fdc281;
  font-family: var(--inter);
  font-size: 102px;
  font-style: normal;
  font-weight: 200;
  line-height: 76px;
  letter-spacing: -6.12px;
  margin-top: 45px;
}

.values-wrap p {
  color: #3d3b3b;
  text-align: center;
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  width: 239px;
  font-size: 14px;
  margin: 20px auto 0 auto;
}

.mission-wrap {
  position: absolute;
  display: block;
  bottom: -790px;
  right: 46px;
  width: 431px;
  height: 431px;
  border-radius: 431px;
  background: #c8ccbd;
}

.mission-wrap h4 {
  color: #99a58b;
  font-family: var(--inter);
  font-size: 102px;
  font-style: normal;
  font-weight: 300;
  line-height: 76px;
  letter-spacing: -6.12px;
  margin-top: 167px;
  margin-left: 85px;
}

.mission-wrap p {
  color: #3d3b3b;
  font-family: var(--inter);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  width: 264px;
  margin-top: 16px;
  margin-left: 93px;
}

.sustainable-image {
  position: relative;
  display: block;
  height: 700px;
  width: 100%;
}

.sustainable-image img {
  max-width: 100%;
  position: relative;
  z-index: -1;
}

.image-mask {
  /* background-image: url(../img/imagemask.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: block;
    background-size: cover; */
}

.sustain-col2 {
  position: relative;
  display: block;
  padding-top: 106px;
}

.sustain-col2 h3 {
  color: #54a976;
  font-family: var(--inter);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 76px;
  letter-spacing: -1.28px;
  position: relative;
}

.sustain-col2 h3:before {
  position: absolute;
  display: block;
  content: "";
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: #e4ffef;
  top: 0;
  left: 0;
}

.image-mask {
  position: relative;
  display: block;
  margin-top: 80px;
}

.sustain-col2 h3:before {
  position: absolute;
  display: block;
  content: "";
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: #e4ffef;
  top: -82px;
  left: 184px;
  z-index: -1;
  animation: circleanim4 5s infinite;
}

@keyframes circleanim4 {
  0%,
  100% {
    top: -82px;
    left: 184px;
  }

  50% {
    top: -70px;
    left: 150px;
  }
}

.sustainable-line {
  position: absolute;
  top: 284px;
  left: -103px;
  transform: rotate(1deg);
}

.sustainable-line img {
  width: 100%;
  height: 446px;
  overflow: hidden;
}

.sustain-point-wrap {
  position: relative;
  display: block;
}

.sustain-row {
  position: relative;
  display: block;
  top: 45px;
  left: 80px;
  color: #3d3b3b;
  font-family: var(--inter);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  width: 400px;
}

.sustain-row:before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  top: 5px;
  left: -60px;
  background-image: url(../img/point-img.svg);
  background-repeat: no-repeat;
}

.sustain-row:nth-child(2) {
  left: 72px;
  top: 55px;
}

.sustain-row:nth-child(3) {
  left: 47px;
  top: 69px;
}

.sustain-row:nth-child(4) {
  left: -8px;
  top: 74px;
}

section.s4 {
  position: relative;
  display: block;
  background: #c23838;
  padding-top: 110px;
  color: #fff;
  /* overflow: hidden; */
  padding-bottom: 142px;
}

.fireworks {
  position: absolute;
  display: block;
  top: 0;
}

.fireworks {
  width: 372px;
  height: 372px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fireworks img {
  animation: ani-fireworks 1.5s 1s infinite;
  object-fit: none;
  border-radius: 50%;
}

.fireworks.fw2 img {
  animation: ani-fireworks 1.5s 3s infinite;
}
@keyframes ani-fireworks {
  0% {
    width: 10%;
    height: 10%;
    opacity: 0;
  }
  50% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.awradtitle {
  position: relative;
  display: block;
  padding-left: 146px;
  padding-top: 30px;
}
.awradtitle h3 {
  font-family: var(--inter);
  font-size: 73px;
  font-weight: 300;
  line-height: 82px;
  /* 112.329% */
  letter-spacing: -1.46px;
}

.awaredinn {
  position: relative;
}

.awradtext {
  position: relative;
  display: block;
  width: 663px;
  max-width: 665px;
  left: 35%;
  margin-top: 30px;
}

.awradtext p {
  font-family: var(--inter);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  /* 135.714% */
}

.fireworks.fw2 {
  right: 0;
  top: -180px;
}

.awardswrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.awardswrapper h5 {
  color: #fff;
  font-family: var(--inter);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.8px;
  margin-top: 50px;
}
.awards-wrap {
  position: relative;
  display: block;
  left: 37px;
}

.award-points1 p {
  color: #fbf8f8;
  font-family: var(--inter);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  max-width: 218px;
}

.award-points1 {
  position: absolute;
  top: 252px;
  left: -194px;
}

span.aw-point1 {
  position: relative;
  top: -67px;
  right: -120px;
  z-index: 1;
}

.awards {
  position: relative;
  display: block;
}

.award-points2 {
  position: absolute;
  top: 460px;
  left: 160px;
}

.award-points2 p {
  color: #fbf8f8;
  font-family: var(--inter);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  max-width: 264px;
  text-align: right;
}

span.aw-point2 {
  position: relative;
  top: -280px;
  right: -279px;
}

.award-points3 {
  position: absolute;
  top: 419px;
  left: 605px;
}

span.aw-point3 {
  position: relative;
  top: -256px;
  right: -126px;
}

.award-points3 p {
  color: #fbf8f8;
  font-family: var(--inter);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  max-width: 291px;
}

section.s5 {
  position: relative;
  display: block;
  background: #c23838;
  color: #fff;
  padding-bottom: 100px;
}

.fireworks.fw3 {
  top: 410px;
  left: 85px;
  z-index: 1;
}

video#bgvid {
  width: 100%;
  /* width: 682px; */
  height: 703px;
  object-fit: cover;
}

.bestcomm-video {
  position: relative;
  display: block;
}

a.playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .bestcomm-video:before {
    position: absolute;
    content: '';
    display: block;
    background: #0000007d;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} */

.s5 .container-fluid {
  padding: 0;
  overflow: hidden;
}

.bestcomm {
  position: relative;
  display: block;
  max-width: 530px;
  float: right;
}

.commecial {
  position: relative;
  display: block;
  margin-top: 50px;
  left: 93px;
  z-index: 9;
}

.commecial h4 {
  font-family: var(--inter);
  font-size: 37px;
  font-style: normal;
  font-weight: 400;
  line-height: 55px;
  letter-spacing: -0.74px;
  margin-bottom: 20px;
}

.commecial h5 {
  font-family: var(--inter);
  font-size: 76px;
  font-style: normal;
  font-weight: 700;
  line-height: 75px;
  /* 98.684% */
  letter-spacing: -1.52px;
}

.btnwatch {
  position: relative;
  display: block;
  width: 162px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  margin-top: 40px;
  transition: 0.5s;
}

.btnwatch:hover {
  color: #c23838;
  background-color: #fff;
}

.sawards {
  position: relative;
  display: block;
  margin-top: -142px;
  left: 25px;
  z-index: 1;
}

section.s6 {
  position: relative;
  display: block;
  padding-left: 135px;
  padding-bottom: 185px;
}

.s6 h2 {
  color: #042546;
  font-family: var(--inter);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 82px;
  letter-spacing: -0.88px;
  padding-top: 95px;
}

.annual-reports {
  position: relative;
  display: block;
}

.ar-wrap1 {
  position: absolute;
  display: block;
  width: 470px;
  top: -121px;
  left: 90px;
  z-index: 1;
}

span.ar-line1 {
  position: relative;
  display: block;
  margin-top: -53px;
  margin-left: -42px;
}

.ar-wrap1 p {
  color: #4a4040;
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.annu-report-imgwrap {
  position: relative;
  display: block;
  margin-top: 130px;
}

.ar-wrap2 {
  position: absolute;
  display: block;
  width: 315px;
  top: 272px;
  left: 190px;
  z-index: 1;
}

span.ar-line2 {
  position: relative;
  display: block;
  margin-top: -163px;
  margin-left: -59px;
}

.ar-wrap2 p {
  color: #4a4040;
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.ar-wrap3 {
  position: absolute;
  display: block;
  width: 300px;
  top: 300px;
  left: 777px;
  z-index: 1;
}

span.ar-line3 {
  position: relative;
  display: block;
  margin-top: -222px;
  margin-left: 311px;
}

.ar-wrap3 p {
  color: #4a4040;
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
}

.ar-wrap4 {
  position: absolute;
  display: block;
  width: 300px;
  top: -85px;
  left: 755px;
  z-index: 1;
}

span.ar-line4 {
  position: relative;
  display: block;
  margin-top: -40px;
  margin-left: -53px;
}

.ar-wrap4 p {
  color: #4a4040;
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.sustain-report-imgwrap {
  position: relative;
  display: block;
  padding-left: 187px;
}

.scertify {
  position: relative;
  display: block;
  text-align: right;
  padding-right: 75px;
}

.scertify h3 {
  color: #042546;
  font-family: var(--inter);
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 77px;
  letter-spacing: -0.88px;
  top: -12px;
  position: relative;
}

.sus-wrap1 p {
  color: #2c2323;
  font-family: var(--inter);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 178.571% */
}

.sus-wrap1 {
  position: relative;
  display: block;
}

.sus-wrap1 .susinner {
  position: absolute;
  width: 384px;
  top: -80px;
  left: 50px;
}

span.sus-line1 {
  position: relative;
  display: block;
  left: 50px;
}

.sus-wrap2 {
  position: relative;
  display: block;
}

.sus-wrap2 .susinner {
  position: absolute;
  width: 341px;
  top: -54px;
  left: 524px;
  text-align: center;
}

span.sus-line2 {
  position: relative;
  display: block;
  left: -211px;
  top: 22px;
}

span.sus-line3 {
  position: relative;
  display: block;
  left: 208px;
  top: -128px;
}

section.s7 {
  position: relative;
  display: block;
  padding-bottom: 200px;
}

.sus-wrap3 {
  position: relative;
  display: block;
}

.sus-wrap3 .susinner {
  position: absolute;
  width: 266px;
  top: 45px;
  right: 0;
  text-align: left;
}

a.btn-fstatement.gap2 {
  margin-left: 15px;
}
span.sus-line4 {
  position: absolute;
  display: block;
  left: 97px;
  top: -72px;
  width: auto;
}

.btn-readmore-line {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  border: 1px solid #353535;
  color: #353535;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 14px 20px;
  margin: 0 11px;
  transition: 0.5s;
}

.inro .btn-readmore-line {
  margin-left: 0;
}

.btn-readmore-line:hover {
  color: #fff;
  background: #353535;
}

section.s8 {
  position: relative;
  display: block;
  background: #f6f6f6;
  padding-top: 120px;
  padding-bottom: 140px;
}

.leader-top {
  position: relative;
  display: block;
  padding-bottom: 100px;
}

.leader-top h2 {
  color: #042546;
  font-size: 74px;
  font-style: normal;
  font-weight: 400;
  line-height: 82px;
  letter-spacing: -1.48px;
  margin-bottom: 30px;
  position: relative;
}

.leader-top h2:before {
  position: absolute;
  content: "";
  display: block;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: rgba(237, 224, 237, 0.48);
  top: -95px;
  left: 349px;
  z-index: -1;
  animation: leadercicle 4s infinite;
}

@keyframes leadercicle {
  0%,
  100% {
    top: -95px;
    left: 349px;
  }

  75% {
    top: -70px;
    left: 320px;
  }

  50% {
    top: -80px;
    left: 300px;
  }
}

.leader-top p {
  color: #1b1a1a;
  font-family: var(--inter);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  max-width: 840px;
  margin-bottom: 40px;
}

.leaderinner {
  position: relative;
  display: block;
  margin-left: 145px;
}

.chairmanwrap {
  position: relative;
  display: block;
  margin-left: 75px;
  width: 530px;
  z-index: 9;
  margin-top: 50px;
}

.thechairmanimage {
  position: relative;
  display: block;
  left: -87px;
}

.thechairmanimage img {
  /* width: 100%; */
}

.chairmanwrap p {
  color: #152935;
  font-family: var(--inter);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 49px;
  margin-bottom: 40px;
}

.chairman {
  color: #2c2323;
  font-family: var(--inter);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: block;
  margin-bottom: 8px;
}

.thechairman {
  color: #5e5353;
  font-family: var(--inter);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  display: block;
  margin-bottom: 20px;
}

.bt1.nm {
  margin: 0;
}
.chairmanwrap:before {
  position: absolute;
  content: url(../img/quote1.svg);
  width: 182px;
  height: 246px;
  top: -37px;
  left: -59px;
  display: block;
  z-index: -1;
  animation: circleanim3 4s infinite;
}

.ceoimage {
  position: relative;
  display: block;
  margin-top: 100px;
}

.ceowrap {
  position: relative;
  display: block;
  margin-top: 100px;
  padding-top: 70px;
  left: -170px;
}

.ceowrap p {
  color: #152935;
  font-family: var(--inter);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 51px;
  margin-bottom: 50px;
}

.ceowrap a.btn-readmore-line.bt1.nm {
  background-color: #fff;
  color: #353535;
}
.ceowrap a.btn-readmore-line.bt1.nm {
  background-color: #fff;
  color: #353535;
}
.ceowrap .btn-readmore-line:hover {
  color: #fff !important;
  background: #353535 !important;
}

span.ceo {
  position: relative;
  display: block;
  color: #2c2323;
  font-family: var(--inter);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

span.ceoposition {
  position: relative;
  display: block;
  color: #5e5353;
  font-family: var(--inter);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

.ceowrap:before {
  position: absolute;
  content: "";
  background-image: url(../img/quote2.svg);
  width: 182px;
  height: 246px;
  top: -38px;
  left: 362px;
  display: block;
  animation: circleanim3 4s infinite;
}

.anim-lights {
  position: relative;
  top: 0;
  width: 100%;
}

img.light1 {
  position: absolute;
  left: 30%;
  margin-top: 75px;
  display: block;
}

img.light2 {
  position: absolute;
  top: 64px;
  right: 328px;
  z-index: 9;
}

.batsman {
  position: absolute;
  top: 0;
  left: 43%;
}

.ground-wrap {
  position: relative;
  display: block;
}

img.ground {
  position: absolute;
  top: 309px;
  left: 222px;
}

.batsman {
  position: absolute;
  top: 84px;
  left: 555px;
}

.wicket-wrap {
  position: relative;
  display: block;
}

img.thewicket {
  position: absolute;
  top: 430px;
  left: 356px;
}

.arlinemb {
  display: none;
}

section.s9 {
  position: relative;
  display: block;
  padding-top: 122px;
  padding-bottom: 87px;
  scroll-margin: 50px;
}

.plc-top {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.plc-img1,
.plc-img2 {
  position: relative;
  display: block;
}

.plc-top h3 {
  color: #65c7c4;
  font-size: 109px;
  font-style: normal;
  font-weight: 300;
  line-height: 118px;
  letter-spacing: -3.27px;
  width: 690px;
  position: absolute;
  top: -65px;
  left: 13%;
}

.plc-top p {
  color: #1b1a1a;
  font-family: var(--inter);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.plc-text {
  position: relative;
  display: block;
  width: 796px;
  color: #1b1a1a;
  font-family: var(--inter);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-left: 25%;
  top: -81px;
}

.plc-img2 {
  max-width: 336px;
  overflow: hidden;
  left: -200px;
}

.plc-vision {
  position: relative;
  display: block;
}

.pc-mision-anim {
  position: relative;
  display: block;
}

img.player2 {
  position: absolute;
  top: -123px;
  left: 60px;
  display: block;
}

.plc-vision {
  position: relative;
  display: block;
  margin-top: 211px;
}

.plc-vision-content {
  position: absolute;
  top: -194px;
  left: 225px;
  display: block;
  width: 288px;
  height: 289.01px;
  border-radius: 289.01px;
  background: #b4e0de;
}

.plc-vision-content h4 {
  color: #65c7c4;
  font-size: 97px;
  font-style: normal;
  font-weight: 300;
  line-height: 118px;
  letter-spacing: -3.88px;
  width: 222px;
  left: -31px;
  position: relative;
}

.plc-vision-content p {
  color: #1b1a1a;
  font-family: var(--inter);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 208px;
  position: relative;
  left: 50px;
  top: -20px;
}

.plc-mission {
  position: relative;
  display: block;
  margin-left: 150px;
}

.pc-mision-anim {
  position: absolute;
  display: block;
  top: -93px;
  left: -56px;
  z-index: 9;
}

.pc-mision-content {
  position: absolute;
  display: block;
  width: 387px;
  height: 388px;
  border-radius: 388px;
  background: #d1d4c8;
}

.pc-mision-content h4 {
  color: #99a58b;
  font-size: 97px;
  font-style: normal;
  font-weight: 300;
  line-height: 118px;
  letter-spacing: -3.88px;
  top: 60px;
  position: relative;
  left: -72px;
  max-width: 288px;
}

.pc-mision-content p {
  color: #1b1a1a;
  font-family: var(--inter);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  margin-top: 50px;
  max-width: 255px;
  left: 66px;
}

.charts-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 45px;
}

.chart3 {
  position: relative;
  display: block;
  /* text-align: center; */
}

.chart1,
.chart2,
.chart3,
.ballwrap {
  position: relative;
  display: block;
}

.ballwrap {
  /* left: -75px; */
}

.chart2 {
  /* left: -103px; */
}

.stakeholder {
  position: relative;
  display: block;
  height: 965px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.materiality {
  position: relative;
  display: block;
  height: 1065px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.stakeholder .container,
.materiality .container {
  height: 100%;
  color: #fff;
}

.s-title {
  position: relative;
  display: block;
  margin-top: 140px;
  z-index: 1;
  left: 60px;
}
.s-title h2 {
  position: relative;
  display: block;
  font-size: 80px;
  font-weight: 400;
}

.s-contents-wrap {
  position: relative;
  display: block;
  width: 769px;
  opacity: 0.93;
  background: #1f2c3b;
  margin-top: 87px;
  padding: 100px 55px 90px 116px;
}

span.s-content {
  position: relative;
  display: block;
  font-family: var(--inter);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}

span.s-content {
  position: relative;
  display: block;
  font-family: var(--inter);
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 30px;
}

.s-contents-wrap p {
  color: #d1d1d1;
  font-family: var(--inter);
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

section.s11 {
  position: relative;
  display: block;
  background: #f6f6f6;
  padding-bottom: 100px;
}

.chart-innwrap.mobile {
  display: none;
}

.strategy {
  position: relative;
  display: block;
  padding-top: 95px;
}

.strategy h3 {
  color: #d6842b;
  font-size: 66px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: -1.98px;
  margin-bottom: 25px;
  position: relative;
}

.strategy:before {
  position: absolute;
  content: "";
  display: block;
  top: 42px;
  right: 308px;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  background: rgba(255, 238, 219, 0.48);
  animation: circleanim3 4s infinite;
}

@keyframes circleanim3 {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }
}

.strategy p {
  color: #3d3b3b;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  width: 721px;
  position: relative;
}

a.btn-readmore.dark {
  border: 1px solid #353535;
  color: #353535;
  margin-top: 45px;
}

a.btn-readmore.dark:hover {
  background-color: #353535;
  color: #fff;
}

.player4 {
  position: absolute;
  top: 116px;
  right: 108px;
}

.strategy-points-wrap {
  position: relative;
  display: flex;
  padding-top: 38px;
}

.strategy-points {
  position: relative;
  display: block;
  width: 240px;
  margin-right: 85px;
}

.strategy-points h5 {
  color: #47576a;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}

.strategy-points h5:before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/strategy-point.png);
  background-repeat: no-repeat;
  top: -52px;
  left: 0;
  width: 26px;
  height: 38px;
}

/* .strategy-points-wrap:before{
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ECE5E5;
    top: 0;
    left: -100%;
}

.strategy-points-wrap:after{
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #ECE5E5;
    top: 0;
    right: -100%;
} */

.strategy-points-wrapper {
  position: relative;
  display: block;
  border-top: 3px solid #ece5e5;
  margin-top: 90px;
}

.stakemobile {
  display: none;
}

.performance-col2 {
  position: relative;
  height: 710px;
  background-size: cover;
}

section.s12 {
  position: relative;
  display: block;
  background: #0054a6;
  padding-top: 90px;
  padding-bottom: 110px;
}

.s12 .container-fluid {
  padding-right: 0;
  overflow-x: hidden;
}

.performance-col1 {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  float: right;
  color: #fff;
  margin-top: 40px;
}

.performance-col1 h3 {
  font-size: 73px;
  font-style: normal;
  font-weight: 300;
  line-height: 81px;
  /* 110.959% */
}

.performance-col1 h4 {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 6.3px;
  text-transform: uppercase;
  margin-bottom: 55px;
  margin-left: 5px;
}
.profit {
  position: relative;
  display: block;
}

.c-wrap {
  position: relative;
  display: block;
  font-size: 68px;
  font-style: normal;
  font-weight: 900;
  line-height: 74px;
}

.rssymbol {
  position: relative;
  margin: 0 20px 0 0;
}

span.symbol1 {
  margin: 0 0 0 20px;
}

.profit p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}

.profit {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

span.subsymbol {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.player5 {
  position: relative;
  display: block;
  margin-top: -75px;
  margin-left: 255px;
}

.performance-col1:before {
  position: absolute;
  content: "";
  display: block;
  width: 122px;
  height: 1px;
  background: #fff;
  top: 680px;
  left: 0;
}

a.btn-fstatement {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  margin-top: 20px;
  transition: 0.5s;
  padding: 0px 30px;
  margin-bottom: 30px;
  transition: 0.5s;
}

a.btn-fstatement:hover {
  background-color: #fff;
  color: #0054a6;
}

.brandrating-col1 {
  position: relative;
  display: block;
  margin-top: -15px;
}

.brate-row {
  position: relative;
  display: block;
  margin-bottom: 50px;
  color: #fff;
}

.brate-row:nth-child(2) {
  margin-bottom: 0;
}

.brate-row h3 {
  font-size: 41px;
  font-style: normal;
  font-weight: 900;
  line-height: 34px;
}

.brate-row h4 {
  font-size: 19px;
  font-weight: 300;
  line-height: 30px;
}

.brandrating-col2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: -15px;
  margin-left: 40px;
}

.bc-wrap {
  position: relative;
  display: block;
  color: #fff;
  width: 240px;
  margin-bottom: 5px;
}

.bc-rate span.counter,
.subsymbol {
  font-size: 46px;
  font-style: normal;
  font-weight: 900;
  line-height: 34px;
  /* 73.913% */
}
.subsymbol {
  font-size: 68px;
}

.bc-rate p {
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  margin-top: 10px;
}

.bc-wrap .subsymbol {
  position: relative;
  display: inline-block;
  margin-left: 0;
  font-size: 46px;
}

.bc-wrap:nth-child(odd) {
  margin-right: 60px;
}

.btn-fstatement.mobile {
  display: none;
}

section.s13 {
  position: relative;
  display: block;
  padding-top: 110px;
}

.sustainability-top {
  position: relative;
  display: block;
}

.sustainability-top h2 {
  color: #212d3b;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: 75px;
  margin-bottom: 33px;
  position: relative;
}

.sustainability-content {
  position: relative;
  display: block;
  max-width: 865px;
  margin-left: 60px;
}

.sustainability-content p {
  color: #3d3b3b;
  font-family: var(--inter);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.sustainability-point-wrap {
  position: relative;
  display: block;
}

.sus-point-line {
  position: absolute;
  display: block;
  top: 32px;
}

.sus-point-line.mobile {
  display: none;
}

.sus-points {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 86%;
}

.sustainability-point-wrap {
  position: relative;
  display: block;
  margin-bottom: 350px;
  margin-top: 80px;
}

.suspoint-box {
  position: relative;
  display: block;
}

.suspoint-box.sb2 {
  margin-top: -30px;
  margin-left: -65px;
}

.suspoint-box.sb3 {
  left: -76px;
  top: 10px;
}

.sustainability-top h2:before {
  position: absolute;
  content: "";
  display: block;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  opacity: 0.69;
  background: rgba(234, 245, 235, 0.78);
  top: -70px;
  left: 335px;
  z-index: -1;
  animation: circleanim3 4s infinite;
}

section.s14 {
  position: relative;
  display: block;
  height: 772px;
  background-repeat: no-repeat;
  background-size: cover;
}

section.s15 {
  position: relative;
  display: block;
  padding-top: 100px;
  padding-bottom: 120px;
}

.s15 h3 {
  color: #3d447d;
  font-size: 59px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px;
  text-align: center;
  position: relative;
  margin-bottom: 55px;
}
.s15 h3:before {
  position: absolute;
  content: "";
  top: -80px;
  left: 228px;
  width: 365px;
  height: 365px;
  border-radius: 365px;
  opacity: 0.9;
  background: #f3f2f2;
  z-index: -1;
  animation: circleanim3 4s infinite;
}

.portfolio-points {
  position: relative;
  display: block;
}

.pp-col-row h4 {
  color: #3a71b1;
  font-size: 39px;
  font-style: normal;
  font-weight: 800;
  line-height: 80px;
  position: relative;
  transition: 0.5s;
}

.pp-col-row p {
  color: #3d3b3b;
  font-family: var(--inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
}

.pp-col-row {
  position: relative;
  display: block;
  max-width: 410px;
  margin-bottom: 57px;
}

.pp-col-row h4:before {
  position: absolute;
  content: "";
  display: block;
  width: 123px;
  height: 123px;
  border-radius: 50%;
  top: -9px;
  left: -44px;
  z-index: -1;
  transition: 0.5s;
}

.pp-col-row h4:hover:before {
  transform: scale(0.8);
}

.portfolio-points-col1,
.portfolio-points-col2 {
  position: relative;
  display: block;
}

.portfolio-points {
  position: relative;
  display: flex;
}

.portfolio-points-col2 {
  margin-top: 96px;
  margin-left: 187px;
}

.p1 h4:before {
  background-color: #faedda;
}

.p2 h4:before {
  background-color: #e4f1fa;
}

.p3 h4:before {
  background-color: #d8f1ea;
}

.p4 h4:before {
  background-color: #e4f1fa;
}

.p5 h4:before {
  background-color: #e4f1fa;
}

.p6 h4:before {
  background-color: #ffecdb;
}

.p7 h4:before {
  background-color: #f8e8ff;
}

.p8 h4:before {
  background-color: #ebf1e9;
}

.portfolio-points:after {
  position: absolute;
  display: block;
  content: "";
  width: 447px;
  height: 799px;
  background-image: url(../img/player6.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 45px;
  right: -307px;
}
section.s16 {
  position: relative;
  display: block;
  background: #0b6dac;
  padding-bottom: 150px;
}

.governance-image {
  position: relative;
  display: block;
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 135px;
}

.governance {
  position: relative;
  display: block;
  max-width: 590px;
  float: right;
  color: #fff;
  margin-top: 200px;
}
.governance h4 {
  margin-top: 68px;
  font-size: 63px;
  font-style: normal;
  font-weight: 300;
  line-height: 81px;
  position: relative;
}

.governance h4:before {
  position: absolute;
  display: block;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  content: "";
  top: -134px;
  left: 0;
  background: rgba(53, 127, 175, 0.2);
  animation: circleanim3 4s infinite;
}

.governance h4:after {
  position: absolute;
  display: block;
  width: 283px;
  height: 283px;
  content: "";
  top: -107px;
  left: 230px;
  border-radius: 283px;
  background: rgba(140, 205, 246, 0.11);
  animation: circleanim3 4s infinite;
}

.governance p {
  font-family: var(--inter);
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  line-height: 47px;
  margin-left: 50px;
  margin-bottom: 70px;
}
.governance a.btn-readmore {
  margin-left: 57px;
}

.s16 .container-fluid {
  padding: 0;
  overflow: hidden;
}

.rmanage-image {
  position: relative;
  display: block;
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 70px;
  margin-top: 135px;
}
.rmanage h4 {
  margin-top: 68px;
  font-size: 63px;
  font-style: normal;
  font-weight: 300;
  line-height: 81px;
}

.rmanage p {
  font-family: var(--inter);
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  line-height: 47px;
  margin-left: 50px;
  margin-bottom: 70px;
  max-width: 560px;
}
.rmanage {
  position: relative;
  display: block;
  color: #fff;
  margin-top: 210px;
  max-width: 560px;
}

/* .gapfix {
    margin-top: 105px;
} */

.rmanage a.btn-readmore {
  margin-left: 50px;
}

.rmanage h4:before {
  position: absolute;
  display: block;
  width: 283px;
  height: 283px;
  border-radius: 283px;
  content: "";
  top: -77px;
  left: 328px;
  background: rgba(53, 127, 175, 0.2);
  animation: circleanim3 4s infinite;
}

.rmanage h4:after {
  position: absolute;
  display: block;
  width: 283px;
  height: 283px;
  content: "";
  top: -131px;
  left: 98px;
  border-radius: 283px;
  background: rgba(140, 205, 246, 0.11);
  animation: circleanim3 4s infinite;
}

.btn-report {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  border: 1px solid #353535;
  color: #353535;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  margin-top: 20px;
  transition: 0.5s;
  padding: 0px 30px;
  margin-bottom: 30px;
  transition: 0.5s;
}

.btn-report:hover {
  color: #fff;
  background-color: #353535;
}
.supplementary-content {
  position: relative;
  display: block;
}

.supplementary-content {
  position: relative;
  display: block;
  padding-top: 136px;
}

.supplementary-content h4 {
  color: #212d3b;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 42px;
  line-height: 85px;
}

.supplementary-content p {
  color: #3d3b3b;
  font-family: var(--inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.supp-iiner {
  position: relative;
  display: block;
  margin-left: 60px;
}

section.s17 {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  /* background-size: cover; */
  height: 860px;
  background-position: 100% 92%;
}

section.s18 {
  position: relative;
  display: block;
  background: #f1f1f1;
  padding-top: 80px;
}
.fcol1 {
  position: relative;
  display: block;
}

.s18 h4 {
  color: #2a394a;
  font-size: 57px;
  font-style: normal;
  font-weight: 900;
  line-height: 69px;
  margin-bottom: 30px;
}

.s18 p {
  color: #3d3b3b;
  font-family: var(--inter);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  max-width: 450px;
}
a.btn-investor {
  position: relative;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #353535;
  background: #0756a5;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 47px;
  transition: 0.5s;
  margin-top: 30px;
}

a.btn-investor:hover {
  background: #fff;
  color: #0756a5;
}

footer.footer-wrap {
  position: relative;
  display: block;
  text-align: center;
}

.footer-col1 {
  position: relative;
  display: block;
}

.footer-col1 img {
  max-width: 212px;
}
footer.footer-wrap {
  position: relative;
  display: block;
  text-align: center;
  background: #f1f1f1;
  padding-top: 66px;
}

.footer-col1 a {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.footer-col1 p {
  color: #3d3b3b;
  text-align: center;
  font-family: var(--inter);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  max-width: 850px;
  margin: 0 auto;
}

.copyright p {
  color: #3d3b3b;
  text-align: center;
  font-family: var(--inter);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin-top: 23px;
}
#backtop {
  display: inline-block;
  background-color: #df0024;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backtop::after {
  position: absolute;
  content: "";
  color: #fff;
  top: 20px;
  left: 14px;
  width: 20px;
  height: 20px;
  transform: rotate(226deg);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
#backtop:hover {
  cursor: pointer;
  background-color: #333;
}
#backtop:active {
  background-color: #555;
}
#backtop.show {
  opacity: 1;
  visibility: visible;
}

.portfolio-points:after {
  top: 45px;
  right: 0;
}
.portfolio-points-col2 {
  margin-top: 96px;
  margin-left: 53px;
}

.governance h4,
.rmanage h4 {
  margin-top: 0;
  font-size: 51px;
}

.rmanage p {
  font-size: 33px;
  margin-left: 0;
  margin-bottom: 0;
  max-width: 100%;
}
.governance h4,
.rmanage h4 {
  margin-top: 0;
  font-size: 45px;
  margin-bottom: 50px;
}
.rmanage-image {
  margin-right: 0;
  margin-top: 135px;
}

section.s16 {
  padding-bottom: 110px;
}
.fcol2 {
  position: relative;
  display: block;
  margin-left: 130px;
}

.rmanage p {
  font-size: 27px;
  margin-bottom: 0;
  max-width: 100%;
  line-height: 42px;
  margin-left: 50px;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #324399 #ccc;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #ccc;
}

*::-webkit-scrollbar-thumb {
  background-color: #324399;
  border-radius: 20px;
  border: 3px solid #ccc;
}

/* .supplementary-content h4 {
    font-size: 52px;
    line-height: 78px;
} */

/* .supp-iiner {
    position: relative;
    display: block;
    margin-left: 0;
} */

/* .s18 h4 {
    font-size: 38px;
    line-height: 50px;
} */
