/* Base Reset and General Styles */
*::selection {
  background: #CCD9E4;
  color: #000;
}
*::-moz-selection {
  background: #CCD9E4;
  color: #000;
}
::-webkit-scrollbar {
  display: none;
}
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
  font-family: "Fira Sans", serif;
  color: #1C1C26;
}
.img-responsive {
    max-width: 100%;
}

*:not(.mega-menu),*:not(#pie1),:not(#pie2),*:not(svg),*:not(path),*:not(.accordion-content),*:not(.accordion-header),*:not(.leader-content-row),*:not(.leader-content) {
  scroll-behavior: smooth;
  transition: .4s linear all;
  -moz-transition: .4s linear all;
  -webkit-transition: .4s linear all;
  -ms-transition: .4s linear all;
}
body::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
}
@-moz-document url-prefix() {
  html {
    scrollbar-width: none;
  }
}
.clearfix:after, .clearfix:before {
  display: table;
  content: " "
}
.clearfix:after {
  clear: both
}
html {
  position: absolute;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none; /* IE 11 */ width: 100%;
  scroll-behavior: smooth;
}
body {
  overflow: auto;
  line-height: 1.6;
  height: 100%;
  scrollbar-width: none;
  scroll-behavior: smooth;
  margin: 0;
  color: #1C1C26;
  font-family: "Fira Sans", serif;
}	
p{ margin: 0 0 15px 0;}	
	
.obj-c{text-align: center; margin: 0 auto;}
ul.dash-list {}

ul.more-list li ul.dash-list {
    list-style: none;
    margin-bottom: 15px;
}

ul.more-list li ul.dash-list li {
    position: relative;
    padding-left: 18px;
}

ul.more-list li ul.dash-list li:after {
    content: '-';
    position: absolute;
    left: 0;
    top: 0px;
}

ul.more-list {
    margin-bottom: 15px;
    margin-top: 0;
}

.no-marginB {
    margin-bottom: 0!important;
}
.no-paddingL {
    padding-left: 0!important;
}

/*PAGE LOADER*/

.loader-container{width: 100%; height: 100vh; position: fixed; background: transparent; top: 0; left: 0; z-index: 999999; display: block;}
.loader-container:before{content: ''; background: rgba(6, 65, 129, 1); width: 50%; left: 0; top: 0; transition: 1s all linear; position: absolute; height: 100%; display: block;}
.loader-container:after{content: ''; background: rgba(6, 65, 129, 1); width: 50%; right: 0; top: 0; transition: 1s all linear; position: absolute; height: 100%; display: block;}

.loader-container.closed{width: 100%;height: 100vh;position: fixed;background: transparent; -webkit-animation: hide 2s linear 1;  animation: hide 2s linear 1;  -webkit-animation-fill-mode: forwards;  animation-delay: 1s; }
.loader-container.closed:before{width: 0%;transition: 1s all linear;}
.loader-container.closed:after{width: 0%;transition: 1s all linear;}

@-webkit-keyframes hide {
  0% { display: block; z-index: 999; }
  100% { display: none; z-index: -100; }
}

