/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

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: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Scss Document */
body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden; }
  body:before {
    content: "";
    position: fixed;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    z-index: 100; }

.container {
  max-width: 1100px;
  margin: 0 auto; }

a {
  text-decoration: none;
  color: inherit; }

header {
  background: -webkit-linear-gradient(#3c0000, #6e0e25);
  background: -o-linear-gradient(#3c0000, #6e0e25);
  background: linear-gradient(#3c0000, #6e0e25);
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  position: relative; }

#inner-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
  padding: 1.5rem .5rem; }

#logo {
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out; }

#inner-right {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0 .5rem; }
  #inner-right #inner-right-top {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 5px; }
    #inner-right #inner-right-top > div {
      margin: 0 8px; }
  #inner-right #inner-right-btm {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 5px; }
    #inner-right #inner-right-btm p {
      font-family: "Playfair Display", sans-serif;
      line-height: 1.2;
      letter-spacing: 1px;
      font-size: 24px;
      -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
      transform: skewX(-5deg);
      margin: 0 5px; }
    #inner-right #inner-right-btm i {
      margin: 0 .5rem;
      font-size: 24px; }
      #inner-right #inner-right-btm i:hover {
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
        -webkit-box-shadow: 1px 0px 2px #000;
        box-shadow: 1px 0px 2px #000; }

#nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(#1a1a1a));
  background: -webkit-linear-gradient(black, #1a1a1a);
  background: -o-linear-gradient(black, #1a1a1a);
  background: linear-gradient(black, #1a1a1a);
  width: 100%; }
  #nav li {
    color: #fff;
    padding: 1rem 10px;
    -webkit-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
    border-right: 2px solid rgba(255, 255, 255, 0.25); }
    #nav li:hover {
      background: #fff;
      color: #1a1a1a; }
    #nav li#contact-nav {
      border-right: none; }

#nav.fixed {
  position: fixed;
  -webkit-transform: translateY(-10vh);
  -ms-transform: translateY(-10vh);
  transform: translateY(-10vh);
  top: 0;
  -webkit-animation: slideDown .3s linear;
  animation: slideDown .3s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 200; }

@-webkit-keyframes slideDown {
  100% {
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh); } }
@keyframes slideDown {
  100% {
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh); } }
#menuBtn {
  display: none; }

.hero {
  background: url("../graphics/sign.JPG");
  padding: 2rem 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
  background-position: 50% 70%;
  background-color: rgba(255, 255, 255, 0.35);
  background-blend-mode: screen; }

#top-call {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 330px;
  margin: 0 1rem; }
  #top-call h1, #top-call p {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    color: #1a1a1a;
    margin: .5rem 0;
    -webkit-box-shadow: inset 0px 0px 8px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 8px 2px rgba(0, 0, 0, 0.5);
    text-align: right; }
  #top-call h1 {
    font-size: 2.5rem;
    font-family: "Playfair Display", sans-serif;
    font-weight: 700; }
  #top-call p {
    font-size: 17px; }
  #top-call #srchBtn {
    font-family: "Open Sans", sans-serif;
    background: #6e0e25;
    color: #fff;
    padding: 1rem 6rem;
    text-align: center;
    margin: 1rem 0;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
    border-bottom: 3px solid transparent; }
    #top-call #srchBtn:hover {
      background: #6e0e25;
      border-bottom: 3px solid #fff;
      -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
      transform: translateY(-3px); }
    #top-call #srchBtn:active {
      border-bottom: 3px solid transparent;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }

