 .row.child_pages{
    /* display: flex;
    justify-content: center; */
display: block;
    max-width: 1200px;
    margin: 0 auto;
 }
 .row.child_pages .child-pages-columns-container{
   margin: 0 0 0 20% !important;
   width: 80%;
 }
 .row.child_pages .child-pages-columns-container:not(.section-is-slider){
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-wrap: wrap;
 }



.row.child_pages .child-pages-columns-container.section-is-slider{
   visibility: hidden;
}
.row.child_pages .child-pages-columns-container.section-is-slider.slick-initialized{
   visibility: visible;
} 


.row.child_pages .child-pages-columns-container.section-is-slider .slick-track{
   display: flex;
   /* justify-content: center; */
}

 .row.child_pages .column{
    /* display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 2rem;
    padding: 2rem 1rem;
    width: auto; */
    display: block;
    position: relative;
    /* height: 600px;
    width: 360px; */


    aspect-ratio: 2 / 3;


    padding: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    /* flex: 1 1 calc(25% - 20px); */
    max-width: calc(25% - 20px);
 }


 .row.child_pages .column .card-image{
   position: absolute;
   width: 100%;
   z-index: 0;
   height: 100%;
}

.row.child_pages .column .card-image .card-image-wrapper{
   margin-bottom: 0;
    height: 100%;
    position: relative;
    border-radius: 30px !important;
    overflow: hidden;
}

.row.child_pages .column .card-image .card-image-wrapper::before{
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background: linear-gradient(0deg, rgba(17, 22, 54, 1) 0%, rgba(17, 22, 54, 1) 25%, rgba(17, 22, 54, 0) 84%);
}

.row.child_pages .column .card-image .card-image-wrapper::after{
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   opacity: 0;
   background: linear-gradient(0deg, rgba(211, 114, 48, 1) 0%, rgba(211, 114, 48, 1) 18%, rgba(211, 114, 48, 0) 84%);
   transition: all .2s ease-in-out;
}


.row.child_pages .column:hover .card-image .card-image-wrapper::after{
   opacity: 1;
 }

 
 .row.child_pages .column:hover .card-image .card-image-wrapper .card-image-image{
   transform: scale(1.1) rotate(-3deg);
 }


.row.child_pages .column .card-image .card-image-wrapper .card-image-image{
   height: 100%;
   transition: transform 250ms linear;
   background-size: cover;
   background-position: center;
}

.row.child_pages .column .card-content{
   z-index: 1;
   position: relative;
   display: inline-flex;
   height: 100%;
   width: 100%;
   flex-direction: column;
   align-items: center;
   justify-content: flex-end;
   padding: 15px 45px;
}

.row.child_pages .column .card-content h2.card-content-title{
   font-weight: 700;
   font-size: 27px !important;
   color: white;
   /* height: 102px; */
   margin-bottom: 10px !important;
   text-align: center;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   font-family: "Inter", sans-serif !important;
}
.row.child_pages .column .card-content p.card-content-intro{
   color: #ffffff;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   font-size: 17px;
   text-align: center;
   font-weight: 300;
}
.row.child_pages .column .card-content span.card-more{
   background: #d37230;
   min-width: 50%;
   text-align: center;
   padding: 15px 37px;
   border-radius: 30px;
   font-size: 18px;
   text-transform: uppercase;
   line-height: 1;
   color: #111636;
   font-weight: 600;
   transition: background-color 1s ease, color 1s ease;
}
.row.child_pages .column .card-content:hover span.card-more{
   background: #111636;
   color: #ffffff;
}

h2.child-pages-title{
   font-weight: 500;
   font-size: 44px;
   margin: 0 0 30px 0;
   display: inline-block;
   color: #d37230;
   text-align: center;
}







.slider-arrows-cps{
   display: flex;
   width: 115px;
   justify-content: space-between;
   margin-right: 15%;
   float: right;
}
.slider-arrows-cps .arrow-container{
   background: rgba(17, 22, 54, 0.15);
   padding: 10px;
   border-radius: 100%;
   width: 35px;
   height: 35px;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all .2s ease-in-out;
   cursor: pointer;
}
.slider-arrows-cps .arrow-container:hover{
   background: rgba(17, 22, 54, 0.25);
}
.slider-arrows-cps .arr{
   border: solid #111636;
   border-width: 0 3px 3px 0;
   display: inline-block;
   padding: 3px;
   width: 13px;
   height: 13px;
   cursor: pointer;
   transition: all .3s ease-in-out;
}
.slider-arrows-cps .arr:hover{
   width: 16px;
   height: 16px;
}
.slider-arrows-cps .arr-prev{
   transform: rotate(-45deg);
   -webkit-transform: rotate(-45deg);
}
.slider-arrows-cps .arr-next{
   transform: rotate(135deg);
   -webkit-transform: rotate(135deg);
}