@keyframes hide {
   0% { display: block; z-index: 999; }
  100% { display: none; z-index: -100; }
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  background: linear-gradient(#671c78, #064181, #1970b5, #1281ae, #19a1d5, #1bb0bf, #61af58, #808080);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  overflow: hidden;
  background-repeat: no-repeat;
  }

.loader:after{ content: ''; width: 130px; height: 130px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: rgba(6, 65, 129, 1); border-radius: 50%; }



@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



@media (min-aspect-ratio: 16/9) {
  .videoBG > video {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .videoBG > video {
    width: 300%;
    left: -100%;
  }
}
@supports (object-fit: cover) {
  .videoBG > video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}	
	
	
	
.home-top-banner {
  min-height: 100vh;
  z-index: 1;
  position: relative;
}

article {
  max-width: 1660px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 20;
  position: relative;
}

/* VIDEO BACKGROUND */
#videoContainer {
  position: relative;
  opacity: 1;
  display: block;
  margin: 0;
  padding: 0px;
  border: 0;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: all 0.5s ease;
}
.videoBG {
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
}
.videoBG > video {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  transition: all .5s ease;
}

/* Position the main content over the video */
.home-top-banner article {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  height: 100vh;
  flex-wrap: wrap;
}

/* SLIDER CONTAINER */
.slider-container {
  position: relative;
  width: 100%;
  height: auto; /* slides can expand based on content */
  flex-basis: 100%;
}

/* Each slide is hidden by default. Only .active is shown. */
.slide {
  display: none;
  position: relative;
}
.slide.active {
  display: block;
}

/* TEXT CONTENT WITHIN A SLIDE */
.banner-cont {
  max-width: 40%;
  position: relative;
}
.banner-cont h1 {
  font-size: 90px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 180px;
  color: #fff;
}
.banner-cont p.title {
  color: #fff;
  padding-bottom: 0;
}
.banner-cont p {
  color: #fff;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}


/* BULLETS (banner-row) */
.banner-row {
  display: flex;
   /* adjust as needed */
  gap: 20px;
  flex-basis: 100%;
  height: fit-content;
  align-self: flex-end;
}
.banner-row.bullets-row {
  margin-bottom: 30px; /* your original margin for bullets */
}
.banner-row .col {
  flex-basis: 33.33%;
  cursor: pointer;
}
.banner-row .col p {
  color: #fff;
  padding-top: 20px;
  border-top: 1px solid #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.banner-row .col:hover p {
  color: #dedede;
}
/* Make the active bullet stand out (optional) */
.bullet.active p {
  color: #000; /* some highlight color */
  border-top-color: #000;
}

/* PREV/NEXT BUTTONS */
.slider-nav {
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  justify-content: space-between;
  width: 105%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-nav button {
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
  padding: 20px 20px;
  border-radius: 50%;
  font-size: 16px;
}
.slider-nav button:hover {
  background: rgba(255,255,255,0.25);
}
button.prev-btn {
    position: relative;
}

button.next-btn {
    position: relative;
}

button.prev-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(135deg);
    color: #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    width: 10px;
    height: 10px;
}

button.next-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(135deg);
    color: #000;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    width: 10px;
    height: 10px;
}

.row{ display: flex;}

.diff-row {
}

.diff-row .img-bg-col {flex-basis: 30%;border-radius: 15px;background: #7D8C66;}

.diff-row .diff-cont-col {
    margin-left: 150px;
    flex-basis: 55%;
}

.diff-row .img-bg-col img {
    max-width: 100%;
    border-radius: 15px;
    margin: 60px -60px -60px 60px;
}
section.more-section p.title {
    padding-left: 35px;
    color: #fff;
    margin-bottom: 45px;
}
section.difference {
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
}
section.difference:after {
    content: '';
    width: 22%;
    border-bottom: 1px solid #65427B;
    position: absolute;
    left: 53%;
    transform: translateX(-50%);
    bottom: 0;
}
.row-diffs {
    position: relative;
    padding-left: 60px;
}

.row-diffs .diffs-col {
    flex-basis: 25%;
    position: relative;
    z-index: 2;
}

.row-diffs:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 142px;
    background: #EBE6F5;
    border-radius: 30px;
    bottom: -20px;
    left: 0;
}

.diff-row .diff-cont-col > h2 {
    font-size: 60px;
}

.diff-row .diff-cont-col > p {
    color: #5A5A5A;
    font-size: 22px;
    max-width: 70%;
    margin-bottom: 60px;
}




.row-diffs .diffs-col .img-block {
    position: relative;
}

.row-diffs .diffs-col .img-block img {
    position: relative;
}

.row-diffs .diffs-col:hover .img-block img {  
-webkit-animation: bounce .7s linear infinite;
animation: bounce .7s linear infinite;
}








@-webkit-keyframes bounce {
  0% { top:2px; }
  50% { top:-8px; }
  100% { top:2px; }
}

@keyframes bounce {
  0% { top:2px; }
  50% { top:-8px; }
  100% { top:2px; }
}


.diff-row .img-bg-col:hover {
    margin: 60px -60px -60px 60px;
}

.diff-row .img-bg-col:hover img {
    margin: -60px 60px 60px -60px;
}


.btn-alt:link,
.btn-alt:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 35px;
  position: relative;
  color: #FFF;
  background: #1C1C26;
  font-size: 14px;
}

.btn-alt:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-alt:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-alt::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: #1C1C26;
}


.btn-alt:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 35px;
  position: relative;
  color: #1C1C26;
  background: #fff;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: #fff;
}


