/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	transition: all 400ms;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
}
i {
	font-style: italic;
}
.debug {
	position: fixed;
	bottom: 0px;
	right: 0px;
	background-color: red;
	color: white;
	font-size: 10px;
	padding: 5px;
	z-index: 99999;
}
html {
	font: normal 15px / 25px "Montserrat", Helvetica, Arial, sans-serif;
	color: #333333;
}
/* General */
body {
	background-color: #ffffff;
	font: normal 15px / 25px "Montserrat", Helvetica, Arial, sans-serif;
	color: #333333;
}
a {
	text-decoration: none;
	color: #111111;
}
sup {
	vertical-align: super;
	font-size: smaller;
	line-height: 1em;
}
sub {
	vertical-align:sub;
	font-size: smaller;
	line-height: 1em;
}
strong {
	font-weight: bold;
}
.center {
	text-align: center;
}
.floating-bar {
	position: fixed;
	z-index: 9;
}
.inside {
	background-color: #F3F3F3;
}
.inside .floating-bar {
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
}
.floating-bar .box {
	padding: 0px;
	position: relative;
}
.floating-bar .logo {
	top: 12px;
	left: 24px;
	position: absolute;
	width: 100px;
}
.floating-bar .logo img {
	display: block;
}
.floating-bar .icons {
	transition: all 400ms;
}
.floating-bar .icons > a:not(.share):not(.modal-close) {
	display: inline-block;
	width: 30px;
	height: 30px;
	overflow: hidden;
	background-size: contain !important;
	margin: 22px 0 22px 1vw;
	vertical-align: top;
	-webkit-transition: all .2s linear 0.1s;
    -moz-transition: all .2s linear 0.1s;
    -ms-transition: all .2s linear 0.1s;
    -o-transition: all .2s linear 0.1s;
    transition: all .2s linear 0.1s;
    padding-left: 30px;
    box-sizing: border-box;
}
.floating-bar .icons > a:not(.share) .icon-label {
	line-height: 1em;
	color: #ffffff;
	font-size: 14px;
}
.floating-bar .icons a.ebook:hover {
    width: 90px;
}
.floating-bar .icons a.download {
	background: transparent url(../img/icon-ebook-white.png) center center no-repeat;
}
.floating-bar .icons .share-menu {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: contain !important;
	margin: 22px 0 22px 1vw;
	position: relative;
	vertical-align: top;
}
.floating-bar nav {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 9999;
	-moz-transition: opacity 0.4s ease-in-out;
	-o-transition: opacity 0.4s ease-in-out;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}
body:not(.go-away) .floating-bar nav {
	opacity: 0;
}
body.go-away .header_row {
	background-color: transparent;
}
body.go-away .header_row .header_left {
	opacity: 0;
}
body.go-away .menu-icon {
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
img.logo {
	width: 120px;
	display: block;
}
.menu-logo {
	font-size: 40px;
	color: #ffffff;
	margin-bottom: 0.4em;
	display: block;
}

#menuToggle {
  position: relative;
  padding: 0px;
  z-index: 999;
  width: 64px;
  height: 64px;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  box-sizing: border-box;
	
}

#menuToggle input {
  display: block;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 20; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
#menuToggle .menu-icon {
	display: block;
	position: absolute;
	z-index: 19;
	left: 0px;
	top: 0px;
	width: 64px;
	height: 64px;
	background-repeat: no-repeat;
  	background-color: #ffffff;
  	background-position: center center;
  	background-size: contain;
  	padding: 20px;
	cursor: pointer;
  	box-sizing: border-box;
  
  	
	transition: border-radius 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menuToggle .menu-icon:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(calc(-100% - 18px), -50%);
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #92A1B4;
}
#menuToggle .menu-icon .menu-icon-wrap {
	
}
#menuToggle .menu-icon .menu-icon-wrap > span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 8px !important;
  position: relative;
  background: black;
  border-radius: 3px;
  z-index: 11;
  transform-origin: 2px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle .menu-icon .menu-icon-wrap > span:first-of-type
{
  transform-origin: 0% 0%;
}

