/* Define CSS Variables for Reusability */
:root {
  --primary-color: rgb(169, 44, 41);
  --text-dark: #333;
  --text-light: #fff;
  --transition: all 0.3s ease;
  --font-family: "franklin-gothic-atf", sans-serif;
  --button-padding: 0.5em 1.5em;
  --section-padding: 4rem 1rem;
  --center-text: center;
}

/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: var(--font-family);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header CSS */
.announcement {
  background-color: var(--text-dark);
  color: var(--text-light);
  text-align: var(--center-text);
  padding: 10px 0;
}

.hide {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.hideButton {
  padding: 0 5px;
  transition: var(--transition);
}

.hideButton:hover {
  cursor: pointer;
  background-color: #444;
}

.announcement span,
.announcement button {
  color: var(--text-light);
}

.announcement button {
  position: absolute;
  right: 4rem;
}

.obfs {
  display: none;
}

.phone {
  font-weight: bold;
}

.headervideo {
  position: relative;
  overflow: hidden;
  max-height: 800px;
  z-index: -100;
}

.headervideo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6) url("/_assets/images/logo_files/bolt.svg") no-repeat;
  background-position: calc(50% + 250px) 50%;
  background-blend-mode: screen;
}

.headervideo video {
  min-height: 500px;
  object-fit: cover;
  width: 100%;
}
.headertext-container{
max-height: 800px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}
.headertext {
  position: absolute;
  top: 35%;
  z-index: 10;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 650px;
  width: 77%;
  padding-left: 75px;
}

.headertext h1 {
  line-height: 1.1;
  margin-top: 0.5em;
  font-size: 2.4em;
  font-weight: 700;
}

.headertext .kicker {
  color: rgb(252, 217, 20);
  font-size: 0.95rem;
  font-weight: 700;
}

.headertext button,
.cta-text button {
  background-color: #f4403b;
  color: var(--text-light);
  padding: var(--button-padding);
  border-radius: 3px;
  font-weight: 700;
  margin-top: 3em;
  transition: var(--transition);
}
.headertext button:hover,
.cta-text button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.headertext button:active {
  background-color: rgba(169, 44, 41, 0.8);
}

.headertext button {
  box-shadow: 14px 14px 14px rgba(0, 0, 0, 0.3);
}

/* Main Content CSS */
main h2,
.services h2,
.blockgrid h2,
.faq h2,
.customer-approach h2,
.mission h2 {
  text-align: var(--center-text);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.first {
  margin-top: 55px;
  display: flex;
  width: 100%;
  height: 400px;
  gap: 20px;
}

.first img {
  max-width: 40%;
  object-fit: cover;
  margin-bottom: 40px;
}

.text-group {
  display: flex;
  gap: 20px;
  width: 100%;
  padding-bottom: 40px;
  justify-content: right;
}

.intro {
  max-width: 900px;
  width: 70%;
  margin-right: 10%;
  color: var(--text-dark);
  flex-shrink: 1;
}

.blurb {
  height: 200px;
}

.first button {
  background-color: #ddd;
  color: var(--text-dark);
  padding: var(--button-padding);
  margin-top: 2em;
  transition: var(--transition);
}

.first button:hover {
  background-color: #eee;
  cursor: pointer;
}

.first button:active {
  background-color: #222;
  color: var(--text-light);
}

.aboutpage {
  height: 100%;
}

.vertical {
  display: block;
  flex-grow: 1;
  height: 60%;
  width: 50px;
  border-right: 3px solid var(--primary-color);
}

.services {
  max-width: 100%;
  margin: 0 auto;
}

.services h2 {
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.7) url("/_assets/images/gallery/Keeler_web-11.jpg");
  background-position: center;
  background-blend-mode: multiply;
  padding: 50px 0 200px;
  margin-bottom: -150px;
}

/* Tabs */
.tabs {
  display: flex;
  position: relative;
  gap: 0;
  justify-content: center;
}

.tab,.tab2 {
  padding: 0.6rem 3.5rem;
  position: relative;
  color: var(--text-light);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.tab:hover {
  color: var(--primary-color);
}
.tab2:hover{
 color: orange;
 text-shadow: 2px 2px 2px  rgba(0,0,0,.4);
}
.tab.active {
  color: var(--text-light);
 background-color: transparent;
}

.tab #text {
  z-index: 20;
}

