@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");

/* 
=== VARIABLES ===
 */
 body>section>* {
  padding-left: unset!important;
  padding-right: unset!important;
}
.body .col-body *+:not(h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5,.h6,.col) {
  margin-top: unset;
}
.section-content.cols-1 article>div, .section-content:not(.cols-1)[class*=cols]>article {
  padding-left: unset!important;
  padding-right: unset!important;
}
.section-content.cols-1 article {
  margin-left: unset;
  margin-right: unset;
}
.type-listpages .card {
  border: none;
}
.type-listpages h6 {
  font-size: 24px;
}
.company .img-fluid {
  max-height: 24px;
}
.fixas.mainBtn {
display:none;
}
.type-listpages .section-content .col {
  min-width: 33%;
}
.heroContent .aos-edit-next{
  display:none;
}
  
.heroContent .aos-edit-prev {
  display:none;
}
.hero.type-content  {
  display:none;
}
.type-listpages header p {
  font-size: 3.375rem;
  font-family: var(--font-secondry);
  color: var(--text-dark);
}
section {
  overflow: unset;
}


:root {
  /* BACKGROUND COLORS */
  --bg-primary: #e374ff;

  /* FONTS COLORS */
  --text-dark: #000;

  /* FONTS */
  --font-primary: "Manrope", sans-serif;
  --font-secondry: "Newsreader", serif;
}

/* 
=== RESET PROPORTY ===
 */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  overflow-x: hidden;
}

/* 
=== REUSABLE CODE ===
 */

.title {
  font-size: 4.375rem;
  font-family: var(--font-secondry);
  color: var(--text-dark);
}