#menuToggle .menu-icon .menu-icon-wrap > span:nth-of-type(2)
{
  transform-origin: 0% 100%;
  margin-bottom: 0px;
  
}
#menuToggle .menu-icon .menu-icon-wrap > span:nth-of-type(3) {
	margin-bottom: 0px !important;
	
}
#menuToggle input:checked ~ .menu-icon {
	border-radius: 50%;
}
#menuToggle input:checked ~ .menu-icon:before {
	content: 'Close';
	color: #ffffff;
}
#menuToggle input:checked ~ .menu-icon .menu-icon-wrap {
	transform: rotate(0deg);
}
#menuToggle input:checked ~ .menu-icon .menu-icon-wrap span
{
  opacity: 1;
  transform: rotate(45deg) translate(5px, 0px);
}
#menuToggle input:checked ~ .menu-icon .menu-icon-wrap span:nth-of-type(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ .menu-icon .menu-icon-wrap span:nth-of-type(2)
{
  transform: rotate(-45deg) translate(-4px, 10px);
  width: 24px;
}
.menu-overlay {	
	position: fixed;
	top: -100%;
	right: 0;
	margin: auto;
	width: 50%;
	height: 0px;
	z-index: 9;
	transition: 0.6s;
	-webkit-transition: 0.6s;
	transition-delay: 0.2s;
	/* background: #0167B0; */
	overflow: hidden;
	background: white;
}
#menuToggle input:checked ~ .menu-overlay {
	top: 0% !important;
	pointer-events: none;
	transition-delay: 0.1s;
	height: 100%;
}
.bubble-wrap {
	position: fixed;
	top: 100%;
	left: 50%;
	margin: auto;
	width: 0px;
	height: 0px;
	border-radius: 100%;
	z-index: 999;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	background-color: #ffffff;
	overflow: hidden;
}
.bubble-wrap-video {
	position: fixed;
	top: 100%;
	left: 50%;
	margin: auto;
	width: 0px;
	height: 0px;
	border-radius: 100%;
	z-index: 999;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	background-color: rgba(255, 255, 255, 0.8);
	overflow: hidden;
}
body.reveal {
	overflow: hidden;
}
.reveal .bubble-wrap {
	width: 200vw;
	height: 200vw;
	top: -50% !important;
	left: -50% !important;
	pointer-events: none;
}
.reveal-video .bubble-wrap-video {
	width: 200vw;
	height: 200vw;
	top: -50% !important;
	left: -50% !important;
	pointer-events: none;
}
#menu {
  position: fixed;
  box-sizing: border-box;
  padding: 72px;
  margin: 0px;
  top: -100%;
  right: 0;
  width: 50%;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  height: 100vh;
  overflow-y: auto; 
  opacity: 0;
  z-index: 10;
  transition: all 0.8s cubic-bezier(0.77,0.2,0.05,1.0);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-bottom {
	position: absolute;
	bottom: 84px;
	font-size: 14px;
	line-height: 1.6em;
	width: 70%;
}
.menu-bottom .name {
	font-weight: bold;
}
.menu-bottom .contact {
	margin-top: 1em;
}
.menu-bottom .contact a {
	text-decoration: underline;
	margin-top: 0.5em;
	display: inline-block;
}
#menu * {
	color: black;
}

#menu li {
  padding: 1em 0;
  font-size: 13px;
  color:black;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
#menu li a {
	display: block;
	padding: 0;
	color:black;
	font-size: 18px;
	line-height: 1.2em;
	position: relative;
}
#menu > ul {
	
}
#menu > ul > li {
	padding: 0.7em 0;
	display: block;
	box-sizing: border-box;
}
#menu > ul > li.active {
}
#menu > ul > li,
#menu > ul > li > a {
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: 1.4em;
	color: black;
	display: block;
	cursor: pointer;
}
#menu > ul > li .num {
	letter-spacing: 0px;
	line-height: 1em;
	display: inline-block;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	color: #FFFFFF;
	vertical-align: top;
	margin-right: 4em;
}
#menu > ul > li > a {
	
}
#menu > ul > li > ul > li > a,
#menu > ul > li > ul > li > ul > li > a {
	padding-left: 17px;
	text-indent: -17px;
}
#menu > ul > li > a > span {
	display: inline-block;
	vertical-align: middle;
}
#menu > ul > li > ul {
	padding-left: 25px;
	padding-top: 10px;
	display: none;
}
#menu > ul > li > ul > li > ul {
	padding-left: 25px;
	padding-top: 2px;
	padding-bottom: 1px;
}
#menu > ul > li > ul.show {
	display: block;
}
#menu > ul > li > ul li {
	margin: 6px 0px;
}
#menu li a.current {
	
}
#menu li a:hover {
	
}
#menu li a.current:before {
	
}
#menu .connect {
	margin: 40px 0 10px;
}
#menu .connect label {
	display: inline-block;
	vertical-align: middle;
}
#menu .connect .social-media-icons {
	display: inline-block;
	vertical-align: middle;
}
#menu .connect .social-media-icons a {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 4px;
	width: 18px;
	height: 18px;
	text-indent: -9999px;
	overflow: hidden;
	background: transparent url(../img/icon-facebook.svg) center center no-repeat;
	background-size: contain;
}
#menu .connect .social-media-icons a.twitter {
	background-image: url(../img/icon-twitter.svg);
}
#menu .connect .social-media-icons a.facebook {
	background-image: url(../img/icon-facebook.svg);
}
#menu .connect .social-media-icons a.instagram {
	background-image: url(../img/icon-instagram.svg);
}
#menu .connect .social-media-icons a.youtube {
	background-image: url(../img/icon-youtube.svg);
}
#menu .connect .social-media-icons a.linkedin {
	background-image: url(../img/icon-linkedin.svg);
}
#menu .copyright {
	font-size: 12px;
	line-height: 1.4em;
}
#menuToggle input:checked ~ #menu{
	opacity: 1;
	top: 0px;
}
.menu-footer {
	overflow: hidden;
}