#info {
  background: -webkit-gradient(linear, left top, left bottom, from(#1a1a1a), to(#000));
  background: -webkit-linear-gradient(#1a1a1a, #000);
  background: -o-linear-gradient(#1a1a1a, #000);
  background: linear-gradient(#1a1a1a, #000);
  color: #fff;
  padding: 5rem 0rem 2rem; }

#info-img-wrap {
  position: relative;
  max-width: 90%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 auto;
  -webkit-transform: translateX(3rem);
  -ms-transform: translateX(3rem);
  transform: translateX(3rem); }

#info-img-wrap img {
  position: absolute;
  height: auto;
  width: 75%;
  top: -205px; }

#about {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  /*-webkit-background-clip: text;
  	background-clip: text;
  	background-image: url("../graphics/tire.jpg");
  	background-size: cover;
  	background-attachment: fixed;
  	background-attachment: fixed;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    background-image: url("../graphics/tire.jpg");*/ }
  #about h1 {
    font-family: "Playfair Display", sans-serif;
    font-size: 2.9rem;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 1px;
    padding: 0 .5rem;
    padding-bottom: 10px;
    margin: 1rem 0;
    border-bottom: 2px solid #fff;
    text-align: center; }
  #about p {
    line-height: 1.5;
    max-width: 88ch;
    padding: 0 .5rem;
    margin: 10px;
    text-align: center; }
  #about #inner-about {
    margin-top: 30px;
    background-image: url("../graphics/tire.jpg");
    background-color: rgba(0, 0, 0, 0.65);
    background-blend-mode: multiply;
    background-size: cover;
    background-attachment: fixed;
    -webkit-box-shadow: inset 0px 0px 40px 25px #000;
    box-shadow: inset 0px 0px 40px 25px #000;
    padding: 4rem;
    /*h2 {
    	margin: 5px 15px;
    	font-size: 1.5rem;
    	font-family: $font3;
    	line-height: 1.2;
    	span {
    		color: $maroon + 40;
    		font-size: 32px;
    		}
    	}*/ }
    #about #inner-about iframe {
      float: right;
      margin: 10px;
      height: 60vh;
      max-height: 355px;
      width: 100vw;
      max-width: 400px;
      -webkit-box-shadow: 0px 0px 5px #fff;
      box-shadow: 0px 0px 5px #fff; }
    #about #inner-about p {
      line-height: 1.7;
      max-width: 88ch;
      padding: 0 .5rem;
      text-align: left;
      font-size: 16px; }
    #about #inner-about #call-now {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      font-family: "Playfair Display", sans-serif; }
      #about #inner-about #call-now #call-left {
        color: #fff;
        font-size: 32px;
        color: #a04057;
        margin-left: 15px; }
      #about #inner-about #call-now #call-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        #about #inner-about #call-now #call-right p {
          color: #fff;
          line-height: 1;
          font-size: 32px; }

#service-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem 0; }

.service-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin: 0 1rem; }
  .service-list p {
    margin-top: 10px;
    line-height: 1.7;
    max-width: 35ch;
    text-align: center; }

.service-call {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center; }
  .service-call i {
    font-size: 2.25rem;
    margin: 0 .5rem 0 0; }
  .service-call li {
    font-size: 16px;
    max-width: 50ch; }
    .service-call li:nth-child(1) {
      font-family: "Playfair Display", sans-serif;
      color: #aa4a61;
      font-size: 23px;
      margin-bottom: 5px;
      letter-spacing: 1px; }

#calltoday {
  text-align: center;
  font-size: 3rem;
  font-family: "Playfair Display", sans-serif;
  letter-spacing: 1px;
  padding: 1rem 0; }
  #calltoday span {
    color: #6e0e25; }

