﻿/*===================== 
	Color information
	
	- Red: #cf1916;
	-
	-
	-
		 
=======================*/
/*===================== 
	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%;
}

/*===================== 
	 	Fonts
=======================*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700");

/*===================== 
	base styles 
=======================*/

html {
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
}

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: 30px;
  font-weight: 300;
  padding: 4% 2% 2% 2%;
  color: #cf1916;
}
h2 {
} /**** Reserving for image buttons ***/
h3 {
  color: #000;
  font-weight: 700;
  font-size: 21px;
}

p {
  margin: 0;
  padding: 1% 2% 3% 2%;
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
}

.bold {
  font-weight: bold;
}

/*===================== 
	link styles 
=======================*/

a:focus {
  outline: thin dotted; /*reset*/
}

a,
a:link,
a:visited,
a:active {
  outline: 0; /*reset*/
  color: #cf1916;
  text-decoration: none;
}
a:hover {
  outline: 0; /*reset*/
  text-decoration: underline;
  color: #000;
}

button.red-btn {
  background: #cf1916;
  padding: 15px;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: #000 0 4px 8px -5px;
  cursor: pointer;
  transition: 0.2s ease-in;
}

button.red-btn:hover {
  background: #b51310;
}

/*===================== 
	header styles 
=======================*/

header {
  width: 100%;
  background: #fff;
  border-bottom: #cf1916 solid 4px;
  padding: 20px 0 0 0;
}
.logo {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 90%;
  padding-bottom: 20px;
}
p.phone {
  padding: 0 22% 1% 0;
  margin: -35px 0 0 0;
  font-weight: 500;
  font-size: 28px;
  text-align: right;
}

.header-top {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top div {
  width: 330px;
  text-align: center;
}

.header-locations {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.header-locations span {
  font-weight: bold;
  text-decoration: underline;
}

/*===================== 
	nav styles 
=======================*/

#menu-button {
  display: none;
}
nav.mobile {
  display: none;
}

nav.primary {
  padding: 0;
  display: block;
  margin: 0;
  width: 100%;
  position: relative;
  background: #000;
}
nav.primary ul {
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
}
nav.primary ul li {
  margin: 0;
  list-style-type: none;
}
nav.primary ul li a {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  padding: 25px 10px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s ease-in;
}
nav.primary ul li a:hover {
  background: #444;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
  font-size: 16px;
  line-height: 16px;
  padding: 10px 0;
  color: #fff;
  background: #333;
  text-align: center;
  border-bottom: #fff solid 1px;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
  background: #646464;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
  display: none;
  position: absolute;
}
nav.primary ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}
nav.primary ul li:hover > ul {
  display: block;
  line-height: 18px;
  z-index: 100;
}
nav.primary ul ul li {
  float: none;
  width: 200px;
  position: relative;
  margin: 0;
}

/******** End of primary Nav ***************/

/*===================== 
	content styles 
=======================*/

/********* Grid and hover effect ************/
.tile-grid {
  position: relative;
  margin: 0 auto;
  padding: 1em 0 2em;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Common style */
.tile-grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  background: #000;
  text-align: center;
  cursor: pointer;
}

.tile-grid figure img {
  position: relative;
  display: block;
  max-width: 100%;
}

.tile-grid figure figcaption {
  padding: 1%;
  color: #fff;
  font-size: 18px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tile-grid figure figcaption::before,
.tile-grid figure figcaption::after {
  pointer-events: none;
}

.tile-grid figure figcaption,
.tile-grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 95%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.tile-grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.tile-grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  letter-spacing: 1px;
}

.tile-grid figure h2 span {
  font-weight: 800;
}

.tile-grid figure h2,
.tile-grid figure p {
  margin: 0;
}

.tile-grid figure p {
  letter-spacing: 1px;
  font-size: 75%;
  color: #fff;
}

/***** Lily Hover Effect *****/

figure.effect-lily img {
  opacity: 0.4;
  width: 100%;
  -webkit-transition:
    opacity 0.35s,
    -webkit-transform 0.35s;
  transition:
    opacity 0.35s,
    transform 0.35s;
}

figure.effect-lily figcaption {
  text-align: left;
  padding: 6% 0 0 5%;
}

figure.effect-lily figcaption > div {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  height: 50%;
}

figure.effect-lily h2,
figure.effect-lily p {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}

figure.effect-lily h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

figure.effect-lily p {
  color: #fff;
  opacity: 0;
  -webkit-transition:
    opacity 0.2s,
    -webkit-transform 0.35s;
  transition:
    opacity 0.2s,
    transform 0.35s;
}

