﻿/***** BEGIN RESET *****/
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, font, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
td {
  vertical-align: top;
}
/* Make HTML 5 elements display block-level for consistent styling */
header, nav, article, footer, address {
  display: block;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*-------- COLORS --------

*/
/***** END RESET *****/ ::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}
/* Clearfix */
.cf:before, .cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
.cf {
  *zoom: 1;
}
/*-------- BODY STYLES --------*/
body {
  font-family: 'Open Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', sans-serif;
}
p {
  font-size: 16px;
  line-height: 28px !important;
  font-family: 'Open Sans', sans-serif !important;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
hr {
  border: #000 1px solid;
}
/*--- HEADER STYLES ---------------------*/
header {
  font-family: 'Barlow', sans-serif;
}
.grey-bg {
  background: #333;
}
.red-bg {
  background: #ed231f;
}
.black-bg {
  background: #000;
}
.top-bar .red-bg {
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 99;
  flex:1;
  padding: 8px;
}
.left-top {
  flex: 5;
  color: #8d8f92;
  text-transform: uppercase;
}
.left-top p {
  font-weight: 600;
  font-size: 20px;
  line-height: 16px;
}
.right-top a {
  color: #FFF !important;
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
}
.right-top a:hover {
  color: #000 !important;
}
.right-top .fas {
  margin-right: 5px;
}
.main-header {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  padding: 20px 0px;
}
.logo img {
  max-width: 100%;
  width: 300px;
}
.middle {
  flex: 3;
  text-align: center;
}
.right-side, .left-side {
  flex: 1;
}
.left-side a {
  float: right !important;
}
#search-button {
  background: transparent !important;
  font-size: 18px !important;
  border: none !important;
  font-family: 'Barlow', sans-serif !important;
  color: #000 !important;
  text-transform: uppercase !important;
	padding: 0 !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
a #search-button {
  display: flex;
  align-content: center;
  cursor: pointer !important;
}
#search-button img {
  width: 18px;
  height: 18px;
}
#search {
  padding: 30px 0px;
}
#search-button-mobile {
  background: transparent !important;
  font-size: 20px !important;
  border: none !important;
  font-family: 'Barlow', sans-serif !important;
  color: #000 !important;
  text-transform: uppercase !important;
  text-align: center;
  margin: 0 auto;
}
a #search-button-mobile {
  display: flex;
  align-content: center;
}
#search-button-mobile img {
  width: 18px;
  height: 18px;
}
#search {
  padding: 30px 0px !important;
}
.search-bar {
  display: flex !important;
  justify-content: center !important;
}
.searchTerm {
  padding: 10px !important;
  font-size: 18px !important;
  font-family: 'Open Sans', sans-serif !important;
  border: none !important;
  border-radius: 10px 0px 0px 10px !important;
  width: 100%;
  flex: 10;
  height: auto !important;
  line-height: normal !important;
}
.search-btn {
  background:#ed231f !important;
  text-transform: uppercase !important;
  font-size:20px !important;
  padding: 10px 20px !important;
  border-radius: 0 10px 10px 0 !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  color: #fff !important;
  flex: 1;
	border: none !important;
    cursor: pointer;
	 -webkit-transition: all 0.4s ease !important;
  -moz-transition: all 0.4s ease !important;
  -ms-transition: all 0.4s ease !important;
  -o-transition: all 0.4s ease !important;
}
.search-btn:hover {
  background: #333 !important;
}
.mobile-top {
  display: none;
}