.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-animated {
  -webkit-animation: moveInBottom 5s ease-out;
          animation: moveInBottom 5s ease-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.why-cont-block {
    background: #EBE6F5;
    border-radius: 15px;
    position: relative;
    padding: 60px;
    max-width: 52%;
}

.why-cont-block img {
    position: absolute;
    left: 90%;
    top: -150px;
}

.why-cont-block p {
    font-size: 16px;
    max-width: 80%;
}

.why-cont-block p.intro {
    font-size: 30px;
}
section.why {
    margin: 60px 0;
}

section.services {
    background: #1C1C26;
    margin-top: 120px;
    padding-top: 60px;
}

section.services article {
    padding: 10px 30px;
}

section.services article p.section-title {
    color: #fff;
}

section.services article p.intro {
    color: #fff;
    font-size: 30px;
    max-width: 55%;
    font-weight: 600;
    margin-bottom: 180px;
}

.service-row {
    margin-top: 120px;
    margin-bottom: 120px;
}

.service-row .img-col {
    position: relative;
    flex-basis: 45%;
}

.service-row .img-col img {
    border-radius: 20px;
    max-width: 100%;
    position: relative;
    z-index: 0;
}

.service-row .img-col img:nth-of-type(2) {
    position: absolute;
    top: -90px;
    right: -180px;
    z-index: 1;
}

.service-row .list-col {
    flex-basis: 55%;
    padding-left: 14%;
    box-sizing: border-box;
}

.service-row .list-col ul.list {
    list-style: none;
    padding-left: 0;
    color: #fff;
    box-sizing: border-box;
}
.service-row .list-col a.btn {margin-top: 30px;margin-left: 30px;}
.service-row .list-col ul.list li {
    font-size: 22px;
    margin-bottom: 15px;
    padding: 15px 40px;
    border-radius: 30px;
    line-height: 1;
    
}





section.insights {
    padding-bottom: 30px;
    padding-top: 90px;
}

section.insights article {}

section.insights article p.title {}

section.insights article p.title {
    margin-bottom: 60px;
}

section.insights article .img-crossover {
    position: relative;
    padding-bottom: 17%;
}

section.insights article .img-crossover img {
    max-width: 100%;
    border-radius: 15px;
}

section.insights article .img-crossover .cont-col {
    border-radius: 15px;
    background: #fff;
    padding: 60px;
    position: absolute;
    top: 34%;
    width: 50%;
    left: 5%;
    box-shadow: 1px 1px 10px #ccc;
}

section.insights article .img-crossover .cont-col h3 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    margin-top: 15px;
}

section.insights article .img-crossover .cont-col p {margin-bottom: 30px;}


section.stories {
    margin-bottom: 90px;
    padding-bottom: 90px;
}

section.stories article {}

section.stories article p.title {
    margin-bottom: 60px;
}

section.stories article .row-stories {
    gap: 90px;
}

section.stories article .row-stories .story-col {
    flex-basis: 45%;
    box-shadow: 1px 1px 10px #ccc;
    border-radius: 15px;
}

section.stories article .row-stories .story-col .img-block {
    overflow: hidden;
    border-radius: 15px;
}

section.stories article .row-stories .story-col .img-block:hover img{
    transform: scale3d(1.2, 1.2, 1.2);
}

section.stories article .row-stories .story-col .img-block img {
    max-width: 100%;
    border-radius: 15px;
    display: block;
}

section.stories article .row-stories .story-col .cont-block {
    padding: 15px;
}

section.stories article .row-stories .story-col .cont-block h4 {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.1;
    margin-top: 10px;
}

section.stories article .row-stories .story-col .cont-block p {
    font-weight: 300;
}




section.insight {
    margin-bottom: 90px;
    padding-bottom: 90px;
}

section.insight article {}

section.insight article p.title {
    margin-bottom: 60px;
}

section.insight article .row-insight {
    gap: 90px;
	flex-wrap: wrap;
}

section.insight article .row-insight .insight-col {
    flex-basis: 45%;
    box-shadow: 1px 1px 10px #ccc;
    border-radius: 15px;
}

section.insight article .row-insight .insight-col .img-block {
    overflow: hidden;
    border-radius: 15px;
}

section.insight article .row-insight .insight-col .img-block:hover img{
    transform: scale3d(1.2, 1.2, 1.2);
}

section.insight article .row-insight .insight-col .img-block img {
    max-width: 100%;
    border-radius: 15px;
    display: block;
}

section.insight article .row-insight .insight-col .cont-block {
    padding: 15px;
}

section.insight article .row-insight .insight-col .cont-block h4 {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.1;
    margin-top: 10px;
}

section.insight article .row-insight .insight-col .cont-block p {
    font-weight: 300;
}