@media (max-width: 1600px) {
   .row.child_pages .column .card-content h2.card-content-title{
      font-size: 23px !important;
   }
   .row.child_pages .column .card-content p.card-content-intro{
      font-size: 14px;
   }
   .row.child_pages .column .card-content span.card-more{
      padding: 11px 37px;
      font-size: 15px;
   }
}

@media (max-width: 1440px) {
   .row.child_pages .column{
      flex: 1 1 calc(33.33% - 20px);
      max-width: calc(33.33% - 20px);
   }
}

@media (max-width: 1199px) {
   .row.child_pages .column{
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
      /* height: 550px; */
   }
   .row.child_pages .column .card-content h2.card-content-title {
      font-size: 25px !important;
   }
   /* .row.child_pages .child-pages-columns-container{
      width: 65%;
   } */
}
@media (max-width: 990px) {
   .row.child_pages .column{
      /* height: 500px; */
   }
   /* .row.child_pages .child-pages-columns-container{
      width: 70%;
   } */
}
@media (max-width: 767px) {
   .row.child_pages .child-pages-columns-container {
      margin: 0 0 0 10% !important;
      width: 90%;
  }
  .row.child_pages .column .card-content {
      padding: 15px;
   }
   .row.child_pages .column .card-content h2.card-content-title{
      font-size: 20px !important;
   }
   .row.child_pages .column .card-content p.card-content-intro {
      font-size: 14px;
      margin-bottom: 10px;
   }
   /* .row.child_pages .column {
      flex: 1 1 calc(100%);
      max-width: calc(100%);
      margin-right: 0;
  }
  .row.child_pages .child-pages-columns-container {
      width: 50%;
      margin: 0 auto !important;
   } */

   .slider-arrows-cps {
      display: flex;
      margin-right: unset;
      float: unset;
      margin: 0 auto;
  }

}

@media (max-width: 540px) {
   .row.child_pages .column .card-content span.card-more {
      padding: 5px 27px;
      font-size: 13px;
  }
  .row.child_pages .column {
      aspect-ratio: 2 / 3;
      margin-right: 12px;
      margin-bottom: 12px;
   }
   .row.child_pages .child-pages-columns-container {
      margin: 0 !important;
      width: 130%;
      max-width: none;
      transform: translateX(10%);
  }
}

@media (max-width: 425px) {
   .row.child_pages .child-pages-columns-container {
      margin: 0 !important;
      width: 140%;
      max-width: none;
      transform: translateX(15%);
  }
}

@media (max-width: 375px) {
   .row.child_pages .child-pages-columns-container {
      margin: 0 !important;
      width: 150%;
      max-width: none;
      transform: translateX(10%);
  }
}

@media (max-width: 325px) {
   .row.child_pages .child-pages-columns-container {
      margin: 0 !important;
      width: 160%;
      max-width: none;
      transform: translateX(7%);
  }
}
/* @media (max-width: 580px) {
  .row.child_pages .child-pages-columns-container {
      width: 60%;
   }
}
@media (max-width: 475px) {
   .row.child_pages .child-pages-columns-container {
       width: 70%;
    }
 }

 @media (max-width: 375px) {
   .row.child_pages .child-pages-columns-container {
       width: 80%;
    }
 } */
/* 

 .row.child_pages .column .card{
    position: relative;
    width: 350px;
    height: 520px;            
    border-radius: 2rem;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: white;
    font-family: "freight-sans-pro", sans-serif !important;
    font-weight: bold;
    flex-shrink: 0;
    border: none;
 }
 .row.child_pages .column .card.color-1,
 .row.child_pages .column .card.color-1 .card-label{
    background-color: #004f59;
 }
 .row.child_pages .column .card.color-2,
 .row.child_pages .column .card.color-2 .card-label{
    background-color: #DB7B51;
 }
 .row.child_pages .column .card.color-3,
 .row.child_pages .column .card.color-3 .card-label{
    background-color: #CAB64B;
 }
 .row.child_pages .column .card .card-bg{
    inset: 0;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    transition: transform 0.3s ease;
    height: 75%;
    z-index: 2;
    border-radius: 2rem;
    transition: all .2s ease-in-out;
    position: relative;
 }

 .row.child_pages .column .card .card-bg .card-bg-text{
    position: absolute;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 71%, rgba(0, 0, 0, 0.61) 100%);
    color: white;
    opacity: 0;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem 1rem;
    transition: all .2s ease-in-out;
    left: 0;
    bottom: -100%;
    height: 100%;
    text-align: center;
    width: 100%;
    justify-content: center;    
 }

 .row.child_pages .column .card .card-label{
    bottom: 0;
    width: 100%;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;  
    transition: all .2s ease-in-out;
    margin: 0 auto;
    width: 90%;
 }

 .row.child_pages .column .card:hover .card-bg{
    height: 100%;
 }

 .row.child_pages .column .card:hover .card-bg .card-bg-text{
    top: 0;
    opacity: 1;
 }
 .row.child_pages .column .card:hover .card-label{
    height: 0px;
    padding: 0;
 } */