.text {
  font-size: 1.438rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mainBtn {
  display: inline-block;
  padding: 0.85rem 1.85rem;
  margin-top: 20px !important;
  color: #fff;
  background-color: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  border-radius: 100vw;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.mainBtn i {
  margin-left: 0.5rem;
}

.mainBtn:hover {
  background-color: transparent;
  color: var(--text-dark);
}

/* 
=== HERO SECTION ===
 */

.heroSection {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.downloadBtn {
  top: -4px;
  position: relative;
}
.content p {
  margin-top: 0px;
  margin-bottom: 0px;
}

.heroSection::before {
  content: "";
  width: 400px;
  height: 400px;
  background-color: #e374ff50;
  display: inline-block;
  position: absolute;
  top: 10%;
  right: -10%;
  border-radius: 50%;
  filter: blur(8rem);
  z-index: -1;
}

.heroSection .heroRow {
  justify-content: center;
  align-items: center;
}

/* .heroSection .heroImage img {
  animation: updown 3s ease-in-out infinite;
} */

/* MAP SECTION */

.mapSection {
  background-color: #f6f6f6;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapSection .mapRow {
  justify-content: center;
  align-items: center;
}

.mapSection .mapImage {
  position: relative;
}

.mapSection .mapImage .mapCard {
  position: absolute;
  display: flex;
  gap: 1rem;
  align-items: center;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mapSection .mapImage .mapCard.card1 {
  top: 14%;
  left: 5%;
}

.mapSection .mapImage .mapCard.card2 {
  top: 27%;
  left: 2%;
}

.mapSection .mapImage .mapCard.card3 {
  top: 13%;
  right: 0;
}

.mapSection .mapImage .mapCard.card4 {
  top: 26%;
  right: -3%;
}

.mapSection .mapImage .mapCard .content {
  border-left: 1px solid #f0f0f0;
  padding-left: 0.5rem;
}

.mapSection .mapImage .mapCard .content .cardTitle {
  margin-bottom: 0;
}

.mapSection .mapImage .mapCard .content .text {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #a7a7a7;
}

.mapSection .mapContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: end;
  padding-left: 1em;
}

/* 
=== FINANCIALS SECTION ===
 */

.financialSection {
  margin-block: 100px;
  padding-top:100px;
}

.financialSection .sectionHeading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
}

.financialSection .sectionHeading .text {
  font-size: 0.8rem;
}

.financialSection .cardContainer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.financialSection .cardContainer .finCard {
  background-color: #f6f6f6;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.financialSection .cardContainer .finCard:hover {
  transform: translateY(-10px);
}

.financialSection .cardContainer .finCard .content {
  margin-top: 3rem;
}

.financialSection .cardContainer .finCard .content .cardTitle {
  font-family: var(--font-secondry);
  color: var(--bg-primary);
  margin-bottom: 0;
}

.financialSection .cardContainer .finCard .content .subtitle {
  color: #808080;
  margin-bottom: 0;
  margin-top: 0px;
}
.financialSection .cardContainer .finCard .content .text {
  margin-bottom: 0;
  margin-top: 0px;
}

/* ===
REPORT SECTION
=== */

.reportSection {
  margin-bottom: 100px;
}

.reportSection .reportRow {
  justify-content: center;
  align-items: center;
}

.reportSection .reportItem {
  background-color: #f6f6f6;
  padding: 2rem;
  border-radius: 1rem;
  min-height: 450px;
}

.reportSection .reportItem .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.reportSection .reportItem .head .headTitle {
  font-weight: 700;
}

.reportSection .reportItem .head .flterSelection {
  background-color: #fff;
  border-radius: 0.5rem;
  border: 2px solid #e6e6e6;
  height: 44px;
  line-height: 16px;
}

.reportSection .reportItem .head .flterSelection .fliter {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.reportSection .reportItem .head .flterSelection .fliter:focus {
  outline: 0;
}

.reportSection .reportItem .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
  margin-bottom: 1rem;
  background-color: #fff;
  border: 2px solid #e6e6e6;
  padding: 0.85rem 1.85rem;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.reportSection .reportItem .item .itemTitle {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
}

/* ===
GOVERNANCE SECTION
=== */

.govSection {
  background-color: #202020;
  padding: 4rem 0;
  color: #fff;
}

.govSection .sectionHeading {
  text-align: center;
  display: flex;
  margin-bottom: 2rem;
  justify-content: center;
}

.govSection .sectionHeading .title {
  color: #fff;
  font-weight: 300;
  margin-block: 2rem;
}

.govSection .nav {
  justify-content: center;
  border-bottom: 0;
  gap: 2rem;
}

.govSection .nav .nav-link {
  background-color: transparent;
  border: 0;
  color: #7e7e7e;
  border-bottom: 1px solid #7e7e7e;
  margin-bottom: 2rem;
}

.govSection .nav .nav-link:hover,
.govSection .nav .nav-link.active {
  color: #fff;
  border-color: #fff;
}

.govSection .govContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  /* justify-content: center; */
  position: relative;
}

.govSection .govContainer.gov1 {
  margin-bottom: 8rem;
}

.govSection .govContainer .actionBtn {
  border: 1px solid #4d74ff70;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 0.85rem 1.85rem;
  border-radius: 100vw;
}

.govSection .govContainer .actionBtn:nth-child(2) {
  border-color: #e26fff70;
}
.govSection .govContainer .actionBtn:nth-child(3) {
  border-color: #ffd76f70;
}

.govSection .govContainer .profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #4d74ff70;
  padding: 0.85rem 1.55rem;
  border-radius: 0.5rem;
}

.govSection .govContainer .multiProfile {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.govSection .govContainer .multiProfile .profile {
  width: 30%;
}

.govSection .govContainer .profile.purpol {
  border-color: #e26fff70;
}
.govSection .govContainer .profile.yellow {
  border-color: #ffd76f70;
}

.govSection .govContainer .profile .content .name {
  margin-bottom: 0;
  line-height: 18px;
}

.govSection .govContainer .profile .content .text {
  margin-bottom: 0;
  color: #7e7e7e;
  font-size: 0.75rem;
  line-height: 16px;
  margin-top: 4px;
}

.govSection .govContainer .arrowImage {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70%;
}

.govSection .govContainer.gov2 .actionBtn {
  grid-column: span 3;
  border-color: #3a3a3a;
}

.govSection .govContainer.gov2 .profile {
  border-color: #3a3a3a;
}

.govSection .govContainer.gov3 {
  grid-template-columns: repeat(4, 1fr);
}

.govSection .govContainer.gov3 .company {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  position: relative;
}

.govSection .govContainer.gov3 .company::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: #fff;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 53% 47%);
}
.profileImage .img-fluid {
    border-radius: 50%;
    display: block;
    height: 66px;
    width: 66px;
    object-fit: cover;
}