/* Wrapper that contains both left and right sections */
.contact-wrapper {
  display: flex;
  flex-direction: row;
  padding: 50px;
  background:url(../img/contact-form-bg.jpg);
  background-size: cover;
  border-radius: 28px;
  margin-top: -35%;
}

/* Left side styling */
.contact-left {
  flex: 1;
  padding-right: 50px;
}

.contact-left h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.contact-left p {
  font-size: 1.2em;
  color: #fff;
}

/* Right side styling */
.contact-right {
  background-color: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  flex-basis: 45%;
}

#contactForm label {
  width: 100%;
  margin-bottom: 5px;
  color: #fff;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  background: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
#contactForm input::placeholder, #contactForm textarea::placeholder{color:transparent;}
#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
}

/* Submit button styling */
button[type="submit"] {
  background-color: #FFFFFF;
  color: #1C1C26;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #cccccc;
}

.contact-right #contactForm .col {
    flex-basis: 50%;
}

.contact-right form#contactForm .row {
    gap: 60px;
}


/* Contact Page Styles (moved from inline styles) */
section.contact-head {
  background: #6B5BA6 url('../img/services-top.png');
  min-height: 350px;
  background-size: cover;
  padding: 60px 0 1px;
}
section.contact-head h3 {
  color: #FFF;
  margin: 0;
  font-size: 50px;
  margin-top: 120px;
  font-weight: 300;
}
section.contact-section {
  padding: 0 0 30px 0;
}
section.contact-section article {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.contact-map {
  flex-basis: 60%;
  min-width: 300px;
  box-sizing: border-box;
}
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
}
.contact-info {
  flex-basis: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.contact-info h4 {
  margin-top: 0;
  font-size: 24px;
}
.contact-info address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact-info p {
  margin: 0 0 10px 0;
  line-height: 1.6;
}
.contact-info a {
  color: #007BFF;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Mobile Menu Styles (for header trigger) */
.menu-trigger {
  display: none;
  cursor: pointer;
}
.hamburger {
  font-size: 28px;
  padding: 10px;
}




.alerts-wrapper {
  display: flex;
  flex-direction: row;
  padding: 50px;
  background:url(../img/contact-form-bg.jpg);
  background-size: cover;
  border-radius: 15px;
  margin-top: 5%;
}

/* Left side styling */
.alerts-left {
  flex: 1;
  padding-right: 50px;
}

.alerts-left h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.alerts-left p {
  font-size: 1.2em;
  color: #fff;
}

/* Right side styling */
.alerts-right {
  background-color: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  flex-basis: 45%;
}

#alertsForm label {
  width: 100%;
  margin-bottom: 5px;
  color: #fff;
}

#alertsForm input,
#alertsForm textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  background: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
#alertsForm input::placeholder, #alertsForm textarea::placeholder{color:transparent;}
#alertsForm input:focus,
#alertsForm textarea:focus {
  outline: none;
}

/* Submit button styling */
button[type="submit"] {
  background-color: #FFFFFF;
  color: #1C1C26;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #cccccc;
}

.alerts-right #alertsForm .col {
    flex-basis: 50%;
}

.alerts-right form#alertsForm .row {
    gap: 60px;
}







footer {
    background: #1C1C26;
    padding-top: 20%;
    margin-top: 10%;
    position: relative;
}

.footer-row {
    display: flex;
    border-bottom: 1px solid #fff;
}

.footer-row .logo-col {
    padding: 90px;
    border-right: 1px solid #fff;
    flex-basis: 58%;
    box-sizing: border-box;
}

.footer-row .nav-col {
    flex-basis: 42%;
    padding: 60px 30px;
    box-sizing: border-box;
}

.footer-row .logo-col img {
    max-width: 100%;
}

.footer-row .nav-col ul.nav-list {
    list-style: none;
}

.footer-row .nav-col ul.nav-list li {
    color: #fff;
    margin-bottom: 8px;
}

.footer-row .nav-col ul.nav-list li a {
    color: #fff;
    text-decoration: none;
}

.bot-row {
    color: #fff;
    padding: 15px 0px;
}

.bot-row a{
    color: #fff;
}

header {
    position: fixed;
    z-index: 99;
    background: #fff;
    width: 100%;
    top: 0;
    border-radius: 0 0 40px 40px;
}

header article {
    margin: 0 auto;
    max-width: 100%;
    padding: 5px 30px;
}

header article nav {
    display: flex;
    justify-content: space-between;
}

header article nav .logo {
    padding: 5px;
}

header article nav .nav {}

header article nav .nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    gap: 15px;
}

