:root {
    --color-primary: #FBB134;
    --color-text: #545d7a;
    --color-white: #fff;
    --color-title: #242e4c;
    --color-background: #f7f8fb;
    --color-border: #dae1f5;

    /* Fonts */

    --fs-sm: 1.4rem;
    --fs-md: 1.3rem;
    --fs-lg: 2.2rem;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    /* Transition & Box Shadow */
    --transition: 0.4s ease-in-out;
    --shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05);

}

.banner-page {
    background-image: url("./assets/img/custom/banner/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0px 50px 0px;
}



/* faq section */
.faq {
    background: #F8F8F8;
    padding: 70px 0;
}

.accordion__wrapper {
    background-color: black;
    box-shadow: var(--shadow);
    border-radius: 2.5rem;
    width: 100%;
    padding: 5rem;
}

.accordion__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-title);
    text-align: center;
    margin-bottom: 4rem;
}

.accordion {
    border-bottom: 0.1rem solid var(--color-border);
    padding-bottom: 1.2rem;
    margin-bottom: 3rem;
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.accordion__icon {
    background-color: var(--color-primary);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

.accordion__question {
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    color: var(--color-title);
}

.accordion__answer {
    padding: 2rem 0;
}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: var(--transition);
}

@media screen and (min-width: 580px) {
    .accordion__wrapper {
        padding: 3rem 2rem;
        padding-bottom: 1px;
        background-image: linear-gradient(to right, #1B1B1B, #1B1B1B, #434343);
    }

}

/* faq section */

@media (min-width: 272px) and (max-width: 580px) {
    .font-1 {
        font-size: 50px;
        /* background-image: linear-gradient(to right, #1B1B1B, #1B1B1B, #434343); */

    }
    .call-btn{
   
        left: 30% !important;
        bottom: -60px !important;
    }
    
    .banner-page {

        padding: 50px 0px 50px 0px;
    }

    .accordion__wrapper {
        padding: 1.6rem;
    }

    .font-2 {
        font-size: 35px;
    }

    .sm-color {
        color: black !important;
    }
}

.p-font {
    font-size: 20px;
    margin-top: 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.marquee span {
    text-transform: uppercase;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-size: 20px;
    font-weight: 900;
    /* color: #98c9ff; */
    background: #FBB134;
    background: linear-gradient(to right, #FBB134 0%, #FFE180 50%, #FBB134 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.border-1{
    border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgb(50, 50, 50);
  margin-top: 20px;

}
.call-btn{
    position: absolute;
    left: 36%;
    bottom: -53px;
}

  .bounce2 {
    animation: bounce2 2s ease infinite;
  }
  @keyframes bounce2 {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-30px);}
      60% {transform: translateY(-15px);}
  }


   .pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 70px rgba(0, 0, 0, 0);
    }
  }
  

  
  