

/*-------------------------------*/
/* WORDPRESS CLEAN UP */
/*-------------------------------*/
aside#secondary,
header.entry-header,
footer.entry-footer {
    display: none;
}
p:empty {
    display: none;
}
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    margin-bottom: 0;
}
body, 
html {
    overflow-x: hidden;
}
a {
    text-decoration: none !important;
    cursor: pointer !important;
    outline: none !important;
}
.post, 
.page,
.entry-content {
    margin: 0 !important;
}
input {
    outline: none !important;
}
.vc_col-has-fill>.vc_column-inner, 
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, 
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, 
.vc_row-has-fill>.vc_column_container>.vc_column-inner,
.vc_column_container>.vc_column-inner {
    padding: unset !important; 
}
.vc_single_image-wrapper img {
    object-fit: cover;
    height: 100% !important;
    width: 100%;
}
.vc_single_image-wrapper {
    height: 100%;
    width: 100%;
}
.wpb_single_image .wpb_wrapper {
    height: 100%;
    width: 100%;
}
.wpb_content_element {
    margin-bottom: 0 !important;
}
.entry-summary {
    margin-top: 0 !important;
}
/* .vc_row {
    margin: 0 !important;
} */

/* Scroll */
::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar-track {
    display: none;
}
::-webkit-scrollbar-thumb {
    display: none;
}


/* // ==================================================================================================================================== */
/* // ============================================================ General Classes  ========================================================== */

h1,h2,h3,h4,h5,h6,li,lo,p,a,button,form *,table th,table td, select, option,div {
    font-family: 'Open Sans', sans-serif;
}
.open-sans {
    font-family: 'Open Sans', sans-serif;
}
.pacifico {
    font-family: 'Pacifico', cursive;
}
.abcbanking-widthcontainer, .abcbanking-wp-widthcontainer > .vc_column-inner {
    margin: 0 auto !important;
    max-width: 85%;
}
.abcbanking-width85-container,
.abcbanking-width85container > .vc_column_container {
    margin: 0 auto;
    max-width: 85%;
    float: none;
}
.abcbanking-width95-container,
.abcbanking-width95container > .vc_column_container {
    margin: 0 auto;
    max-width: 95%;
    float: none;
}
.page-banner-wp-widthcontainer > .vc_column-inner,
.page-banner-widthcontainer {
    max-width: 100%;
    margin: 0 auto !important;
}
.uppercase {
    text-transform: uppercase;
}
.white-bg {
    background: #FFFFFF;
}
.white-color,
.white-color * {
    color: #FFFFFF;
}

.hide-component {
    display: none;
}

.show-component {
    display: block;
}

.section-pb {
    padding-bottom: 25px;
}

.section-pb-big {
    padding-bottom: 60px;
}

.first-section-mt {
    margin-top: -175px
}

/* BASE BUTTON STYLE */
button.slick-btn {
    position: absolute;
    top: -120px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #F4E7DB;
    border: 2px solid #F4E7DB;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.3s ease;
}

/* ICON STYLE */
button.slick-btn i {
    color: #122633;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* BURST BG ANIMATION */
button.slick-btn::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.4s ease;
    z-index: 1;
}

/* HOVER EFFECT */
button.slick-btn:hover {
    border-radius: 12px;
    border: unset;
}

button.slick-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* CLICK FEEDBACK */
button.slick-btn:active {
    transform: scale(0.92);
}

button.slick-prev.slick-btn.custom-slick-prev.slick-arrow {
    right: 102px;
}

/* Default states */
button.slick-prev.slick-btn { opacity: 0.5; }
button.slick-next.slick-btn { opacity: 1; }

/* Hover behavior */
button.slick-prev.slick-btn:hover { opacity: 1; }
button.slick-next.slick-btn:hover { opacity: 1; }

/* When hovering prev → next becomes dim */
button.slick-prev.slick-btn:hover ~ button.slick-next.slick-btn {
    opacity: 0.5;
}

/* When hovering next → prev becomes dim */
button.slick-next.slick-btn:hover {
    opacity: 1;
}

/* Disabled state (NO hover effect) */
button.slick-btn.slick-disabled {
    opacity: 0.4 !important;
    pointer-events: none; /* prevent hover or click */
}

/* // ==================================================================================================================================== */
/* // ============================================================ Loader ========================================================== */
.loader {
  position: fixed; /* was absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* ensure it's above everything */
  background: #f4e7db75;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden; /* prevent scrolling inside */
}

