/* FIX 20/03

Swapped all @media (width <= with @media screen and (max-width: 

*/

.custom *{
	box-sizing: border-box;
}

.cl-header{
    width: 100%;
    /* min-height: 360px; */
    background-image: url(/images/customisation-2025/video-thumb6.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-video {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.full-width-video .video-holder {
  position: relative;
  width: 100%;
  height: 1000%;
  -webkit-filter: brightness(0.6);
      filter: brightness(0.6);
}

.full-width-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width:800px) {
  .full-width-video {
    height: 260px;
  }
}

@media screen and (max-width:600px) {
  .full-width-video {
    height: 200px;
  }
}

@media screen and (max-width:400px) {
  .full-width-video {
    height: 180px;
  }
}

.cl-cta{
    background-color: #314C89;
    color: white;
    border: 1px solid white;
    padding: 12px 15px;
    /* border: none; */
    border-radius: 25px;
    cursor: pointer;
    margin: 20px 10px 0 0px;
    transition: all .3s ease-in-out;
    text-decoration: none;
    text-align: center;
    width: 47%;
  }
  .cl-cta.white{
    background-color: #FFF;
    color: #314C89;
    /* border: none; */
  }
  .cl-cta i{
    margin-left: 18px;
    font-size: 12px;
  }
  .cl-cta:hover{
    background-color: #FFF;
    color: #314C89;
    text-decoration: none;
    border: 1px solid #314C89;
  }
  .cl-cta.white:hover{
    background-color: #314C89;
    color: #FFF;
    border: 1px solid #FFF;
    text-decoration: none;
  }
.cl-header img{
    width: 300px;
    position: absolute;
    z-index: 2;
}
.seo{
    width: 80%;
    margin: 30px auto;
    text-align: center;
}
.seo-text{
    font-size:16px;
    color: #314C89;
}
.seo .lc-section-title{
    color: #314C89;
}

@media screen and (max-width:400px) {
  .seo{
    width: 90%;
    margin: 20px auto;
    text-align: center;
  }
  .seo .lc-section-title{
    color: #314C89;
    font-size: 25px;
  }
}

.lc-why-choose{
    width: 100%;
}

h2.lc-section-title {
    font-size: 30px;
    color: #314C89;
    text-align: center;
    margin: 30px 0 30px 0;
	font-weight:500;
}
.lc-why-choose-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.lc-why-choose-inner .lc-card{
    display: flex;
    width: calc(33% - 20px);
    margin: 10px 10px;
    padding: 20px 10px;
    background-color: #F7F7F7;
    border-radius: 20px;
    text-align: center;
    align-items: stretch;
}

.lc-why-choose-inner .lc-card .icon{
    width: 30%;
    height: 100%;
    display: flex;
}
.lc-why-choose-inner .lc-card .icon img{
    width: 80%;
    margin: auto;
}
.lc-why-choose-inner .lc-card .card-info{
    text-align: left;
    width: 70%;
    padding-left: 10px;
}
.lc-why-choose-inner .lc-card .card-info .card-title{
    font-size: 25px;
    color: #314C89;
    margin-bottom: 5px;
	font-weight:500;
}
.lc-why-choose-inner .lc-card .card-info .card-desc{
    margin-bottom: 0px;
    font-size: 18px;
    color: #707070;
    line-height: 25px;
}
.lc-why-choose .cta-holder{
    width: 100%;
    height: 80px;
    text-align: center;
}
.lc-why-choose .cta-holder .cl-cta{
    margin: auto;
    top: 30px;
    width: 205px;
    height: 50px;
    position: relative;
    display: block;
}



@media screen and (max-width:1250px) {
    .lc-header-content{
      padding: 50px;
      width: 50%;
  }

  }

  @media screen and (max-width:850px) {
    .lc-why-choose-inner .lc-card {
        width: calc(50% - 20px);
    }
  }

  @media screen and (max-width:600px) {
    .lc-why-choose-inner .lc-card {
        width: calc(100% - 20px);
    }
  }



  .insp-gallery {
    margin: 2em auto;
    max-width: 100%;
  }
  
  img {
    vertical-align: middle;
    max-width: 100%;
  }
  
  .masonry {
    display: flex;
    width: 100%;
  }
  
  a {
    color: #333;
  }
  
  .masonry--h {
    flex-flow: row wrap;
  }
  
  .masonry--v {
    flex-flow: column wrap;
    max-height: 1080px;
  }
  
  .masonry--h,
  .masonry--v {
    margin-left: -8px; /* Adjustment for the gutter */
    counter-reset: brick;
  }
  
  .masonry-brick {
    overflow: hidden;
    border-radius: 5px;
    margin: 0 0 8px 8px;  /* Some Gutter */
    background-color: #333;
    color: white;
    position: relative;
  }
  
  .masonry-brick--h {
    flex: auto;
    height: 250px;
    min-width: 150px;
  }
  
  @media only screen and (min-width: 1024px) {
    /* Horizontal masonry bricks on desktop-sized screen */
    .masonry-brick--h:nth-child(4n+1) {
      width: 350px;
    }
    .masonry-brick--h:nth-child(4n+2) {
      width: 425px;
    }
    .masonry-brick--h:nth-child(4n+3) {
      width: 280px;
    }
    .masonry-brick--h:nth-child(4n+4) {
      width: 480px;
    }
  
    /* Adjusting vertical masonry height on desktop-sized screen */
    .masonry--v {
      max-height: 1600px;
    }
  
    /* Vertical masonry bricks on desktop-sized screen */
    .masonry-brick--v {
      width: 33.33333%;
    }
  }
  
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    /* Horizontal masonry bricks on tabled-sized screen */
    .masonry-brick--h:nth-child(4n+1) {
      width: 200px;
    }
    .masonry-brick--h:nth-child(4n+2) {
      width: 250px;
    }
    .masonry-brick--h:nth-child(4n+3) {
      width: 120px;
    }
    .masonry-brick--h:nth-child(4n+4) {
      width: 280px;
    }
  
    /* Adjusting vertical masonry height on tablet-sized screen */
    .masonry--v {
      max-height: 2000px;
    }
  
    /* Vertical masonry bricks on tablet-sized screen */
    .masonry-brick--v {
      width: 50%;
    }
  }
  
  .masonry-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(50%);
  }
  
  
  /* Page assets */
  
  .labs-pagination {
    margin-bottom: 1.5rem;
    font-size: 12px;
  }
  
  .labs-page {
    text-transform: uppercase;
    display: inline-block;
    padding: .5em .75em;
    border: 2px solid #333;
  }
  
  .labs-page:hover,
  .labs-page--current {
    background-color: #333;
    color: rgba(255, 255, 255, .75);
  }
  
  .alternating-blocks{
    width: 100%;
}
.ab-holder{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.ab-content-left, .ab-content-right{
    width: 50%;
    margin: 10px 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.ab-content-left h2, .ab-content-right h2{
    text-align: left;
}
.ab-content-left img, .ab-content-right img{
    /* width: 100%; */
    object-fit: cover;
    height: -webkit-fill-available;
}
.ab-content-right{
    background-color: #445C94;
    color: #FFF;
    /* text-align: center; */
    padding: 0 8%;
}
.ab-content-right .lc-section-title{
    width: 100%;
}
.ab-content-right .lc-section-title img{
    width: 70%;
    /* margin:auto; */
}

/* This is a hack to fix the image height issue in Safari */
@supports (-webkit-appearance: none) {
    .ab-content-left img, .ab-content-right img {
        /* height: auto; */
    }
}

@media screen and (max-width:1200px) {
    .ab-content-right{
        background-color: #445C94;
        color: #FFF;
        /* text-align: center; */
        padding: 20px 5%;
    }
}

@media screen and (max-width:1100px) {
    .ab-content-right{
        background-color: #445C94;
        color: #FFF;
        /* text-align: center; */
        padding: 15px 3%;
    }
}
  


@media screen and (max-width:850px) {
    .ab-content-left, .ab-content-right{
        width: 100%;
        margin: 0;
    }
    .ab-holder.reverse-col{
        flex-direction: column-reverse;
    }
    .ab-content-left img, .ab-content-right img{
        width: 100%;
        height: auto;
        object-fit: fill;
    }
    .ab-content-right .lc-section-title img {
        width: 50%;
    }
  }

  @media screen and (max-width:450px) {
      .ab-content-right .cl-cta{
        display: block;
        width: 100%;
      }
  }

  .cl-cols-3{
    display: flex;
    justify-content: space-between;
  }

  .cl-cols-3 .cl-col-3{
    width: 33%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #314C89;
    color: #FFF;
    position: relative;
  }
  .cl-cols-3 .cl-col-3 .col-3-img{
    min-height: 211px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cl-cols-3 .cl-col-3 .col-3-img img{
    width: 70%;
  }

  .cl-cols-3 .cl-col-3 .col-3-content{
    padding: 7%;
    position: relative;
    padding-bottom: 80px;
  }
  .cl-cols-3 .cl-col-3 .col-3-content .title{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .cl-cols-3 .cl-col-3 .col-3-content .intro{
    margin-bottom: 20px;
  }

  .cl-cols-3 .cl-col-3 .ctas{
    display: flex;
    justify-content: space-around;
    position: absolute;
    bottom: 30px;
    width: 92%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .cl-cols-3 .cl-col-3 .ctas .cl-cta{
    margin: 0;
  }
  .cl-cols-3 .cl-col-3 .col-3-img.laser{
    background-image: url(/images/customisation-2025/Laser-service_image.jpg);
    background-size: cover;
  }

  .cl-cols-3 .cl-col-3 .col-3-img.scan{
    background-image: url(/images/banners/PM0425-Jump-Rings.jpg);
    background-size: cover;
  }

  .cl-cols-3 .cl-col-3 .col-3-img.metals{
    background-image: url(/images/customisation-2025/Cast-service_image.jpg);
    background-size: cover;
  }
  @media screen and (max-width:1200px) {
    .cl-cols-3 .cl-col-3 .ctas .cl-cta{
            margin: 0 ;
            padding: 15px 0;
            width: 49%;
        }
    }
    @media screen and (max-width:1000px) {
        .cl-cols-3 .cl-col-3 .ctas .cl-cta{
            margin: 10px 0 5px 0;
            width: 90%;
            padding: 10px 10px;
            position: relative;
        }
        .cl-cols-3 .cl-col-3 .ctas {
            flex-wrap: wrap;
        }
        .cl-cols-3 .cl-col-3 .col-3-content{
            padding: 7%;
            position: relative;
            padding-bottom: 130px;
          }
    }

    @media screen and (max-width:700px) {
        .cl-cols-3{
            flex-wrap: wrap;
        }
        .cl-cols-3 .cl-col-3{
            width: 100%;
            margin-bottom: 20px;
        }
        .cl-cols-3 .cl-col-3 .ctas .cl-cta{
            margin: 10px 0 5px 0;
            width: 48%;
            padding: 10px 10px;
            position: relative;
        }
        .cl-cols-3 .cl-col-3 .ctas {
            flex-wrap: no-wrap;
        }
        .cl-cols-3 .cl-col-3 .col-3-content{
          padding-bottom: 90px;
        }

    }






.mm-columns {
  --col-width: var(--_col-width, 280px);
  --columns: var(--_columns, 5);
  --gap: var(--_gap, 20px);
  columns: var(--col-width) var(--columns);
  column-gap: var(--gap);
}
.mm-columns__item:not(:last-child) {
  margin-bottom: var(--gap);
}
.mm-columns__img {
  width: 100%;
  height: auto;
}
/*a {
  cursor: zoom-in;
}*/




    /* .arch-slider {
      margin: 0;
      padding: 30px 0;
      background: #e8e8e8
  }
  
  
  .arc-images {
      position: relative
  }
  
  .arc-images:before {
      content: " ";
      -webkit-transition: opacity .5s ease;
      transition: opacity .5s ease;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-radius: 0;
      z-index: 1
  }
  
  a.arc-link:hover .arc-images:before {
      background: rgba(8,8,8,.75);
      background: rgba(51,51,51,0.6) !important
  }
  
  .architecturalmillwork-lyt .slick-lightbox-close {
      color: rgba(0,110,158,1) !important;
      font-size: 26px !important;
      width: 38px !important;
      HEIGHT: 44px !important;
      margin-top: 30px;
      margin-right: 80px;
      right: 0 !important;
      top: 2px !important
  }
  
  .architecturalmillwork-lyt .slick-lightbox-close:before {
      font-family: progallery-svg-font-icons !important;
      display: inline-block;
      vertical-align: middle;
      line-height: 1 !important;
      font-weight: 400;
      font-style: normal;
      speak: none;
      text-decoration: inherit;
      text-transform: none;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased !important;
      -moz-osx-font-smoothing: grayscale;
      content: "\F10A" !important;
      font-size: inherit;
      color: rgba(0,0,0,1) !important
  }
  
  .arch-slider .slick-arrow {
      position: absolute;
      width: 100px;
      height: 100px;
      top: 50%;
      margin-top: -55px;
      z-index: 111;
      padding: 20px 38.5px;
      cursor: pointer
  }
  
  .arch-slider .slick-arrow.next {
      right: 0
  }
  
  .arch-slider .slick-arrow svg {
      -webkit-filter: drop-shadow(0 1px .15px #b2b2b2);
      filter: drop-shadow(0 1px .15px #b2b2b2);
      display: inline-block
  }
  
  .slideshow-arrow {
      fill: #e8e8e8
  }
  
  .arch-slider {
      margin: 0;
      padding: 30px 0;
      background: #e8e8e8
  }
  
  .arc-images {
      position: relative
  }
  
  .arc-images:before {
      content: " ";
      -webkit-transition: opacity .5s ease;
      transition: opacity .5s ease;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-radius: 0;
      z-index: 1
  }
  
  a.arc-link:hover .arc-images:before {
      background: rgba(8,8,8,.75);
      background: rgba(51,51,51,0.6) !important
  }
  
  
  .architecturalmillwork-lyt .slick-lightbox-inner {
      background-color: rgba(232,232,232,1) !important;
      z-index: 1111
  }
  
  .architecturalmillwork-lyt .slick-lightbox-inner .slick-arrow {
      z-index: 111;
      width: 100px;
      height: 100px;
      background-image: url(//cdn2.hubspot.net/hubfs/4795157/Idxcorporation_December2018/Images/arrow.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 27px;
      margin-top: -50px
  }
  
  .architecturalmillwork-lyt .slick-lightbox-inner .slick-arrow:before {
      display: none
  }
  
  .architecturalmillwork-lyt .slick-lightbox-inner .slick-prev {
      left: 0
  }
  
  .architecturalmillwork-lyt .slick-lightbox-inner .slick-next {
      right: 0;
      transform: rotate(180deg)
  }
  
  .architecturalmillwork-lyt .slick-lightbox-close {
      color: rgba(0,110,158,1) !important;
      font-size: 26px !important;
      width: 38px !important;
      HEIGHT: 44px !important;
      margin-top: 30px;
      margin-right: 80px;
      right: 0 !important;
      top: 2px !important
  }
  
  .architecturalmillwork-lyt .slick-lightbox-close:before {
      font-family: progallery-svg-font-icons !important;
      display: inline-block;
      vertical-align: middle;
      line-height: 1 !important;
      font-weight: 400;
      font-style: normal;
      speak: none;
      text-decoration: inherit;
      text-transform: none;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased !important;
      -moz-osx-font-smoothing: grayscale;
      content: "\F10A" !important;
      font-size: inherit;
      color: rgba(0,0,0,1) !important
  } */
  