.flc-faq {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.flc-faq .card-header {
  padding: 1.5rem 1.75rem;
  background: #fff;
  color: #1c8793;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: all .2s ease;
}
.flc-faq dt:last-of-type .card-header {
  border-bottom: none;
}
.flc-faq .card-body {
  background-color: #f8f9fa;
  padding: 2rem;
  line-height: 1.8;
}
.flc-faq .card-header i {
  margin-right: 14px;
  transition: transform 0.3s ease;
}
.flc-faq .card-header.collapsed i {
  transform: rotate(0deg);
}
.flc-faq .card-header:not(.collapsed) i {
  transform: rotate(180deg);
}
.flc-faq  .btn.focus, .flc-faq  .btn:focus {
  outline: 0;
  box-shadow: none;
}
.process-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  height: 100%;
  transition: all .25s ease;
  border: 1px solid rgba(0,0,0,.05);
  padding: 2.5rem;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
.process-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(243,117,33,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon i {
  font-size: 2.2rem;
  color: #f37521;
}
.process-card h3 {
  margin-bottom: 1.2rem;
}
.process-card p {

}
@media (max-width: 991px) {
    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-card h3 {

    }
}
@media (min-width: 1200px) {
  .sm-simple a span.sub-arrow {
    right: 5px!important;
  }
 }   
.process-steps {
  margin-top: 3rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.process-step:last-child {
  border-bottom: 0;
}
.step-label {
  min-width: 90px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1c8793;
  text-transform: uppercase;
  padding-top: .35rem;
}
.step-content {
  border-left: 3px solid #1c8793;
  padding-left: 2rem;
  flex: 1;
}
.step-content h3 {
}
.step-content p {
  margin-bottom: 0;
  color: #666;
  line-height: 1.9;
  font-size: 1.05rem;
}
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    .step-label {
        min-width: auto;
        padding-top: 0;
    }
    .step-content {
        padding-left: 1.25rem;
    }
}
.repair-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}
.repair-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.repair-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform .6s ease;
}
.repair-card:hover .repair-img {
    transform: scale(1.05);
}
.repair-overlay {
    padding: 2rem 1.5rem;
    background: linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.55) 38%,transparent 100%);
}
.repair-title {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.4;
}
@media (max-width: 1199px) {
    .repair-img {
        height: 400px;
    }
}
@media (max-width: 991px) {
    .repair-img {
        height: 360px;
    }
}
@media (max-width: 767px) {
    .repair-img {
        height: 300px;
    }
}
@media (max-width: 575px) {
    .repair-img {
        height: 260px;
    }
}
.btn-container {
  display: flex;
  gap: 1rem;
}
.about-split {
    overflow: hidden;
}

.about-image-col {
    position: relative;
    min-height: 720px;
}

.about-image-col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    object-fit: cover;
}
