*{
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700;
}
.inner-body {
    background: #1E1E1E;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bgc-elem{
    position: absolute;
    height: 100%;
    width: 100%;
}
.inner-body::before,
.inner-body::after,
.bgc-elm-inner-1,
.bgc-elm-inner-2,
.bgc-elm-inner-3{
    content: '';
    position:absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.inner-body::before{
    height: 418px;
    width: 418px;
    background-image: url(assets/images/bg-element/side-rounded-rectangle.png);
    top: -124px;
    left: -154px;
}
.inner-body::after{
    height: 583px;
    width: 607px;
    background-image: url(assets/images/bg-element/one-sided-rectangle.png);
    top: 761px;
    left:-139px;
}
.bgc-elm-inner-1{
    height: 382px;
    width: 382px;
    background-image: url(assets/images/bg-element/rectangle.png);
    top: -101px;
    right: 104px;
}
.bgc-elm-inner-2 {
    height: 579px;
    width: 579px;
    background-image: url(assets/images/bg-element/Ellipse-1.png);
    right: -265px;
    top: 680px;
}
.bgc-elm-inner-3 {
    height: 236px;
    width: 236px;
    background-image: url(assets/images/bg-element/Rectangle-1.png);
    left: calc(50%);
    top: 478px;
}

header {
    padding-top: 90px;
}
.brand-logo {
    height: 55px;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    color: #ECECEC;
    line-height: 1.3;
    width: 708px;
    margin-top: 70px;
    margin-bottom: 60px;
}

.hero-content p {
    font-size: 33px;
    line-height: 1.9;
    font-weight: 400;
    width: 952px;
}

.btn.btn-fetchpay {
    color: #fff;
    font-size: 40px;
    background: #BE0358;
    padding: 22px 155px;
    border-radius: 100px;
}

.hero-content .btn-fetchpay {
    margin-top: 110px;
}

.hero-content {
    margin-bottom: 110px;
    position: relative;
}

.signup-hero-content {
    position: relative;
}

.signup-hero-content h1 {
    font-size: 100px;
    line-height: 1.1;
}

.signup-hero-content p {
    color: #8E8E8E;
    font-size: 30px;
    margin-top: 45px;
    line-height: 1.2;
}


.signup-form .form-control {
    background: #242424;
    border: 1px transparent;
    color: #fff;
    padding: 25px 30px;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.contact-form-section >h5 {
    color: #ECECEC;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-section {
    margin-bottom: 30px;
}
.signup-form {
    margin-top: 70px;
}
.contact-form-section .row.g-4 {
    margin-bottom: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
.contact-form-section >h5 ~ p {
    font-size: 15px;
    color: #f9f9f9;
    margin-top: 0px;
    position: relative;
    top: -40px;
}

.signup-form .contact-form-section select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 25px 30px!important;
    height: auto;
    background-image: url(assets/images/arrow_down.png);
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: right 40px center;
}

#otherInfoBOx, #charityRegDetails {
    padding-top: 45px;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}
#otherInfoBOx.active, #charityRegDetails.active {
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
}
#charityRegDetails{
    padding-top: 0;
}
#charityDetail{
    display: none;
}
#charityDetail.active{
    display: flex;
}


.checkbx-container {
    display: block;
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 55px;
    padding-top: 3px;
  }
  
  /* Hide the browser's default checkbox */
  .checkbx-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    background-color: #eee;
    border-radius: 10px;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbx-container:hover input ~ .checkmark {
    background-color: #fff;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbx-container input:checked ~ .checkmark {
    background-color: #fff;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbx-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkmark:after {
    left: 16px;
    top: 8px;
    width: 9px;
    height: 21px;
    border: solid #be0358;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.button-area .btn.btn-fetchpay {
    font-size: 18px;
    padding: 25px 350px;
    font-weight: 700;
    box-shadow: 0px 0px 0px;
    margin-bottom: 100px;
}

.banner{
    padding:  0px 200px;
    margin-top: 75px;
    position: relative;
    z-index: 1;
}
.banner h1 {
    font-weight: 600;
    font-size: 80px;
    line-height: 135px;
    color: #fff;
    text-align: center;
    position: relative;
}
.banner p {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.5;
    color: #8E8E8E;
    margin-top: 10px;
    text-align: center;
}

.icon-list {
    padding: 30px 30px;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    position: relative;
}

.icon-list img {
    height: 148px;
}

.icon-list img:first-child {
    margin-right: 48px;
}

