:root {
  --white: #fffffa;
  --black: #000103;
  --blueblack: #0B3C49;
  --grey: #515052;
  --ltgrey: rgba(81, 80, 82, .8);
  --blue: #306ba3;
  --yellow: #fcba04;
  --red: #ec4209;
}

html {
  /* border-box box model allows us to add padding and border to our elements without increasing their size */
  box-sizing: border-box;
  /* A system font stack so things load nice and quick!
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";*/
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  /* text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07); */
}

/*
  WAT IS THIS?!
  We inherit box-sizing: border-box; from our <html> selector
  Apparently this is a bit better than applying box-sizing: border-box; directly to the * selector
*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

.cgi-rt {
  position:relative;
  pointer-events:none;
  height:541px;
  max-height:541px;
  max-width:960px;
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  margin: 0 auto;
}

.cgi-rt iframe {
  pointer-events:auto;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
  box-sizing:border-box;
  max-width: 960px!important;
  max-height: 541px!important;
  background:transparent!important;
}

@media only screen and (max-width: 510px) {
  .cgi-rt {
    max-height:255px;height:255px;
  }
}


.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1rem;
}

.width-1\/12 {
  grid-column: span 1;
}

.width-2\/12 {
  grid-column: span 2;
}

.width-3\/12 {
  grid-column: span 3;
}

.width-4\/12 {
  grid-column: span 4;
}

.width-5\/12 {
  grid-column: span 5;
}

.width-6\/12 {
  grid-column: span 6;
}

.width-7\/12 {
  grid-column: span 7;
}

.width-8\/12 {
  grid-column: span 8;
}

.width-9\/12 {
  grid-column: span 9;
}

.width-10\/12 {
  grid-column: span 10;
}

.width-11\/12 {
  grid-column: span 11;
}

.width-12\/12 {
  grid-column: span 12;
}

@media (min-width: 48em) {
  .width-1\/12\@m {
    grid-column: span 1;
  }
}

@media (min-width: 48em) {
  .width-2\/12\@m {
    grid-column: span 2;
  }
}

@media (min-width: 48em) {
  .width-3\/12\@m {
    grid-column: span 3;
  }
}

@media (min-width: 48em) {
  .width-4\/12\@m {
    grid-column: span 4;
  }
}

@media (min-width: 48em) {
  .width-5\/12\@m {
    grid-column: span 5;
  }
}

@media (min-width: 48em) {
  .width-6\/12\@m {
    grid-column: span 6;
  }
}

@media (min-width: 48em) {
  .width-7\/12\@m {
    grid-column: span 7;
  }
}

@media (min-width: 48em) {
  .width-8\/12\@m {
    grid-column: span 8;
  }
}

@media (min-width: 48em) {
  .width-9\/12\@m {
    grid-column: span 9;
  }
}

@media (min-width: 48em) {
  .width-10\/12\@m {
    grid-column: span 10;
  }
}

@media (min-width: 48em) {
  .width-11\/12\@m {
    grid-column: span 11;
  }
}

@media (min-width: 48em) {
  .width-12\/12\@m {
    grid-column: span 12;
  }
}

.grid__item {
  /* padding: 1em; */
  /* background: var(--black); */
  text-align: center;
}
p {
  font-size: 1.1rem;
  line-height: 1.6rem;
}

h2 {
  margin-top: 0;
}


section:not(:first-child) {
  /* margin-top: 3em; */
}

body {
  background-color: var(--red);
  /* padding: 3em; */
}

section {
  padding: 3rem;
}

/*
#info-bar {
  font-family: 'Roboto Condensed', sans-serif;
  font-size:.89rem;
  font-weight: 700;
  color:var(--yellow);
  background-color:var(--black);
  text-transform: uppercase;
  padding:0;
}

#info-bar a:hover {

} */


/* @import url(https://fonts.googleapis.com/css?family=Oswald:400,700);
body {
  background-color: #E84545;
  color: #53354A;
  font-family: 'Oswald', sans-serif;
  line-height: 2em;
  text-transform: uppercase;
}

h1 {
  font-size: 3em;
  padding: 3em 0 1em 0;
} */

.navBar {
  background-color: var(--blueblack);
  position: fixed;
  min-width: 100%;
  z-index:5;
}

.logo {
  /* background-color: var(--white);
  border-radius: 50px; */
  display: inline-block;
  margin: 1rem 0;
  width: 120px;
}

