﻿main header {

    height: 168px;
}

article .payPalSection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    column-gap: 3%;
    

}

@media (max-width: 43em) {
    article .payPalSection {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

article .payPalSection form, article .payPalSection input, article .payPalSection div, article .payPalSection img {
    width: 100%;
    margin: 0;
    padding: 0;

}

article .payPalSection form{
    height: auto;
    min-height: auto;
    display:  block;
}