.footer {
  background: -webkit-linear-gradient(#6e0e25, #3c0000);
  background: -o-linear-gradient(#6e0e25, #3c0000);
  background: linear-gradient(#6e0e25, #3c0000); }

.footer-cont {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 1rem .5rem 0rem;
  color: #fff; }
  .footer-cont #assoc-wrap {
    background: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0; }
  .footer-cont h1 {
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 1rem;
    font-family: "Anton", sans-serif;
    letter-spacing: 2px; }
  .footer-cont li {
    line-height: 1.7; }
    .footer-cont li i {
      padding-right: .5rem; }

p#copy {
  padding: .5rem;
  color: #fff;
  font-size: 13px; }

/** MAP PAGE **/
/*#scroller {
		animation: scroller 17s linear infinite;
		font-size: 18px;
		color: $maroon;
		font-family: $font3;
		letter-spacing: 1px;
		text-align: center;
		min-width: 100%;
		padding: 10px;
		font-weight: 700;
		display: flex;
		aling-items: center;
		justify-content: center;
		flex-wrap: wrap;
		.spacer {
				display: flex;
				aling-items: center;
				justify-content: center;
				width: 15px;
				height: 15px;
				background: $grey;
				margin: 0 15px;
				border-radius: 50%;
				}
		}
*/
#map {
  min-width: 100%;
  height: 380px;
  position: relative; }
  #map iframe {
    min-width: 100%;
    height: 100%;
    backround-size: cover; }
  #map img {
    position: absolute;
    bottom: 0;
    max-width: 300px;
    height: auto;
    width: 100%;
    -webkit-transform: translateX(calc(50vw - 150px));
    -ms-transform: translateX(calc(50vw - 150px));
    transform: translateX(calc(50vw - 150px));
    bottom: -110px;
    z-index: 3; }

/*@keyframes scroller {
	0% {
		transform: translateX(-45vw);
		}
	50% {
		transform: translateX(0%);
		}
	100% {
		transform: translateX(45vw);
		}
	}*/
#map-call {
  background-color: #1a1a1a;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem 1rem;
  color: #fff; }
  #map-call h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin: .5rem 0; }
  #map-call h2 {
    font-size: 1.5rem;
    margin-bottom: .5rem; }
  #map-call p {
    padding-bottom: 1rem;
    border-bottom: 5px dotted #a04057; }

#directions {
  background: -webkit-linear-gradient(#1a1a1a, black);
  background: -o-linear-gradient(#1a1a1a, black);
  background: linear-gradient(#1a1a1a, black);
  width: 100%; }

#directions-wrap {
  padding: 1rem .5rem 2rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%; }
  #directions-wrap ul {
    color: #fff;
    margin: 0 .5rem; }
    #directions-wrap ul li {
      line-height: 1.7;
      max-width: 44ch;
      font-size: 15px;
      list-style: decimal inside; }
    #directions-wrap ul h1 {
      font-family: "Playfair Display", sans-serif;
      font-size: 1.4rem;
      margin: 1rem 0; }
      #directions-wrap ul h1 span {
        font-family: "Open Sans", sans-serif; }

/*** SELL YOUR CAR PAGE - FORM ************************************/
.form-hero {
  background: url("../graphics/keys.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% right; }

#form-call {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  padding: 8rem 0; }
  #form-call h1 {
    font-family: "Playfair Display", sans-serif;
    font-size: 4rem;
    color: #6e0e25;
    margin: 1rem .5rem; }
  #form-call h2 {
    font-family: "Playfair Display", sans-serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0 .5rem 1rem; }
  #form-call p {
    margin: 0 .5rem;
    font-size: 18px;
    color: #1a1a1a; }

#mailForm {
  margin: 1rem auto;
  padding: 1rem; }

#mailForm h1 {
  font-size: 16px; }

#mailForm label {
  color: #1a1a1a;
  font-weight: 700; }

#mailForm .junkerDetails {
  border: 5px double #6e0e25;
  margin: .5em 0;
  padding: 1em; }

#mailForm .fixed {
  display: inline-block;
  width: 10ch; }

#mailForm .block {
  display: block;
  margin-bottom: 1em; }

#mailForm .req, #mailForm label.req {
  color: #1e0000; }

#mailForm .note, #check {
  margin: 1em 0; }

#mailForm textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 6em;
  outline: none;
  resize: none;
  width: 100%; }

#mailForm input[type="submit"], #mailForm input[type="reset"] {
  background: black;
  background: #6e0e25;
  color: #fff;
  padding: 1rem 4rem; }

#mailForm input[type="submit"]:hover, #mailForm input[type="reset"]:hover {
  background: #6e0e25;
  color: #fff;
  border-color: #6e0e25; }