.logo img {
  width:100%;
  margin: 0 auto;
}

.wrapper {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 1rem;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  width: 100%;
}
nav ul a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight:700;
  padding:4px 12px;
  border-radius:24px;
  transition: all .3s ease;
}


nav ul a:hover {
  color:var(--blueblack);
  background-color: var(--white);
}

nav li {
  display: inline-block;
}
nav #menu-toggle {
  display: none;
}
nav .label-toggle {
  display: none;
}
nav .wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}




#intro {
  background-color:var(--red);
  padding:0rem 0rem 0rem 0rem;
}

#intro h1{
  font-family: 'Abril Fatface', cursive;
  text-transform:uppercase;
  font-size:2.3rem;
  margin-top:3rem;
}

#intro h2{
  font-family: 'Roboto Condensed', sans-serif;
  font-size:1.5rem;
  font-weight: 700;
  text-transform:uppercase;
  color:var(--black);
  margin-top:-2rem;
}

#intro h3 {
  font-size: .78rem;
  margin-top: -1.3rem;
}

#intro img {
  width:92.5%;
  max-width:1000px;
  margin-bottom:-45px;
}



#intro-2 {
  background-color:var(--blue);

}

#intro-2 h1{
  font-family: 'Abril Fatface', cursive;
  text-transform:uppercase;
}

#service {
  color:var(--black);
  background-color:var(--yellow);
}

#service ul li {
  font-family: 'Roboto', sans-serif;
  font-weight:500;
  font-size:1.2rem;
  line-height:2.6rem;
  text-align:left;
  list-style-type: none;
  margin-left:-36px;
}

#service h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size:1.6rem;
  font-weight: 700;
  text-transform:uppercase;
  color:var(--black);
  border: solid 2px var(--black);
  padding:10px;
}

#service-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/new-front-1024x400.jpg);
  padding:6rem 1rem 6rem 1rem;
}

#service-header img {
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  display:none;
}

#service img {
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
}

#mini-mart {
  background-color:var(--red);
}



#mini-mart-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/cooler-1024x400.jpg);
  padding:6rem 1rem 6rem 1rem;

}

#mini-mart-header img {
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  display:none;
}

#mini-mart img {
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
}


.mini-mart-caption {
  font-size:1rem;
  line-height:1.5rem;
}

#contact-map {
  background-color:var(--blue);
  padding:3rem 0rem 0 0rem;
}

#contact-header {
  background-color:var(--blue);
}

#contact-header img {
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
}

#contact {
  background-color:var(--blue);
  padding:.5rem;
}

#contact h1 {
}

#contact h1, h2{
    text-transform: uppercase;
}


#contact a {
  color: var(--white);
  font-size:1.3em;
  line-height:3.2rem;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--blue);
  font-weight:700;
  padding:8px 18px;
  border: solid 2px var(--white);
  border-radius:36px;
  transition: all .4s ease;
}

#contact a:hover {
  color:var(--blue);
  background-color: var(--white);
  border: solid 2px var(--white);
}

.contact-box {
  font-size:1.6rem;
  border: solid 2px var(--white);
  padding:1rem;
  margin:2rem;
}

.contact-box h2 {
margin-bottom:0px;
}

.contact-box p {

}

#connect {
background-color: var(--blue);
}


#connect h4 {
font-family: 'Roboto Condensed', sans-serif;
background-color: var(--yellow);
color: var(--black);
padding:2rem;
margin-bottom:0px;
font-weight:700;
text-transform: uppercase;
font-size:1.6rem;
line-height:2.5rem;
}

#connect h2 {
font-family: 'Roboto Condensed', sans-serif;
color: var(--white);
padding:2rem;
margin-bottom:0px;
font-weight:700;
text-transform: uppercase;
font-size:1.6rem;
line-height:2.5rem;
}

#connect a {
  color: var(--white);
  font-size:1.5em;
  line-height:3.4rem;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--blue);
  font-weight:700;
  padding:8px 18px;
  border: solid 2px var(--white);
  border-radius:36px;
  transition: all .4s ease;
}

#connect a:hover {
  color:var(--blue);
  background-color: var(--white);
  border: solid 2px var(--white);
}

.signup-form {
  padding:2rem;
  margin:0 auto;
  max-width:600px;
}
.fb-embed {
    padding-top:4rem;
    width:100%;
}