header article nav .nav 
ul li {
    border-radius: 33px;
    padding: 5px 30px;
    border: 1px solid #fff;
}

header article nav .nav li a {
    color: #1C1C26;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 200;
}

header article nav .nav 
ul li:hover {
    background:#65427B;
    border: 1px solid #65427B;
}

header article nav .nav li:hover a {
    color: #fff;
   
}

header article nav .nav ul li:last-of-type {
    background: #1C1C26;
    border-radius: 33px;
    padding: 5px 30px;
    color: #FFFFFF;
    border: 1px solid #1C1C26;
}

header article nav .nav ul li:last-of-type a {
    color: #fff;
}

header article nav .nav ul li:last-of-type:hover {
    background: #fff;
    color: #65427B;
    border: 1px solid #65427B;
}

header article nav .nav ul li:last-of-type:hover a {
    color: #65427B;
}


.services-head {
  background: #6B5BA6 url("../img/services-top.png");
  background-size: cover;
  min-height: 350px;
  padding: 1px;
}

.services-head h3{color: #fff;font-size: 80px;margin-top: 120px;font-weight: 300;}

section.research-section {
    border-radius: 45px 45px 0 0;
    margin-top: -45px;
    background: #fff;
    padding-top: 90px;
    margin-bottom: 30px;
    padding-bottom: 90px;
    position: relative;
}

.research-row {
    gap: 90px;
}

.research-section .img-col {
    position: relative;
}

.research-section .img-col > img {
    border-radius: 15px;
}

.research-section .img-col .top-5 {
    background: #1C1C26;
    padding: 15px;
    box-sizing: border-box;
    max-width: 70%;
    text-align: center;
    margin: -203px auto 0 auto;
    position: relative;
    border-radius: 15px;
}

.research-section .img-col .top-5 h4 {
    color: #fff;
    font-size: 50px;
    line-height: 1;
    margin: 20px 0 30px 0;
}

.research-section .img-col .top-5 p {
    color: #fff;
    max-width: 60%;
    margin: 15px auto;
}

.research-row .cont-col {
    flex-basis: 50%;
}

.research-row .cont-col h4 {
    font-size: 30px;
    margin-bottom: 20px;
}

.research-row .cont-col > p {}

.research-row .cont-col .research-block {border-radius: 15px;background: #EBE6F5;}

.research-row .cont-col .research-block .esg-row {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid #fff;
}

.research-row .cont-col .research-block .esg-row .letter-col {
    flex-basis: 25%;
}

.research-row .cont-col .research-block .esg-row .def-col {
    flex-basis: 75%;
    align-content: center;
    padding-right: 31%;
}

.research-row .cont-col .research-block .cont-row {
    padding: 30px 60px;
    position: relative;
}

.research-row .cont-col .research-block .cont-row > p {
    max-width: 60%;
}

.research-row .cont-col .research-block .cont-row .popout {
    background: #1C1C26;
    position: absolute;
    right: -20%;
    bottom: 14px;
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    max-width: 43%;
}

.research-row .cont-col .research-block .cont-row .popout big {
    color: #fff;
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
}

.research-row .cont-col .research-block .cont-row .popout p {
    color: #fff;
    margin: 10px 0;
    font-weight: 500;
}

.research-row .cont-col .research-block .cont-row .popout em {
    color: #fff;
    font-size: 13px;
}

.research-block {
    position: relative;
}

.research-section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 300px;
    background: #b6c8a4;
    bottom: 140px;
}





	
 .chart-container {
  max-width: 100%;    /* or width: 100%; */
  height: 400px;       /* fix a height so it cannot grow forever */
  margin: 0 auto;
  position: relative;
  display: flex;
  background: #fff;    /* optional */
}

    /* Legend container to match the style in your image */
.custom-legend {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: #EBE6F5;
    padding: 35px 35px 50px 35px;
    border-radius: 15px;
    position: relative;
}	
	
    .legend-item {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      flex-basis: 100%;
    }
    .legend-color-box {
      width: 14px;
      height: 14px;
      margin-right: 6px;
    }	
.chart-container .col-chart {
    flex-basis: 55%;
    width: 55%;
    align-content: center;
}

.chart-container .col-legend {
    flex-basis: 25%;
    width: 25%;
}

section.research-banner {
    padding: 90px 0;
    background: url(../img/research-banner.png);
    min-height: 632px;
    margin-bottom: 200px;
    position: relative;
    margin-top: -45px;
    background-position-x: center;
}

.chart-container .col-chart canvas#pieChart1 canvas#pieChart2 canvas#pieChart3{
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: 100%;
    margin: 0px auto;
}

