﻿.all-reports-container {
  display: flex;
  padding: 80px 96px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-7xl, 64px);
  align-self: stretch;
  background: linear-gradient(
      227deg,
      rgba(255, 255, 255, 0.9) 3.24%,
      rgba(255, 255, 255, 0) 32.26%,
      rgba(255, 255, 255, 0.9) 73.7%
    ),
    url("../Images/new-main-img/section-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.all-reports-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-6xl, 48px);
  align-self: stretch;
}
.all-reports-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-6xl, 48px);
  align-self: stretch;
}
.reports-leading-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xl, 16px);
  align-self: stretch;
}
.reports-leading-text-box p:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #101828;
  font-family: "MavenPro-SemiBold";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  padding-bottom: 20px;
}
.reports-leading-text-box p:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #475467;
  font-family: "MavenPro-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.single-report-container {
  display: flex;
  padding: 0 0;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}
.report-image-wrapper {
  display: flex;
  width: 35%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.report-image-wrapper img {
  width: 100%;
  object-fit: contain;
  display: block;
  aspect-ratio: 16 / 9;
}
.report-desc-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
.report-desc-wrapper p:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #101828;
  font-family: "MavenPro-SemiBold";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.report-desc-wrapper p:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  color: #475467;
  font-family: "MavenPro-Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.report-preview-cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.report-preview-cta-box a {
  position: relative;
  display: inline-flex;
  padding: 12px 18px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid #04a986;
  color: #04a986;
  font-family: "MavenPro-SemiBold";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: border 0.2s ease, border-radius 0.2s ease;
}
.report-preview-cta-box a img {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}
.report-preview-cta-box a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #04a986;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.report-preview-cta-box a:hover {
  border-color: transparent;
  border-radius: 0;
}

.report-preview-cta-box a:hover::after {
  transform: scaleX(1);
}

.load-more-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.load-more-btn-box a {
  gap: 12px;
  color: #475467;
  font-family: "MavenPro-SemiBold";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.reports-tabs-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.single-report-tab {
  display: flex;
  padding: 18px 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.single-report-tab.active {
  border: 1.5px solid #006ba6;
}
.single-report-tab .content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-report-tab .content img {
  aspect-ratio: 1/1;
}
.single-report-tab .content p {
  color: #344054;
  font-family: "MavenPro-Medium";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 30px;
}
.single-report-tab.active .content p {
  color: #006ba6;
  font-family: "MavenPro-Bold";
  font-weight: 700;
}
.report-hidden {
  display: none !important;
}

.report-fade {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.report-fade.report-show {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (min-width: 2560px) {
  .all-reports-container {
    padding: 3.125vw 13.125vw;
    gap: 2.5vw;
  }
  .all-reports-wrapper {
    gap: 1.875vw;
  }
  .all-reports-box {
    gap: 1.875vw;
  }
  .reports-leading-text-box {
    gap: 0.625vw;
  }
  .reports-leading-text-box p:first-child {
    font-size: 1.172vw;
    padding-bottom: 0.781vw;
  }
  .reports-leading-text-box p:nth-child(2) {
    font-size: 0.703vw;
    line-height: 1.094vw;
  }
  .single-report-container {
    gap: 1.25vw;
  }
  .report-image-wrapper {
    gap: 0.625vw;
  }
  .report-desc-wrapper p:first-child {
    font-size: 0.938vw;
    line-height: 1.25vw;
  }
  .report-desc-wrapper p:nth-child(2) {
    font-size: 0.703vw;
    line-height: 1.094vw;
  }
  .report-preview-cta-box a {
    padding: 0.469vw 0.703vw;
    gap: 0.234vw;
    border: 1px solid #04a986;
    font-size: 0.625vw;
    line-height: 0.938vw;
  }
  .report-preview-cta-box a img {
    width: 0.781vw;
    height: 0.781vw;
    aspect-ratio: 1/1;
  }
  .load-more-btn-box a {
    gap: 0.469vw;
    font-size: 0.703vw;
    line-height: 1.094vw;
  }
  .reports-tabs-container {
    gap: 0.938vw;
  }

  .single-report-tab {
    padding: 0.703vw 1.094vw;
    gap: 0.391vw;
    border-radius: 0.781vw;
    border: 0.059vw solid transparent;
  }
  .single-report-tab.active {
    border: 0.059vw solid #006ba6;
  }
  .single-report-tab .content {
    gap: 0.469vw;
  }

  .single-report-tab .content p {
    font-size: 0.781vw;
    line-height: 1.172vw;
  }

}
@media screen and (max-width: 1280px) {
  .single-report-container {
    flex-direction: column;
  }
  .report-image-wrapper {
    width: 65%;
  }
}
@media screen and (max-width: 542px) {
  .all-reports-container {
    padding: 80px 32px;
  }
  .report-image-wrapper {
    width: 100%;
  }
  .reports-tabs-container {
    flex-direction: column;
  }
  .single-report-tab {
    padding: 16px 16px;
    align-items: start;
  }
}