.icon-list::before{
    content: '';
    position: absolute;
    width: 180px;
    height: 52px;
    background-image: url(assets/images/connect_up.svg);
    top: -35px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.icon-list::after{
    content: '';
    position: absolute;
    width: 180px;
    height: 52px;
    background-image: url(assets/images/connect_down.svg);
    bottom: -35px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.button-list {
    text-align: center;
    padding:  0px 30px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

a.qr-link {
    font-weight: 500;
    color: #fff;
    font-size: 35px;
    line-height: 1.5;
    text-decoration: underline;
    margin-bottom: 82px;
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
}
.button-list .btn {
    margin-bottom: 10px;
    width: fit-content;
    padding: 25px 265px;
    margin: auto;
    margin-bottom: 10px;
    font-size: 20px;
}

.qr-container {
    text-align: center;
    margin-top: 72px;
    position: relative;
    z-index: 1;
}
.qr-code {
    padding: 0px 30px;
    text-align: center;
    margin-bottom: 50px;
}

.qr-frame {
    height: 207px;
    width: 205px;
    margin: 0 auto;
    padding: 20px;
    background-size: 100% 100%;
    background-image: url(assets/images/qr-frame.png);
    margin-top: 35px;
    margin-bottom: -35px;
}
.qr-frame img{
    width: 100%;
}

.qr-container p {
    color: #8E8E8E;
    font-size: 20px;
    line-height: 1.5;
    padding: 0px 200px;
}
.npt .inner-body {
    padding-bottom: 90px;
}
.contactEmail {
    color: #39C1D8;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}
.contactEmail:hover{
    color: #39C1D8;
}
.qr-container.sucess {
    margin-top: 30px;
    margin-bottom: 65px;
}
.mobileSuccessIcon{
    display: none;
}
.backToPrev {
    height: 100px;
    width: 100px;
    background-image: url(assets/images/back-icon.png);
    display: inline-block;
    background-size: 100% 100%;
    position: absolute;
    left: -108px;
    cursor: pointer;
}
@media only screen and (max-width: 1199px) {

    .backToPrev {
        left: -212px;
    }
}
@media only screen and (max-width: 991px) {
    .backToPrev {
        left: -145px;
    }
    .banner h1 {
        font-size: 60px;
        line-height: 1.2;
    }

    .banner p {
        font-size: 24px;
        line-height: 1.5;
    }

    .button-list .btn {
        padding: 25px 160px;
    }

    .inner-body::before{
        height: 200px;
        width: 200px;
        background-image: url(assets/images/bg-element/side-rounded-rectangle.png);
        top: -56px;
        left: -99px;
    }
    .inner-body::after{
        height: 536px;
        width: 554px;
        background-image: url(assets/images/bg-element/one-sided-rectangle.png);
        top: 836px;
        left: -271px;
    }
    .bgc-elm-inner-1{
        height: 220px;
        width: 218px;
        background-image: url(assets/images/bg-element/rectangle.png);
        top: 77px;
        right: -133px;
    }
    .bgc-elm-inner-2 {
        height: 380px;
        width: 380px;
        background-image: url(assets/images/bg-element/Ellipse-1.png);
        right: -190px;
        top: 680px;
    }
    .bgc-elm-inner-3 {
        height: 236px;
        width: 236px;
        background-image: url(assets/images/bg-element/Rectangle-1.png);
        left: calc(50%);
        top: 478px;
    }
    .banner{
        padding:  0px 30px;
        margin-top: 75px;
        position: relative;
        z-index: 1;
    }
    .qr-container p{
        padding: 0 30px;
    }
    .mobileSuccessIcon{
        display: block;
        width: 175px;
    }
}
@media only screen and (max-width: 767px) {
    .desktopSuccessIcon{
        display: none;
    }
    .banner{
        padding: 0;
    }
    .banner h1 {
        font-size: 40px;
        line-height: 1.2;
        text-align: left;
        padding-right: 30px;
    }

    .banner p {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        color: #fff;
    }
    .qr-container p {
        font-size: 13px;
        line-height: 1.5;
        text-align: left;
        color: #fff;
    }
    .brand-logo{
        opacity: 0;
        pointer-events: none;
    }

    .button-list .btn {
        padding: 15px;
        width: 100%;
    }
    .npt header{
        padding-top: 0;
    }
    .banner{
        padding: 0px 30px;
    }
    .qr-container {
        margin-top: 16px;
    }
    .backToPrev {
        position: initial;
        height: 45px;
        width: 45px;
        display: block;
        position: initial;
        margin-top: -72px;
        margin-bottom: 36px;
    }
}

@media only screen and (max-width: 500px) {
    .banner h1 {
        padding-right: 109px;
    }
    .inner-body::after {
        bottom: -400px;
        top:auto
    }

    .icon-list img {
        height: 80px;
    }
    .icon-list::before {
        content: '';
        position: absolute;
        width: 123px;
        height: 37px;
        background-image: url(assets/images/connect_up.svg);
        top: -20px;
    }
    .icon-list::after {
        content: '';
        position: absolute;
        width: 123px;
        height: 37px;
        background-image: url(assets/images/connect_down.svg);
        bottom: -20px;
    }
    .bgc-elm-inner-3 {
        height: 200px;
        width: 200px;
        background-image: url(assets/images/bg-element/Rectangle-1.png);
        left: -111px;
        top: 273px;
    }
    a.qr-link{
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .inner-body::after {
        bottom: -44px;
        top: auto;
        left: -40px;
        height: 150px;
        width: 150px;
    }
    .bgc-elm-inner-2 {
        height: 200px;
        width: 200px;
        background-image: url(assets/images/bg-element/Ellipse-1.png);
        right: -115px;
        top: 680px;
    }
}