.chart-container .col-legend .source {
    background: #1C1B26;
    color: #fff;
    max-width: 220px;
    padding: 20px;
    border-radius: 20px;
    margin: -45px auto 45px auto;
    z-index: 1;
    position: relative;
}	
	
	
	
	
	
section.research-banner .cont-col {
    background: #fff;
    padding: 60px;
    max-width: 40%;
    border-radius: 35px;
    position: absolute;
    bottom: -90px;
    left: 100px;
    box-shadow: 1px 1px 10px #ccc;
}

section.research-banner article {
    position: unset;
}

section.research-banner .cont-col p.intro {
    font-size: 22px;
    margin-bottom: 60px;
}
	
	
	
	
	section.research-model:after {
    content: '';
    width: 47%;
    border-bottom: 1px solid #65427B;
    position: absolute;
    left: 8%;
    transform: translateX(0%);
    top: 50px;
}
	
section.research-model {
    margin-bottom: 120px;
    padding-top: 120px;
	position: relative;
}

section.research-model h3 {
    font-size: 20px;
}

section.research-model p.intro {font-size:20px;max-width: 60%;}

section.research-model .bg-purple {
    position: relative;
    background: #EBE6F5;
    border-radius: 15px;
    max-width: 85%;
    padding: 60px;
    box-sizing: border-box;
    margin-top: 35px;
}

section.research-model .bg-purple p {
    max-width: 75%;
}

section.research-model .bg-purple img {
    position: absolute;
    bottom: 50px;
    right: -18%;
    border-radius: 15px;
}

section.research-model .bg-purple .robust {
    position: absolute;
    background: #1C1C26;
    padding: 15px;
    color: #fff;
    top: -24px;
    right: 26%;
    border-radius: 15px;
    max-width: 250px;
}	


section.research-coverage {
    padding-bottom: 90px;
    margin-bottom: 90px;
}	
	
	.margin-200T {
		margin-top: 200px!important;
	}	

	.margin-165T {
		margin-top: 165px!important;
	}	
	
	.margin-185T {
		margin-top: 165px!important;
	}

	.margin-20T {
		margin-top: 20px!important;
	}

	.margin-28T {
		margin-top: 28px!important;
	}

	.margin-50T {
		margin-top: 50px!important;
	}








section.investors-section {}

section.independant-section {
    margin: 120px 0 0 0;
    padding-bottom: 180px;
    border-radius: 0 0 45px 45px;
    background: #fff;
    position: relative;
    z-index: 2;
}

section.investors-section .investor-row {
    border-radius: 15px;
    background: #EBE6F5;
    max-width: 80%;
    position: relative;
    padding: 120px 60px;
}

section.investors-section .investor-row h4 {
    font-size: 40px;
    line-height: 1;
    margin: 0 0 20px 0;
    font-weight: 500;
}

section.investors-section .investor-row p.intro {
    font-size: 30px;
    line-height: 1.2;
}

section.investors-section .investor-row p {max-width: 50%;}

section.investors-section .investor-row img {
    border-radius: 15px;
    position: absolute;
    left: 66%;
    top: 60px;
    max-width: 100%;
}

section.independant-section .independant-row {
    border-radius: 15px;
    background: #EBE6F5;
    max-width: 80%;
    position: relative;
    padding: 120px 60px;
}





section.independant-section .independant-row {
    border-radius: 15px;
    background: #EBE6F5;
    max-width: 80%;
    position: relative;
    padding: 140px 60px;
    justify-self: self-end;
}

section.independant-section .independant-row > h4 {
    font-size: 40px;
    line-height: 1;
    margin: 0 0 20px 0;
    font-weight: 500;
}

section.independant-section .independant-row p.intro {
    font-size: 30px;
    line-height: 1.2;
}

section.independant-section .independant-row p {
}

section.independant-section .independant-row img {
    border-radius: 15px;
    position: absolute;
    right: 63%;
    top: 60px;
    max-width: 100%;
}




.independant-block {
    position: absolute;
    background: #1C1C26;
    border-radius: 15px;
    padding: 30px;
    width: 40%;
    right: 8%;
    bottom: -110px;
}

section.independant-section .independant-row .ind-block {
    max-width: 55%;
    justify-self: end;
}
section.independant-section .independant-row .ind-block h4 {
    font-size: 40px;
    line-height: 1;
    margin: 0 0 20px 0;
    font-weight: 500;
}
section.independant-section .independant-row .independant-block h4 {
    color: #fff;
    font-size: 40px;
    margin: 0;
    font-weight: 500;
}

