@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeueCyr-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeueCyr-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueCyr';
    src: url('../fonts/HelveticaNeueCyr-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeueCyr-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'HelveticaNeueCyr';
}

.black-overlay {
    display: none;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 10;
}

.back-to-top {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 15px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--seccondary-color);
    cursor: pointer;
    animation: backToTop 0.3s ease;
}

@keyframes backToTop {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-to-top i {
    font-size: 16px;
    color: var(--primary-color);
}
html {
    overflow-x: hidden;
}
body {
    --primary-color: #41AD49;
    --primary-color-hover: #5cce63;
    --text-color: #55565A;
    --seccondary-color: #DFF1DA;
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    background-color: white;
    z-index: 9;
	border-bottom: 1px solid #eef0f0;
	z-index: 25;
	
	-webkit-box-shadow: -77px 6px 20px -20px rgb(97, 97, 99);
-moz-box-shadow: -77px 6px 20px -20px rgb(97, 97, 99);
	box-shadow: -77px 6px 20px -20px rgb(97, 97, 99);
}
header .header-left {
    padding-left: 30px;
    margin-right: 30px;
}
header .header-left img {
    height: 100%;
    width: auto;
}
header .header-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    /*border-bottom: 1px solid #707070;*/
    padding-right: 30px;
}
header .header-right .artext {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 15px 0 10px 0;
    text-align: right;
}
header #wrapper {
    display: none;
}
header nav > ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}
header nav a[href="#"] {
    cursor: default;
}
header nav > ul li {
    list-style: none;
}
header nav > ul > li:not(header nav > ul > li:first-of-type) {
    padding-left: 15px;
}
header nav > ul > li {
    width: max-content;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    font-size: 12px;
}
header nav > ul > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    transition: 250ms;
}
header nav > ul > li > a > i {
    color: var(--primary-color);
    margin-left: 5px;
    transition: 250ms;
}
header nav .sub-menu-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: rgb(38,177,49);
    background: linear-gradient(121deg, rgba(38,177,49,1) 0%, rgba(65,173,73,1) 100%);
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transition: 300ms;
    transform-origin: top;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    pointer-events: none;
}
header nav .sub-menu-content > li a {
    display: block;
    padding: 10px 15px;
    transition: 200ms;
    color: white;
    /*text-transform: capitalize;*/
	text-transform: none;
    text-decoration: none;
}
header nav .sub-menu-content > li a:hover {
    background-color: #42CB4C;
    cursor: pointer;
}
header nav > ul > li:hover > a {
    color: var(--primary-color);
}
header nav > ul > li:hover > a > i {
    transform: rotate(180deg);
}
header nav > ul > li:hover .sub-menu-content {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
header nav .sub-menu-content ul  {
    margin: 0;
    padding: 0;
}
header nav .sub-menu-content ul a{
    padding: 10px 15px 10px 25px;
}
header nav .sub-menu-content ul ul a{
    padding: 10px 15px 10px 40px;
}

main {
    margin-top: 100px;
    padding: 50px 0;
}
main.home {
    padding: 0;
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
	position: relative;
}
.page-header .page-titles h4 {
    font-size: 16px;
    transform: translate(uppercase);
    margin-bottom: 5px;
}
.page-header .page-titles h1 {
    font-size: 36px;
    margin: 0;
}
.page-header .page-actions {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.page-header .page-actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-left: 5px;
    transition: 200ms;
    text-decoration: none;
    color: var(--primary-color);
	background-color: #FFFFFF;
}
.page-header .page-actions a:hover {
    background-color: var(--seccondary-color);
    border: 1px solid var(--seccondary-color);
}
.page-header .page-actions img {
    width: 100%;
    height: auto;
}


.buspage .page-titles{ padding: 130px 30px 30px 30px;
position: absolute;
top: 100%;
	left: 10%;
z-index: 1;
background-color: #fff;}



.buspage .page-header .page-actions {
  display: flex;
  align-items: center;
  margin-left: 15px;
  position: absolute;
  right: 0;
	top: -10px;
}





/* Tooltips */
a[tooltip] {
    position: relative;
}

a[tooltip]::after {
    content: attr(tooltip);
    position: absolute;
    width: max-content;
    max-width: 250px;
    text-align: center;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%) scale(0);
    pointer-events: none;
    font-size: 10px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: white;
    padding: 7.5px 12px;
    z-index: 8;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    transition: 300ms;
}

a[tooltip]:hover::after {
    visibility: visible;
    top: calc(100% + 10px);
    transform: translateX(-50%) scale(1);
    opacity: 1;
}
/* End Tooltips */


/* Accordion Style */
.accordion .sub-menu-content {
    display: none;
    padding: 12px 15px;
}
  
.cd-panel-content .sub-menu-content {
    display: block;
}
.accordion .sub-menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    border-top: 1px solid lightgray;
    text-decoration: none;
}
  