.glass-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  backdrop-filter:blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: #ffffff8c;
}

#logo-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 200px;
  height: auto;
  z-index: 10000;
}

.glass-bg-loader ~ .bg {
    width: 100vw;
    height: 100vh;
}
.glass-bg-loader ~ .bg img {
    width: 100%;
    height: 100%;
    filter: blur(20px);
}


/* // ==================================================================================================================================== */
/* // ============================================================ Nav Menu Styling ========================================================== */

* {
    font-family:"Outfit";
}
.bg {
    position: relative;
}
.bg img {
    width: 100%;
}
.page-banner-wrapper .banner-image-wrapper {
    position: relative;
    overflow: hidden;
}
.page-banner-wrapper .banner-image-wrapper::after{
    content:"";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 70% at 50% 50%,
                rgba(0,0,0,0) 55%, rgba(0,0,0,.20) 100%);
    opacity: .0;    
    transition: opacity .2s linear;
}
.page-banner-wrapper .banner-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 100%;
    height: 120%;      
    object-fit: cover;
    transform-origin: 50% 50%;
    will-change: transform, filter;
}
.home .page-banner-wrapper .banner-image-wrapper img {
    object-position: bottom;
}
.nav-menu-links-content-wrapper {
    position: fixed;
    top:70px;
    right: 140px;
    opacity: 0;
    visibility: hidden;
}
.hamburger-menu svg {
    width: 60px;
}
.hamburger-menu svg path {
    stroke: #ffffff;
}
.hamburger-menu {
    position: fixed;
    top: 3px;
    right: 2px;
    cursor: pointer;
}
.nav-menu-links-content-wrapper .main-nav-menu li {
    list-style: none;
}

.nav-menu-links-content-wrapper .main-nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-floating-logo {
    position: absolute;
    width: 220px;
    z-index: 10;
    top: 35px;
    height: 62px;
    left: 90px;  
    will-change: transform, opacity; 
}

.nav-floating-logo img {
    width: 100%;
    object-fit: contain;
  height: 100%;
}

.nav-menu-container-content-desktop {
    overflow: hidden;
    max-width: 80%;
    margin: 0 auto;
}

.nav-menu-links-content-wrapper .main-nav-menu li a,
.internet-banking-btn.btn-red a {
    text-decoration: none;
    color: #12263380;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.nav-menu-links-content-wrapper .main-nav-menu li a {
    padding-right: 25px;
}
.nav-menu-links-content-wrapper {
    display: flex;
    padding: 20px 0 20px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.32) 100%);
    backdrop-filter: blur(82px);
    z-index: 10;
}
.internet-banking-btn.btn-red {
    margin-right: 5px;
}
.internet-banking-btn.btn-red a {
    border-radius: 50px;
    background: linear-gradient(180deg, #E23D3D 0%, #B02121 100%);
    box-shadow: 0 1px 2px 0 rgba(3, 7, 18, 0.08);
    color: #ffffff;
    padding: 15px 25px;
    white-space: nowrap;
}

.hamRotate:hover {
    transform: rotate(45deg);
}
.hamRotate180:hover {
    transform: rotate(180deg);
}
.line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#000;
    stroke-width:5.5;
    stroke-linecap:round;
}
.ham8 .top {
    stroke-dasharray: 40 160;
}
.ham8 .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
}
.ham8 .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
}
.ham8:hover .top {
    stroke-dashoffset: -64px;
}
.ham8:hover .middle {
    /* stroke-dashoffset: -20px; */
    transform: rotate(90deg);
}
.ham8:hover .bottom {
    stroke-dashoffset: -64px;
}
.nav-menu-links-content-wrapper { 
    will-change: width; 
    box-sizing: border-box;  
}

.nav-links-hover-block {
    position: absolute;
    top: -15px;
    bottom: 30px;
    left: -13px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    height: 50px !important;
    background-color: #ffffff50;
    border-radius: 50px;
    transition: none;
    will-change: transform, width, height, opacity;
}
.nav-menu-links-content-wrapper .main-nav-menu li {
    list-style: none;
    position: relative;
    z-index: 2;
}
.nav-menu-links-content-wrapper .main-nav-menu li a {
  transition: 0.3s ease-in-out;
}
.nav-menu-links-content-wrapper .main-nav-menu li a:hover {
  color: #122633;
}

/* add hover block on active menu  */
.nav-menu-links-content-wrapper .main-nav-menu li.current-menu-item .nav-links-hover-block {
  opacity: 1;
  height: 50px !important;
  transition: 0.3s ease-in-out;
}

