.work-process-section .process_box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  transition: 0.4s ease;
  border-bottom: 4px solid #e63946;
}

.work-process-section .process_box:hover {
  transform: translateY(-10px);
  background: #000;
  color: #fff;
}

.work-process-section .step_no {
  font-size: 28px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 15px;
  display: block;
}

.work-process-section .process_box:hover .step_no h3 {
  color: #fff;
}

.sec_title {
  font-weight: 800;
  color: #000;
}

.sub_title {
  color: #e63946;
  letter-spacing: 1px;
  font-weight: 600;
}

.process_box h3 {
  color: #000;
}

.process_box h3:hover {
  color: #fff;
}

/* Sidebar Services Widget */
.service_widget {
  /* background: #1c1c1c; */
  padding: 25px;
  border-radius: 6px;
  /* border: 1px solid #2a2a2a; */
  /* transition: all 0.3s ease-in-out; */
}

.service_widget:hover {
  /* border-color: #ed3548; */
  /* Theme highlight color */
  /* box-shadow: 0 0 15px rgba(255, 140, 0, 0.25); */
}

/* Heading */
.service_widget .widget_title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  border-left: 3px solid #ed3548;
  padding-left: 10px;
}

/* List items */
.footer_services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_services li {
  margin-bottom: 10px;
}

.footer_services li:last-child {
  margin-bottom: 0;
}

/* Links */
.footer_services li a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

/* Left hover line effect */
.footer_services li a:before {
  content: "";
  width: 0;
  height: 2px;
  background: #ed3548;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.footer_services li a:hover {
  color: #ed3548;
  padding-left: 6px;
}

.footer_services li a:hover:before {
  width: 100%;
}

.faqSection {
  padding: 80px 0;
  background: #ffffff;
}

.faqSection .panel {
  border: none;
  box-shadow: none;
  margin-bottom: 12px;
  border-radius: 0;
  border-left: 3px solid #ed3548;
}

.faqSection .panel-heading {
  background: #fff;
  border: none;
  padding: 0;
}

.faqSection .panel-title a {
  display: block;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
}

.faqSection .panel-title a:hover,
.faqSection .panel-title a[aria-expanded="true"] {
  color: #ed3548;
}

.faqSection .panel-body {
  background: #fafafa;
  padding: 15px;
  border-top: 1px solid #eee;
  line-height: 1.7;
  font-size: 15px;
}

.footer-locations {
    text-align: center;
    padding: 40px 10px 20px;
}

.footer-locations h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
}

.locations-links a {
    font-size: 14px;
    margin: 0 8px;
    color: #d3d3d3;
    text-decoration: none;
    transition: .3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

.locations-links a:hover {
    color: #ff004f;
    transform: translateY(-3px);
}