.tab-indicator, .tab-indicator2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px 4px 0 0;
  z-index: 0;
  transition: var(--transition);
  box-shadow: inset 0 -10px 10px -10px rgba(0, 0, 0, 0.4);
}
.tab-indicator2{
 background-color: darkorange;
}


.tab-content {
  display: none;
}

.tab-content.active, .tab-content.active2 {
  display: block;
  background-color: var(--primary-color);
  padding: 10px;
  box-shadow: inset 0 -25px 25px rgba(0, 0, 0, 0.4);
}
.tab-content.active2{
 background-color: darkorange;
}

.card-set {
  display: flex;
  width: 90%;
  gap: 1rem;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6rem;
}

.card-set::-webkit-scrollbar {
  height: 7px;
}

.card-set::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.scroll-hover-left,
.scroll-hover-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  cursor: pointer;
}

.scroll-hover-left {
  left: 0;
}

.scroll-hover-right {
  right: 0;
}

.scroll-hover-left:hover,
.scroll-hover-right:hover {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.05), transparent);
}

.service-item {
  background-color: var(--text-light);
  border-radius: 5px;
  padding: 1.25rem;
  min-width: 350px;
  max-width: 450px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-item img {
  object-fit: cover;
  max-height: 275px;
}

.service-header {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 12px 0 0.75rem;
}

.service-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.service-body button {
  background-color: #f4403b;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.service-body button:hover {
  background-color: var(--primary-color);
}

.credits {
  margin-top: 80px;
}

/* Badges */
.badges {
  width: 100%;
  padding: 20px 0;
  background-color: #ededed;
}

.badge-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
}

.badge-container img {
  width: 100px;
  align-self: center;
  transition: var(--transition);
}

.badge-container img:hover {
  transform: scale(1.1);
}

.badges p {
  margin: 15px auto 0;
  text-align: var(--center-text);
  color: #777;
  font-size: smaller;
}

/* Accolades */
.blockgrid {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.listP li {
  padding: 0 10px 0 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  width: 100%;
}

.grid-item {
  background: #f9f9f9;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: var(--center-text);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: bold;
  min-height: 250px;
}

.darkwrapper {
  background: rgba(0, 0, 0, 0.8) url(/_assets/images/gallery/Keeler_web-09.jpg);
  background-blend-mode: multiply;
  background-size: cover;
  width: 100%;
  padding: 50px 70px;
}

.serviceList {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.serviceList p {
  font-weight: 300;
}

/* FAQ and Customer Approach */
.faq,
.customer-approach,
.mission {
  padding: var(--section-padding);
  max-width: 960px;
  margin: 0 auto;
}

.lesspadding {
  padding: 4rem 1rem 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.customer-approach h3 {
  font-size: 1.7rem;
  text-align: var(--center-text);
  margin-bottom: 2rem;
}

.customer-approach p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #444;
}

.customer-approach .industrygrid {
display: flex;
 justify-content: center;
 gap: 20px;
flex-flow: row wrap;
 max-width: 1200px;
}

.customer-approach .industrygrid h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
  text-transform: uppercase;
}

.customer-approach .industrygrid p {
  font-size: 0.95rem;
  color: #555;
}

.industry-cont {
flex-basis: 250px;
 flex-grow: 1;
 height: 100px;
 align-content: center;
  outline: 2px solid #e3e3e3;
  outline-offset: -5px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 5px 15px 35px rgba(0, 0, 0, 0.3);
}

.industry {
  display: block;
  color: var(--text-dark);
  text-align: var(--center-text);
  padding: 20px;
  font-weight: 500;
}
.bottomborder{
 
 padding-bottom: 20px!important;
 border-bottom: 2px solid var(--primary-color);
}
.padding{
margin: 0 auto;
padding: 30px 40px;
max-width: 1200px;
}
.payment{
 margin: 0 auto;
font-size: smaller;
 text-align: center;
 background-color: #f3f3f3;
  flex-basis: 300px;
 flex-shrink: 1;
 flex-grow: 1;
 max-width: 450px;
}
.payment a{
 flex-basis: 300px;
 flex-shrink: 1;
 flex-grow: 1;
 align-items: center;
justify-content: center;
padding: 10px 0;
  transition: all .3s ease;
}
.payment a:hover{
 transform: scale(1.05);
 transition: all .3s ease;
}
/* Mission & Values */
.mission h2 {
  font-size: 2rem;
}

.aboutList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aboutList-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.aboutList-text p,
.aboutList ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.aboutList ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #444;
}