.blocker {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: ' ';
}
/*---BODY--------------------------------*/
.wid-90 {
  width: 90%;
  margin: 0 auto;
}
.wid-70 {
  width: 70%;
  margin: 0 auto;
}
#pad-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
#pad-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.relative {
  position: relative;
}
.flex-container {
  display: flex;
}
.align-center {
  align-items: center;
}
.just-center {
  justify-content: center;
}
.just-left {
  justify-content: left;
}
.just-right {
  justify-content: right;
}
.just-space {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.page-wid {
  max-width: 1250px;
  width: 90%;
  margin: 0 auto;
}
.hero {
  background: url("../siteart/hero1.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30rem;
}
.hero-text {
  color: #fff;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.hero-text h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 48px;
}
.hero-text h1 {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
}
#hero-border {
  border: #ed231f 5px solid;
  width: 150px;
  margin: 15px auto;
}
.sub-hero-text #hero-border {
  margin: 15px auto 30px;
}
.cta-wrap {
  gap: 40px;
  margin-top: 40px;
}
.cta {
  background: #ed231f;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 15px 50px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  gap: 5px;
  cursor: pointer;
  box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px;
  -webkit-transition: all 0.4s ease !important;
  -moz-transition: all 0.4s ease !important;
  -ms-transition: all 0.4s ease !important;
  -o-transition: all 0.4s ease !important;
}
a.cta {
  color: #fff !important;
}
.cta:hover {
  background: #333 !important;
}
.cta-img img {
  width: 110px;
  max-width: 100%;
}
/*--------FORM STYLES--------------------*/
.sub-hero.contact-hero {
  background: url("/siteart/contact-hero.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-hero.thank-hero {
  background: url("../siteart/thank-hero.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-hero-text {
  text-align: center;
}
.sub-hero-text h1 {
  font-size: 42px;
  line-height: 60px;
  text-transform: uppercase;
}
.thin {
  font-weight: 400 !important;
}
.contact-option {
  padding-bottom: 80px;
  justify-content: space-around;
  text-align: center;
  align-items: flex-start;
}
.contact-option .fas {
  font-size: 32px;
  color: #ed231f;
}
.phone-contact, .email-contact, .location-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.phone-contact a, .email-contact a, .location-content p {
  color: #000;
  font-size: 18px !important;
  -webkit-transition: all 0.2s ease !important;
  -moz-transition: all 0.2s ease !important;
  -ms-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  font-weight: 500;
}
.phone-contact a:hover, .email-contact a:hover {
  color: #ed231f;
}
.hours-operation {
  background: #efefef !important;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex: 1;
}
.contact-form {
  gap: 65px;
  align-items: baseline;
}
.hours-content {
  padding: 30px;
}
.hours-content h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hours-content h4 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ed231f;
}
.hours-content p {
  display: flex;
  justify-content: space-between;
  line-height: 28px;
}
#day {
  font-weight: 600;
}
#hour {}
.return {
  padding: 13px !important;
  border: none !important;
  background: #ed231f !important;
  color: #fff !important;
  margin-top: 40px !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 18px !important;
  line-height: 18px !important;
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  -webkit-transition: all 0.2s ease !important;
  -moz-transition: all 0.2s ease !important;
  -ms-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  border-radius: 0px !important;
}
.return:hover {
  background: #000 !important;
}
/*  scrolling inventory
------------------------------------------------*/
.scrolling-wrap {
  width: 100%;
  height: 90px;
  overflow: hidden;
}
.scrolling {
  width: 100%;
  height: 92px;
}
/*-------- FOOTER STYLES ----------------*/
footer {}
.footer {
  background: #333;
  padding: 30px 15px;
}
.foot-logo img {
  width: 230px;
  max-width: 100%;
}
.foot-nav {
  align-items: center;
  gap: 50px;
}
.foot-nav a, .foot-nav {
  color: #8d8f92 !important;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
}
.column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.foot-bar {
  display: flex;
  /* flex: 1; */
  background: #8d8f92;
  border-radius: 40px;
  padding: 0px 10px;
  align-items: center;
}
.footTerm {
  background: transparent !important;
  border: none !important;
  color: #000 !important;
}
.foot-btn {
  background: transparent !important;
  height: 20px !important;
  width: 20px !important;
  box-sizing: content-box !important;
  padding: 5px !important;
  border: none !important;
}
.bottom-foot {
  background: #000 !important;
  color: #8d8f92;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600;
}
.bottom-foot p {
  font-size: 14px !important;
  line-height: 14px !important;
}
/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
#inv {
  padding: 5% 0;
}
#inv *:not(.fa):not(.far):not(.fas):not(.fab):not(.material-icons) {
  font-family: bahnschrift, urw-din, sans-serif !important;
} /* Reset font, ignore icons */
.listing-top-right a, .lower-detail-data-left button, .send-email-btn, .media-buttons a, .media-buttons button, .faceted-search, .listing-dealer-info a, .view-listing-details-link, .main-detail-data .contact-options a, .fin-calc-btn-mobile, .selected-facet, .page-nav, .apply-button, .back-button, .calculator-btn, .mobile-done-button {
  -moz-border-radius: 90px !important;
  -o-border-radius: 90px !important;
  -webkit-border-radius: 90px !important;
  border-radius: 90px !important;
}
.list-top-section .list-title .list-listings-count, .faceted-search-content .selected-facets-container .selected-facet, .faceted-search-content button.faceted-search, .faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn, .faceted-search-content .faceted-section-head, .detail-wrapper .offer-btn, .detail-wrapper .details-fin-calc .detail-btn-calc p, .dealer-info .dealer-company-header, .detail-additional-data .data-row .data-value, .compare-listings-container .compare-container .button {
  font-family: 'Open Sans', sans-serif !important;
}
.list-top-section .list-title .list-title-text, .list-content .listing-portion-title, .list-content .price-container .price, .currency-selector, .detail-wrapper .detail-title, .dealer-info .phone-and-email .send-email-btn, .detail-content .detail-additional-data .data-row .data-label, .detail-content-mobile .detail-additional-data .data-row .data-label, .part-detail-additional-data .data-label, .part-detail-content .detail-contact-bar, .ts-modal-container .form-bottom .captcha-and-submit .captcha-placeholder button, .ts-modal-container .form-bottom .captcha-and-submit .captcha-placeholder input, .list-content .list-listing-mobile .dealer-phone-container a {
  font-family: 'Barlow', sans-serif !important;
}
.list-top-section .list-title .list-title-text, .detail-additional-data h3, .ts-modal-container .form-bottom .captcha-and-submit .captcha-placeholder button, .ts-modal-container .form-bottom .captcha-and-submit .captcha-placeholder input {
  text-transform: uppercase !important;
}
.detail-additional-data .data-row .data-value, .list-content .list-listing-mobile .dealer-phone-container a {
  font-weight: 600 !important;
}
.detail-additional-data .data-row .data-value {
  background-color: #F5F5F5 !important;
}
.list-content .list-listing-mobile .dealer-phone-container a {
  font-size: 18px !important;
}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label input {
  margin: 2px 3px 3px 4px;
}
.faceted-text-input-searchType .search-type input[type=checkbox], .faceted-text-input-searchType .search-type input[type=radio] {
  margin: 0px 3px 0px 6px;
}
.bread-crumbs-heading .return-links .return-links-link span, #no-compare-listings, .bread-crumbs-heading .return-links .return-links-link i, .compare-checked a, .mobile-option-bar .mobile-option-bar-filter, .detail-wrapper .search-results i, .detail-wrapper .search-results span {
  color: #ed231f !important;
}
.hosted-content .attachment-search .search-checkboxes label .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0px !important;
}
.view-listing-details-link, .selected-facet, .view-listing-details-link, .buy-now-link, .check-availability-link, .email-seller-link, .offer-btn, .buy-btn, .dealer-phone-mobile, .offer-btn-mobile, .send-email-btn-mobile, .send-wholesale-email-btn-mobile, .fin-calc-btn-mobile, .mobile-breadcrumb, .main-detail-data .contact-options a, button.g-recaptcha.button, .page-nav, .apply-button, .mobile-done-button, .dealer-btns-bottom a, .cs-btns a, .calculator-btn {
  background: #ed231f !important;
}
.selected-facet, .dealer-phone-mobile, .offer-btn, .offer-btn-mobile, .fin-calc-btn-mobile, .send-wholesale-email-btn-mobile, .send-email-btn-mobile, .buy-now-link, .view-listing-details-link, .main-detail-data .contact-options a, button.g-recaptcha.button, .page-nav, .apply-button, .mobile-done-button, .cs-btns a, .calculator-btn {
  border: solid 1px #ed231f !important;
  transition: ease all 0.2s !important;
}
.selected-facet:hover, .dealer-phone-mobile:hover, .offer-btn:hover, .offer-btn-mobile:hover, .fin-calc-btn-mobile:hover, .send-wholesale-email-btn-mobile:hover, .send-email-btn-mobile:hover, .buy-now-link:hover, .view-listing-details-link:hover, .main-detail-data .contact-options a:hover, button.g-recaptcha.button:hover, .page-nav:hover, .apply-button:hover, .mobile-done-button:hover, .dealer-btns-bottom a:hover, .cs-btns a:hover, .calculator-btn:hover {
  background: #fff !important;
  color: #ed231f !important;
}
.check-availability-link, .email-seller-link, .video-chat-link, .faceted-search, .faceted-show-all-btn, .fin-calc-mobile > a {
  background: #000 !important;
  border: solid 1px #000 !important;
  transition: ease all 0.2s !important;
}
.check-availability-link:hover, .email-seller-link:hover, .video-chat-link:hover, .faceted-search:hover, .faceted-show-all-btn:hover, .fin-calc-mobile > a:hover {
  background: #fff !important;
  color: #000 !important;
}
.list-content .list-title .list-listings-count, .list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price, #parts-content .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count, #inv .error-message, #inv .info, .detail-content .detail-main-body .main-detail-data .detail-price, .detail-content .search-results, .list-content .list-top-section .listing-option-bar .list-listings-count, .detail-price, .compare-price, .compare-title {
  color: #000 !important;
}
/* heading */
.list-content .list-title .list-title-text, .detail-content-mobile .detail-main-body .detail-mobile-top .detail-title, .main-detail-data .detail-title, .parts-title-text {
  padding-left: 4px;
}
.detail-content .detail-additional-data .data-row .data-label, .detail-content-mobile .detail-additional-data .data-row .data-label, .part-detail-additional-data .data-label, .part-detail-content .detail-contact-bar {
  background: #333 !important;
}
.detail-content-mobile .detail-contact-bar .contact-bar-btn, .list-page-nav, .contact-options a {
  background: #000 !important;
}
.list-main-section .contact-options a {
  border: #000 solid 1px !important;
  transition: ease all 0.2s !important;
}
.list-main-section .contact-options a:hover {
  background: transparent !important;
  color: #000 !important;
}
.detail-content .dealer-info .phone-and-email .send-email-btn, .list-content .list-listing-mobile .dealer-phone-container a, .back-button {
  border-color: #000 !important;
  color: #000 !important;
}
.material-icons, .collapsible-content a {
  color: #fff !important;
}
#parts-content .parts-bottom-section .parts-list-view .parts-list-content .parts-listing-container .parts-listing-column .parts-button.view-details {
  background-color: #000 !important;
}
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
  margin-right: 0 !important;
}
.detail-content .detail-main-body .main-detail-data .details-fin-calc .detail-btn-calc {
  height: 48px !important;
  box-sizing: border-box;
}
.compare-chkbox-container .compare-listings .fa-check {
  top: -1px !important;
}
.list-content .list-error-container .info button {
  background: #000 !important;
}
.list-content .list-error-container .info .selected-facet button, .list-content .list-error-container .info .selected-facet {
  background: transparent !important;
  border: none !important;
}
.media-buttons .print-this, .media-buttons .email-this, .detail-content .dealer-info .phone-and-email .send-email-btn, .list-content .list-listing-mobile .dealer-phone-container a, .back-button {
  color: #000 !important;
  border: 1px solid #000 !important;
  background-color: transparent !important;
  font-family: 'Barlow', sans-serif !important;
  text-transform: uppercase !important;
}
.media-buttons .print-this:hover, .media-buttons .email-this:hover, .detail-content .dealer-info .phone-and-email .send-email-btn:hover, .list-content .list-listing-mobile .dealer-phone-container a:hover, .back-button:hover {
  color: #ed231f !important;
  border-color: #ed231f !important;
}