.cd-panel-content .sub-menu-title {
    border: none;
}
.accordion .sub-menu-title.active {
    background-color: rgb(243, 243, 243);
}
.accordion .sub-menu-title:hover {
    background-color: rgb(243, 243, 243);
}
.accordion .sub-menu-title h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color:var(--primary-color);
}
.accordion .sub-menu-title i {
    font-size: 20px;
    color:var(--primary-color);
}
.accordion .fa-angle-down {
    transition: 300ms;
}
.accordion .fa-angle-down.close {
    transform: rotate(180deg);
    color:var(--primary-color);
}
.cd-panel-content .fa-angle-down {
    display: none;
}
/* Accordion Style End*/

/* Read More */
a.read-more {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: 200ms;
    padding: 5px 10px;
    z-index: 1;
}
a.read-more::after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    margin-left: 7.5px;
}
a.read-more::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: 400ms;
    z-index: -1;
}
a.read-more:hover {
    color: white;
}
a.read-more:hover::before {
    width: 100%;
}

/* End Read More */

/* BOD Styles */
.bod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin: 15px 0 30px 0;
    grid-gap: 25px;
}
.bod-grid .bod {
    height: 100%;
}
.bod-grid .img-container {
    overflow: hidden;
    margin-bottom: 15px;
}
.bod-grid img {
    width: 100%;
    height: auto;
    transition: 250ms;
}
.bod-grid .bod-header > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bod-grid .bod-header:hover img{
    transform: scale(1.1);
}
.bod-grid .bod.active img {
    transform: scale(1.1);
}
.bod-grid .bod-header {
    cursor: pointer;
}
.bod-grid .bod-header > div h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px 0 0;
    text-transform: capitalize;
    color: var(--primary-color);
}
.bod-grid .bod-header p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}
.bod-grid i {
    color: var(--primary-color);
    transition: 250ms ease;
}
.bod-grid .bod.active i {
    transform: rotate(180deg);
}
.bod-grid .bod-content {
    display: none;
    padding-top: 20px;
}
/* End BOD Styles */


.section2  {
	background-color:#7a5454;
	background-image: url("../images/bg.jpg"); background-position: center center; background-size: cover;padding: 100px 0 !important;
}

.section2 h2 {
    font-size: 36px;
    color:#FFFFFF;
    text-transform: capitalize;
}

.section2 h2 span{
    font-size: 36px;
    color:#FFFFFF;
    text-transform: Lowercase;
}

.section2 p {
    color:#FFFFFF;
	  font-size: 20px;
  line-height: 1.3;
}

.section2 p, .section3 p {
    font-size: 18px;
}



.section3  {padding: 100px 0px;
}


.section3 p {font-size: 16px; line-height: 1.4; margin-bottom: 15px; font-weight: 400; }
.section3 h2 {font-size: 22px;
color: #FFFFFF;
text-transform: uppercase;
font-weight: 600;
margin: 15px 0px 10px 0px;
padding: 0px;
line-height: 1.5; }







.section4 .img-container {
    position: relative;
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
    overflow: hidden;
}
.section4 .img-container img {
    width: 100%;
    height: auto;
    transition: 300ms;
}
.section4 .img-container:hover img {
    transform: scale(1.2);
    z-index: -1;
}
.section4 .img-container h4 {
    background-color: var(--primary-color);
    font-size: 16px;
    padding: 10px 15px;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    line-height: 1;
    z-index: 1;
}
.section4 p {
    min-height: 160px;
background-color: white;
margin-top: -50px;
z-index: 10;
position: relative;
width: 80%;
padding: 15px;
margin-left: 10px;
font-size: 18px;
line-height: 1.4;
}
.section4 .company_logos {
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid #D9D9D9;
	min-height: 170px;
}
.section4 .company_logos img{
    width: 100%;
    height: auto;
}