figure.effect-lily:hover img {
  opacity: 0.7;
}
figure.effect-lily:hover p {
  opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

figure.effect-lily:hover p {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
/******************************************/

img.main_img {
  width: 100%;
  display: block;
}

img.map {
  width: 100%;
}

.google-maps iframe {
  position: relative;
  width: 100%;
  border: none;
}
/************Contact Form*****************/
form.contact {
  width: 100%;
  display: block;
}
form.contact label {
  width: 100%;
  display: block;
  padding: 1% 0 0 0;
}
form.contact input {
  width: 100%;
  display: block;
  padding: 1% 0;
}
form.contact textarea {
  width: 100%;
  height: 130px;
}
form.contact input[type="radio"] {
  width: 25px;
  display: block;
  float: left;
}
form.contact input[type="submit"] {
  width: 50%;
  margin: 0 auto;
  display: block;
  padding: 1% 0;
  background: #333;
  border: none;
  color: #fff;
}
form.contact input[type="submit"]:hover {
  background: #646464;
}

/*===================== 
	Scrolling styles 
=======================*/

.scroll_wrap {
  width: 100%;
  height: 90px;
  overflow: hidden;
  border-bottom: #cf1916 solid 4px;
}

.scroll {
  background: #fff;
  width: 100%;
  height: 90px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: 0 auto;
}

/*===================== 
	layout styles 
=======================*/

.wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #333;
  background-image: url("../siteart/city-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.wrap2 {
  margin: 0;
  padding: 0;
  background: url(../siteart/diamondbg.jpg) fixed no-repeat;
  background-size: cover;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 0;
}

.container-home {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.container-inv {
  margin: 0 auto;
  padding: 0;
}

.col-1 {
  padding: 1% 2% 20% 2%;
}

.col-1-6 {
  width: 16%;
}
.col-1-5 {
  width: 20%;
}
.col-1-4 {
  display: inline-block;
  float: left;
  padding: 0 2% 0 3%;
  width: 20%;
}
.col-1-3 {
  display: inline-block;
  float: left;
  padding: 0 2%;
  width: 28%;
}
.col-1-2 {
  width: 49%;
}
.col-2-3 {
  display: inline-block;
  float: left;
  padding: 0 2% 0 0;
  width: 62%;
}
.col-3-4 {
  display: inline-block;
  float: left;
  padding: 0 2% 0 1%;
  width: 70%;
}

/*===================== 
	homepage styles 
=======================*/

.about {
  background: rgba(0, 0, 0, 0.6);
}

.about h1,
.about p {
  color: #fff;
}

.about h1 {
  font-weight: 800;
}

/*===================== 
	search styles 
=======================*/

.search-head {
  color: #fff;
  padding-top: 20px;
  padding-left: 2%;
}

.search-inv {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}

.search {
  background: #000;
  padding: 10px 5px 0 5px;
  margin: 0 10px;
}

.search-bar {
  padding: 10px 0;
  text-align: center;
}

.search label {
  color: #fff;
  font-weight: 800;
}

input.keywords {
  padding: 10px 0 10px 5px;
  border: none;
}

button#searchsubmit {
  color: #fff;
  border: none;
  background: #cf1916;
  padding: 10px;
  cursor: pointer;
}

button#searchsubmit:hover {
  background: #b51310;
}
/*===================== 
	footer styles 
=======================*/

footer {
  margin: 0;
  background: #000;
  border-top: #cf1916 solid 3px;
  width: 100%;
}

a.footerlink:link,
a.footerlink:visited,
a.footerlink:active {
  text-decoration: none;
  font-size: 11px;
  color: #ababab;
}
a.footerlink:hover {
  text-decoration: none;
  font-size: 11px;
  color: #ababab;
}

.footertext {
  font-size: 11px;
  color: #ababab;
}

.smallfootertext {
  font-size: 11px;
  color: #ababab;
}

.divfooter {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  color: #ababab;
  padding: 2%;
}
/*======================== 
	Responsive Styles 
==========================*/
@media screen and (max-width: 1400px) {
  p.phone {
    margin: -25px 0 0 0;
  }
}
@media screen and (max-width: 1200px) {
  nav.primary ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1150px) {
  .wrap2 {
    background: none;
  }
  .logo {
    width: 90%;
  }
  p.phone {
    padding: 0 0 1% 0;
    margin: -15px 0 0 0;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
  }
  nav.primary ul {
    max-width: 900px;
  }
  nav.primary ul li a {
    font-size: 14px;
    padding: 15px 12px;
  }
  .tile-grid figure {
    width: 31%;
  }
  .col-1 {
    padding: 1% 2% 6% 2%;
  }
}

@media screen and (max-width: 1080px) {
  .header-top {
    flex-direction: column;
  }
  .header-top a {
    order: 1;
  }
  .header-top div {
    order: 2;
    width: 90%;
    padding: 10px 0;
  }
}

@media screen and (max-width: 1000px) {
  .search-inv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 20px;
  }

  nav.primary ul ul li {
    width: 180px;
  }
}

