.customer-slider {
    background: var(--darkblue);
    padding: 100px 0 140px 0;
    color: white;
}

.customer-slider h2 {
    margin-bottom: 80px;
}

.customer-slider .swiper {
    width: 100%;
    height: auto !important;
    overflow: visible !important;
}

.customer-slider .swiper-wrapper {
    height: auto !important;
}

.customer-slider .swiper-slide {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    background: white;
    color: var(--darkblue);
    width: 60% !important;
    max-width: 1280px !important;
    transform: scale(0.7) !important;
    opacity: 0.5;
    height: auto !important;
    transition: 0.5s ease;
    padding: 45px;
    box-shadow: 0 0px 0px rgba(0,0,0,0);
    margin: 0 !important;
}

.customer-slider .swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1;
    transition: 0.5s ease;
    box-shadow: 0 4px 50px rgba(0,0,0,0.3);
}

.customer-slider .swiper-horizontal>.swiper-pagination-bullets, 
.customer-slider .swiper-pagination-bullets.swiper-pagination-horizontal, 
.customer-slider .swiper-pagination-custom, 
.customer-slider .swiper-pagination-fraction {
    top: initial !important;
    bottom: -40px !important;
}


.customer-slider .swiper-pagination-bullet {
    width: 14px !important; 
    height: 14px !important; 
    background: white !important;
    opacity: 0.56 !important;
    transition: 0.5s;
    border-radius: 100px !important;
}

.customer-slider .swiper-pagination-bullet-active {
    background: var(--brightgreen) !important;
    width: 50px !important;
    opacity: 1 !important;
}

.customer-slider .column-photo {
    width: 40%;
    background: url('/wp-content/themes/aibatros/images/background-customer-photo.svg') no-repeat center bottom;
    background-size: 100% auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.customer-slider .column-photo img {
    width: 100%;
}

.customer-slider .column-content {
    width: 60%;
    height: 100%;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.customer-slider .column-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.customer-slider .column-content .customer-author {
    margin-bottom: 20px;
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
    font-size: 14px;
}

.customer-slider .column-content .customer-author:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 100px;
    height: 2px;
    width: 35px;
    background: var(--blue);
}

.customer-slider .column-content .customer-short-description {
    font-weight: 700;
    font-size: 14px;
}

.customer-slider .column-content a.link-arrow {
    position: absolute;
    left: 20px;
    bottom: -5px;
}

.customer-slider .column-content a.link-arrow:after {
    top: 0px;
}

@media (max-width: 1200px) {
    .customer-slider {
        padding: 60px 0 80px 0;
    }
}

@media (max-width: 1200px) {
    .customer-slider {
        padding: 30px 0 65px 0;
        width: 100%;
        overflow: hidden;
    }

    .customer-slider .swiper-slide {
        flex-direction: column;
        padding: 20px;
        width: 80% !important;
        box-sizing: border-box;
    }

    .customer-slider .column-photo {
        width: 100%;
    }
    
    .customer-slider .column-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }

    .customer-slider .column-content h3 {
        font-size: 16px;
    }

    .customer-slider .column-content a.link-arrow {
        left: 0;
    }
}





