@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Secular+One&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  /* --main-font-family: 'Open Sans', sans-serif; */
  --main-font-family: "Ubuntu";
  /* --heading-font-family: 'Playfair Display', serif; */
  /* --heading-font-family: 'Montserrat', sans-serif; */
  --heading-font-family: "Ubuntu", sans-serif;
  --main-color: #0759ad;
  --color-blue-2: #30adef;
  --bg-color: #d8dfe3;
  --bg-textarea: rgba(13, 110, 253, 0.25);
  --bg-textare: #eef7ff;
  --link-blue-2: #0a58ca;
  --link-blue-3: #041b45;
  --link-blue: #0e2e67;
  --main-blue: #004778;
  --optional-color: #2e3ab8;
  --white-color: #ffffff;
  --black-color: #020202;
  --color-gray: #6b7c8f;
  --color-yellow: #ffc107;
  --color-green: #2a852e;
  --color-green-2: #1f9324;
  --color-green-3: var(--color-green-3);
  --color-red: #d5182a;
  --color-border: #e1e1e1;
  --color-noise: #212529;
  --paragraph-color: #484847;
  --font-size: clamp(11px, 1vw, 14px);
  --transition: 0.4s;
}

* {
  font-family: var(--main-font-family);
}

a {
  color: var(--link-blue);
  text-decoration: none;
  cursor: pointer;
}

section.api-use-example {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  padding: 35px 0px;
  padding: 15px;
  padding: 15px 4%;
}
section.api-use-example .container-fluid {
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px !important;
  background-color: var(--white-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
section.api-use-example .container-fluid h1.section-title-text {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
}
section.api-use-example .content-tab {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
}
section.api-use-example .content-tab .title-news-categories {
  text-align: center;
}

section.section-FAQs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.section-FAQs .container-fluid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.section-FAQs .container-fluid .left-FAQs {
  width: 48%;
}
section.section-FAQs .container-fluid .left-FAQs .content-FAQs-img {
  width: 100%;
}
section.section-FAQs .container-fluid .left-FAQs .content-FAQs-img img {
  width: 100%;
}
section.section-FAQs .container-fluid .right-FAQs {
  width: 50%;
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions {
  width: 100%;
  /* Accordion Styles */
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion {
  background-color: var(--white-color);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 7px;
  overflow: hidden;
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion-header {
  padding: 12px 25px;
  background-color: var(--link-blue-3);
  color: white;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion-header:hover {
  background-color: var(--link-blue-2);
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion-header::after {
  content: "+";
  font-size: 20px;
  transition: transform 0.3s;
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion-header.active::after {
  content: "-";
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: #f8fafc;
}
section.section-FAQs .container-fluid .right-FAQs .contents-questions .accordion-content.show {
  padding: 20px 25px;
  max-height: 500px;
}

.stats-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
.stats-grid .stat-card {
  width: 25%;
  height: 100px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-right: 10px solid var(--link-blue);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
.stats-grid .stat-card .stat-icon {
  width: 19%;
  min-width: 65px;
  height: 100%;
  color: var(--white-color);
  background-color: var(--link-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-grid .stat-card .stat-icon i {
  font-size: clamp(28px, 3.5vw, 40px);
}
.stats-grid .stat-card .stat-details {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5%;
}
.stats-grid .stat-card .stat-details .time-period {
  color: var(--color-green);
}
.stats-grid .stat-card h3 {
  color: #777;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.stats-grid .stat-card .stat-number {
  font-weight: 700;
  color: var(--link-blue);
  font-size: clamp(20px, 7.5vw, 40px);
  line-height: 1;
}
.stats-grid .stat-card .stat-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.9em;
}
.stats-grid .stat-card .trend-up {
  color: #10b981;
}
.stats-grid .stat-card .trend-down {
  color: #ef4444;
}
.stats-grid .stat-card:hover {
  transform: translateY(-5px);
}

section.dashborad-presentation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  padding-top: 0px;
}
section.dashborad-presentation .container-fluid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.dashborad-presentation .container-fluid .hero-dashboard {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.dashborad-presentation .container-fluid .hero-dashboard img {
  width: 100%;
  max-width: 1350px;
}

.content-GET-request-hero {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background-color: var(--color-noise);
  border-radius: 15px;
  margin-top: 2vh;
  padding: 12px;
}
.content-GET-request-hero .title-get-request {
  width: 100%;
  text-align: left;
  font-size: clamp(14.2px, 1.5vw, 17px);
  line-height: clamp(14.2px, 1.5vw, 20px);
  margin-bottom: 7px;
  font-weight: 900;
}
.content-GET-request-hero p {
  width: 100%;
  text-align: left;
  font-size: clamp(12.2px, 1.5vw, 13px);
  line-height: clamp(12.2px, 1.5vw, 13px);
}
.content-GET-request-hero .top-content-btons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  margin-top: 5px;
}
.content-GET-request-hero .top-content-btons i {
  margin-right: 5px;
}
.content-GET-request-hero .hero-get-request {
  width: 100%;
  background-color: #444444;
  padding: 10px 15px;
  border-radius: 7px;
}
.content-GET-request-hero .hero-get-request a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-green-4);
  font-size: clamp(12.2px, 1.5vw, 15px);
  line-height: clamp(14.2px, 1.8vw, 18px);
}
.content-GET-request-hero button {
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  border-radius: 3px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.92rem;
  margin-left: 15px;
  transition: background 0.2s;
}
.content-GET-request-hero span {
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--white-color);
  background-color: var(--color-green-2);
  margin-right: 10px;
}

h1.section-title-text {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
}

p.paragraph-text {
  width: 100%;
  text-align: left;
  font-weight: 300;
  font-size: clamp(15.2px, 1.5vw, 17px);
  line-height: clamp(18px, 4vw, 29px);
  margin-bottom: 0px !important;
}

/* Tab styling */
.tab-buttons {
  display: flex;
  margin-bottom: 10px;
}

.tab-btn {
  padding: 10px 20px;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  transition: background 0.3s;
}

.tab-btn:hover {
  background: #ddd;
}

.tab-btn.active {
  background: #4caf50;
  color: white;
}

.tab-content {
  display: none;
  padding: 0px;
  border: 1px solid #ddd;
  border-radius: 0 5px 5px 5px;
  animation: fadeIn 0.5s;
}

.tab-content.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=section-02-articles-prev.css.map */