.aboutList ul li a {
  color: #0073e6;
  text-decoration: underline;
}

.aboutList ul li a:hover {
  text-decoration: none;
}

/* Privacy Policy */
.privacy {
  padding: 5%;
}

.privacy h2 {
  text-align: left;
}
/*make a payment */
.paymentparagraph{
 text-align: center; width: 80%; margin: 0 auto; padding: 20px 0;
}

/* Responsive Enhancements */
@media (min-width: 600px) {
  .faq h2,
  .customer-approach h2 {
    font-size: 2.5rem;
  }

  .customer-approach h3 {
    font-size: 1.9rem;
  }

  .faq-item h3,
  .customer-approach .process h3 {
    font-size: 1.5rem;
  }

  .faq-item p,
  .customer-approach p,
  .customer-approach .process p {
    font-size: 1.05rem;
  }

  .customer-approach .process {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .mission h2 {
    font-size: 2.5rem;
  }

  .aboutList {
    flex-direction: row;
    justify-content: space-between;
  }

  .aboutList-text {
    flex: 1;
    padding-right: 2rem;
  }

  .aboutList ul {
    flex: 1;
  }

  .aboutList-text h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) {
  .faq,
  .customer-approach,
  .mission {
    padding: 3rem 2rem;
  }

  .faq h2,
  .customer-approach h2 {
    font-size: 2.75rem;
  }

  .customer-approach h3 {
    font-size: 2rem;
  }

  .faq-item h3,
  .customer-approach .process h3 {
    font-size: 1.6rem;
  }
}

@media (min-width: 1100px) {
  .headertext h1 {
    font-size: 2.9em;
  }

  .headertext .kicker {
    font-size: 1.2rem;
  }
}

@media (min-width: 1300px) {
  .headertext {
    top: 40%;
  }

  .headertext h1 {
    font-size: 3.4em;
  }

  .headertext .kicker {
    font-size: 1.6rem;
  }
}

@media (max-width: 700px) {
  .headertext {
    position: relative;
    top: -400px;
    align-items: center;
    min-width: 0;
    margin: 0 auto;
    width: 90%;
    padding-left: 0;
  }

  .headertext h1 {
    font-size: 6.5vw;
    margin: 5px auto 0;
    width: 90%;
  }

  .headertext .kicker {
    font-size: 1.9vw;
    width: 90%;
  }

  .headertext button {
    margin: 20px 0 0 20px;
   text-align: left;
   align-self: flex-start;
  }

  header {
    max-height: 650px;
  }

  .first {
    flex-direction: column;
    height: auto;
    max-width: 100%;
  }

  .first img {
    max-width: 100%;
  }

  .vertical {
    height: 250px;
    border-right: 3px solid var(--primary-color);
  }
}

@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
  }

  .tab {
    background-color: var(--text-light);
    color: var(--text-dark);
  }

  .card-set {
    padding: 0.25rem;
  }

  .service-item {
    min-width: 80%;
    max-width: 90%;
  }

  .cta-container {
    background-position-y: center;
  }
}

@media (max-width: 480px) {
  .announcement {
    font-size: 0.8em;
  }

  .announcement button {
    right: 15px;
  }

  .service-item img {
    max-height: 155px;
  }
 .tab.active {
  color: var(--text-light);
 background-color: var(--primary-color);
}

  .blockgrid {
    padding: 1rem 0.5rem;
  }

  .grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  }

  .grid-item {
    min-height: 140px;
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  .grid-item img {
    max-width: 80px;
    margin-bottom: 0.25rem;
  }
 .grid-item a{
  max-width: 40%;
  margin: 0 auto;
 }
  .grid-item span {
    font-size: 0.85rem;
  }
 .reviews p{
margin: 0 auto;
  width: 90%;
  text-align: center;
 }
 .reviews h2{
  font-size: 1.5em;
 }
}