.independant-block p {
    color: #fff;
}


section.more-section {
    background: #7D8C66;
    padding: 160px 0;
    margin-top: -45px;
    position: relative;
    z-index: 1;
    padding-bottom: 290px;
    margin-bottom: -192px;
}

section.more-section .more-container {
    border-radius: 30px;
    border: 1px solid #EBE6F5;
}

section.more-section .more-container .head {
    border-bottom: 1px solid #EBE6F5;
    padding: 20px 30px;
    color: #fff;
    font-size: 35px;
    line-height: 1.1;
}

section.more-section .more-container .more-row {}

section.more-section .more-container .more-row .more-col {
    flex-basis: 50%;
    padding: 30px;
}

section.more-section .more-container .more-row .more-col ul.more-list {
    list-style: none;
    padding: 0;
}

section.more-section .more-container .more-row .more-col ul.more-list li {
    font-size: 30px;
    color: #fff;
    padding: 15px;
    line-height: 1;
    border-radius: 35px;
    margin-bottom: 10px;
    cursor: pointer;
}
section.more-section .more-container .more-row .more-col ul.more-list li:hover {
    background: rgba(255, 255, 255, 0.55);
}


section.team-section {
    background: #7D8C66;
    padding: 90px;
    padding-bottom: 340px;
    margin-bottom: -192px;
}

section.team-section p.title {
    color: #fff;
}

section.team-section .row-team {
    display: flex;
}

section.team-section .row-team .team-cont-col {
    border: 1px solid #FFFFFF;
    border-radius: 30px 0 0 30px;
    border-right: 0;
    padding: 40px;
    box-sizing: border-box;
    height: fit-content;
    margin-right: -5px;
    align-self: center;
    position: relative;
    z-index: 1;
}

section.team-section .row-team .team-img-col {
    position: relative;
    z-index: 2;
}

section.team-section .row-team .team-img-col img {
    border-radius: 15px;
}

section.team-section .row-team .team-cont-col h4 {
    color: #fff;
    font-size: 50px;
    margin-top: 0;
    line-height: 1.2;
}

section.team-section .row-team .team-cont-col p {
    color: #fff;
    font-size: 25px;
}


section.team-section .row-team .team-cont-col a.btn {
    position: absolute;
    bottom: -30px;
}


/* Accordion container */
.accordion {
  margin: 0rem auto;
  border-radius: 8px;
  overflow: hidden;
   /* Adjust this green shade to your preference */
}

/* Each accordion item */
.accordion-item {
  border-top: 1px solid #ffffff; /* slight white border for separation */
}

/* For the first item, remove the top border */
.accordion-item:first-child {
  border-top: none;
}

/* Header area of each item */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  padding: 25px 35px;
  font-size: 22px;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  /* background-color: #92af7d; */ /* Slightly lighter or darker green on hover */
}