.detail-content .detail-additional-data .data-row .data-label,.content-mobile .detail-additional-data .data-row .data-label {
	text-transform: uppercase !important;
}
.detail-additional-data h3 {
	    padding: 8px 0 5px 0 !important;
}

.faceted-search-content .faceted-section-box .faceted-search {
	border-radius: 5px !important;
}
/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1795px) {
  .left-top {
    flex: 4.5;
	}
}

@media only screen and (max-width: 1645px) {
  .left-top {
    flex: 4;
	}
}


@media only screen and (max-width: 1490px) {
  .left-top {
    flex: 3;
  }
}
@media only screen and (max-width: 1200px) {
  .left-top {
    flex: 2.5;
  }
  .contact-option {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1124px) {
  .contact-form {
    gap: 40px;
  }
}
@media only screen and (max-width: 1060px) {
  .left-top {
    flex: 2;
  }
}
@media only screen and (max-width: 955px) {
  .top-bar .red-bg {
    flex-basis: 33% !important;
    flex: 0;
  }
}
@media only screen and (max-width: 900px) {
  .left-top p {
    font-size: 18px;
  }
  .right-top a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 850px) {
  .foot-nav {
    gap: 35px;
  }
  .contact-form {
    gap: 20px;
  }
}
@media only screen and (max-width: 832px) {
  .top-bar .red-bg {
    flex-basis: 35% !important;
  }
  .right-top.wid-70 {
    width: 90%;
    margin: 0 auto 0 60px;
  }
}
@media only screen and (max-width: 783px) {
  .cta-wrap {
    gap: 20px;
  }
  .cta-title {
    font-size: 14px;
  }
  .cta {
    flex: 1;
    padding: 15px 5px;
  }
  .foot-nav {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 15px;
  }
  .contact-nav {
    flex-basis: 100%;
  }
  .column {
    gap: 20px;
  }
}
@media only screen and (max-width: 740px) {
  .right-top a {
    font-size: 22px;
  }
  .left-top p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .right-top a {
    font-size: 21px;
  }
}
@media only screen and (max-width: 660px) {
  .desktop {
    display: none !important;
  }
  .mobile-top {
    display: block !important;
  }
  .left-top, .middle-top, .top-bar .red-bg {
    flex: 1 !important;
    flex-basis: auto !important;
    text-align: center;
  }
  .top-bar .red-bg {
    margin-left: -15px;
  }
  .middle-top {
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
    background: #000;
    color: #fff;
    align-self: center;
  }
  .left-top a {
    color: #FFF !important;
    font-size: 24px;
    font-weight: 600;
    line-height: 22px;
  }
  .right-top a {
    font-size: 24px;
  }
  .top-bar .red-bg, .left-top, #search-button-mobile {
    padding: 15px 0;
  }
  #search-button-mobile img {
    width: 22px;
    height: 22px;
  }
  #search-button-mobile {
    font-size: 22px;
  }
  #search-button-mobile {
    color: #fff !important;
  }
  .top-bar {
    align-items: stretch !important;
  }
  .main-header .flex-container {
    flex-wrap: wrap-reverse;
    text-align: center;
    justify-content: center;
    gap: 15px;
  }
  .right-side, .logo {
    flex-basis: 100%;
  }
  .logo {
    max-width: 350px;
  }
  .contact-form {
    flex-wrap: wrap;
  }
  .hours-operation {
    flex-basis: 100%;
  }
  .contact-form {
    gap: 60px;
  }
  .sub-hero-text#pad-90 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contact-option {
    padding-bottom: 50px;
  }
  .top-bar .red-bg, .left-top, #search-button-mobile {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 590px) {}
@media only screen and (max-width: 515px) {
  .cta-wrap {
    gap: 15px;
  }
  .cta-img img {
    width: 90px;
  }
  .phone-contact, .email-contact, .location-content {
    flex-basis: 100%;
  }
  .contact-option {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .foot-search {
    flex: 1;
    width: 90%;
  }
  .footTerm {
    flex: 1;
  }
}
@media only screen and (max-width: 420px) {
  .cta-wrap {
    flex-wrap: wrap;
  }
  .cta {
    flex-basis: 100% !important;
  }
  .hero {
    height: 40rem;
  }
  .search-btn {
    padding: 5px 15px !important;
    font-size: 15px !important;
  }
  .search-bar {
    align-items: stretch !important;
  }
  .cta-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 350px) {
  .hours-content p {
    flex-wrap: wrap;
  }
  #day, #hour {
    flex-basis: 100%;
  }
}