#openPopup {background:red}

    .mainSection {
    	margin-bottom: 100px;
    }
    
    .sectionBox {
    	max-width: 700px;
        margin: 0 auto;
    }
    .sectionBox h3 {
    	font-size: 2em;
        margin: 20px 0;

    }
    .sectionBox h4 {
    	font-size: 1.3em;
        color: #5E686D;
        text-align: center;
        margin:0;
    }
    .sectionBox a {
    	font-weight: bolder;
        line-height: 1.5;
    }
   
    .sectionBox p {
        line-height: 1.4;
    }
    
    /* Responsive for mobile */
@media (max-width: 768px) {
    .sectionBox h4 {
    	font-size: 1.4em;
        color: #000;
        text-align: left;
        margin-top:40px;
    }
    }

    /* Custom Article Donation Container */
    .donationContainer {
        padding: 25px 30px 10px 30px;
   		margin: 30px auto;
    	max-width: 850px;
    	border-radius: 4px;
    	box-shadow: 0 0 5px rgb(0 0 0 / 11%);
    	border: 1px dashed #bebebe;
    	background: #f4f4f4;
    }

    .donationContainer h3 {
        margin-bottom: 10px;
        font-weight: bolder;
        font-size: 1.35em;
    	text-align: left;
    	line-height: 1.1;
        color: #000;
        letter-spacing: 1px;
        border-bottom: 1px dashed #ccc;
        padding-bottom: 10px;
    }

    .donationContainer p {
        font-size: .86em;
    }

    .donateButton {
        display: block;
        padding: 10px;
        background-color: #b33333;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        transition: .9s;

    }

    .donateButton svg {
        width: 12px;
        height: 12px;
        padding-bottom: 2px;
    }

    .donateButton:hover {
        background-color: var(--breakingColor);
        cursor: pointer;
        transition: .3s;
    }

    .paymentOptions {
        margin-top: 5px;
    	text-align: center;
    	font-size: 0.7em;
    	color: #939393;
    	line-height: 1.2;
    }
    
     @media only screen and (max-width:767px) {
         .donationContainer h3 {font-size:1.1em}
    }

    @keyframes borderPulse {

        0%,
        100% {
            border-color: #47b07f;
        }

        50% {
            border-color: #446fa0;
        }
    }
