html{
    box-sizing: border-box;
}
* , :after, :before {
    box-sizing: inherit
}
@media (min-width: 1001px){
    #content{
        margin-top: 100px;
    }
}

#content.grey{
    background: #f2f4f4;
}


/* home page */

.homehero{
    background: #084281 url(../images/blaw-hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 4em 10% 6em;
    margin-bottom: 2em;
}
.homehero h1{
    color: #fff;
    margin-bottom: 0.5em;
}
.homehero p{
    color: #fff;
    font-style: italic;
    font-size: 22px;
}
@media (min-width: 1200px){
    .homehero p {
        width: 800px;
        margin: 0 auto;
    }
}

.homeresources{
    background: #fbebf3;
    text-align: center;
    padding: 2em 5%;
    margin-top: 2em;
}
.homeresources h3{
    color: #093f7b;
    font-style: normal;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 0.5em;
}
.homeresources p{
    color: #000;
    margin-bottom: 2em;
}
@media (min-width: 1200px){
    .homeresources p {
        width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

.textbtn a {
    color: #003d7d;
    font-weight: 600;
    font-size: 1.3em;
    line-height: 51px;
    height: 51px;
    padding-left: 37px;
    padding-right: 37px;
    display: block;
    text-align: center;
}
.textbtn a:hover {
    text-decoration: none;
}

.shopcontainer p.textbtn {
    margin: 2em 0;
}

/* gift aid */
.giftaid-info-holder{
    background: #003d7d; 
    padding: 1em 1.5em 3em;
}
.shopcontainer .giftaid-info-holder h2, .giftaid-info-holder p, .giftaid-info-holder label{
    color: #fff;
}
.giftaid-info-holder #claimgiftaid{
    float: left;
    width: 10%;

}
.giftaid-info-holder label{
    float: left;
    width: 85%;
}
.giftaid-info-holder img{
    display: none;
}

/* tablet */
@media (min-width: 768px){
    .giftaid-info-holder{
        padding: 1em 4em 3em 2em;
    }
    .giftaid-info-holder #claimgiftaid{
        float: left;
        width: 5%;

    }
    .giftaid-info-holder label{
        float: left;
        width: 65%;
    }
    .giftaid-info-holder img{
        display: block;
        float: right;
        width: 25%;
    }
}

/* select */

/* body select.select_box */ 
body select { 
    display: block;
    padding: 10px 40px 10px 13px !important; 
    max-width: 100%; 
    height: auto !important; 
    border: 1px solid #003d7d; 
    border-radius: 0; 
    background: url(../images/select_arrow.gif) right center no-repeat; 
    background-color: #fff; 
    color: #003d7d; 
    font-size: 12px; 
    line-height: 16px !important; 
    appearance: none; 
    /* this is must */ -webkit-appearance: none; 
    -moz-appearance: none; 
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    margin-right: 1em;
} 
/* body select.select_box option */ 
body select option { 
    padding: 0 4px; 
} 
body select:disabled {
    opacity: 0.2;
}
/* for IE and Edge */ 
select::-ms-expand { 
    display: none; 
} 
select:disabled::-ms-expand { 
    background: #f60; 
}

#productform p.selectholder{
    float: left;
}
#productform p.imagebtn {
    margin-top: 1em;
}