.section5 .home-msg {
    display: flex;
    align-items: stretch;
    min-height: 350px;
}
.section5 .img-container {
    position: relative;
    width: 40%;
}
.section5 .img-container::after {
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: rgb(241,241,241);
    background: linear-gradient(90deg, rgba(241,241,241,0) 17%, rgba(236,237,232,1) 79%);
}
.section5 .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% 0;
}
.section5 .home-msg .msg {
    width: 60%;
    position: relative;
    background-color: #ecede8;
}
.section5 h2 {
    font-size: 30px;
    text-transform: capitalize;
}
.section5 p {
    font-size: 28px;
line-height: 1.4;
}

.grp-snapshot .grid-2 .img-container {
    margin: -15px -15px 15px -15px;
    position: relative;
}
.grp-snapshot .grid-2 .img-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: left;
}
.grp-snapshot .grid-2 .img-container h4 {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    padding: 5px 7.5px;
    line-height: 1;
    color: white;
    font-size: 16px;
}
.grp-snapshot .grid-2 .img-container p {
    font-size: 14px;
    padding: 10px;
    margin: 0;
}
.grp-snapshot .grid-2 li, 
.grp-snapshot .grid-2 p,
.grp-snapshot .grid-3 p,
.grp-snapshot .grid-3 li {
    font-size: 14px;
}
.grp-snapshot .comp_logos {
    height: 75px;
    width: 100%;
    object-fit: contain;
}
.grp-snapshot .down-line {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin: 10px 50px;
}
.grp-snapshot .down-line .left-line, .grp-snapshot .down-line .right-line {
    height: 30px;
    width: 1px;
    background-color: var(--primary-color);
}
.grp-snapshot .down-line .middle-line {
    height: 1px;
    width: 100%;
    background-color: var(--primary-color);
}
.grp-snapshot .down-line i {
    position: absolute;
    bottom: -12.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-model {
    border: 1px solid var(--primary-color);
}
.bs-model-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
}
.bs-model-row img {
    width: 80px;
    height: auto;
}
.bs-model-row ul li {
    font-size: 14px;
}
.bs-model-row > div {
    padding: 15px;
    border-bottom: 1px solid var(--primary-color);
}
.bs-model-row > div:nth-child(1){
    background-color: var(--seccondary-color);
}
.bs-model-row > div:nth-child(3){
    position: relative;
    border-bottom: none;
    border-left: 1px solid var(--primary-color);
}
.bs-model-row > div:nth-child(4){
    border-left: 1px solid var(--primary-color);
    background-color: var(--seccondary-color);
}
.bs-model > .bs-model-row > div:nth-child(3) ul {
    display: none;
}
.bs-model > .bs-model-row:nth-child(1) > div:nth-child(3) ul{
    display: block;
}
.bs-model-row > div .outputs {
    position: absolute;
    padding-right: 35px;
}
.bs-model-row > div:nth-child(3) ul li{
    margin-bottom: 20px;
}
.business-model .section-titles {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
}
.business-model .section-titles span {
    background-color: var(--primary-color);
    font-size: 14px;
    color: white;
    font-weight: 500;
    padding: 5px 10px;
}
.business-model .bs-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    grid-gap: 5px;
    margin-top: 15px;
}
.business-model .bs-footer p {
    font-size: 14px;
    color: white;
    background-color: var(--primary-color);
    padding: 5px;
    margin: 0;
    font-weight: 500;
    text-align: center;
}
.bs-model-row > div {
    position: relative;
    padding-right: 35px;
}
.bs-model-row > div::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 5px 7.5px;
    font-size: 14px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bs-model-row > div:nth-child(3):not(.bs-model > .bs-model-row:nth-child(1) > div:nth-child(3))::before {
    display: none;
}
.bs-model-row > div:nth-child(4)::before {
    display: none;
}


.business-img {
    position: relative;
    margin-bottom: 30px;
}
.business-img > img {
    width: 100%;
    height: auto;
}
.business-img .text-box{
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    padding: 30px;
    width: 40%;
}

.leadership-msg {
    position: relative;
    margin-bottom: 30px;
}
.leadership-msg p {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 30px 50px 30px 0;
    width: 40%;
    font-size: 26px;
}
.leadership-msg img {
    width: 100%;
    height: auto;
}

.year-under-review > div {
    width: 50%;
    margin-bottom: 15px;
}
.year-under-review > div .green-box {
    margin-right: 15px;
}