/* Content */
.section {
	transition: all 300ms ease-in-out;
}
.section video {
	width: 100%;
	height: auto;
}
.section.intro {	
	background: linear-gradient(102.46deg, #18CAA6 11.19%, #0177B5 78.66%);

}
.section.intro .section-bg {
	background-image: url(../img/bg/bg-intro.svg);
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
}
.section.chairman {	
	background-image: url(../img/bg/bg-chairman.jpg);
	background-size: cover;
	background-position: left top;
	background-repeat: no-repeat;
}
.section.gdirector {
	
}
.section.gdirector .right {	
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	background-image: url(../img/hero/hero-ceo.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.section.finance {
	background-color: #f3f3f3;
}
.section.finance .left {	
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	background-image: url(../img/hero/hero-cfo.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.section.sus {	
	background-image: url(../img/hero/cover_bottom.png);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.section.sus .section-bg {
	
}
.section.v-padding {
	padding-top: 72px;
	padding-bottom: 72px;
}
.section.h-padding {
	padding-left: 72px;
	padding-right: 72px;
}
.section.top-padding {
	padding-top: 72px;
}
.section.padding-bottom-x2 {
	padding-bottom: 144px;
}
.heros {
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}
.heros .hero {
	width: 25%;
	padding: 8px;
	box-sizing: border-box;
}
.heros .hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.see-more {
	text-align: center;
	margin: 24px 0px 0px;
}
.see-more a {
	display: inline-block;
}
.see-more a img {
	display: block;
	width: 56px;
}
.flex {
	display: flex;
}
.flex .col {
	width: 50%;
	position: relative;
}
.flex .col.col-hero {
	overflow: hidden;
}
.flex .col.col-hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transform-origin: top;
	transition: all 300ms ease-in-out;
}
.flex .col.col-content {
	
}
.flex .col.col-content .static-content {
	display: flex;
	align-items: center;
	height: 100%;
}
.flex .col.col-content .static-content .text {
	
}
.flex .col.col-content .static-content .text img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}
.section .action-bar {
	background-color: #707070;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	transition: all 300ms ease-in-out;
}
.section .action-bar .flex {
	justify-content: space-between;
	padding: 12px 24px;
}
.section .action-bar a {
	color: #ffffff;
	display: inline-block;
}
.section .action-bar .left a {
	margin-right: 12px;
}
.col .hover-content {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 36px;
	text-align: center;
	color: #ffffff;
	background-color: rgba(255,0,50,0.9);
	line-height: 1.4em;	
	transition: all 400ms ease-in-out;
}
.col .hover-content .box {
	border: 1px solid #ffffff;
	height: 100%;
	padding: 36px;
	box-sizing: border-box;
}
.col .hover-content .box p {
	margin-bottom: 1em;
	font-size: 1.2vw;
	line-height: 1.4em;
}
.col .hover-content .box p:last-of-type {
	margin-bottom: 0px;
}
.col .section.ceo .static-content .hero-bg,
.col .section.finance .static-content .hero-bg,
.col .section.sustain .static-content .hero-bg {
	overflow: hidden;
}
.col .section.ceo .static-content .hero-bg img,
.col .section.finance .static-content .hero-bg img,
.col .section.sustain .static-content .hero-bg img {
	transition: all 400ms ease-in-out;
	transform-origin: right top;
	object-position: right top;
}
.col .section.ceo:hover .static-content .hero-bg img,
.col .section.finance:hover .static-content .hero-bg img,
.col .section.sustain:hover .static-content .hero-bg img {
	transform: scale(1.1);
}
.col .section.ceo .hover-content .box p,
.col .section.finance .hover-content .box p {
	font-size: 1.1vw;
}
.section:hover .hover-content {
	opacity: 1;
}
.section:hover .col.col-hero img {
	transform: scale(1.1);
}
.section:hover .action-bar {
	background-color: rgba(255,0,50,0.9);
}

.single-page {
	line-height: 1.5em;
	padding: 0px;
}
.single-page p {
	margin-bottom: 1.4em;
	font-size: 15px;
}
.single-page .wrap {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}
.single-page .hero-banner {
	z-index: 2;
}
.single-page.sustain-page .hero-banner .wrap {
	max-width: 960px;
}
.single-page .hero-banner .wrap {
	
}
.single-page.sustain-page .hero-banner {
	padding-left: 36px;
	padding-right: 36px;
}
.single-page .page-intro {
	background-color: #DCDDDE;
	padding: 36px;
	font-weight: bold;
	margin-top: -24px;
}
.single-page .page-intro p:last-of-type {
	margin-bottom: 0px;
}
.single-page .page-content {
	padding: 36px;	
	font-size: 15px;
}
.single-page.sustain-page .page-content {
	padding-top: 0px;
}
.single-page .page-content .wrap {
	
}
.page-content h2 {
	color: #FF0032;
	font-weight: bold;
	margin: 1.5em 0 1em;
}
.page-content .featured-box {
	background-color: #E0E1E3;
	padding: 36px;
	text-align: center;
	margin-bottom: 24px;
}
.page-content .featured-box .icon {
	margin-bottom: 1em;
	text-align: center;
}
.page-content .featured-box .icon img {
	display: inline-block;
	width: 80px;
}
.page-content .featured-box .title {
	font-size: 24px;
	font-weight: bold;
	color: #FF0032;
	margin-bottom: 0.5em;
}
.page-content .featured-box .subtitle {
	font-size: 18px;
	font-weight: bold;
}
.page-content .page-download {
	text-align: center;
	margin: 36px 0px;
}
.page-content .page-download.left {
	text-align: left;
}
.page-content .page-download a {
	display: inline-block;
	padding: 12px 20px;
	border: 2px solid #FF0032;
	color: #FF0032;
	font-weight: bold;
}
.footer {
	
}
.noflex {
	position: relative;
}
.static-content .hero-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	width: 100%;
}
.noflex .static-content {
	height: 100%;
	width: 100%;
	position: relative;
	min-height: 25vw;
}
.noflex .static-content {
	
}
.noflex .static-content .text {
	position: relative;
}
.noflex .static-content .text img {
	padding: 36px 36px 48px 36px;
	width: 45%;
}
.noflex .finance .static-content .text img {
}
.static-content .hero-bg img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center top;
}
.single-page p.intro2 {
	font-size: 16px;
	font-weight: bold;
}
.intro-charts {
	display: flex;
}
.intro-charts .col-chart {
	width: 24%;
	padding-right: 36px;
}
.intro-charts .col-chart:last-of-type {
	padding-right: 0px;
	width: 28%;
}
.intro-charts .col-chart .icon {
	
}
.intro-charts .col-chart .icon img {
	width: 56px;
}
.intro-charts .col-chart .info {
	border-left: 1px solid #EC4117;
}
.intro-charts .col-chart .info .label {
	color: #E47143;
	text-transform: uppercase;
	line-height: 1.2em;
	font-weight: bold;
	font-size: 15px;
	padding: 10px;
	border-bottom: 1px solid #E47143;
}
.intro-charts .col-chart .info .stat {
	font-weight: bold;
	border-bottom: 1px solid #808386;
	padding: 10px;
}
.intro-charts .col-chart .info .stat .count {
	font-size: 36px;
}
.intro-charts .col-chart .info .stat .unit {
	font-size: 17px;
}
.intro-charts .col-chart .info .stat2 {
	padding: 10px;
	font-size: 16px;
	font-weight: 400;
	display: flex;
	justify-content: space-between;
}
.section.business .noflex {
	background-color: #E7E7E7;
}
.section.business .noflex .static-content .text {
}
.section.business .noflex .static-content .text img {
	width: 30%;
	padding-bottom: 0px;
}
.charts {
	display: flex;
	flex-wrap: wrap;
	clear: left;
	justify-content: space-between;
}
.charts .chart {
	width: calc(50% - 10px);
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #707070;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 18px;
	color: #3C3C3E;
	
}
.charts .chart .table {
	display: table;	
	width: 100%;
	height: 100%;
}
.charts .chart .cell {
	display: table-cell;
	vertical-align: bottom;
}
.charts .chart .count {
	font-size: 30px;
	color: #516350;
	line-height: 1.2em;
}
.to-top {
	text-align: center;
	margin-bottom: 24px;
}
.to-top a {
	display: inline-block;
	cursor: pointer;
}
.to-top img {
	display: inline-block;
	width: 36px;
}
.subdownload {
	padding-left: 36px;
}
.menu-footer {
	padding-top: 36px;
	text-align: center;
}
.menu-footer .label {
	color: #ffffff !important;
	font-size: 14px;
}
.menu-footer .icons {
	float: none;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.menu-footer .icons a {
	display: inline-block;
	margin: 10px !important;
	width: 30px !important;
	height: 30px !important;
	background-color: #dddddd;
}
.section.cover {
	position: relative;
}
.section.cover.pending {
	height: 80vh;
	background-color: #f5f5f5;
	display: flex;
	padding: 36px;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	font-size: 12px;
	background-image: url(../img/bg/bg-intro.svg);
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
}
.section.cover:after {
	
}
img.text {
	max-width: 100%;
}
.text.message-chairman {
	margin-bottom: 36px;
}
a.scroll-down {
	display: block;
	width: 90px;
}
a.scroll-down span,
a.scroll-down img {
	display: block;
}
a.scroll-down img {
	margin-left: auto;
	margin-right: auto;
}
a.scroll-down .scroll-circle {
	margin-top: -50px;
}
.rotating {
	animation: rotation 8s infinite linear;
	display: inline-block !important;
}
.heading {
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
}
.heading2 {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 1em;
}
div.p {
	margin-bottom: 1em;
}
div.p.s {
	font-size: 13px;
}
div.p.xs {
	font-size: 12px;
}
div.p.light {
	font-family: 'din_lightregular';
}
.col .p:last-of-type {
	margin-bottom: 0px;
}
.section.dark .heading, .section.dark .heading2 {
	color: #ffffff;
}
.section.dark .heading2 {
	font-family: 'din_mediumregular';
}
.section.dark .p {
	color: #ffffff;
}
.hero-diamond {
	display: block;
	position: absolute;
	top: 5%;
	right: 0px;
	width: 30%;
	height: 100%;
	background: transparent url(../img/bg/bg-hero-diamond.svg) center top/contain no-repeat;
}
.section-download {
	
}
.section-download.center {
	justify-content: center;
}
.section.dark .section-download .download-label {
	color: #ffffff;
}
.section.year-review {
	padding: 8vw 0;
	margin-left: auto;
	margin-right: auto;
}
.section-downloads:not(.vertical) {
	display: flex;
}
.section-downloads:not(.vertical) .section-download {
	margin-right: 20px;
}
.section-downloads.vertical .section-download {
	margin: 10px 0px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
.section.group-financial {
	padding: 8vw 5vw;
	background: transparent url(../img/bg/bg-group-financial.svg) center center/100% 100% no-repeat;
}
.section.group-financial .wrap {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.section.group-financial .wrap > .flex {
	
}
.section.group-financial .wrap > .flex .left {
	width: 40%;
}
.section.group-financial .wrap > .flex .right {
	width: 60%;
}
.text.group-financial {
	margin-bottom: 48px;
}
.section.business {
	padding: 8vw 5vw;
}
.section.business .wrap {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.space {
	padding: 18px 0;
}
.space.s {
	padding: 10px 0;
}

.section.stats {
	padding: 8vw 5vw;
	background: transparent url(../img/bg/bg-statistical.svg) center center/100% 100% no-repeat;
}
.section.stats .wrap {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.section.stats .wrap > .flex .left {
	width: 30%;
}
.section.stats .wrap > .flex .right {
	width: 70%;
}

.section.downloads {
	background-color: #1e6ca3;
}
.section.downloads2 {
	background-color: white;
}

.download-lists {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.download-lists .download-list {
}
.download-lists .download-list:first-of-type {
}
.download-lists .download-list:last-of-type {
	
}
.download-lists .download-list ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 18px;
	row-gap: 18px;
}
.download-lists .download-list ul li {
	margin: 0;
	font-size: 14px;
	flex-basis: calc(50% - 9px);
	line-height: 1.3em;
}
.download-lists .download-list ul li a {
	background-color: #bddcef;
	padding : 0.6em 1em;
	border-radius: 25px;
	font-weight: 600;
	color: #283167;
	text-indent: 0px;
	margin-left: 0px;
}
.section.downloads .copyright {
	text-align: center;
	font-size: 11px;
}
.line p:not(:last-of-type) {
	margin-bottom: 0.5em;
}
.section.pop-header {
	padding: 0;
	background-color: #ffffff;
}
.section.pop-header .wrap {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.section.pop-header .wrap > .flex {
	align-items: center;
}
.section.pop-header .wrap > .flex .left {
	width: 45%;
}
.section.pop-header .wrap > .flex .right {
	width: 50%;
	margin-left: 5%;
}
.section.pop-header .hero-diamond {
	top: -20%;
}
.section.pop-header .message-chairman {
	margin-left: -3vw;
}
.section.pop-content {
	padding: 6vw 5vw;
}
.section.pop-content .wrap {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.section.pop-content .heading {
	font-size: 24px;
	line-height: 30px;
	color: #041397;
	padding-bottom: 0.5em;
}
.section.pop-stats {
	padding: 6vw 5vw;
	background-color: #eeeeee;
	text-align: center;
}
.section.pop-stats .wrap {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.placeholder img {
	display: block;
}
.placeholder.full img {
	width: 100%;
}
.placeholder.center img {
	margin-left: auto;
	margin-right: auto;
}
.section.management {
	padding: 4vw 4vw 4vw 4vw;
	z-index: 2;
}
.section.cfo {
	padding: 0px;
	z-index: 2;
}
.section.highlights {
	padding: 0px;
	z-index: 2;
	background-color: #ffffff;
}
.section.five {
	background-color: #ffffff;
	padding: 6vw 4vw;
}
.section.simplified {
	padding: 8vw 4vw;
}
.section.robust {
	padding: 8vw 4vw;
}
.section.market-share {
	padding: 72px 0px;
	background-color: #70CDE3;
	text-align: center;
}
.section.market-share .placeholder {
	max-width: 1200px;
	margin: 0 auto;
}
.section.market-share .white-box {
	padding: 36px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	margin-top: 24px;
}
.cols4 {
	display: flex;
	align-items: center;
}
.cols4 > * {
	flex-basis: 25%;
}
.chart-box {
	position: relative;
}
.buttons {
}
.buttons a {
	display: inline-block;
	margin-right: 18px;
	cursor: pointer;
}
.buttons a img.btn {
	display: inline-block;
	height: 40px;
}
.buttons.center {
	text-align: center;
}
.buttons.center a {
	margin: 0 9px;
}
.section.products {
	padding: 72px 0px;
	text-align: left;
	background: transparent url(../img/bg/bg-banking.jpg) center center/cover no-repeat;
}
.pop-content .cols4 {
		
}
.read-more {
	font-weight: 700;
	font-size: 13px;
	line-height: 1em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FFFFFF;
	border-bottom: 2px solid #ffffff;
	padding: 0.5em 0;
}
.read-more-pdf {
	padding: 14px 24px;
	font-size: 15px;
	border-radius: 8px;
	font-weight: bold;
	line-height: 1.2em;
	cursor: pointer;
	color: #ffffff;
	display: flex;
	align-items: center;
background :#76c5c4;
	
	-webkit-transition: all .2s linear 0.1s;
	-moz-transition: all .2s linear 0.1s;
	-ms-transition: all .2s linear 0.1s;
	-o-transition: all .2s linear 0.1s;
	transition: all .2s linear 0.1s;
	text-transform: uppercase;
	position: relative;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
  	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
  	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	transition: all 0.3s cubic-bezier(0.77,0.2,0.05,1.0);
}
.read-more-pdf:hover {
	border-color: #0067B1;
}
.read-more-pdf:before {
	background-color: #4d7581;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	height: 20px;
	width: 0px;
	
}
.read-more-pdf.inverted {
background-color: #4d7581;
	color: #ffffff;
	
}
.read-more-pdf.inverted:before {
	
}
.download-pdf-link {
	display: flex;
	padding: 0.5em 1em 0.5em;
	justify-content: space-between;
	align-items: center;
}
.download-pdf-link:after {
	content: ' ';
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	height: 20px;
	width: 20px;
	background: transparent url(../img/icon/icon-download3.svg) center center/contain no-repeat;
}
.read-more-pdf:hover {
	padding-left: 36px;
	padding-right: 36px;
	letter-spacing: 0.1em;
}
.bg-white-95 {
	background-color: rgba(255,255,255, 0.95);
}
.bg-white-90 {
	background-color: rgba(255,255,255, 0.9);
}
.bg-white-80 {
	background-color: rgba(255,255,255, 0.8);
}
.sus-stats .sus-stats-single {
	padding: 24px;
	color: #ffffff;
	background-color: #66988d;
	margin: 12px 0;
}
.sus-stats .sus-stats-single .unit {
	display: inline;
}
.sus-stats .sus-stats-single:nth-child(even) {
	background-color: #5eaa95;
}

.highlight-boxes {
	overflow: hidden;
}
.highlight-boxes.horizontal {
	flex-direction: column;
}
.grid-sizer {
	width: 20%;
}
.highlight-boxes .highlight-box {
	position: relative;
}
.highlight-boxes .highlight-box:not(:last-of-type) {
	margin-bottom: 36px;
}
.highlight-boxes.horizontal .highlight-box {
	width: auto;
}
.highlight-box.inner-shadow {
	box-shadow: inset 8px 8px 10px rgba(0, 0, 0, 0.3);
}
.highlight-boxes .highlight-box img {
	display: block;
	width: 100%;
}
.highlight-boxes .highlight-box.col2 {
	width: 40%;
}
.highlight-boxes .highlight-box img.stat {
	max-width: 60%;
	max-height: 70%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.highlight-boxes .highlight-box img.stat.show {
	transform: translate(-50%, -50%) scale(1);
}
.highlight-boxes .highlight-box img.holdbox {
}

.highlight-boxes .highlight-box.navy {
	background-color: #29659d;
}
.highlight-boxes .highlight-box.blue {
	background-color: #2e6db4;
}
.highlight-boxes .highlight-box.light-blue {
	background-color: #7cc1ec;
}
.highlight-boxes .highlight-box.teal {
	background-color: #86cbe1;
}
.highlight-boxes .highlight-box.baby-blue {
	background-color: #aad9e9;
}
.highlight-title {
	padding: 0.5em 1em;
	background-color: #5c9488;
	color: #ffffff;
	text-align: center;
}
.financial .highlight-title {
	background-color: #587d9b;
}
.sustainability .highlight-title {
	background-color: #ca834c;
}
.social-media {
	text-align: center;
}
.social-media ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
}
.social-media ul li {
	margin: 0 18px;
}
.social-media ul li a {
	display: flex;
	align-items: center;
}
.social-media ul li a:before {
	content: ' ';
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	height: 20px;
	width: 20px;
}
.social-media ul li a.instagram:before {
	background: transparent url(../img/icon/icon-instagram.svg) center center/contain no-repeat;
}
.social-media ul li a.linkedin:before {
	background: transparent url(../img/icon/icon-linkedin.svg) center center/contain no-repeat;
}
.social-media ul li a.tiktok:before {
	background: transparent url(../img/icon/icon-tiktok.svg) center center/contain no-repeat;
}

.section-title {
    font-size: 2.3em;
    line-height: 1em;
    font-weight: var(--font-weight-black);
    text-align: center;
}
.tabs {
  width: 100%;
  max-width: 2048px;
  margin: 0 auto;
	text-align: center;
}

.tabs .tab-nav {
	width:80%;
	  margin:auto;
}

.tabs .tab-nav ul {
  display: flex;
  text-align: center;
  gap: 4px;
}

.tabs .tab-nav ul li {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  background: #999999;
  color: var(--color-white);
  line-height: 1.1em;
  padding: 0.7em 1em;
  flex-basis: 100%;
  margin: 0;
  justify-content: center;
}

.tabs .tab-nav ul li.proposition {
  background: #999999;
	padding:15px;
	font-weight:800;
	font-size:20px;
	
}
.tabs .tab-nav ul li.proposition .tab_icon1{
	padding-right:10px;
	font-weight:800;
	font-size:20px;
  width: 35px;
	
    height: 35px;
  background: transparent url('../img/icon/Edgenta Icon-04.png') no-repeat center center;
  background-size: contain;
 
	
	
}
.tabs .tab-nav ul li.proposition.current .tab_icon1{
  padding-right:10px;
  width: 35px;
    height: 35px;
	font-weight:800;
	font-size:20px;
  background: transparent url('../img/icon/Edgenta Icon-01.png') no-repeat center center;
  background-size: contain;
}
.tabs .tab-nav ul li.financial .tab_icon2{
	padding-right:10px;
  width: 35px;
    height: 35px;
	font-weight:800;
	font-size:20px;
  background: transparent url('../img/icon/Edgenta Icon-05.png') no-repeat center center;
  background-size: contain;
 
	
	
}
.tabs .tab-nav ul li.financial.current .tab_icon2{
  padding-right:10px;
  width: 35px;
    height: 35px;
	font-weight:800;
	font-size:20px;
  background: transparent url('../img/icon/Edgenta Icon-02.png') no-repeat center center;
  background-size: contain;
}
.tabs .tab-nav ul li.customer .tab_icon3{
	padding-right:10px;
  width: 35px;
    height: 35px;
	font-weight:800;
	font-size:20px;
  background: transparent url('../img/icon/Edgenta Icon-06.png') no-repeat center center;
  background-size: contain;
 
	
	
}
.tabs .tab-nav ul li.customer.current .tab_icon3{
  padding-right:10px;
  width: 35px;
    height: 35px;
	font-weight:800;
	font-size:20px;
  background: transparent url('../img/icon/Edgenta Icon-03.png') no-repeat center center;
  background-size: contain;
}
.hand_icon{

  background: transparent url('../img/icon/hand_icon.png') no-repeat center center;
  background-size: contain;

}
.tabs .tab-nav ul li.financial {
  background: #999999;
	font-weight:800;
	font-size:20px;
}
.tabs .tab-nav ul li.business {
  background: #999999;
	font-weight:800;
	font-size:20px;
}
.tabs .tab-nav ul li.customer {
  background: #999999;
	font-weight:800;
	font-size:20px;
}

.tabs .tab-nav ul li.proposition.current {
  background: #577087;
}
.tabs .tab-nav ul li.financial.current{
  background: #629abd;
}
.tabs .tab-nav ul li.business.current{
  background: #999999;
}
.tabs .tab-nav ul li.customer.current{
  background: #4d7581;
}

.tabs .tab-nav ul li a {
  display: block;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95em;
}

.tabs .tab-nav ul li.current {}

.tabs .tab-nav ul li.current a {}

.tabs .tab-content {
  position: relative;
  margin-top: var(--gap18);
	width:90%;
	margin:auto;
	text-align: left;
}

.tabs .tab-content .tab-content-single {}

.tabs .tab-content .tab-content-single:not(.proposition) {
  padding-top: var(--gap24);
}

.tabs .tab-content .tab-content-single .tab-title {
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  background-color: var(--KLCCP-Navy);
  color: #ffffff;
  padding: 0.6em 2em;
  position: absolute;
  left: 50%;
  min-width: 40%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.2em;
  line-height: 1.1em;
}

.tabs .tab-content .tab-content-single:not(.current) {
  position: absolute;
  opacity: 0;
  visibility: hidden;
	
}

.tabs .tab-content .tab-content-single.current {}

.chart-proposition {
  text-wrap: center;
  margin-left:20px;
  position: relative;
  max-width: 900px;

}
.chart-proposition img {
  display: block;
  width: 100%;
	
}
.chart-proposition .layer {
	
  position: absolute;
  top: 0;
  left: 0px;
  width: 95%;
  height: 95%;
}

.blue_background{
	background:#c5e0f1;
	border-radius: 15px;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:5px;
	padding-right:5px;
	margin-top:50px;
	margin-bottom:50px;

}

.white_box{
	margin-top:15px;
	padding-top:30px;
	padding-left:30px;
	padding-bottom:30px;
	background:white;
	height:100%;
}

.grey_background{
	background:#f5f5f5;
}

.white_box2{
	background:white;
	
	
	padding-left:15px;
	padding-right:15px;
	padding-top:5px;
	padding-bottom:5px;
}

.row.video {}

/* Videp */

.intro-video {
  width: 100%;
  height: auto;
}
.open-info {
	left:90%;
	margin-top:0px;
 width: 25px;
    height: 25px;
  background: transparent url('../img/icon/icon-strategy-plus.png') no-repeat center center;
  background-size: contain;
  position: absolute;
  cursor: pointer;
}
.open-info2 {
	
	margin-left:10px;
 width: 25px;
    height: 25px;
  background: transparent url('../img/icon/icon-strategy-plus.png') no-repeat center center;
  background-size: contain;
  position: absolute;
  cursor: pointer;
}

.sicon1 {
	
	margin-left:5px;
	margin-top:10px;
 width: 35px;
    height: 35px;
  background: transparent url('../img/sicon/1.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}

.sicon2 {
	
	margin-left:5px;
	margin-top:10px;
 width: 35px;
    height: 35px;
  background: transparent url('../img/sicon/2.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}
.sicon3 {
	
	margin-left:5px;
	margin-top:10px;
 width: 35px;
    height: 35px;
  background: transparent url('../img/sicon/3.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}
.sicon4 {
	
	margin-left:5px;
	margin-top:10px;
 width: 35px;
    height: 35px;
  background: transparent url('../img/sicon/4.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}
.sicon5 {
	
	margin-left:5px;
	margin-top:10px;
 width: 35px;
    height: 35px;
  background: transparent url('../img/sicon/5.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}
.sicon6 {
	
	margin-left:5px;
	margin-top:10px;
 width: 35px;
    height: 35px;
  background: transparent url('../img/sicon/6.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}

.open_icon {
	
	margin-left:10px;
	margin-top:10px;
 width: 25px;
    height: 25px;
  background: transparent url('../img/open.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}
.up_icon{
	 width: 25px;
    height: 25px;
  background: transparent url('../img/up_icon.png') no-repeat center center;
  background-size: contain;
  position: absolute;
}
.down_icon{
	 width: 25px;
    height: 25px;
  background: transparent url('../img/down_icon.png') no-repeat center center;
  background-size: contain;
  position: absolute;
}
.popupicon1{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-11.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}
.popupicon2{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-12.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}
.popupicon3{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-13.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}
.popupicon4{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-14.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}
.popupicon5{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-15.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}
.popupicon6{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-16.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}
.popupicon7{
	 width: 30px;
    height: 30px;
  background: transparent url('../img/popup/Edgenta Icon-17.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	
}


.close_icon {
	
	margin-right:50px;
	margin-top:25px;
 width: 25px;
    height: 25px;
  background: transparent url('../img/close.png') no-repeat center center;
  background-size: contain;
  position: absolute;
 
}

.float-container {
    border: 3px solid #fff;
    padding: 20px;
	
}
.float-child {
    width: 50%;
    float: left;
    padding: 20px;
    border: 2px solid red;
}  

.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
	
}

.custom-popup .custom-popup-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap);
}

.custom-popup .custom-popup-box {
  padding: 10px;
  max-width: 50%;
  max-height: 90%;
}
.custom-popup .custom-popup-box.frameless {
  padding: 0;
  max-width: 680px;
}
.custom-popup .custom-popup-box.fluid {
  max-width: 100%;
}
.custom-popup .custom-popup-box.limit {
  max-width: 1024px;
}

 .row .close-section {
  text-align: right;
  position: relative;
}
=.btn-close {
	 width: 25px;
    height: 25px;
  background: transparent url('../img/down_icon.png') no-repeat center center;
  background-size: contain;
  position: absolute;
	left:10%;
	
}




.custom-popup-close {
  display: inline-flex;
  font-weight: 400;
  gap: var(--gap9);
  align-items: center;
  line-height: 1em;
  position: absolute;
  right: var(--gap18);
  top: var(--gap18);
  color: #ffffff;
}
.custom-popup-close:before {
  content: ' ';
  display: block;
  width: 10px;
  height: 10px;
  background: transparent url('../img/icon-close-menu-white.svg') center center/contain no-repeat;
  background-color: var(--custom-error);
}
.custom-popup .custom-popup-box .custom-popup-title {
  padding-bottom: var(--gap18);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
}

.custom-popup .custom-popup-box .custom-popup-content {
  overflow-y: auto;
  max-height: calc(100vh - (var(--gap)*2));
  background-color: #ffffff;
}

.hidden-popup-content {
  display: none;
}

.value-popup {
  
}

.value-popup .text {
  font-size: 1em;
  line-height: 1.4em;
}
.section-title {
  font-size: 1.4em;
  line-height: 1em;
  font-weight: 800;
  background-color: #62c0c0;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6em 1em;
  width: 100%;
}
.section-title2 {
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 800;
  background-color: #6ba6c4;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6em 1em;
  width: 100%;
}
.section-title3 {
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 800;
  background-color: #6dabab;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6em 1em;
  width: 100%;
}
.section-title4 {
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 800;
  background-color: #52b9d5;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6em 1em;
  width: 100%;
}
.section-title5 {
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 800;
  background-color: #7386a2;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6em 1em;
  width: 95%;
}
.section-title6 {
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 800;
  
  color: #ffffff;
  text-align: right;
  text-transform: uppercase;
  text-align: right;
  padding: 0.6em 1em;
  width: 95%;
	opacity: 0;
}
.subtitle {
  font-weight: 800;
  color: black;
  display: flex;
  gap: 1em;
	font-size:24px;
	padding-left:35px;
	padding-bottom:10px;
	padding-top:5px;
  align-items: center;
}
.subtitle2 {
  font-weight: 800;
  color: #32668a;
	font-size:24px;
  display: flex;
  gap: 1em;
	padding-left:35px;
	padding-bottom:10px;
	padding-top:5px;
  align-items: center;
}
 .subtitle .bullet-num {
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  line-height: 2em;
  text-align: center;
  width: 1.8em;
  height: 1.8em;
  font-size: 1em;
  color: #ffffff;
}
.value-popup .subtitle .bullet-num:after {
  position: absolute;
  content: ' ';
  display: block;
  background-color: var(--KLCCP-Orange);
  border-radius: 8px;
  transform: rotateZ(45deg);
  transform-origin: center;
  width: 1.8em;
  height: 1.8em;
  color: #ffffff;
  top: 0%;
  left: 0%;
  z-index: -1;
}
.value-popup .subtitle .bullet-text {
  
}
.value-popup ul {
  list-style: disc;
  margin-left: 2em;
}
.value-popup li {
  list-style: disc;
}

.value-popup {
  background-color: #e0edf2;
  background-size: cover; 
}
.value-popup .small-note {
  font-size: 0.9em;
}

.row.vertical,
.flex.vertical {
  flex-direction: column;
  gap: var(--gap);
  align-items: start;
}

.flex.vertical.center {
  align-items: center;
  width: 100%;
}
.flex2 {
  display: flex;
  align-items: center;
}
.col2 {
  position: relative;
  flex-basis: 100%;
  z-index: 2;
}

.row2 {
  display: flex;
  gap: var(--gap);
  position: relative;
  padding: 15px;
  box-sizing: border-box;
}
.row2.nopad {
  padding: 0;
}
.row2.nogap,
.flex2.nogap {
  gap: 0;
}

.action{
	margin-top:20px;
	color:white;
	background-color:#336a8f;
	font-weight:700;
	
	font-size:20px;
	text-align:center;
	padding:15px;
	 border-radius: 5px;
	max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.cta{
	color:white;
}
.btn_close{
	position:absolute;
	cursor:pointer;
	left:72%;
	background-color:white;
	width:35px;
	height:28px;
	border-radius: 25px;
	text-align:center;
	padding-top:5px;
}

.btn-style{
	position:absolute;
	cursor:pointer;
	width:25px;
	height:25px;
	border-radius:25px; 
	text-align:center;
	top:10px;
	left:70%;
}

.section.downloads3 {
	background-color: #ffffff;	
}
.section.downloads3 .download-note {
	padding-top: 20px;
	font-weight: 600;
}
.section.downloads3 .download-note a {
	font-weight: bold;
	text-decoration: underline;
	text-underline-offset: 0.3em;
	color: #5ab7b6;
}