ul.main-nav-menu li.current-menu-item a {
    color: #122633;
}

/* .nav-menu-container-inner-wrapper {
    padding: 0;
    margin-top: 20px;
} */

/* // ==================================================================================================================================== */
/* // ============================================================ Footer Menu Styling ========================================================== */

/* top footer menu styling */
.footer-container-inner-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.footer-newsletter-form-wrapper {
    display: flex;
    padding: 122px 141px 122px 66px;
    align-items: flex-start;
    gap: 457px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 25px;
    /* min-height: 480px; */
    max-width: 85%;
    margin: 0 auto;
}

.footer-newsletter-form-inner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.newsletter-form-default .footer-newsletter-form-heading.footer-newsletter-heading-styling {
    max-width: 70%;
}

.footer-newsletter-form-heading h3{
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 66px */
    letter-spacing: -1.98px;
    text-transform: capitalize;
}

.footer-newsletter-form-text p {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 23.4px */
    text-transform: capitalize;
    backdrop-filter: blur(17.03373908996582px);
}

.footer-newsletter-form-content-wrapper {
    max-width: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-newsletter-form-logo-wrapper {
    max-width: 40%;
}

.footer-newsletter-form-text {
    max-width: 480px;
}

.footer-top-menu-wrapper {
    padding: 60px 120px;
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.footer-bottom-menu-wrapper {
    padding: 0 120px;
    margin-bottom: 60px;
}

.footer-top-menu-inner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-menu-heading-wrapper {
    padding-bottom: 18px;
}

.footer-menu-heading-wrapper h5 {
    color: var(--Deep-Blue, #122633);
    font-family: "Rethink Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 28.6px */
    text-transform: capitalize;
    backdrop-filter: blur(17.03373908996582px);
}

.footer-content-list ul {
    list-style-type: none;
    padding: unset;
    margin: unset;
}

.footer-content-list ul li {
    padding-bottom: 20px;
}

.footer-content-list ul li a {
    position: relative;
    display: inline-block;
    color: var(--Deep-Blue, #122633);
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- underline animation (from center) --- */
.footer-content-list ul li a::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--Deep-Blue, #122633);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

/* --- hover effect --- */
.footer-content-list ul li a:hover {
    color: var(--Deep-Blue, #122633);
}

.footer-content-list ul li a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.footer-social-connect-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    align-content: flex-start;
}


/* --- base icon box --- */
.footer-social-icon a {
    position: relative;
    width: 44px;
    height: 44px;
    border: 2px solid transparent; /* no visible border by default */
    color: var(--Deep-Blue, #122633);
    background: transparent;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
}

.footer-social-icon a i {
    font-size: 18px;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* --- bottom border only --- */
.footer-social-icon a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--Deep-Blue, #122633);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

/* --- hover animation --- */
.footer-social-icon a:hover::before {
transform: scaleX(1);
transform-origin: center; /* expands from center outward */
}

.footer-social-icon a:hover {
    color: var(--Deep-Blue, #122633);
}

/* --- subtle motion on icon itself --- */
.footer-social-icon a:hover i {
    transform: translateY(-3px);
}

/* --- fix span positioning (safe cleanup) --- */
.footer-social-icon a span {
    position: absolute;
    inset: 0;
}

.footer-bottom-menu-inner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-wrapper img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.footer-copyright-wrapper p {
    color: var(--Deep-Blue, #122633);
    font-family: "Rethink Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 23.4px */
    text-transform: capitalize;
    backdrop-filter: blur(17.03373908996582px);
}

.newsletter-form-content-wrapper form .gform_fields .ginput_container_email input {
    display: block;
    width: 100%;
    max-width: 50%; /* ✅ limit input width */
    border: 2px solid transparent;
    border-radius: 300px; /* ✅ rounded pill shape */
    padding: 15px 20px;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: var(--Deep-Blue, #122633);
    background-color: #fff;
    /* background-image: linear-gradient(#B02121, #B02121); */
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: 0 100%;
    transition: background-size 0.4s ease, border-color 0.3s ease;
    box-sizing: border-box;
    height: 50px;
}

.newsletter-form-content-wrapper form .gform_fields .ginput_container_email input:focus {
    outline: none;
    background-size: 100% 0.5px; /* animate underline line */
    /* border-color: #B02121; */
}

.newsletter-form-content-wrapper form .gform_fields .ginput_container_email input.animate-border {
  background-size: 100% 2px; /* draws the line */
}

.newsletter-form-content-wrapper form .gform_fields {
    gap: 15px;
}

/* === Checkbox Wrapper === */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
}

/* Hide native checkbox */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox box */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent label::before {
    content: "";
    display: inline-block;
    height: 1.3em;
    width: 1.3em;
    background-color: #ffffff; /* ✅ white background */
    border-radius: 5px;
    transition: all 0.3s ease;
    vertical-align: middle;
    box-sizing: border-box;
    position: absolute;
    left: 0;
}

/* Checked state */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent input[type="checkbox"]:checked + label::before {
  background-color: #ffffff; /* stays white */
}

/* Checkmark */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent label::after {
    content: "";
    position: absolute;
    left: 0.45em;
    top: 0.1em;
    width: 0.4em;
    height: 0.8em;
    border: solid #000000; /* ✅ black checkmark */
    border-width: 0 0.2em 0.2em 0;
    border-radius: 2px;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* Show checkmark when checked */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent input[type="checkbox"]:checked + label::after {
    opacity: 1;
    animation: bounceFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Label styling */
.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent label {
    color: var(--White, #FFF);
    font-family: "Rethink Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
    position: relative;
    cursor: pointer;
    padding-left: 2em;
}

.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent label a {
    color: var(--White, #F4E7DB);
}

/* Checkmark animation */
@keyframes bounceFadeIn {
    from {
        transform: translateY(-6px) rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }
}

.newsletter-form-content-wrapper form .gform-footer {
    margin: unset;
}

/* === Unified Button Styling (Submit + Sign Up) === */
.newsletter-form-content-wrapper form .gform-footer input#gform_submit_button_1 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 100px;
    background: #000;
    color: #fff;
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.54px;
    text-transform: capitalize;
    padding: 14px 28px;
    box-shadow: 0 1px 2px 0 rgba(3, 7, 18, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

/* === Hover State === */
.newsletter-form-content-wrapper form .gform-footer input#gform_submit_button_1:hover {
    background-color: #fff;
    color: #000;
    border-radius: 12px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* === Active / Click Effect === */
.newsletter-form-content-wrapper form .gform-footer input#gform_submit_button_1:active {
    transform: scale(0.97);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent input#input_1_3_1:before {
    display: none;
}

.newsletter-form-content-wrapper form .gform_fields .ginput_container_consent input#input_1_3_1 {
    display: none;
}

.newsletter-form-content-wrapper div#gform_1_validation_container {
    border-color: #fff;
    padding: 5px;
    margin-bottom: 12px;
}

.newsletter-form-content-wrapper div#gform_1_validation_container h2 {
    color: #fff;
}

.newsletter-form-content-wrapper .gform-theme--framework .gform_validation_errors .gform-icon::before {
    color: #fff;
}

.newsletter-form-content-wrapper span.gform-icon.gform-icon--circle-error {
    color: #fff;
    border-color: #fff;
}

.newsletter-form-content-wrapper span.gfield_required.gfield_required_text {
    color: #fff;
}

.newsletter-form-content-wrapper .gform-fields .gfield .gfield_validation_message {
    color: #fff;
}

.newsletter-form-content-wrapper div#validation_message_1_1,
.newsletter-form-content-wrapper div#validation_message_1_3 {
    color: #fff;
}

.newsletter-form-content-wrapper div#gform_confirmation_message_1 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 23.4px */
    text-transform: capitalize;
    backdrop-filter: blur(17px);
    color: #fff;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* When visible */
.newsletter-form-content-wrapper div#gform_confirmation_message_1.gform_confirmation_message {
    opacity: 1;
    transform: translateY(0);
}


.blur-section {
  filter: blur(10px);
  transition: filter 0.3s ease-out;
}
svg#logo-banner {
    width: 210px;
}
.footer-newsletter-form-wrapper {
  bottom: 0;
  z-index: 2;             
  will-change: transform;
}
 


/*svg footer*/
svg#logo-banner .cls-1 {
    fill: #F4E7DB;
}

/*parallax*/
.parallax-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 40px;
}

.parallax-image {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 120% !important;             
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: -1;
}

.card-inner-container .slick-list {
  position: relative;
  overflow: hidden;         
  padding-right: 25% !important; 
}


.card-main-container:last-child .slick-list {
  padding-right: 0 !important;
}


.card-inner-container .slick-track {
     display: flex; 
     position:relative;
}
.card-inner-container .slick-slide { 
    height: auto; min-width: 0; 
}