.x-fence {
    border-bottom: 1px solid rgba(45, 53, 139, .5);
    margin-bottom: 20px;
}

.featured-list-1 {  list-style-type:none; }
.featured-list-1 li {  
    background-image: URL(../images/bullet-01.png);
    background-repeat:no-repeat;
    background-position:0 16px;
    padding-left:50px;
  }
  .featured-list-1 h4 {  
    margin:0;
    padding-top:12px;
  }
  .featured-list-1 li {  
    border-top: 1px dotted #ccc;
  }
  .featured-list-1 li:first-of-type {  border-top: none;
  }

  .bg-highlight {
    background-color: rgba(245, 40, 145, .25);
  }


.process-wrapper .process-single-item {
  position: relative;
  margin-bottom: 80px;
}
.process-wrapper .process-single-item-holder {
  display: table;
  width: 100%;
}
.process-wrapper .process-single-item .process-icon {
    position: relative;
    width: 123px;
    height: 123px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.process-wrapper .process-content {
   position: relative;
   padding-top: 6px;
}
.process-wrapper .process-content p {
    font-size: 13px;
    line-height: 1.6;
}
@media (min-width:768px){
  .process-wrapper .process-single-item .process-icon {
      width: 140px;
      height: 140px;
  }
  .process-wrapper .process-content p {
      font-size: 16px;
  }
}
.process-wrapper .process-single-item svg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 80%;
}
.process-wrapper .process-image {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width:992px){
  .process-wrapper .process-image {
      max-width: 100%;
      margin-top: 70px;
  }
}
@media (min-width:1200px){
  .process-wrapper .process-image {
      margin-top: 0;
  }
}


/* FAQ Fixes */
.section-faqs {
    background-color: #f3f3f3;
  }
  .faq-accordian{
    overflow: hidden;
  }
  .faq-accordian .hide-initially{
    height: 0;
    transform: scaleY(0);    
    transform-origin: top;
    transition: transform 0.25s ease;
  }
  .faq-accordian .panel:nth-child(5){
    margin-bottom: 12px;
  }
  .faq-accordian .hide-initially.show-more-faqs{
    height: auto;
    margin-top: 12px;
    transform: scaleY(1);
  }
  .show-hide-more-faqs.hide-this-button{
    display: none !important;
  }
  .section-faqs .faqs-wrapper .faq-more-btn{
    margin-top: 16px;
  }
  .section-faqs .faqs-wrapper .faq-more-btn a{
    display: block;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .faqs-wrapper .panel,
  .faqs-wrapper .panel-default > .panel-heading {
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
  }
  .faqs-wrapper .panel-title,
  .faqs-wrapper .panel-title a {
    position: relative;
  }
  .faqs-wrapper .panel-title a {
    padding: 25px 50px;
    background-color: #fff;
    border: 1px solid #f2f6f9;
    display: block;
  }
  .faqs-wrapper .panel-title:before {
    content: "\f059";
    font-family: "FontAwesome";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    z-index: 1;
  }
  
  .faqs-wrapper .panel-title a:before,
  .faqs-wrapper .panel-title a:after {
    position: absolute;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    background-color: #000;
    transition: transform 0.35s ease-in-out;
    height: 1px;
    width: 20px;
    right: 13px;
  }
  
  .faqs-wrapper .panel-title a.collapsed:before {
    transform: rotate(90deg);
  }
  
  .faqs-wrapper .panel-default > .panel-heading + .panel-collapse > .panel-body {
    background-color: #fff;
    border: 1px solid #f2f6f9;
  }
  .faqs-wrapper .panel-group .panel + .panel {
    margin-top: 12px;
  }


  .well-up {
    /* Define the initial state and transition properties here */
    transition: transform 0.3s ease; /* Adjust the duration (0.3s) and timing function (ease) as needed */
}

.well-up:hover {
    /* Moves the element up 10px on hover */
    transform: translateY(-10px);
}