.res-item {
  color: var(--text-light);
  background-color: rgba(100, 100, 100, 0.8);
  outline: 1px solid gold;
  outline-offset: -5px;
  border-radius: 3px;
  box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.3);
  flex-basis: 350px;
  flex-grow: 1;
  text-align: var(--center-text);
  align-content: center;
  padding: 40px 20px;
}

.grid-item img {
  max-width: 180px;
  align-self: center;
  margin: 0 auto 0.5rem;
}

.grid-item .spacer {
  flex-grow: 1;
  width: 100%;
}

.grid-item .financing-container {
  width: 100%;
  display: flex;
  height: 80%;
}

.grid-item .financing-container img {
  max-width: 100%;
 flex-shrink: 1;
}

/* Reviews */
.reviews {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  gap: 20px;
}

.reviews .google {
  margin: 20px auto 0;
  max-width: 150px;
}

.reviews button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  margin: 0 15px;
}

.review-buttons {
  width: 100%;
  display: flex;
}

#prev-btn,
#next-btn {
  font-size: 3em;
  width: 80px;
}

#next-btn {
  margin-left: auto;
}

.review-widget {
  display: flex;
  font-size: 0.8em;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.review-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 30px;
  margin: 80px auto;
  padding-right: 30px;
  max-width: 1600px;
}

.review-container .review-image {
  width: 200px;
  flex-grow: 1;
  display: flex;
  margin: 0 auto;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review {
  flex-basis: 350px;
  flex: 0 0 100%;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
}

.review-header {
  font-size: clamp(1em, 16px, 1.3em);
}

.rating {
  color: gold;
}

.pagination {
  text-align: var(--center-text);
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--text-dark);
}

.detail-row {
  margin: 0 auto;
  width: 100%;
  display: flex;
  background: var(--text-dark);
  color: #ddd;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
  text-align: var(--center-text);
}

.detail-row .vr {
  border-left: 1px solid #ddd;
}

.row-item span:not(.obfs) {
  display: block;
}

.cta-container {
  width: 100%;
  margin-top: 80px;
  height: 400px;
  background: rgba(0, 0, 0, 0.4) url("/_assets/images/gallery/Keeler_web-06.jpg");
  background-size: cover;
  background-position-y: -50px;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: var(--center-text);
  color: var(--text-light);
}

.cta-text button {
  margin-top: 20px;
}

.process {
  display: flex;
 flex-flow: row wrap;
  gap: 20px;
  margin: 50px auto;
  width: 100%;
}

.process div {
flex-basis: 300px;
flex-grow: 1;
 flex-shrink: 1;
  text-align: var(--center-text);
}

/* Contact Page */
.contact-section {
  display: flex;
  margin: 60px auto;
  width: 100%;
  padding: 0 20px;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 20px;
  max-width: 1200px;
}

.contactDesc {
  min-width: 250px;
  padding: 0 20px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 450px;
  font-size: larger;
}

.contactDesc p {
  margin-bottom: 20px;
}

