<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.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;
  }
}
/* CSS for title and description */
.line-decorator.ld-center span{
  margin-left: auto;
  margin-right: auto;
}
.line-decorator.ld-right span{
  float: right;
}
.line-decorator.ld-right:before,
.line-decorator.ld-right:after{
  content: "";
  display: table;
}
.line-decorator.ld-right:after{
  clear: both;
}
.line-decorator span{
  width: 75%;
  height: 2px;
  background-color: #e9e9e9;
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.line-decorator span:before{
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  top: 50%;
  background-color: red;
  transform: translateY(-50%);  
}
.line-decorator.ld-left span:before{
  left: 0;
}
.line-decorator.ld-center span:before{
  left: 50%;
  transform: translate(-50%, -50%);
}
.line-decorator.ld-right span:before{
  right: 0;
}

/* Photo Gallery Modal section */

.photo-gallery-modal a {
  position: relative;
  display: block;
}
.photo-gallery-modal a:before,
.photo-gallery-modal a .pgm-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out,
    transform 0.25s ease-in-out;
}
.photo-gallery-modal a:before {
  content: "";
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.photo-gallery-modal a .pgm-content {
  z-index: 2;
  transform: translateY(-30px);
  padding: 15px;
}
.photo-gallery-modal a:hover:before,
.photo-gallery-modal a:hover .pgm-content {
  opacity: 1;
  visibility: visible;
}
.photo-gallery-modal a:hover .pgm-content {
  transform: translateY(0);
}
.photo-gallery-modal a .pgm-content p {
  color: #fff;
}
.photo-gallery-modal .pgm-btn a{
  display: inline-block;
}

/* CENTER CLASSES */
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center-content {
  text-align: center;
}
/* END CENTER CLASSES */


.contact-wrapper {
  padding-bottom: 5px;
}
.contact-wrapper i {
  padding-top: 5px;
  padding-right: 5px;
}




  /* FLEX BOX */
  .d-flex {
    display: flex;
  }
  
  .d-inline-flex {
    display: inline-flex;
  }
  
  .flex-row {
    flex-direction: row;
  }
  
  .flex-column {
    flex-direction: column;
  }
  
  .flex-row-reverse {
    flex-direction: row-reverse;
  }
  
  .flex-column-reverse {
    flex-direction: column-reverse;
  }
  
  .justify-content-start {
    justify-content: flex-start;
  }
  
  .justify-content-end {
    justify-content: flex-end;
  }
  
  .justify-content-center {
    justify-content: center;
  }
  
  .justify-content-between {
    justify-content: space-between;
  }
  
  .justify-content-around {
    justify-content: space-around;
  }
  
  .align-items-start {
    align-items: flex-start;
  }
  
  .align-items-end {
    align-items: flex-end;
  }
  
  .align-items-center {
    align-items: center;
  }
  
  .align-items-baseline {
    align-items: baseline;
  }
  
  .align-items-stretch {
    align-items: stretch;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .flex-nowrap {
    flex-wrap: nowrap;
  }

  /* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
}
  
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  
  .align-self-start {
    align-self: flex-start;
  }
  
  .align-self-end {
    align-self: flex-end;
  }
  
  .align-self-center {
    align-self: center;
  }
  
  .align-self-baseline {
    align-self: baseline;
  }
  
  .align-self-stretch {
    align-self: stretch;
  }
  
  .flex-grow-0 {
    flex-grow: 0;
  }
  
  .flex-grow-1 {
    flex-grow: 1;
  }
  
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  
  .flex-shrink-1 {
    flex-shrink: 1;
  }
  
  .text-nowrap {
    white-space: nowrap;
}
@media (min-width: 991px) {  
  .flex-md-row {
      display: flex;        
  }
}





</pre></body></html>