/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 } */

:root {
  --primary-color: rgb(5, 104, 246);
  --secondary-color: #0e005e;
  --font-family: "Inter", sans-serif;
}

a, p {
  margin: 0;
}

body {
  font-family: var(--font-family);
  /* background-color: #f0f0f0; */
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

header {
  background: var(--secondary-color);
  color: white;
  padding:  1.45rem 40px;
  text-align: center;
  /* height: 86px; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 2rem 0 6rem 0;
  margin: 0 auto;
}

.button {
  background-color: var(--primary-color);
  color: white;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}

.big-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}

.big-title-32 {
  font-family: Inter;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 1rem;
  color: var(--secondary-color);
}

.title-24 {
  font-family: Inter;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}

.banner-body {
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0%;
}

.body {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  letter-spacing: 0%;
}

.sub-body {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 0%;
    width: 70% !important;
  }

.highlight {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  /* line-height: 50px; */
  letter-spacing: 0%;
}

.button-2 {
  color: white;
  padding: 0.6rem 2rem;
  border: none;

  background-color: var(--secondary-color);
  border-radius: 10px;
  font-family: Inter;
  font-weight: 600;
  font-size: 24px;
  /* line-height: 100%; */
  letter-spacing: 0%;
}

.button-3 {
    color: white;
    padding: 0.4rem 2rem;
    border: none;
  
    background-color: var(--secondary-color);
    border-radius: 10px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    /* line-height: 100%; */
    letter-spacing: 0%;
  }

main {
  padding-top: var(--header-height);
}

.banner {
  /* height: 50vh; */
  padding: 2rem 0 4rem 0;
  /* background-color: red; */
}

.banner-img{
  width: 90%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.chart-img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.highlight-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
} 

.highlight-section div {
  display: flex;
  width: 100%;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.highlight-section img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.highlight-section .content {
  display: flex;
  justify-content: flex-start;
  /* text-align: start; */
}

.points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
}

.point img {
  width: 24px;
}

.point .content .title {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0%;
  color: var(--secondary-color);
}

.point .content p {
  font-family: Inter;
  /* font-weight: 600; */
  /* font-size: 20px; */
  line-height: 31px;
  text-align: justify;
  letter-spacing: 0%;
  /* color: var(--secondary-color); */
}
.point .content ul li {
  font-family: Inter;
  /* font-weight: 600; */
  /* font-size: 20px; */
  line-height: 31px;
  text-align: justify;
  letter-spacing: 0%;
  /* color: var(--secondary-color); */
}

.code-wrapper {
  border: solid 1px var(--primary-color) !important;
  position: relative;
}

.copy-btn button {
  position: absolute;
  top: 10px;
  right: 10px;
  /* width: 100px; */
  /* height: 20px; */
  background-color: #0e005e !important;
  padding: 0.6rem 1rem;
  /* margin: 0; */
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: none;
  color: white;
  justify-content: center;
  line-height: 0;
  gap: 0.5rem;
  font-size: 12px;
}

.copy-btn img {
  width: 12px;
  object-fit: contain;
  /* margin: 0; */
  /* height: 20px; */
}

@media screen and (max-width: 1440px) {
 .container{
    max-width: 1320px;
  }
 }


@media screen and (max-width: 1024px) {
  .container{
    max-width: 968px;
  }

  .points {
    grid-template-columns: repeat(2, 1fr);
  }

  .point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {

    .section{
        padding: 2rem 0 2rem 0;
    }

    .sub-body{
        /* line-height: 1.5; */
        width: 100% !important;
        text-align: justify;
    }

    .big-title-32{
        text-align: center;
        font-size: 24px;
    }

  .points {
    grid-template-columns: repeat(1, 1fr);
  }

  .point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


@media screen and (max-width: 425px) {

  .header{
    padding: 1rem;

    
  }

  body{
    font-size: 14px;
  }

  .header img{
    width: 150px !important;
    /* height: 30px; */
    object-fit: contain;
  }

  .button{
    padding: 0.5rem 1rem;
    font-size: 12px;
  }
}




.accordion{
    margin: 0 auto;
    --bs-accordion-bg: transparent; 
    /* --bs-accordion-color: #000;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-icon-width: 1.5rem;
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out; */ */
  

} 

.accordion-button {
    font-weight: bold;
    background-color: transparent;
    box-shadow: none;
    padding-left: 1rem;
    border: none !important;
  }

  .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none !important;
}

  .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M12 5v14m-7-7h14' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); /* PLUS icon */
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    border: none !important;
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M5 12h14' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); /* MINUS icon */
  }
  

  .accordion-item {
    border: none;
    margin-bottom: 1rem;
  }

  .accordion-body {
    padding-left: 1rem;
    padding-top: 0.5rem;
  }


  .header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
  }
  
  /* .header.hidden {
    transform: translateY(-100%);
  } */