.contactDesc h2 {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-form {
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  flex-grow: 1;
  box-sizing: border-box;
  background-color: #eee;
  animation: pulse 3s ease-in-out infinite alternate;
  box-shadow: 0 0 25px rgba(169, 44, 41, 0.4);
}
/*404 page*/
.notfound-cont{
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 text-align: center;
}
.notfound-cont img{
 max-width: 800px;
 width: 60%;
 margin: 0 auto;
}

@keyframes pulse {
  from {
    box-shadow: 0 0 25px rgba(169, 44, 41, 0.4);
  }
  to {
    box-shadow: 0 0 5px rgba(255, 44, 41, 0.4);
  }
}

form {
  display: block;
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  background-color: var(--text-light);
}

input,
textarea {
  border: 1px solid #ddd;
  width: 100%;
  background-color: #efefef;
  padding: 8px 5px;
  transition: var(--transition);
}

input:hover,
input:active,
textarea:hover,
textarea:active {
  transform: scale(1.05);
}

label {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 2em;
}

form button, .notfound-cont button {
  display: block;
  text-align: var(--center-text);
  margin: 10px auto 0;
  padding: 10px 50px;
  background-color: #f4403b;
  font-weight: bold;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}

form button:hover, .notfound-cont button:hover {
  transform: scale(1.05);
}

.businessInfo {
  display: flex;
  flex-flow: row wrap;
  max-width: 1160px;
  margin: 0 auto;
 gap: 20px;
  justify-content: space-around;
  padding: 100px 20px;
  background-color: #f3f3f3;
}

.businessInfo h2 {
  text-align: left;
}

.businessInfo iframe {
  width: 100%;
  max-width: 600px;
  max-height: 300px;
 border: 0;
  outline: 2px solid #e3e3e3;
  outline-offset: 7px;
}

.info-container p a {
  background-color: gold;
}

/*classes*/

/* Footer Styles */
footer {
  display: block;
  background-color: #191818;
  padding-bottom: 40px;
}

footer ul {
  list-style-type: none;
  padding-inline-start: 0;
  display: flex;
  margin-left: 50px;
}

footer ul li {
  margin: 20px 20px 20px 0;
}

footer a img {
  width: 40px;
}

footer p {
  font-size: small;
  margin-left: 50px;
  color: #e4dfda;
  margin-right: 30px;
}
footer a{
 color: #e4dfda;
}

/* Service Area Pages */
.service-area {
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}

.h1-container {
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
  background-size: cover;
}

.h1-container h1 {
  color: var(--text-light);
  text-align: var(--center-text);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.service-area section h1,
.service-area section h2 {
  max-width: 700px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
}

.service-area .hr:not(.call-to-action) {
  flex: 0 0 100%;
  width: 100%;
  border-bottom: 2px solid gold;
  height: 0;
  display: block;
}

.service-area a {
  font-weight: 600;
  color: orange;
}

.service-area section:not(.call-to-action) {
  display: flex;
  flex-wrap: wrap;
 max-width: 1200px;
 margin: 0 auto;
  gap: 20px;
  padding: 0 40px;
  margin-bottom: 50px;
  align-self: stretch;
}

.service-area p:not(.call-to-action p, .badges p) {
  flex: 1 1 300px;
  max-width: 700px;
  color: var(--text-dark);
  align-self: flex-start;
}

.service-area img:not(.badges img, .wrap img) {
  flex: 1 1 200px;
  width: 100%;
  min-width: 200px;
  max-width: 400px;
  height: auto;
  margin-top: 10px;
  object-fit: cover;
}

.wrap {
  display: block;
 
}

.wrap h2 {
  margin: 0 0 5px 0;
  padding: 20px 0 0;
}

.wrap p {
  margin: 25px 0;
 padding: 0 25px;
}
.wrap iframe{
 width: 100%;
}
.wrap .top {
  display: block;
  width: 100%;
  max-width: 1120px;
  max-height: 200px;
  object-fit: cover;
}

.wrap .generac {
  display: block;
  width: 300px;
  padding: 50px 0;
}

.area-link {
  color: var(--text-light);
  max-width: 700px;
  background: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0;
}

.area-link h2 {
  color: var(--text-light);
  text-align: var(--center-text);
  margin-bottom: 0;
  transition: var(--transition);
}

.area-link:hover h2 {
  color: orange;
}

.flex {
display: flex;
 flex-flow: row wrap;
 justify-content: space-evenly;
 gap: 20px;
padding: 0 10%;
}

.flex div {
flex-basis: 40%;
flex-shrink: 1;
flex-grow: 1;
  padding: 0;
 max-width: 100%;
}
.flex div a{
 display: flex;
align-self: stretch;
min-height: 100%;
  max-width: 100%;
}
.flex div a h2{
text-align: center;
 color: white;
 margin-bottom: 0;
 padding: 20px 0;
}
/* generac page */
.generatorintro{
 background-color: darkorange; padding-top: 50px;
 margin-top: 0;
 height: auto;
}
.caps{
 text-transform: uppercase;
 color: darkorange;
 line-height: 1.2em;
}
.generatorintro h2{
padding-bottom: 15px;
 line-height: 1.2em;
 border-bottom: 2px white solid;
}
/*mobile fixes*/
@media screen and (max-width: 480px){
 .process{
 font-size:.8em;
 }
 .businessInfo{
  gap: 80px;
 }
 

}