.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;
  }
}
/*.banner h1{
  z-index:1;
  position: relative;
  display: inline-block;
}
.banner h1:after {
  display: block;
  content: "";
  background: #ff8700;
  width: 600px;
  height: 0.3em;
  height: max(0.25em,0.3em);
  left: 0.05em;
  right: 0.05em;
  top: 0.8em;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}*/

.banner {
  height: 500px;
}

@media (max-width: 690px) {
  .banner h1:after {
    width: 220px;
  }
}

.flex-container {
    display: flex;
    gap: 10px; /* Spacing between boxes */
}
.flex-box {
    display: flex;
    flex-direction: column;
    /* flex: 1;  Ensures equal width */
    padding: 15px;
    height: auto; /* Ensures equal height */
}
.button-container {
    margin-top: auto; /* Pushes the button to the bottom */
}

/* Responsive layout */
@media (max-width: 1199px) {
    .flex-container {
        flex-direction: column;
    }
}


.clipped-image {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 600px;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3; /* Enforces 800x600 aspect ratio */
    object-position: top;
}


/* PHOTO gallery  */
/* ===== GRID ITEMS (6 across ≥ 992 px) ===== */
.flex-gallery-image{
    width:calc((100% - 5*5px)/6);    /* 6 cards, 5 gaps */ 
    border-bottom:5px solid #fff;    
    box-sizing:border-box;
    overflow:hidden;
    transition:opacity .3s ease;
}
@media(max-width:991px){
    .flex-gallery-image{
        width:calc((100% - 3*5px)/4);  /* 4 cards, 3 gaps */        
    }    
}


@media(max-width:767px){
    .flex-gallery-image{
        width:calc((100% - 1*5px)/2);  /* 2 cards, 1 gap */        
    }  
}

@media(max-width:479px){
    .flex-gallery-image{
        width:100%;       
    }
}

#gallery.isotope-init {       
  visibility: visible;
}
#gallery {
  visibility: hidden;           
}


.flex-gallery-image img{
    width:100%;
    transition:transform 2s ease;
}
.flex-gallery-image:hover img{
    transform:scale(1.15);
}

/* filter buttons */
.gallery-btn-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content: center;
}

.gallery-btn{
    display:inline-block;
    padding:8px 18px;
    background:#1c3680;
    border:1px solid #1c3680;
    color:#fff;
    text-transform:uppercase;
    font-weight:600;
    line-height:1.2;
    transition:background .3s ease,color .3s ease,border-color .3s ease;
    cursor: pointer;
}
.gallery-btn:hover,
.gallery-btn.active{
    background:#ff8700;
    border-color:#ff8700;
    color:#fff;
    text-decoration:none;
}
.clipped-image {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 600px;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3; 
  object-position: top;
}
/* PHOTO gallery  END*/






  /* 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;        
  }
}
/* END FLEX BOX */






