/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --------------- End of CSS reset --------------- */


/* Colors */

html{
  background-color: rgb(0,0,0);
}
.logo,
.priceTag,
.faq,
.gratLite1,
.gratLite3 {
  background-color: rgb(177, 117, 5, .9);
}

.bizCard,
.blog,
.gratDark2,
.gratDark4 {
  background-color: rgb(0, 0, 0, .7);
  color: rgb(255, 250, 220);
}

footer {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 250, 220);
}

.bizCard {
  border-bottom: 5px solid rgb(120, 0, 0);
}

.faq-xs {
  border-top: 5px solid rgb(120, 0, 0);
  border-bottom: 5px solid rgb(120, 0, 0);
}

.blog,
footer {
  border-top: 5px solid rgb(120, 0, 0);
}


.priceTag {
  color: rgb(120, 0, 0);
  text-shadow: .04em .03em .1em rgb(0, 0, 0);
}

.priceTag,
.logo,
.grat{
  border: 5px solid rgb(120, 0, 0);
}

/* Rules */


html {
  background-image: url(../images/harp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-size: 300%; */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


h1 {
  font-size: 2.4em;
  line-height: 1.9em;
}

h2 {
  font-size: 1.8em;
  line-height: 2.3em;
}

p {
  font-size: 1.6em;
  line-height: 1.7em;
}

.emptySpace {
  display: none;
}

.bizCard {
  padding: 10px;
  text-align: center;
}

.FBLink{
  font-size: 40px;
  margin-top: 10px;
}



@keyframes fadeBounce {
  0% {
    opacity: 0;
    transform: translateY(-200%);
  }

  40% {
    transform: translateY(0);
  }

  55% {
    transform: translateY(-8%);
  }

  70% {
    opacity: 1;
    transform: translateY(0);
  }

  85% {
    transform: translateY(-2%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo{
  border-radius: 50%;
}

.priceTag {
  animation-name: fadeBounce;
  animation-duration: 1s;
  border-radius: 50%;
  border-radius: 20px;
  padding: 10px 30px;
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
}

.grat{
  border-radius: 20px;
  padding: 10px 30px;
  text-align: center;
}

.blog {
  padding: 10px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  transition: all .8s;
}

/* .logo:hover img {
  transform: scale(1.1);
} */

.faq {
  padding: 10px;
}

footer {
  padding: 10px;
  text-align: center;
  font-size: .6em;
}

/* xs view */

.banner-xs{
  border-bottom: 5px solid rgb(120, 0, 0);
  margin-bottom: 10px;
}

.grat{
  margin: 0px 10px 10px;
}

.row-xs {
  padding: 10px 5px;
}

.col-xs {
  float: left;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.col-xs-11 {
  width: 91.666%;
}

.col-xs-10 {
  width: 83.333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.666%;
}

.col-xs-7 {
  width: 58.333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.666%;
}

.col-xs-4 {
  width: 33.333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.666%;
}

.col-xs-1 {
  width: 8.333%;
}

.col-xs-0 {
  width: 0;
}

/* sm view */

@media screen and (min-width: 768px) {

  .col-sm-11 {
    width: 91.666%;
  }

  .col-sm-10 {
    width: 83.333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.666%;
  }

  .col-sm-7 {
    width: 58.333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.666%;
  }

  .col-sm-4 {
    width: 33.333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.666%;
  }

  .col-sm-1 {
    width: 8.333%;
  }

  .col-sm-0 {
    width: 0;
  }
}

/* md view */

@media screen and (min-width: 1024px) {
  .blog-md {
    border-bottom: 5px solid rgb(120, 0, 0);
  }

  .banner-md {
    border: 5px solid rgb(120, 0, 0);
    /* margin-bottom: 20px; */
  }

  .bizCard-md,
  .faq-md {
    border-top: 5px solid rgb(120, 0, 0);
    border-bottom: 5px solid rgb(120, 0, 0);
  }

  .gratLite3{
    background-color: rgb(0, 0, 0, .7);
    color: rgb(255, 250, 220);
  }

  .gratDark4{
    background-color: rgb(177, 117, 5, .9);
    color: rgb(0, 0, 0);
  }


  /* .row-md {
    padding: 10px 5px;
  } */

  .col-md {
    float: left;
    width: 100%;
    /* padding: 10px; */
    box-sizing: border-box;
  }

  .banner-md {
    width: 70%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .col-md-11 {
    width: 91.666%;
  }

  .col-md-10 {
    width: 83.333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.666%;
  }

  .col-md-7 {
    width: 58.333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.666%;
  }

  .col-md-4 {
    width: 33.333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.666%;
  }

  .col-md-1 {
    width: 8.333%;
  }

  .col-md-0 {
    width: 0;
  }
}

/* lg view */

@media screen and (min-width: 1280px) {
  .banner-lg {
    width: 60%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

    .col-lg-11 {
    width: 91.666%;
  }

  .col-lg-10 {
    width: 83.333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.666%;
  }

  .col-lg-7 {
    width: 58.333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.666%;
  }

  .col-lg-4 {
    width: 33.333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.666%;
  }

  .col-lg-1 {
    width: 8.333%;
  }

  .col-lg-0 {
    width: 0;
  }
}

.row:before,
.row:after,
.group:before,
.group:after {
  content: "";
  display: table;
}

.row:after,
.group:after {
  clear: both;
}

.row,
.group {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}