﻿/* Site Developer: Karoline Dassie

    Main Colors
    - Dark Yellow: #ecb234
    - Yellow: #ecb744
    - Black: #000000
    - Red: #8b0305
    - White: #fff
    - Gray: #e6e6e6
*/

/*===================== 
	CSS reset/normalize 
=======================*/
/**Correct `block` display not defined in IE 8/9.**/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
pre {
  white-space: pre-wrap;
}
small {
  font-size: 80%;
}

/*===================== 
	base styles 
=======================*/
h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Condensed", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
a {
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 2px;
}
.whitebg a {
  letter-spacing: 0 !important;
}

html,
body {
  font-family: Arial, sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  margin: 0;
  background: #ecb744;
}

svg:not(:root) {
  overflow: hidden; /*reset*/
}
/* clear floats */
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group {
  zoom: 1;
}
.clear {
  clear: both;
}

/*image replacement*/
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-style: solid;
  height: 0;
}

img {
  border: 0;
}

/*===================== 
	typography 
=======================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 2em;
}

body,
p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
}

b,
strong {
  font-weight: bold;
}

/*===================== 
	link styles 
=======================*/
a:focus {
  outline: thin dotted; /*reset*/
}

a,
a:link,
a:visited,
a:active {
  outline: 0; /*reset*/
  color: inherit;
  text-decoration: none;
}
a:hover {
  outline: 0; /*reset*/
  text-decoration: none;
  color: #ccc;
}

/*===================== 
	header styles 
=======================*/
header {
  background: #000;
  width: 100%;
  display: inline-block;
}
.logo {
  width: 30%;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
}
.logo img {
  width: 90%;
  margin: 0 auto;
  max-width: 300px;
  text-align: center;
}
.header-right {
  width: 68%;
  display: inline-block;
  vertical-align: middle;
}
.header-contact {
  width: 100%;
  text-align: right;
}
.header-contact p {
  color: #fff;
  text-align: right;
  display: inline-block;
  margin-right: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
}
.header-contact a {
  display: inline-block;
  vertical-align: middle;
}
.header-contact a[href^="tel:"] {
  color: #fff !important;
}
.header-contact .fab {
  color: #ecb744;
  display: inline-block;
  font-size: 20px;
}
hr {
  width: 100%;
  background: #ccc;
  height: 0.5px;
  margin: 2% 0;
  border: 0;
}

/*===================== 
	layout styles 
=======================*/
#padding25 {
  padding: 25px 0;
}
.strong {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
}
h1.green {
  font-size: 25px;
  font-weight: 300;
}
.white-text {
  color: #fff;
}
.gray-text {
  color: #e0e0e0;
}
.bl-text {
  color: #ecb744;
  font-size: 40px;
}
.width-90 {
  width: 90%;
  margin: 0 auto;
}
.flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blue-left h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 55px;
  line-height: 60px;
}
.blue-left h3 {
  font-weight: 400;
}
.text-left {
  width: 70%;
  background: #f1f1f1;
  padding: 5% 0;
}
.rules {
  width: 100%;
  background: #f1f1f1;
  padding: 5% 0;
}
.text-right {
  width: 30%;
}
.pad {
  padding: 3em 0;
}
.whitebg {
  background: #fff;
}

.red-btn {
  background: #8b0304;
  padding: 15px 15px;
  display: inline-block;
  width: 95%;
  margin: 10px 0;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  letter-spacing: 2px;
}
.red-btn .btn-arrow {
  display: inline-block;
  text-align: right;
  float: right;
}
.red-btn:hover {
  background: #222222;
}

.yellow-btn {
  background: #ecb744;
  padding: 15px 15px;
  display: inline-block;
  width: 95%;
  margin: 10px 0;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  letter-spacing: 2px;
}
.yellow-btn .btn-arrow {
  display: inline-block;
  text-align: right;
  float: right;
}
.yellow-btn:hover {
  background: #222222;
}

.blk-btn {
  background: #222;
  padding: 15px 15px;
  display: inline-block;
  width: 95%;
  margin: 10px 0;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}
.blk-btn .btn-arrow {
  display: inline-block;
  text-align: right;
  float: right;
}
.blk-btn:hover {
  background: #ecb744;
}

.left {
  float: left;
}
.right {
  float: right;
}

.wrap {
  width: 100%;
  margin: 0;
}

.container {
  margin: 0 auto;
}