/****************************BEGIN MOBILE BREAKPOINTS*******************************************/
@media all and (max-width: 900px) {
  #inner-header {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 1rem .5rem; }

  #nav li {
    padding: 1rem 7px;
    font-size: 14px; }

  #info {
    padding: 3.2rem 0rem 5rem; }

  #info-img-wrap img {
    top: -130px; }

  #about h1 {
    font-family: "Playfair Display", sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    text-shadow: -1px 1px 0px rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    padding: 0 .5rem;
    margin: 10px; }
  #about p {
    line-height: 1.5;
    max-width: 75%;
    padding: 0 .5rem; } }
@media all and (max-width: 767px) {
  body {
    padding-top: none !important; }

  #inner-right-top,
  #inner-right-btm {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
    #inner-right-top > div,
    #inner-right-btm > div {
      padding: 5px 0; }

  #inner-right-btm p {
    text-align: center; }

  /****nav****/
  #menuBtn {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: flexend;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding: .5rem;
    z-index: 100;
    font-size: 2rem;
    background: #6e0e25; }
    #menuBtn i {
      color: #fff; }

  #nav,
  #nav-items,
  #nav-wrap {
    display: none;
    position: relative;
    z-index: 101; }

  #nav.active {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    padding-bottom: 0;
    width: 100%;
    left: 0;
    top: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fff));
    background: -webkit-linear-gradient(#eee, #fff);
    background: -o-linear-gradient(#eee, #fff);
    background: linear-gradient(#eee, #fff); }
    #nav.active li {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
      padding: 1rem;
      font-size: 1.2rem;
      width: 100%;
      color: #1a1a1a; }
    #nav.active a {
      width: 100%;
      border-right: none;
      border-bottom: 2px solid rgba(0, 0, 0, 0.15); }

  #nav li:hover,
  #nav a:hover {
    background: #1a1a1a;
    color: #fff; }

  .hero {
    margin-top: 0px !important;
    background-position: left; }

  #nav.fixed {
    position: initial !important;
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  #top-call {
    height: auto;
    padding-top: 0; }
    #top-call h1 {
      font-size: 3rem;
      font-family: "Playfair Display", sans-serif; }
    #top-call p {
      font-size: 1rem; }

  /** info / about **/
  #info {
    padding: 1rem 0; }

  #info-img-wrap img {
    display: none; }

  #about {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }
    #about h1 {
      text-align: center;
      margin-bottom: 1rem; }
    #about #inner-about {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      max-width: 90%; }
      #about #inner-about iframe {
        float: none;
        min-width: 90vw;
        min-height: 40vh;
        max-width: 100%; }
      #about #inner-about h2 {
        margin: 0 auto;
        font-size: 6vw; }

  #service-wrap {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0; }
    #service-wrap .service-list {
      margin: 1rem 2.75rem; }

  #calltoday {
    font-size: 6vw; }

  /***********FOOTER********************/
  .footer-cont {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 1rem; }

  #copy {
    font-size: 12px; }

  /**map page mobile**/
  #map {
    border-bottom: 5px solid #6e0e25;
    min-width: 100%;
    height: 45vw; }
    #map iframe {
      min-width: 100%;
      height: 100%;
      backround-size: cover; }
    #map img {
      position: absolute;
      bottom: 0;
      max-width: 200px;
      -webkit-transform: translateX(calc(50vw - 90px));
      -ms-transform: translateX(calc(50vw - 90px));
      transform: translateX(calc(50vw - 90px));
      bottom: -110px;
      z-index: 3; }

  #directions-wrap {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column; }
    #directions-wrap ul h1 {
      text-align: left; }
    #directions-wrap ul li {
      max-width: 80%; }

  /** form page mobile **/
  #form-call {
    height: auto;
    padding: 2rem 0; }
    #form-call h1 {
      font-size: 3rem; }
    #form-call p {
      font-size: 1rem; }

  .junkerDetails input {
    display: block;
    margin: .5rem 0; } }

/*# sourceMappingURL=main.css.map */
