/* Welcome To Help Center */
.support-container {
    margin-top: 40px;
    
}
.support-help-center-bank-transfer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 28px;
}
.support-help-centre-header {
    background-color: #177E38;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-faq {
    width: 66%;
}
.support-help-centre-header h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    font-family: 'Mona Sans';
    margin-bottom: 16px;
}
.support-help-centre-header p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Mona Sans';
    width:90%;
}
@media (min-width: 768px) and (max-width: 991px){ 
    .support-help-center-bank-transfer{
        display: block;
    }
    .header-faq,
    .support-bank-transfer-outer {
        width: 100% !important;
    }
   
}

@media (max-width: 767px) {
    .support-container {
        padding: 10px;
    }
    .support-help-center-bank-transfer{
        display: block;
    }
    .support-help-centre-header{
        padding: 20px;
    }
    .header-faq {
        width: 100%;
    }
    .support-help-centre-header h1{
        font-size: 30px;
        line-height: 30px;
    }
}

/* Bank Transfer */
.support-bank-transfer-outer{
    width: 33%;
}
aside.support-bank-transfer {
    box-shadow: 0px 0px 5px 0px #BDBDBD;
    padding: 32px;
    border-radius: 12px;
}
.support-bank-transfer h2{
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    color: var(--primary-color);
    font-family: 'Mona Sans';
    line-height: 50px;
    margin-bottom: 16px;
}
.support-bank-transfer p{
color: #6E706C;
font-size: 14px;
font-family: 'Mona Sans';
font-weight: 400;
line-height: 20px;
margin-bottom: 24px;
}
.support-bank-transfer-info-first {
    background: #F7F7F7;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6E706C;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Mona Sans';
    line-height: 24px;
}
.support-bank-transfer-info-first strong{
    color: #303430;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Mona Sans';
}


@media (max-width: 767px){
    .support-bank-transfer-outer{
        width: 100%;
    }
    aside.support-bank-transfer{
        padding: 20px;
    }
    .support-bank-transfer h2{
        font-size: 24px;
        line-height: 35px;
    }
}

/* Still Have a Question*/
 .support-support-assistant {
    background-color: #177E38;
    padding: 32px;
    border-radius: 12px;
    margin-top: 28px;
}
.still-have-question-heading-paragraph-image {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.still-have-question-heading-paragraph h2{
    color: #FFFFFF;
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    font-family: 'Mona Sans';
    margin-bottom: 16px;
}
.still-have-question-heading-paragraph p{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Mona Sans';
    margin-bottom: 40px;
}
.support-support-assistant button {
    background-color: #FFFFFF;
    color: #177E38;
    padding: 16px 20px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    font-family: 'Mona Sans';
    width: 100%;
}
@media (min-width: 768px) and (max-width: 991px){ 
    
    .support-support-assistant button{
        width: 40%;
    }
}
@media (max-width: 767px){
    .support-support-assistant{
        padding: 20px;
        margin-bottom: 40px;
    }
    .still-have-question-heading-paragraph h2{
        font-size: 24px;
        line-height: 35px;
    }
    .still-have-question-heading-paragraph p{
        margin-bottom: 20px;
    }
}

/* FAQ */
.support-faq-section {
    background: #F7F7F7;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 100px;
    margin-top: 28px;
}
.support-faq-section h2 {
    font-size: 40px;
    color: #303430;
    line-height: 50px;
    font-weight: 500;
    font-family: 'Mona Sans';
    margin-bottom: 20px;
  }
  details {

    background-color: #FFFFFF;
    padding: 16px;
    border-radius: 28px;
    
  }
  details + details {
    margin-top: 10px;
  }
  details[open] {
    background-color: #ffffff;
  }
  details p {
    color: #303430;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Mona Sans';
  }
  summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-weight:400;
  }
  .control-icon {
    fill: #303430;
    transition: .3s ease;
    pointer-events: none;
  }
  details p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Mona Sans';
    color: #303430;
    margin-top: 20px;
  }
  .control-icon-close {
    display: none;
  }
  details[open] .control-icon-close {
    display: initial;
    transition: .3s ease;
  }
  details[open] .control-icon-expand {
    display: none;
  }
 
  @media (max-width: 767px){
    .support-faq-section{
        margin-bottom: 28px;
        padding: 20px;
    }
    .support-faq-section h2{
        font-size: 24px;
        line-height: 35px;
    }
  }


 .campaigns-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    margin-bottom: 100px;
  }

  .support-container a.campaign-view-btn.secondary-button{
    display: none;
  }

  .campaign-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}