.indicates-required {
    color: var(--red);
}

.asterisk {
    color: var(--red);
}

.validate {
  background-color: var(--blueblack);
  padding:1rem;
}

.mc-field-group label {
  font-size:1rem;
  line-height:3rem;
}

.mc-field-group input {
  color:var(--black);
  background-color: var(--white);
  margin-left:10px;
  border:none;
}

.clear {}

.indicates-required {
  margin:1rem 1rem;
}

.clear input {
  background-color: var(--red);
  color:var(--white);
  text-transform:uppercase;
  font-weight:700;
  padding:8px 18px;
  font-size:1rem;
  border:none;
  border-radius:36px;
  transition: all .4s ease;
  margin:1rem 1rem;
}

.clear input:hover {
  background-color: var(--white);
  color:var(--red);
  text-transform:uppercase;
  font-weight:700;
  padding:8px 18px;
  font-size:1rem;
  border:none;
  border-radius:36px;
}




#mobile-footer {
    background-color:var(--blueblack);
}

#footer {
    background-color:var(--blueblack);
    display:none;
}


/* MEDIA QUERIES */

/* phone */
@media (max-width: 599px) {
  #intro h1 {
    font-family: 'Abril Fatface', cursive;
    text-transform:uppercase;
    font-size:1.9rem;
  }
  #intro h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size:1.6rem;
    font-weight: 700;
    text-transform:uppercase;
    color:var(--black);
    margin-top:-1.4rem;
  }
}



/* tablet portrait up */
@media (min-width: 600px) {



  #intro h1 {
    font-family: 'Abril Fatface', cursive;
    text-transform:uppercase;
    font-size:5.2rem;
  }

  #intro h2{
    font-family: 'Roboto Condensed', sans-serif;
    font-size:3.6rem;
    font-weight: 700;
    text-transform:uppercase;
    color:var(--black);
    margin-top:-4rem;
  }

  #intro h3 {
    font-size:1.5rem;
    margin-top:-3rem;
  }


p {
  font-size:1.5rem;
  line-height: 2.2rem;
}



}







/* tablet landscape up */
@media (min-width: 900px) {

  #intro h1 {
    font-family: 'Abril Fatface', cursive;
    text-transform:uppercase;
    font-size: 7.2rem;
  }

  #intro h2{
    font-family: 'Roboto Condensed', sans-serif;
    font-size:4.6rem;
    font-weight: 700;
    text-transform:uppercase;
    color:var(--black);
    margin-top:-6rem;
  }

  #intro h3 {
    font-size:1.5rem;
    margin-top:-3rem;
  }

  #intro-2 h1{
    font-size:4rem;
    font-family: 'Abril Fatface', cursive;
    text-transform:uppercase;
  }

  section {
    padding: 4rem;
  }

  #service-header img {
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    display:inline-block;
  }

  #service img {
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    display:none;
  }

  #mini-mart-header img {
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    display:inline-block;
  }

  #mini-mart img {
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
    display:none;
  }

  #mobile-footer {
      background-color:var(--blueblack);
        display:none;
  }

  #footer {
      background-color:var(--blueblack);
      padding-top:4rem;
      display:block;
  }


}


/* desktop up */
@media (min-width: 1200px) {

  #intro h1 {
    font-family: 'Abril Fatface', cursive;
    text-transform:uppercase;
    font-size:8.2rem;
  }

}



@media screen and (max-width: 768px) {


  .logo {
    width: 100px;
  }


  nav nav ul a {
    color: var(--white);
  }

  nav ul {
    display: block;
    height: 0;
    list-style-type: none;
    opacity: 0;
    text-align: center;
    transition: all .3s ease;
    width: 100%;
    visibility: hidden;
  }
  nav li {
    display: block;
    margin-left: -36px;
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 2rem 0px;
  }

  nav #menu-toggle:checked ~ ul {
    opacity: 1;
    height:100%;
    visibility: visible;
  }

  nav #menu-toggle:checked ~ .label-toggle {
    opacity: 10;
    background-image: url(../img/close-x.svg);
}


nav .label-toggle {
    background-image: url(../img/hamburger-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    display: block;
    float: right;
    height:40px;
    width:40px;
    margin:0rem;
    margin-top:-1rem;

  }
  nav .wrapper {
    display: block;
  }
}