.strategic-pil img {
    width: 70px;
    height: auto;
    margin-left: 20px;
}

footer {
    margin-top: auto;
}
footer .footer {
    padding: 50px 0;
    width: 100%;
    background-color: #616163;
}
footer .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer p {
    color: white;
    font-size: 12px;
    margin: 0;
}
footer .footer p a {
    text-decoration: none;
    color: rgb(236, 236, 236);
}
footer .footer a img {
    width: 300px;
    height: auto;
}


.download-table {
    display: flex;
    justify-content: flex-end;
}
.download-table .exportToExcel {
    font-size: 14px;
    text-decoration: none;
    color: var(--primary-color);
    margin: 10px 0;
    font-weight: 600;
}
.download-table .exportToExcel i {
    margin-right: 2.5px;
    color: var(--primary-red);
}





/* parallax Styles */


.lg-green {
position: absolute;
left: -100px;
top: 0;
height: 100%;
}


.lg-purple {
position: absolute;
right: -100px;
bottom: -270px;
}


.lg-inner {
position: absolute;
right: 0;
top: 0;
}





.iconbox1{ border: 1px solid #41AD49; border-radius: 10px; display: grid; height: 100%; grid-template-columns: 200px 1fr; overflow: hidden;}


.iconbox1inner{transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease; padding: 10px;
border-radius: 10px;
margin: 10px;}

.iconbox1inner:hover {
  z-index: 1;
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
}

.cornerbox {
text-align: center !important;
background-color: var(--primary-color);
 border-top-right-radius: 10px;	
 border-bottom-right-radius: 10px;	
	padding-bottom: 15px;
	
}


.iconbox2{ border: 1px solid #41AD49; border-radius: 10px; display: grid; height: 100%; grid-template-columns: 200px 1fr; overflow: hidden;}
.iconbox2inner{display: flex; flex-wrap: wrap; }
.iconbox2inner div{flex: 20%;
padding: 10px;
transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease;
border-radius: 10px;
margin: 10px;} 

.iconbox2inner div:hover {
  z-index: 1;
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
}


@media(max-width: 1366px){
	.iconbox1{  grid-template-columns: 170px 1fr; overflow: hidden;}

	.iconbox2{ grid-template-columns: 170px 1fr; overflow: hidden;}


}



@media(max-width: 991px){
	
.iconbox1{ border: 1px solid #41AD49; border-radius: 10px; display: grid; height: 100%; grid-template-columns: 1fr;}

.iconbox2{ border: 1px solid #41AD49; border-radius: 10px; display: grid; height: 100%; grid-template-columns:  1fr;}
.iconbox2inner{display: flex; flex-wrap: wrap; flex-direction: row; }
.iconbox2inner div{flex: 100%; padding: 10px;}
}



#section10  {
position: absolute;
bottom: 8%;
left: 50%;
z-index: 20;

}


#section10 a {
  padding-top: 60px;
}
#section10 a span {
  position: relative;
  bottom: 0px;
	display: inline-block;
  left: 0%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #616163;
  border-radius: 50px;
  box-sizing: border-box;
	text-align: center;
}
#section10 a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #616163;
  border-radius: 100%;
  -webkit-animation: ryb 2s infinite;
  animation: ryb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes ryb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ryb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

html {
  scroll-behavior: smooth;
}



@media only screen and (max-width: 1400px) {


#section10 {
    position: absolute;
    bottom: 5%;
    left: 50%;
    z-index: 20;
}

}



@media only screen and (max-width: 1366px) {


#section10 {
    position: absolute;
    bottom: 7%;
    left: 50%;
    z-index: 20;
}

}


@media only screen and (max-width: 1199px) {


#section10 {
    position: absolute;
    bottom: 12%;
    left: 50%;
    z-index: 20;
}

}



@media only screen and (max-width: 991px) {
	
	#section10  {
  position: absolute;
  bottom: 7%;
	left: 50%;

}

	
	
}




@media only screen and (max-width: 767px) {
	
		#section10  {
		display: none;


}


	
	
}




html {
  scroll-behavior: smooth;
}



.hmetext{position: relative;
top: 200px;
z-index: 10;
text-align: center;
color: #54565a;
font-size: 55px;
font-weight: 800;
margin-bottom: 10px;
line-height: 1.5;
	
}