.icon {
  font-size: 2.3rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

/* Rotate the icon on open */
.accordion-header.active .icon {
  transform: rotate(45deg);
}

/* Hidden content area */
.accordion-content {
  display: none;
  /* background-color: #6e8f61; */
  color: #fff;
  padding: 0 1rem 1rem 1rem;
  line-height: 1.4;
  border-top: 1px solid #fff;
}

/* Make paragraphs stand out from the background */
.accordion-content p {
  margin-top: 1rem;
}






.accordion-content .accordion-content-container {
    padding: 20px;
}

.accordion-content .accordion-content-container .half-col {
    flex-basis: 50%;
    padding: 0 60px;
}

.accordion-content .accordion-content-container .half-col img.img-responsive {
    width: 100%;
    border-radius: 20px;
    box-sizing: border-box;
}

.accordion-content .accordion-content-container p.intro {
    font-size: 22px;
}


.leadrship-triggers{display: flex;flex-basis: 100%;flex-shrink: 0;list-style: none;padding: 0;margin: 0;gap: 50px;}
.leadrship-triggers li{ flex-basis: 20%; flex-grow: 0; position: relative; cursor: pointer;}
.leadrship-triggers li img{width: 100%;display: block;}
.leader-content-row{display: flex;position: relative;min-height: 30px;margin-bottom: 82px;}
.leader-content{display: none;position: relative;width: 60%;flex-grow: 0;left: 0;top: 0;background: #fff;height: auto;box-sizing: border-box;padding: 30px;box-shadow: 1px 1px 6px #ccc;z-index: 9;}
.overlay{
width: 100%;
position: absolute;
height: 100%;
background: rgba(255, 255, 255, 0.4);
top: 0;
}
.active .overlay{
display:none;
}
.overlay p{position:absolute;color: #fff;padding: 5px 0;text-align: center;display: block;width: 100%;bottom: 0px;font-size: 14px;margin-bottom: 0;background: rgba(99, 78, 147, 0.7);}

#leader-2{left: 20%;}	
#leader-3{left: 0%;}	
#leader-4{left: 20%;}	
#leader-5{left: 46%;}	
#leader-6{left: 0%;}	
#leader-7{left: 20%;}	
#leader-8{left: 00%;}	
#leader-9{left: 20%;}	
#leader-10{left:40%;}	
#leader-11{left:40%;}	
#leader-12{left:40%;}	

.leader-content p {font-size: 14px;}
.leader-content h3 { margin-bottom: 15px; font-size: 27px; margin-top: 30px;}
.leadrship-trigger{ display: none; position: relative; cursor: pointer;}


.leadership {
  padding: 80px 0 80px 0;
}



.team-head {
  background: #6B5BA6 url("../img/services-top.png");
  background-size: cover;
  min-height: 350px;
  padding: 1px;
}

.team-head h3{color: #fff;font-size: 80px;margin-top: 120px;font-weight: 300;}

.leadership-intro{padding: 90px 0 0 0;}
.leadership-intro h4{
    font-size: 40px;
    margin: 0;
    font-weight: 500;}


section.scorecard {
    padding-bottom: 306px;
    background: #fff;
    border-radius: 0 0 45px 45px;
    margin-bottom: -45px;
    position: relative;
    z-index: 2;
}

section.scorecard .scorecard-block {
    position: relative;
}

section.scorecard .scorecard-block img {
    margin: 0 auto;
    max-width: 100%;
}

section.scorecard .scorecard-block img.scorecard-img {
    position: absolute;
    right: 60px;
    top: 150px;
}

.switch-white {
	color: #FFFFFF!important;
}

.switch-purple {
	color: #644576!important;
}




.link {
	text-decoration: none;
	color: #644576;
}

.img-rounded {
	border-radius: 28px; 
}



.row-awards {
    display: flex;
    margin-top: 90px;
}

.row-awards .award {
    flex-basis: 33.33%;
}

.row-awards .award .bg-col {
    background: url(../img/bg-highlights.png);
    background-repeat: no-repeat;
    height: 175px;
    width: 175px;
    background-size: contain;
    text-align: center;
    line-height: 180px;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin: 20px auto;
}

.row-awards .award p {
    text-align: center;
    color: #fff;
    max-width: 50%;
    margin: 0 auto;
}

.padding-60TB{ padding:60px 0;}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; 
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}


section.articles {
    margin-top: 55px;
    padding-bottom: 20px;
}

section.articles h4 {
    font-size: 30px;
    line-height: 1;
    margin: 20px 0 20px 0;
    font-weight: 500;
}

section.articles p.intro {
    font-size: 18px;
    line-height: 1;
    font-weight: 300;	
}

ul.list {
	padding-left: 18px;
}


.row-milestones {
    display: flex;
    margin-top: 90px;
}

.row-milestones .milestone {
    flex-basis: 25%;
}

.row-milestones .milestone .bg-col {
    background: url(../img/bg-milestone.png);
    background-repeat: no-repeat;
    height: 175px;
    width: 175px;
    background-size: contain;
    text-align: center;
    line-height: 180px;
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    margin: 20px auto;
}

.row-milestones .milestone p {
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
}

section.milestones {
    margin-top: 100px;
    margin-bottom: 50px;
}

section.milestones article p.intro {
    color: #000;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
}

.social-box {
    font-size: 1rem;
    display: flex;
    gap: 90px;
    width: 100%;
    padding: 10px;
    border-top: 1px solid #5C4781;
    border-bottom: 1px solid #5C4781;
}

.social-box-1 {
    flex-basis: 50%;
    text-align: right;
}

.social-box-2 {
    flex-basis: 50%;
    text-align: left;
}

.social-table {
	margin-top: 20px;
    line-height: 1.6;
}

.icon-grey {
    color: #D0D5D9 !important;
}


.social-table a {
    text-decoration: none;
    outline: 0;
    font-size: 30px;
}


.icon-twitter::before {
    content: "\ec4f";
    font: normal normal normal 1em / 1 'Lineicons';
}


footer article {
    margin-top: 20px;
}

