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

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

a {
    text-decoration: none !important;
}

body.fix {
    overflow: hidden;
}

button:focus {
    outline: 0 !important;
}

.form-control:focus {

    outline: 0;
    box-shadow: none;
}


@font-face {
    font-family: 'Angers Script';
    src: url('../fonts/AngersScript.woff2') format('woff2'),
        url('../fonts/AngersScript.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirBlack';
    src: url('../fonts/AvenirLTStd-Black.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirHeavy';
    src: url('../fonts/AvenirLTStd-Heavy.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirMedium';
    src: url('../fonts/AvenirLTStd-Medium.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirLight';
    src: url('../fonts/AvenirLTStd-Light.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




:root {
    --AngersScript: 'Angers Script';
    --Avenir: 'Avenir';
    --AvenirBlack: 'AvenirBlack';
    --AvenirHeavy: 'AvenirHeavy';
    --AvenirMedium: 'AvenirMedium';
    --AvenirLight: 'AvenirLight';
    --Roboto: "Roboto", 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(--Avenir);
    /* 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: 0.5s;
}

.header-innwrap {
    position: relative;
    transition: 0.5s;
}

.scrolled .header-innwrap {
    backdrop-filter: blur(5px);
}

header.header-wrap.scrolled.hidden-menu {
    top: -200px;
}

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

.scrolled .btnexpertwrap {
    top: 36px;
}

.menuwrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 30px;
    align-items: center;
}

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

.logo img {
    max-width: 120px;
    transition: 0.5s;
    width: 100%;
}

/* .scrolled .logo img {
    max-width: 67px;
} */


.button.navbar-toggler.first-button {}

.nav-click {
    position: absolute;
    display: block;
    width: 11px;
    height: 9px;
    background: url(../img/nav-click-arrow.png);
    background-position: center center;
    top: 24px;
    right: 13px;
    z-index: 999;
    background-repeat: no-repeat;
    cursor: pointer;
}

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

button.navbar-toggler {
    display: block;
}

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

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

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

.menu ul {
    margin-top: 38px;
}

.menu ol {
    position: absolute;
    display: block;
}

.menubox {
    position: relative;
    display: flex;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    width: 270px;
    justify-content: space-between;
}

.menutitle {
    color: #8C8888;
    font-size: 12px;
    font-family: var(--Roboto);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.menusubtitle {
    color: #384687;
    font-family: var(--Roboto);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.menuwrapper {
    position: relative;
    display: flex;
    align-items: center;
}

a.exlink {
    position: relative;
    display: block;
    margin-left: 15px;
}

.menu>ul>li:last-child {
    margin-right: 0;
    padding-right: 0;
}

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

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

.animated-icon1 span {
    background: #444A4D;
}

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


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

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

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

.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 25px;
    position: relative;
    border-radius: 40px;
    padding: 0;
    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 {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    /* 185.714% */
    transition: 0.5s;
    text-transform: uppercase;
}

.menu>ul>li>a:hover {
    color: #FFFFFF;
}

/* .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);
} */

.sidemenu {
    position: absolute;
    display: flex;
    top: -35px;
    right: -120%;
    opacity: 0;
    width: 100%;
    height: 117vh;
    background-color: rgba(255, 255, 255, 0.93);
    background-image: url(../img/menubg.webp);
    background-position: 22% 2%;
    backdrop-filter: blur(12px);
    padding: 15px;
    backdrop-filter: blur(12px);
    transition: 0.5s;
}

.scrolled.hidden-menu .sidemenu {
    top: 190px;
}

.sidemenu.open {
    right: -53%;
    opacity: 1;
}



.sidemenu h4 {
    color: #E4E4E4;
    font-size: 92px;
    font-style: normal;
    font-weight: 900;
    line-height: 63px;
    letter-spacing: -1.23px;
    text-transform: uppercase;
    transform: rotate(-90deg);
    width: 670px;
    height: 60px;
    position: absolute;
    top: 206px;
    left: -248px;
}

.sidemenu ol {
    position: relative;
    padding: 60px 50px 30px 214px;
    overflow-y: auto;
}

.sidemenu ol li a,
.sidemenu ol li::marker {
    position: relative;
    color: #384687;
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: 64px;
    letter-spacing: -0.78px;
    text-transform: capitalize;
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #e00025 #2f4095;
}

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

*::-webkit-scrollbar-track {
    background: #2f4095;
}

*::-webkit-scrollbar-thumb {
    background-color: #e00025;
    border-radius: 20px;
    border: 5px solid #2f4095;
}

span.menuclose {
    position: absolute;
    top: 70px;
    left: 43%;
    display: block;
    cursor: pointer;
    z-index: 1;
}

.reports-circles.mobile {
    display: none;
}

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

    .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: right;
        border-bottom: 1px solid #f9f5f538;
        border-radius: 0;
    }

    .menu>ul {
        padding: 40px 0 0 0;
        margin: 0;
        transition: all 1s ease;
        position: absolute;
        width: 100%;
        height: 100vh;
        left: -200%;
        top: -21px;
        z-index: 9;
        backdrop-filter: blur(11px);
        background: #095999b8;
    }

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

    .menu>ul>li {
        padding: 20px 32px;
        min-width: auto;
    }

    .menu>ul>li {
        padding: 20px 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;
    } */

}

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


.home-bannerwrap {
    position: relative;
    display: block;
    background: #F2F3F9;
}

.introbanner {
    position: relative;
    display: block;
    margin-bottom: 100px;
    margin-top: -50px;
}

.hm-banner-wrap {
    position: relative;
    display: block;
    background-repeat: no-repeat;
    background-position: right top;
}

.hm-banner-wrap h2 {
    color: transparent;
    font-family: var(--Roboto);
    font-size: 252px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    position: relative;
    display: block;
    margin-top: -108px;
    margin-left: 150px;
}

.home-bannerwrap:before {
    position: absolute;
    content: '';
    display: block;
    width: 551px;
    height: 2140px;
    top: -196px;
    right: 29px;
    background-image: url(../img/section1bg.png);
    background-repeat: no-repeat;
    z-index: 1;
}

.welcome-content h1 {
    position: relative;
    color: #384687;
    font-size: 49px;
    font-weight: 900;
    font-family: var(--AvenirBlack);
    line-height: 64px;
    letter-spacing: -1.47px;
    margin-bottom: 40px;
}

.welcome-content {
    position: relative;
    display: block;
}

.welcome-wrap {
    position: relative;
    display: block;
    scroll-margin-top: 150px;
}

@keyframes logoanim {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(60deg);
    }



}

.welcome-content:before {
    position: absolute;
    content: '';
    background-image: url(../img/welcomelogo.webp);
    top: -184px;
    left: -134px;
    width: 630px;
    height: 640px;
    display: block;
    opacity: 0.1;
    /* animation: logoanim 30s infinite linear; */
}

.welcome-content p {
    position: relative;
    color: #050505;
    font-size: 19px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.19px;
    max-width: 638px;
    margin: 0 auto 40px auto;
}

.download-content {
    position: relative;
    display: block;
    z-index: 1;
}

.download-content a {
    width: 275px;
    height: 275px;
    border-radius: 275.5px;
    background: #3E5B82;
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: -0.84px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    margin-top: 70px;
    transition: 0.5s;
    animation: cycleanim 3s infinite linear;
}

.download-content a:hover {
    background: #5788c9;
}

@keyframes cycleanim {
    0% {
        top: 0px;
        left: 0px;
    }

    50% {
        top: 30px;
        left: 20px;
    }

    75% {
        top: 35px;
        left: 25px;
    }

    100% {
        top: 0px;
        left: 0px;
    }

}

.download-content span {
    position: absolute;
    display: block;
    bottom: 20px;
}

.curve1,
.curve2 {
    position: relative;
    display: block;
    width: 100%;
}

.curve1 img,
.curve2 img {
    width: 100%;
}

.aboutintro {
    position: relative;
    display: block;
    margin-top: 30px;
}

.aboutus {
    position: relative;
    display: block;
    scroll-margin-top: 150px;
}

.aboutintro h2 {
    font-family: var(--AvenirBlack);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(71, 76, 101, 0.50);
    color: #fff;
    font-size: 103px;
    font-style: normal;
    font-weight: 900;
    line-height: 63px;
    /* 61.165% */
    letter-spacing: 9.27px;
    text-transform: uppercase;
    display: inline-block;
}

.aboutintro h3 {
    color: #3C4155;
    font-size: 55px;
    font-weight: 800;
    line-height: 68px;
    letter-spacing: -1.65px;
    position: relative;
    display: block;
    max-width: 610px;
    margin-top: -35px;
    margin-bottom: 15px;
}

.aboutintro p {
    color: #050505;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
    max-width: 600px;
    margin-bottom: 24px;
}

.about-sub {
    position: relative;
    display: block;
    margin-left: 70px;
}

/* button styles */
.readmore {
    border-radius: 5px;
    font-family: var(--Roboto);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    padding: 14px 35px;
    transition: 0.5s;
    position: relative;
}


.blue {
    border: 2px solid #165091;
    color: #165091;
    transition: 0.5s;
}

.blue:hover {
    border: 2px solid #165091;
    background-color: #165091;
    color: #fff;
}

.brown {
    color: #50462F;
    border: 2px solid #50462F;
    transition: 0.5s;
}

.brown:hover {
    border: 2px solid #50462F;
    background-color: #50462F;
    color: #fff;
}


.white {
    border: 2px solid #fff;
    color: #fff;
    transition: 0.5s;
}

.white:hover {
    border: 2px solid #fff;
    background-color: #fff;
    color: #165091;
}


/* button styles end */

.reports-circles {
    position: relative;
    display: block;
    margin-top: 80px;
    height: 490px;
}

.rcircle {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rc1 {
    background-image: url(../img/circle1.png);
    width: 270px;
    height: 213px;
    top: 0;
    left: 0;
}

.rc1 img {
    display: block;
    position: relative;
    left: -31px;
}

.rc2 {
    background-image: url(../img/circle2.png);
    width: 277px;
    height: 246px;
    top: 186px;
    left: 150px;
}

.rc2 img {
    display: block;
    position: relative;
    top: -16px;
}


.rc3 {
    background-image: url(../img/circle3.png);
    width: 233px;
    height: 227px;
    top: 69px;
    left: 433px;
}

.rc3 img {
    display: block;
    position: relative;
    top: 0px;
    left: -9px;
}

.rc4 {
    background-image: url(../img/circle4.png);
    width: 247px;
    height: 222px;
    top: 193px;
    left: 662px;
}

.rc4 img {
    display: block;
    position: relative;
    top: 10px;
    left: -25px;
}

.rc5 {
    background-image: url(../img/circle5.png);
    width: 202px;
    height: 222px;
    top: 215px;
    left: 918px;
}

.rc5 img {
    display: block;
    position: relative;
    top: 0px;
    left: -9px;
}

.rc6 {
    background-image: url(../img/circle6.png);
    width: 270px;
    height: 215px;
    top: 0;
    left: 1018px;
}

.rc6 img {
    display: block;
    position: relative;
    top: 0px;
    left: -27px;
}

.rc7 {
    background-image: url(../img/circle7.png);
    width: 461px;
    height: 397px;
    top: -237px;
    left: 576px;
}

.rc7 img {
    display: block;
    position: relative;
    top: 30px;
    left: 22px;
}

.vimis-curve {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 231px;
    left: 50%;
    transform: translateX(-50%);
}

.visionmision {
    position: relative;
    display: block;
    background-color: #F8F4EB;
    padding-bottom: 95px;
    z-index: 1;
}

.visionmission-title h2 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(60, 64, 83, 0.20);
    font-family: var(--AvenirBlack);
    color: #F8F4EB;
    font-size: 103px;
    font-style: normal;
    font-weight: 900;
    line-height: 113px;
    /* 109.709% */
    letter-spacing: -1.03px;
    text-transform: uppercase;
}

.visionmission-title h3 {
    color: #3C4155;
    font-family: var(--AvenirHeavy);
    font-size: 54px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: -1.62px;
    margin-top: -65px;
    margin-bottom: 40px;
}

.visionmission-title p {
    color: #050505;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
    max-width: 890px;
    margin: 0 auto 30px auto;
}

.vision-mision-value {
    position: relative;
    display: block;
}

.vmv-blocl {
    position: relative;
    display: block;
    z-index: 5;
}

.vision-mision-value .contents {
    position: absolute;
    display: block;
    text-align: left;
    max-width: 335px;
    top: 183px;
    right: 5px;
}

.contents h3 {
    color: #384687;
    font-family: var(--AngersScript);
    font-size: 31px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.93px;
    text-align: right;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    padding-right: 45px;
}

.contents p {
    color: #050505;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 26px;
    letter-spacing: 0.16px;
    margin-bottom: 0;
}

.vmv-box {
    position: relative;
    display: block;
    border-radius: 18px;
    background: #FFFDFA;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(4.5px);
    width: 327px;
    padding: 30px 20px;
    top: -30px;
}

.vmv-blocl.val {
    margin-top: 30px;
}

.val .contents {
    top: 275px;
}

.val .vmv-box {
    width: 295px;
    top: -30px;
}

.val .contents p {
    line-height: 30px;
}

.mis .vmv-box {
    width: 309px;
}

.btnwrap.ex {
    margin-top: 50px;
}

.vimis-curve img {
    width: 100%;
}

.sidetext {
    position: relative;
    display: block;
    height: 100%;
}

.sidetext h4 {
    color: #3C4155;
    font-family: var(--AngersScript);
    font-size: 82px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    transform: rotate(-90deg);
    opacity: 0.1;
    width: 750px;
    height: 65px;
    top: 340px;
    left: 0;
    position: sticky;
    margin-left: -292px;
}

section.aligning-growth {
    position: relative;
    display: block;
}

.value-wrapper {
    position: relative;
    display: block;
    padding-top: 130px;
}

.value-wrapper h5 {
    color: #3C4155;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.value-wrapper p {
    color: #050505;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
    max-width: 1020px;
}

.value-row {
    position: relative;
    display: flex;
}

.value-content {
    position: relative;
    display: block;
    width: 40%;
}

.value-image {
    position: relative;
    display: block;
    width: 60%;
    mix-blend-mode: multiply;
}

.value-content h2 {
    font-size: 35px;
    font-style: normal;
    font-family: var(--AvenirMedium);
    font-weight: 500;
    line-height: 49px;
    letter-spacing: -0.36px;
    margin-bottom: 20px;
}

.value-row span.counter {
    font-size: 95px;
    font-style: normal;
    font-family: var(--AvenirMedium);
    line-height: 100px;
    letter-spacing: -2.85px;
    height: 90px;
    display: inline-block;
    position: relative;
}

.value-row p {
    color: #5C5959;
    font-size: 22px;
    font-style: normal;
    font-weight: 350;
    line-height: 30px;
    letter-spacing: -0.44px;
}

.value-row.r1,
.value-row.r1 span.counter {
    color: #E8322B;
}

.value-row-wrap {
    position: relative;
    display: block;
    margin-top: 50px;
}

.value-row-wrap:before {
    position: absolute;
    content: '';
    background-image: url(../img/alignlogo.webp);
    top: 447px;
    left: -315px;
    width: 500px;
    height: 520px;
    display: block;
    opacity: 0.1;
    /* animation: logoanim 30s infinite linear; */
}

.r1 .value-content {
    margin-top: 104px;
    padding-left: 70px;
}

.value-row.r1:before {
    position: absolute;
    content: '';
    display: block;
    width: 556px;
    height: 710px;
    top: -409px;
    left: -188px;
    background-image: url(../img/aligh-circle1.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.r1 .value-image {
    margin-left: 45px;
}

.value-row.r2 {
    flex-direction: row-reverse;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* .value-row.r1 {
    margin-bottom: 45px;
} */



.r2 .value-content {
    margin-top: 100px;
    width: 40%;
}

.r2 .value-image {
    width: 60%;
}

.r2counter-wrap {
    position: relative;
    display: flex;
}

.r2counters.count1 {
    margin-right: 65px;
}

.r2counters p {
    margin-left: 20px;
}

.value-row.r2,
.value-row.r2 span.counter {
    color: #254597;
}

.value-row.r2:before {
    position: absolute;
    content: '';
    display: block;
    width: 696px;
    height: 887px;
    top: -546px;
    right: -227px;
    background-image: url(../img/aligh-circle2.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.r3 .value-content {
    margin-top: 80px;
    padding-left: 70px;
}

.value-row.r3,
.value-row.r3 span.counter {
    color: #F8A684;
}

.valwrap3 {
    margin-bottom: 30px;
}

span.sign1 {
    color: #F8A684;
    font-size: 95px;
    font-weight: 500;
    letter-spacing: -2.85px;
    font-family: var(--AvenirMedium);
    margin-right: 30px;
    line-height: 20px;
}

span.sign2 {
    color: #F8A684;
    font-size: 43px;
    font-style: normal;
    font-family: var(--AvenirLight);
    letter-spacing: -1.29px;
}

.r3 .value-content h2 {
    margin-bottom: 40px;
}

.value-row.r3:before {
    position: absolute;
    content: '';
    display: block;
    width: 702px;
    height: 895px;
    top: -163px;
    left: -127px;
    background-image: url(../img/aligh-circle3.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.r3 .value-image {
    margin-top: 30px;
}

.value-row.r4 {
    flex-direction: row-reverse;
}

.value-row.r3 {
    padding-bottom: 160px;
}

.value-row.r4,
.value-row.r4 span.counter {
    color: #ACB97D;
}

.r4 span.sign2 {
    color: #ACB97D;
}

sub {
    font-size: 24px;
}

.r4 .value-content {
    margin-top: 160px;
}

.value-row.r4:before {
    position: absolute;
    content: '';
    display: block;
    width: 627px;
    height: 800px;
    top: -163px;
    right: -45px;
    background-image: url(../img/aligh-circle4.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.alignd-curve {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
}

.alignd-curve img {
    width: 100%;
}

section.sustainable {
    position: relative;
    display: block;
    background-color: #F8FBEC;
    margin-top: -204px;
}

.sustainable-content {
    position: relative;
    display: block;
    padding-top: 120px;
    z-index: 1;
}

.sustainable-content h4 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(60, 64, 83, 0.20);
    font-family: var(--AvenirBlack);
    font-size: 90px;
    font-style: normal;
    font-weight: 900;
    line-height: 113px;
    /* 125.556% */
    letter-spacing: -0.9px;
    text-transform: uppercase;
    color: transparent;
}

.sustainable-content h5 {
    color: #657235;
    font-family: var(--AvenirMedium);
    font-size: 55px;
    font-style: normal;
    font-weight: 800;
    line-height: 66px;
    letter-spacing: -1.65px;
    max-width: 580px;
    margin-top: -73px;
    left: 51px;
    position: relative;
    margin-bottom: 40px;
}

.sustainable-content ul {
    list-style: none;
}

.sustainable-content ul li {
    color: #050505;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    background-image: url(../img/point-bullet.svg);
    background-repeat: no-repeat;
    padding-left: 55px;
    margin-bottom: 35px;
    max-width: 586px;
}

.sustainable-content ul li:nth-child(1) {
    margin-left: 35px;
}

.sustainable-content ul li:nth-child(2) {
    margin-left: 10px;
}

.sustainable-content ul li:nth-child(3) {
    margin-left: 2px;
}

.sustainable-content ul li:nth-child(4) {
    margin-left: 18px;
}

.sustainable-content ul li:nth-child(5) {
    margin-left: 35px;
}

.btuncol {
    position: relative;
    display: block;
    margin-left: 70px;
    margin-top: 60px;
}

.sustainable-content:before {
    position: absolute;
    content: '';
    display: block;
    width: 802px;
    height: 900px;
    top: -28px;
    left: -63px;
    background-image: url(../img/sustanable-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.sustainable-content-image {
    position: relative;
    display: block;
}

.sustainable-content-image:before {
    position: absolute;
    display: block;
    content: '';
    background-image: url(../img/sustainable-image.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 693px;
    height: 1130px;
    top: -170px;
    left: -240px;
    mix-blend-mode: multiply;
    z-index: 9;
}

.c-message .col-md-12 {
    position: relative;
}

.alignd-bottom-curve {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.alignd-bottom-curve img {
    width: 100%;
}

section.c-message {
    position: relative;
    display: block;
}

.c-message h5 {
    position: relative;
    display: block;
    color: #E6E6E6;
    font-family: var(--AngersScript);
    font-size: 113px;
    font-style: normal;
    font-weight: 400;
    line-height: 63px;
    transform: rotate(-90deg);
    width: 730px;
    height: 60px;
    position: absolute;
    left: -237px;
    top: 404px;
}

.chairman-wrap {
    position: relative;
    display: flex;
}

.chairman-image {
    position: relative;
    display: block;
}

/* .chairman-image img {
    max-width: 100%;
} */

.chairman-messagewrap {
    position: relative;
    display: block;
    margin-top: 170px;
    left: -145px;
}

.chairman-messagewrap h3 {
    color: #3C4155;
    font-size: 56px;
    font-style: normal;
    font-weight: 800;
    line-height: 69px;
    letter-spacing: -1.68px;
    margin-bottom: 40px;
}

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

.messagebox {
    position: relative;
    display: block;
    width: 640px;
    border-radius: 29px;
    background: linear-gradient(-263deg, #EFF1F9 17.43%, rgba(255, 255, 255, 0.00) 85.32%);
    padding: 50px;
    margin-bottom: 25px;
}

.messagebox:after {
    position: absolute;
    content: '';
    display: block;
    background-image: url(../img/quote.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 64px;
    height: 46px;
    top: 63px;
    right: 129px;
}

.director .messagebox:after {
    right: 50px;
    top: 41px;
}

.messagebox p {
    color: #474658;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.78px;
    max-width: 92%;
}

.messagebox .readmore {
    font-size: 18px;
    display: inline-block;
    padding: 5px 15px;
}

.messagebox.m2 {
    left: 30px;
    z-index: 1;
}

.chairman-wrap.director {
    flex-direction: row-reverse;

}

.chairman-wrap.director .chairman-messagewrap {
    position: relative;
    display: block;
    margin-top: 160px;
    left: 218px;
}

.director .messagebox {
    background: linear-gradient(263deg, #EFF1F9 17.43%, rgb(255 255 255 / 79%) 85.32%);
}

.chairman-image.mobile {
    display: none;
}

.value-curve {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -50px;
    height: 50px;
}

.value-curve img {
    width: 100%;
}

section.value-creation {
    position: relative;
    display: block;
    background-color: #F8F7F5;
    padding-bottom: 60px;
}

.vc-col1 {
    position: relative;
    display: block;
    margin-top: 70px;
}

.vc-col1 h3 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(137, 140, 153, 0.50);
    font-family: var(--AvenirBlack);
    font-size: 89px;
    font-style: normal;
    font-weight: 900;
    line-height: 78px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: transparent;
}

.vc-col1 h4 {
    color: #3C4155;
    font-size: 51px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: -1.53px;
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.valuebox {
    position: relative;
    display: block;
    margin-top: -93px;
    margin-left: 37px;
}

.valuebox p {
    color: #050505;
    font-size: 18px;
    position: relative;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
    max-width: 427px;
    display: block;
    margin-bottom: 40px;
}

.vc-col1:before {
    position: absolute;
    content: '';
    display: block;
    width: 1032px;
    height: 935px;
    top: -277px;
    left: -56px;
    background-image: url(../img/value-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.vc-col2 {
    position: relative;
    display: block;
    text-align: right;
}

.strategy {
    position: relative;
    display: block;
    width: 100%;
    height: 820px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../img/strategy-bg.webp) lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.strategy-box {
    position: relative;
    display: block;
    margin-top: 160px;
    max-width: 575px;
    border-radius: 20px;
    background: rgba(245, 245, 245, 0.83);
    backdrop-filter: blur(7px);
    padding: 60px 35px;
    z-index: 9;
}

.strategy-box h4 {
    color: #3C4155;
    font-family: var(--AvenirHeavy);
    font-size: 44px;
    font-style: normal;
    font-weight: 800;
    line-height: 58px;
    letter-spacing: -1.32px;
    margin-bottom: 15px;
}

.strategy-box p {
    color: #050505;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
    margin-bottom: 35px;
}

.purpose-curve {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -75px;
}

.purpose-curve img {
    width: 100%;
}

section.purpose {
    position: relative;
    display: block;
    background: #1F85B8;
    height: 1920px;
}

section.purpose-btn-wrap {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    background: #1f85b8;
    padding: 0px 0 30px 0;
}
section.purpose-btn-wrap.pd2 {
    padding-bottom: 55px !important;
}
.purpose-title {
    position: relative;
    display: block;
    padding-top: 70px;
}

.purpose-title h3 {
    color: #FFF;
    text-align: center;
    font-family: var(--AvenirBlack);
    font-size: 71px;
    font-style: normal;
    font-weight: 800;
    line-height: 62px;
    letter-spacing: -2.13px;
    margin-bottom: 75px;
}

.purpose-circle-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.purpose-circle-wrap-col1,
.purpose-circle-wrap-col2 {
    position: relative;
    width: 50%;
}

.p-circle.pc1 {
    position: absolute;
    display: flex;
    text-align: center;
    width: 525.226px;
    height: 525px;
    border-radius: 525px;
    background: rgba(37, 158, 218, 0.94);
    color: #FFF;
    flex-direction: column;
    justify-content: center;
    left: 75px;
    z-index: 1;
}

.p-circle.pc1 h3 {
    color: #FFF;
    font-family: Avenir;
    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: 49px;
    /* 168.966% */
    letter-spacing: -0.29px;
}

.pc1 span.sign1,
.pc1 .counter {
    color: #FFF;
    font-family: var(--AvenirBlack);
    font-size: 75px;
    font-style: normal;
    font-weight: 800;
    line-height: 96px;
    /* 128% */
    letter-spacing: -2.25px;
}

.p-circle.pc1 p {
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 350;
    line-height: 46px;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    margin-bottom: 33px;
}

.p-circle.pc1 h5 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.p-circle.pc1 h6 {
    color: #FFF;
    font-size: 33px;
    font-style: normal;
    font-weight: 800;
    line-height: 37px;
    letter-spacing: -0.99px;
}

.p-circle.pc1 span.sign1 {
    margin-right: 0;
}

.pc1:before {
    position: absolute;
    content: '';
    display: block;
    background-image: url(../img/pd-circle1.svg);
    width: 353px;
    height: 351px;
    top: -27px;
    left: -238px;
}

.pc1:after {
    position: absolute;
    content: '';
    display: block;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(227, 227, 229, 0.20);
    bottom: -91px;
    right: 206px;
    border-radius: 80px;
}


.p-circle.pc2 {
    position: absolute;
    display: flex;
    text-align: center;
    width: 282px;
    height: 282px;
    border-radius: 525px;
    background: rgba(37, 158, 218, 0.94);
    color: #FFF;
    flex-direction: column;
    justify-content: center;
    left: 295px;
    top: 549px;
}

.pc2 span.sign1,
.pc3 span.sign1,
.pc4 span.sign1,
.pc5 span.sign1 {
    color: #FFF;
    font-size: 38px;
    font-family: var(--AvenirLight);
    font-weight: 300;
    line-height: 87px;
    letter-spacing: -1.14px;
}

.purpose-circle-wrap-col1 .counter {
    color: #FFF;
    font-family: var(--AvenirBlack);
    font-size: 71px;
    font-style: normal;
    font-weight: 800;
    line-height: 87px;
    letter-spacing: -2.13px;
}

.purpose-circle-wrap-col1 span.sign1 {
    margin-right: 0;
}

.p-circle .counterwrap {
    height: 87px;
}

.pc2 h3,
.pc3 h3,
.pc4 h3,
.pc5 h3 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-family: var(--AvenirLight);
    line-height: 31px;
    letter-spacing: -0.24px;
    margin-top: 50px;
}

.p-circle.pc3 {
    position: absolute;
    display: flex;
    text-align: center;
    width: 282px;
    height: 282px;
    border-radius: 525px;
    background: rgba(37, 158, 218, 0.94);
    color: #FFF;
    flex-direction: column;
    justify-content: center;
    left: 36px;
    top: 768px;
    z-index: 1;
}

.p-circle.pc2 p,
.p-circle.pc3 p,
.p-circle.pc4 p,
.p-circle.pc5 p {
    color: #FFF;
    font-size: 20px;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    margin-bottom: 33px;
}


.pc2:after {
    position: absolute;
    content: '';
    display: block;
    width: 303px;
    height: 303px;
    border: 1px solid rgba(227, 227, 229, 0.20);
    bottom: -275px;
    right: 13px;
    border-radius: 50%;
}

.p-circle.pc4 {
    position: absolute;
    display: flex;
    text-align: center;
    width: 281px;
    height: 282px;
    border-radius: 525px;
    background: rgba(37, 158, 218, 0.94);
    color: #FFF;
    flex-direction: column;
    justify-content: center;
    left: 282px;
    top: 984px;
}

.p-circle.pc5 {
    position: absolute;
    display: flex;
    text-align: center;
    width: 282px;
    height: 282px;
    border-radius: 525px;
    background: rgba(37, 158, 218, 0.94);
    color: #FFF;
    flex-direction: column;
    justify-content: center;
    left: 133px;
    top: 1313px;
}

.s-circle.sc1 {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    border: 1px solid #a5afd7a8;
    border-radius: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    top: -1107px;
    left: 0;
}

.s-circle.sc1 h3 {
    color: #FFF;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: -0.17px;
    margin-bottom: 0;
}

.s-circle span.counter,
.s-circle .sign1 {
    color: #FFF;
    font-size: 37px;
    font-style: normal;
    font-weight: 800;
    line-height: 57px;
    letter-spacing: -1.11px;
}

.s-circle .counterwrap {
    height: 56px;
    top: -10px;
    position: relative;
}

.sc1:after {
    position: absolute;
    content: '';
    display: block;
    width: 238px;
    height: 238px;
    border: 1px solid rgba(227, 227, 229, 0.20);
    bottom: -206px;
    left: -103px;
    border-radius: 50%;
}

.s-circle.sc1 {
    width: 180px;
    height: 180px;
    position: absolute;
    display: flex;
    border: 1px solid #a5afd7a8;
    border-radius: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    top: 536px;
    left: 0;
}

.s-circle.sc2 {
    width: 190px;
    height: 190px;
    position: relative;
    display: flex;
    border: 1px solid #a5afd7a8;
    border-radius: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    top: 1120px;
    left: 40px;
}

.s-circle.sc2 h3 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: -0.17px;
    margin-bottom: 0;
}

.s-circle.sc2 .counterwrap {
    height: 41px;
    top: 1px;
    position: relative;
}

.sc2:after {
    position: absolute;
    content: '';
    display: block;
    width: 371px;
    height: 371px;
    border: 1px solid rgba(165, 175, 215, 0.51);
    bottom: -265px;
    left: -290px;
    border-radius: 50%;
}


.s-circle.sc3 {
    width: 203px;
    height: 203px;
    position: relative;
    display: flex;
    border: 1px solid #a5afd7a8;
    border-radius: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    top: 1253px;
    left: 535px;
}

.s-circle.sc3 p {
    text-align: center;
    color: #FFF;
    font-size: 16px;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    display: block;
    margin-top: -26px;
}

.s-circle.sc3 h3 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: -0.17px;
    margin-bottom: 0;
}

.sc3 .sign1 {
    color: #FFF;
    font-family: var(--AvenirLight);
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 87px;
    /* 334.615% */
    letter-spacing: -0.78px;
}

.progress-image {
    position: relative;
    display: block;
    margin-left: -130px;
}

.purpose-circle-wrap-col2 h3 {
    position: absolute;
    width: 961.731px;
    transform: rotate(-90deg);
    top: 23%;
    right: -392px;
    display: block;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.50);
    font-family: var(--AvenirBlack);
    color: transparent;
    font-size: 139px;
    font-style: normal;
    font-weight: 900;
    line-height: 78px;
    letter-spacing: 12.51px;
    text-transform: uppercase;
}

.progress-image:before {
    position: absolute;
    content: '';
    display: block;
    top: -467px;
    left: -122px;
    background-image: url(../img/progress-shape.svg);
    width: 924px;
    height: 935px;
}

.progress-image:after {
    position: absolute;
    content: '';
    display: block;
    top: 804px;
    left: 0px;
    background-image: url(../img/progress-shape-bottom.svg);
    width: 806px;
    height: 935px;
    background-size: cover;
}

.purpose-circle-wrap.mobile {
    display: none;
}

.strategy.stakeholder {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 100%), url(../img/stakeholder.webp) lightgray;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 855px;
    position: relative;
    z-index: 1;
}

.strategy.stakeholder .strategy-box {
    margin-top: 180px;
}

.strategy.stakeholder .container {
    position: relative;
}

.strategy.stakeholder .container:before {
    position: absolute;
    content: '';
    display: block;
    background-image: url(../img/stakeholder-shape.svg);
    top: 102px;
    right: -35px;
    width: 1072px;
    height: 935px;
    z-index: 1;
    background-size: cover;
}

section.strategy.materiality {
    background-color: #EBF2F9;
    background-image: url(../img/materiality-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 855px;
    position: relative;
    padding-bottom: 70px;
}

.materiality .strategy-box {
    max-width: 477px;
    margin-top: 230px;
}

.materiality .container {
    position: relative;
}

.materiality:before {
    position: absolute;
    content: '';
    display: block;
    background-image: url(../img/materiality-shape.svg);
    top: -105px;
    right: 102px;
    width: 1072px;
    height: 935px;
    z-index: 1;
    background-size: cover;
}

.leader-curve {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -60px;
}

.leader-curve img {
    width: 100%;
}

.leader-image {
    position: relative;
    display: flex;
    background-image: url(../img/board-directors.webp);
    background-repeat: no-repeat;
    mix-blend-mode: darken;
    height: 800px;
    width: 100%;
    justify-content: center;
    background-size: contain;
    margin: 0 auto;
    background-position: center;
}

section.leader {
    position: relative;
    display: block;
    background: #F9F9F9;
}

.leader-title h3 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(137, 140, 153, 0.50);
    font-family: var(--AvenirBlack);
    font-size: 90px;
    font-style: normal;
    font-weight: 900;
    line-height: 78px;
    letter-spacing: 8.01px;
    text-transform: uppercase;
    color: #F9F9F9;
}

.leader-title h4 {
    color: #3C4155;
    font-family: var(--AvenirMedium);
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 58px;
    position: relative;
    display: block;
    letter-spacing: -1px;
    margin-top: -24px;
}

.leaderbox {
    position: relative;
    display: block;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.89);
    backdrop-filter: blur(7px);
    width: 610px;
    height: 195px;
    text-align: center;
    padding: 28px 30px;
    margin-top: 359px;
}

.leaderbox p {
    color: #050505;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
    margin-bottom: 20px;
}

section.awards {
    position: relative;
    display: block;
    background: #1D294A;
    color: #fff;
    height: 1220px;
}

.excellence h2 {
    font-family: var(--AvenirHeavy);
    font-size: 52px;
    line-height: 58px;
    letter-spacing: -1.56px;
    margin-bottom: 45px;
}

.excellence p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0.2px;
    margin-bottom: 40px;
}

.awardstitle h3 {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(137, 140, 153, 0.50);
    font-family: var(--AvenirBlack);
    font-size: 109px;
    font-style: normal;
    font-weight: 900;
    line-height: 78px;
    letter-spacing: 7.63px;
    text-transform: uppercase;
    color: #1D294A;
    position: absolute;
    left: -155px;
    top: 125px;
}

.excellence {
    position: relative;
    display: block;
    padding-top: 130px;
    z-index: 1;
}

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

.award-row {
    position: relative;
}

.excellence:before {
    position: absolute;
    content: '';
    display: block;
    top: 27px;
    right: -57%;
    background-image: url(../img/recognize-shape.svg);
    width: 783px;
    height: 920px;
    background-repeat: no-repeat;
}

.award-row:after {
    position: absolute;
    content: '';
    background-image: url(../img/recognize-logo.webp);
    top: 102px;
    left: -181px;
    width: 523px;
    height: 530px;
    display: block;
    opacity: 0.2;
    /* animation: logoanim 30s infinite linear; */
}

.award-row2 {
    position: relative;
    display: block;

    margin-top: -81px;
}

.award-row2:before {
    position: absolute;
    content: '';
    display: block;
    width: 1000px;
    height: 395px;
    background-image: url(../img/awardbg.webp);
    background-repeat: no-repeat;
    top: 0;
    right: -45px;
}

.awarelist-wrap {
    position: relative;
    display: block;
    top: 215px;
    z-index: 9;
}

.awardstitle.mobile {
    display: none;
}

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

.awardbox {
    position: absolute;
    display: block;
    max-width: 250px;
    width: 100%;
}


.awardbox p {
    color: #C4D0EE;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
}

.awardbox:before {
    position: absolute;
    display: block;
    content: '';
    width: 1px;
    background: #707070;
}

.awardbox.aw1 {
    top: 30px;
}

.aw1:before {
    height: 36px;
    top: -45px;
    left: 18px;
}

.awardbox.aw2 {
    top: 148px;
    left: 203px;
}

.aw2:before {
    height: 106px;
    top: -128px;
    left: 18px;
}

.awardbox.aw3 {
    top: 30px;
    left: 310px;
}

.aw3:before {
    height: 36px;
    top: -47px;
    left: 18px;
}

.awardbox.aw4 {
    top: 148px;
    left: 548px;
}

.aw4:before {
    height: 106px;
    top: -128px;
    left: 18px;
}

.awardbox.aw5 {
    top: 30px;
    left: 651px;
}

.aw5:before {
    height: 36px;
    top: -47px;
    left: 18px;
}

.awardbox.aw6 {
    top: 148px;
    left: 870px;
}

.aw6:before {
    height: 106px;
    top: -128px;
    left: 18px;
}

.awardbox.aw7 {
    top: 30px;
    left: 939px;
}

.aw7:before {
    height: 36px;
    top: -47px;
    left: 18px;
}

section.governance {
    position: relative;
    display: block;
    background-color: #EEF6FD;
    background-image: url(../img/governane-bg.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 900px;
    background-position: 0 -166px;
}

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

.governane-wrap::after {
    position: absolute;
    content: "";
    background-image: url("../img/recognize-logo.webp");
    background-size: cover;
    top: -300px;
    left: 150px;
    width: 426px;
    height: 426px;
    display: block;
    opacity: 0.2;
    /* animation: 30s linear 0s infinite normal none running logoanim; */
}

.governane-box {
    position: relative;
    display: block;
    margin-top: 400px;
    margin-left: 115px;
    text-align: center;
    max-width: 440px;
}

.governane-wrap h2 {
    position: absolute;
    left: -336px;
    top: 0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(127, 130, 143, 0.50);
    font-family: var(--AvenirBlack);
    font-size: 90px;
    font-style: normal;
    font-weight: 900;
    line-height: 78px;
    letter-spacing: 8.01px;
    text-transform: uppercase;
    color: transparent;
    transform: rotate(-90deg);
}

.governane-box h4 {
    color: #3C4155;
    font-size: 50px;
    font-style: normal;
    font-family: var(--AvenirMedium);
    font-weight: 800;
    line-height: 58px;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
}

.governane-box p {
    color: #050505;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0.22px;
    margin-bottom: 30px;
}

.strategy.riskmanagemnt {}

.strategy.riskmanagemnt {
    background-image: url(../img/riskmanagement-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 850px;
    position: relative;
    padding-bottom: 70px;
}

.riskmanagemnt .strategy-box {
    max-width: 660px;
}

.riskmanagemnt .strategy-box {
    margin: 220px auto 0 auto;
}


.supplementary-curve {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -60px;
}

.supplementary-curve img {
    width: 100%;
}

section.supplementary-information {
    position: relative;
    display: block;
    background: #F5F5F5;
    padding-bottom: 40px;
}

.supplementary-image {
    position: relative;
    display: block;
}

.supplementary-image img {
    position: relative;
    display: block;
    mix-blend-mode: darken;
}

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

.supplementary-content h3 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(137, 140, 153, 0.50);
    font-family: var(--AvenirBlack);
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 78px;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    color: #F5F5F5;
}

.supplementary-content h4 {
    color: #3C4155;
    font-family: var(--AvenirMedium);
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 61px;
    margin-bottom: 35px;
}

.supplementary-content p {
    color: #050505;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.2px;
    margin-bottom: 100px;
    max-width: 525px;
}

.suppwrap {
    position: relative;
    display: block;
    margin-top: -55px;
    margin-left: 21px;
    z-index: 9;
}

.supplementary-image img {
    position: absolute;
    display: block;
    mix-blend-mode: darken;
    left: -237px;
    max-width: 900px;
    object-fit: cover;
    z-index: 1;
}

section.moreinfo {
    position: relative;
    display: block;
    background: #F5F5F5;
    padding-top: 265px;
    padding-bottom: 100px;
}

.readmore.bfill {
    border: 2px solid #353535;
    background: #0756A5;
    color: #fff;
    transition: 0.5s;
}

.readmore.bfill:hover {
    background: #fff;
    color: #0756A5;
}

.moreinfor-wrap h5 {
    color: #2A394A;
    text-align: center;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 45px;
}

.moreinfor-wrap {
    position: relative;
    display: block;
    max-width: 915px;
    margin: 20px auto 0 auto;
    z-index: 9;
}

.btnwraps {
    position: relative;
    display: block;
}
.purpose-btn-wrap .btnwraps .readmore {
    margin: 0 11px;
    min-width: 335px;
    display: inline-block;
}
.btnwraps .readmore {
    margin: 0 11px;
}

.supplementary-image:before {
    position: absolute;
    content: '';
    display: block;
    width: 1390px;
    height: 960px;
    top: 228px;
    left: -737px;
    background-image: url(../img/supplementary-reports-shape.svg);
    background-repeat: no-repeat;
    z-index: 1;
}

.fcol.c2 {
    text-align: center;
    position: relative;
    display: block;
    width: 78%;
}

a.flogo {
    position: relative;
    display: block;
    max-width: 235px;
}

a.flogo img {
    width: 100%;
}

.fcolumn {
    position: relative;
    display: flex;
    justify-content: center;
}

.fcolumn p,
.fcolumn h6 {
    color: #3D3B3B;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
}

footer.footer-wrap {
    position: relative;
    display: block;
    background: #F5F5F5;
    padding-bottom: 70px;
}


.fcolumn p {
    margin-bottom: 20px;
}

.fcolumn a {
    color: #3D3B3B;
}

#backtop {
    display: inline-block;
    background-color: #2f4095;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .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 #e00025;
    border-bottom: 4px solid #e00025;
}

#backtop:hover {
    cursor: pointer;
    background-color: #2f4095;
    opacity: 0.5;
}

#backtop:active {
    background-color: #2f4095;
}

#backtop.show {
    opacity: 1;
    visibility: visible;
}