.col-1-6 {
  width: 16%;
}
.col-1-5 {
  width: 20%;
}

.col-2-3 {
  width: 65%;
}
.col-3-4 {
  width: 75%;
}

.category-title {
  background-image: url(/../siteart/category-bg.jpg);
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2.7% 0;
  text-align: right;
}
.category-title h1 {
  text-align: left;
  color: #fff;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 35px;
}
.category-container {
  padding: 2.7% 0;
  background: #fff;
}
.category-container a {
  width: 23%;
  margin: 10px 10px;
  background: #f1f1f1;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  color: #222222;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.category-container a:hover {
  background: #ecb744;
  color: #222222;
}
.ft-40 {
  font-size: 40px;
}

/*===================== 
	footer styles 
=======================*/
/*  scrolling inventory
------------------------------------------------*/
.scrolling-wrap {
  width: 100%;
  height: 90px;
  overflow: hidden;
}

.scrolling {
  width: 100%;
  height: 92px;
}
footer {
  display: flex;
  flex-direction: row;
  align-items: top;
  background: #222;
}
.col-3 {
  width: 33.33%;
  margin: 2% 2%;
  color: #fff;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
}
.col-3 p,
.col-3 a {
  font-size: 14px;
  letter-spacing: 1px;
}
footer h3 {
  color: #ecb744;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
footer ul li {
  color: #f7f7f7 !important;
  text-decoration: none;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.col-1-2 {
  width: 45%;
  margin-right: 5%;
  float: left;
}
footer .footer-links {
  width: 30%;
  margin-left: 3%;
  margin-top: 1.5%;
}
footer .links {
  float: left;
  width: 45%;
}
footer .footer-links h3 {
  padding-left: 6%;
}

a.footerlink:link,
a.footerlink:visited,
a.footerlink:active {
  text-decoration: none;
  font-size: 13px;
  color: #f7f7f7 !important;
}
a.footerlink:hover {
  text-decoration: none;
  font-size: 13px;
  color: #f7f7f7 !important;
}

.footertext {
  font-size: 13px;
  color: #f7f7f7;
}

.smallfootertext {
  font-size: 10px;
  color: #f7f7f7;
}
.copyright {
  float: right;
}
.divfooter {
  width: 90%;
  text-align: right;
  margin: 0 auto;
  color: #f7f7f7;
  padding-top: 7%;
}

.bottom {
  background: #ecb744;
  padding: 30px 0;
  text-align: center;
}
.bottom p {
  font-size: 14px;
}

/* ======================
	Home Page
====================== */

.text-1 {
  color: white;
  font-size: 17px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.text-2 {
  color: white;
  font-size: 17px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
}

.blue-button {
  background: #ecb744;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 2% auto 0 auto;
  padding: 1% 0;
  display: block;
  width: 38%;
}
.blue-button:hover {
  background: #0077c0;
}

.call-out-bg {
  background: url(../siteart/call-out-bg.jpg) no-repeat;
  background-position: center;
}
.call-out-span {
  width: 60%;
  margin: 0 auto;
}
.col-1-3 {
  width: 25%;
  float: left;
}
.call-out-span figure {
  background: #f7f7f7;
  margin: 4% 4%;
}
.call-out-span figure:hover {
  cursor: pointer;
}
.call-out-span figure img {
  padding: 7% 30% 0 30%;
}
.call-out-span figcaption {
  text-align: center;
  padding: 2% 0 5% 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #222;
}
.home-about {
  width: 100%;
}
.home-about .col-1-2 {
  width: 45%;
  padding: 5% 0 0 0;
}
.home-about-para p {
  line-height: 24px;
}
.home-about-para h1 {
  color: #ecb744;
  text-transform: uppercase;
  font-size: 25px;
}
.pic-collage {
  width: 100%;
}

.col-1-4 {
  width: 10%;
  padding: 3% 2%;
  float: left;
}
.col-1-4:hover {
  cursor: pointer;
}

/* ======================
	CONTENT
====================== */
iframe.mapa {
  border: none;
  width: 100%;
  height: 300px;
}

.formcont {
  background: #f8f8f8;
  padding: 2%;
}
.formcont p {
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

.order-form {
  display: block;
}
.order-form label {
  display: block;
  font-size: 16px;
  padding-top: 4%;
  width: 100%;
}
.order-form input {
  border: #ccc solid 1px;
  border-radius: 2px;
  padding: 12px;
  font-size: 14px;
  box-sizing: border-box;
  margin: 0 1% 10px 0;
  width: 99%;
  font-family: "Roboto", sans-serif;
}
.order-form input.half {
  width: 49%;
  float: left;
}

.order-form input:focus {
  outline: #000 solid 1px !important;
}

.order-form input.button2 {
  display: block;
  width: 200px;
  padding: 10px 0;
  margin: 10px 0 0 0;
  background-color: #8b0304;
  color: #fff;
  border: 0;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.order-form input.button2:hover {
  background-color: #787878;
  cursor: pointer;
}

.order-form select {
  border: #ccc solid 1px;
  border-radius: 2px;
  padding: 2%;
  font-size: 14px;
  box-sizing: border-box;
  width: 98%;
  margin: 0 1% 10px;
  color: #969696;
}
.order-form select.half {
  width: 48%;
  float: left;
}

.order-form textarea {
  font-family: "Roboto", sans-serif;
  border: #ccc solid 1px;
  border-radius: 2px;
  padding: 10px;
  font-size: 14px;
  width: 99%;
  margin: 0 0 10px 0;
  box-sizing: border-box;
}
.order-form textarea:focus {
  outline: #000 solid 1px !important;
}

.CaptchaPanel {
  margin: 0px 0px 0px 0px !important;
  text-align: center;
  padding: 0px !important;
}

.CaptchaWhatsThisPanel a {
  color: #000 !important;
}
.CaptchaImagePanel,
.CaptchaMessagePanel,
.CaptchaAnswerPanel,
.CaptchaWhatsThisPanel {
  margin: 0px 0px 0px !important;
  font-size: 12px;
  color: #000;
  text-align: left !important;
  font-weight: normal !important;
  padding: 0px 0 0 !important;
  box-sizing: border-box;
}

.CaptchaImagePanel {
  float: left;
  margin-right: 10px !important;
}
.CaptchaMessagePanel {
}
#CaptchaAnswer {
  margin: 0 0 10px 0 !important;
  width: 100%;
}
fieldset {
  width: 98%;
  box-sizing: border-box;
  margin: 0 1% 15px;
  background: #fff;
}

/* ------------- MEDIA SCREENS ------------------------- */

@media screen and (max-width: 1450px) {
  .category-container a {
    width: 22.5%;
  }
  .container {
  }
  .call-out-span {
    width: 80%;
  }
}

@media screen and (max-width: 1150px) {
  .flex-container {
    display: block;
  }
  .text-left,
  .text-right {
    width: 100%;
  }
  .text-right {
    padding: 3% 0;
  }
  .category-container a {
    width: 30.5%;
  }
  .bl-text {
    line-height: 44px;
  }
  .container {
  }
  .call-out-span {
    width: 80%;
  }
}

@media screen and (max-width: 1060px) {
  .category-title h2 {
    font-size: 20px;
  }
  .ft-40 {
    font-size: 20px;
  }

  .container {
  }
  nav.primary ul {
    max-width: 920px;
    padding: 0;
    margin: 0 auto;
  }
  nav.primary ul li a {
    font-weight: bold;
    display: block;
    padding: 15px 25px;
    text-decoration: underline;
    color: #222;
    margin: 0;
  }
  .home-about .col-1-2 {
    width: 45%;
    padding: 5% 0 0 5%;
  }
  .col-1-2 {
    padding: 0;
    margin: 0;
  }

  .text-1 {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  .text-2 {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  .blue-button {
    width: 60%;
    padding: 3% 0;
  }

  footer {
    display: block;
    padding: 25px 0;
  }
  footer .col-3 {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 920px) {
  .category-container {
    text-align: center;
    margin: 0 auto;
  }
  .category-container a {
    width: 43.5%;
  }
  .container {
  }
  .home-about .col-1-2 {
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  .pic-collage {
    margin-bottom: 7%;
  }
}

@media screen and (max-width: 760px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: normal;
  }
  .CaptchaPanel {
    width: 100% !important;
  }
  .order-form input.half {
    width: 99%;
    float: left;
  }

  .category-title h2 {
    text-align: center;
  }
  .category-container a {
    font-size: 14px;
    width: 100%;
    margin: 5px auto;
  }

  .container {
  }

  .text-1 {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 30%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .text-2 {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  .blue-button {
    width: 80%;
    padding: 3% 0;
  }

  .call-out-bg {
    background: none;
    background-color: #ecb744;
    padding: 4% 0;
  }
  .call-out-span {
    width: 90%;
  }
  .col-1-3 {
    width: 90%;
    float: none;
  }
  .home-about .col-1-2 {
    width: 95%;
    float: none;
    margin: 0 auto;
    padding: 5% 0 0 0;
  }

  /* footer */
  footer {
    margin: 0;
    width: 100%;
    background: #222;
  }
  footer h3 {
    color: #ecb744;
    font-weight: bold;
  }
  footer ul li {
    color: #f7f7f7 !important;
    text-decoration: none;
    list-style: none;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 0;
  }
  .col-1-2 {
    width: 90%;
    margin-right: 5%;
    float: none;
  }
  footer .footer-links {
    width: 90%;
    padding: 4% 0;
    margin-left: 3%;
    margin-top: 1.5%;
  }
  footer .links {
    float: left;
    width: 45%;
    padding: 2% 0 0 0;
  }
  .divfooter {
    width: 95%;
    text-align: center;
    margin: 0 auto;
    color: #f7f7f7;
    padding: 4% 0;
  }
  .copyright {
    float: none;
  }

  /* ----------- Mobile Nav Styles ------------ */
  #menu-button {
    /* initially will need to be hidden */
    display: block;
    font-size: 30px;
    width: 97%;
    position: relative;
    z-index: 900; /* needs to be lower than nav.mobile, adjust as needed */
    padding-bottom: 0.5%;
    margin-top: 2%;
  }
  #menu-button a {
    color: #fff;
    text-decoration: none;
  }
  nav.primary {
    display: none;
  }
  nav.mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #333;
    z-index: 1200; /* needs to be higher than #menu-button, adjust as needed */
    overflow: auto;
  }
  nav.mobile h3 {
    /* Menu header styles */
    position: relative;
    padding: 12px 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border-bottom: 4px solid #222;
  }
  nav.mobile .menu-toggle {
    /* Menu close button */
    position: absolute;
    top: 12px;
    right: 10px;
    display: inline-block;
    padding: 6px 9px 5px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    line-height: 1;
    background: #222;
    color: #999;
    text-decoration: none;
    vertical-align: top;
  }
  nav.mobile .menu-toggle:hover {
    /* Menu close button on hoveer */
    color: #fff;
  }
  nav.mobile ul {
    list-style: none;
    font-weight: 300;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #454545;
    margin: 0;
    padding: 0;
  }
  nav.mobile ul li {
    border-top: 1px solid #454545;
    border-bottom: 1px solid #151515;
  }
  nav.mobile ul li a {
    position: relative;
    display: block;
    padding: 10px;
    color: #999;
    text-decoration: none;
  }
  nav.mobile ul li a:hover {
    background: #000;
    color: #fff;
  }
  nav.mobile ul li li a {
    /* appearance of the sub-level links */
    background: #444;
    position: relative;
    display: block;
    padding: 10px 10px 10px 15px;
    color: #ccc;
    text-decoration: none;
  }
  nav.mobile ul li li li a {
    /* appearance of third level sub-level links if needed */
    background: #666;
    position: relative;
    display: block;
    padding: 10px 10px 10px 25px;
    color: #000;
    text-decoration: none;
  }
  nav.mobile ul li span.click {
    /* dropdown menu idicator arrow be sure to include this image with your image files */
    background: url(../siteart/arrow.png) 10px 12px no-repeat;
    background-size: 45%;
    position: relative;
    display: block;
    float: right;
    margin: -44px 0 0 0;
    cursor: pointer;
    z-index: 12399994;
    width: 40px;
    height: 40px;
    -webkit-transition: background-size 0.3s ease-in-out;
    -moz-transition: background-size 0.3s ease-in-out;
    transition: background-size 0.3s ease-in-out;
  }
  nav.mobile ul li span.click:hover {
    background-size: 60%;
  }
}

@media screen and (max-width: 550px) {
  .header-contact p {
    font-size: 14px;
  }
  footer .col-3 {
    padding: 5px 0;
  }
  footer .col-3 a {
    font-size: 14px;
    line-height: 20px;
  }

  .text-1 {
    color: white;
    font-size: 15px;
    position: absolute;
    top: 30%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .text-2 {
    color: white;
    font-size: 15px;
    position: absolute;
    top: 70%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