@media screen and (max-width: 920px) {
  nav.primary {
    display: none;
  }

  /*==============================
		Mobile Nav Styles			
	================================*/
  nav.primary {
    display: none;
  }
  #menu-button {
    width: 100%;
    display: block;
    font-size: 24px;
    position: relative;
    line-height: 60px;
    z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
    background: #c0c0c0;
  }
  #menu-button a {
    color: #000;
    text-decoration: none;
    padding: 0 0 0 0.8em;
    font-weight: normal;
  }
  nav.mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #333;
    z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
    overflow: auto;
  }
  /* MENU HEADER SOCIAL MEDIA */
  nav.mobile .social-media {
    position: relative;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    word-spacing: 13px;
    padding: 0 0 0 15px;
    color: #ccc !important;
  }

  nav.mobile .social-media a:link,
  nav.mobile .social-media a:visited {
    color: #ccc;
    text-decoration: none;
  }
  nav.mobile .social-media a:hover,
  nav.mobile .social-media a:active {
    color: #fff;
    text-decoration: underline;
  }

  /* MENU HEADER STYLES */
  nav.mobile .mobile_top {
    position: relative;
    display: block;
    padding: 0;
    margin: 15px 0 10px 0;
    color: #999;
    font-size: 18px;
    font-weight: 400;
  }

  /* MENU CLOSE 'X' BUTTON */
  nav.mobile .menu-toggle {
    position: absolute;
    padding: 3px 8px 3px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    background: #222;
    color: #999;
    text-decoration: none;
    top: -4px;
    right: 13px;
  }
  nav.mobile .menu-toggle:hover {
    /* Menu close button on hoveer */
    color: #fff;
  }

  /* MENU LIST STYLE */
  nav.mobile ul {
    list-style: none;
    font-weight: 300;
    margin: 0;
    padding: 0;
  }
  nav.mobile ul li {
    border-top: 1px solid #454545;
    border-bottom: 1px solid #151515;
    position: relative;
  }

  /* FIRST LEVEL */
  nav.mobile ul li a {
    position: relative;
    display: block;
    font-size: 15px;
    padding: 10px;
    color: #999;
    text-decoration: none;
    border-left: 4px #333 solid;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  }
  nav.mobile ul li a:hover {
    background: rgba(45, 45, 45, 0.5);
    color: #fff;
    border-left: 4px #c8102e solid; /* border highlight - Change to fit match site colors */
  }

  /* SECOND LEVEL */
  nav.mobile ul li li:last-child {
    border: none;
  }
  nav.mobile ul li li a {
    background: #444;
    position: relative;
    display: block;
    padding: 10px 10px 10px 15px;
    border-left: 4px #444 solid;
    color: #ccc;
    text-decoration: none;
  }
  nav.mobile ul li li a:hover {
    background: rgba(65, 65, 65, 0.5);
  }

  /* THIRD LEVEL */
  nav.mobile ul li li li:last-child {
    border: none;
  }
  nav.mobile ul li li li a {
    background: #555;
    position: relative;
    display: block;
    padding: 10px 10px 10px 25px;
    color: #ccc;
    text-decoration: none;
    border-left: 4px #555 solid;
  }
  nav.mobile ul li li li a:hover {
    background: rgba(85, 85, 85, 0.5);
  }

  nav.mobile ul li .click {
    /* dropdown menu idicator arrow be sure to include this image with your image files */
    /*		position:absolute;*/
    display: block;
    cursor: pointer;
    z-index: 12399994;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
  }

  nav.mobile ul li .click span {
    position: absolute;
    right: 20px;
  }
  .nav-footer {
    color: #ccc;
    position: relative;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 15px 0;
  }

  /* FONT AWESOME ICONS */
  nav.mobile ul li a i {
    width: 25px;
    padding: 4px 3px;
    margin: 0 6px 0 0;
    text-align: center;
    background: #292929;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  }

  nav.mobile ul li .fa-chevron-down {
    color: #999;
  }

  /***** End Mobile Nav *****/

  .scroll_wrap {
    display: none;
  }
  .scroll {
    display: none;
  }
  .col-1-3 {
    display: block;
    float: none;
    padding: 0 2% 1% 2%;
    width: 95%;
  }
  .col-2-3 {
    display: block;
    float: none;
    padding: 0 2% 1% 2%;
    width: 95%;
  }
  p.phone {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .tile-grid figure {
    width: 46%;
  }
  .logo {
    width: 100%;
  }
  .col-1-4 {
    display: none;
  }
  .col-3-4 {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 550px) {
  .search-inv {
    display: block;
  }

  .search {
    margin: 10px;
  }
  input.keywords {
    width: 80%;
  }
}

@media screen and (max-width: 450px) {
  .tile-grid figure {
    display: block;
    float: none;
    width: 70%;
    margin: 10px auto;
  }
  .tile-grid figure figcaption {
    font-size: 12px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
  }
  p.phone {
    margin: -5px 0 0 0;
    font-size: 16px;
  }
  h1 {
    font-size: 18px;
  }
}
