


:root {
    --x-yellow: #eea719;
    --x-orange: #ee6d19;
    --x-blue: #19a5e3;
    --x-ping: #f500bd;
    --x-teal: #128f8f;
}

.--color-white{
    color: #fff;
}

.--bg-yellow{
    background-color: var(--x-yellow);
}

.--bg-orange{
    background-color: var(--x-orange);
}

.--bg-blue{
    background-color: var(--x-blue);
}

.--bg-ping{
    background-color: var(--x-ping);
}

.--bg-teal{
    background-color: var(--x-teal);
}

.--ad-05{
    animation-delay: 0.5s;
}

.--ad-1{
    animation-delay: 1s;
}

.--ad-2{
    animation-delay: 2s;
}

.--ad-3{
    animation-delay: 3s;
}

.--ad-4{
    animation-delay: 4s;
}

.--ad-5{
    animation-delay: 5s;
}

.--flex-1{
    flex: 1;
}

.--flex-1-5{
    flex: 1.5;
}

.--flex-2{
    flex: 2;
}

.--flex-3{
    flex: 3;
}

.--flex-4{
    flex: 4;
}

.--flex-5{
    flex: 5;
}

.--dp-flex{
    display: flex;
}

.--fd-column{
    flex-direction: column;
}

.--ai-center{
    align-items: center;
}

.--jc-center{
    justify-content: center;
}

.--p3{
    padding: 3px;
}

.--p5{
    padding: 5px;
}

.--p5-10{
    padding: 5px 10px;
}

.--mr-auto{
    margin: auto;
}

.--mt-10{
    margin-top: 10px;
}

.--mt-20{
    margin-top: 20px;
}

.--mb-10{
    margin-bottom: 10px;
}

.--mb-20{
    margin-bottom: 20px;
}

.--ta-center{
    text-align: center;
}

.x-slider-container {
    position: relative;
    height: auto;
    float: left;
    width: 100%;
}

.x-slider-carrier {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.x-slider-carrier .item {
    height: 80vh;
}

.x-slider-carrier > .item > img {
    display: block;
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 100%;
}

.x-slider-carrier > .item.active > img {
    transition: transform 5s linear 0s;
    transform: scale(1.05, 1.05);
}

.x-slider-content {
    position: absolute;
    right: 0;
    padding: 0 0;
    vertical-align: middle;
    float: left;
    bottom: auto;
    z-index: 999999;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.x-slider-restrictive{
    width: 100%;
    max-width: 90%;
    margin: auto;
    height: 100%;
}

.x-slider-action-elements {
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px;
}

.x-slider-action-columns{
    height: 100%;
    padding: 20px;
}

.x-slider-action-columns > .img{
    float: left;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.x-slider-action-columns > .img img{
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
}

.x-slider-action-columns .text{
    float: left;
    width: 100%;
}

.x-slider-action-columns .text h6{
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.x-slider-action-columns .text h5{

}

.x-slider-action-columns .text h4{

}

.x-slider-action-columns .text h3{

}

.x-slider-action-columns .text h2{

}

.x-slider-action-columns .text h1{
    font-size: 48px;
    font-weight: 600;
}

.x-slider-action-columns .text p{
    line-height: 22px;
    font-size: 14px;
}

.x-slider-action-columns .x-slider-button{
    padding: 10px 20px;
    display: block;
    border-radius: 36px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 205px;
    text-align: center;
}

.x-slider-arrows{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;

}

.x-slider-arrows.right{
    right: 0;
    left: auto;
}

.x-slider-arrows button{
    position: relative;
    width: auto;
    background: rgb(0 0 0 / 70%);
    padding: 5px 0;
}

.x-slider-arrows button span{

}

.x-slider-dots{

}

.x-slider-dots button{
    width: 30px !important;
    height: 7px !important;
    background-color: rgb(255 255 255 / 35%) !important;
    border: none !important;
    margin: 0 3px !important;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.carousel-indicators button span {
    display: block;
    background-color: #fff; /* Arka plan rengini belirle */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: left; /* Animasyonun soldan başlamasını sağlar */
    transform: scaleX(0); /* Başlangıçta görünmez */
    animation: none; /* Animasyon başlangıçta devre dışı */
}

.carousel-indicators button.active span {
    animation: fill 10s linear forwards; /* Aktif durumda animasyonu çalıştır */
}

@keyframes fill {
    0% {
        transform: scaleX(0); /* Başlangıçta genişlik 0 */
    }
    100% {
        transform: scaleX(1); /* Sonunda genişlik %100 */
    }
}

@media (max-width: 991px) {
    .x-slider-carrier .item {
        height: 70vh;
    }

    .x-slider-action-elements{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 0 !important;
    }
    .x-slider-action-columns{
        height: auto !important;
        max-height: 50% !important;
        width: 100%;
    }

    .x-slider-action-columns > .img{
        height: 100% !important;
    }

    .x-slider-action-columns .text h1{
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }

    .x-slider-action-columns .text h6{
        font-size: 11px !important;
    }

    .x-slider-action-columns .text p{
        font-size: 13px !important;
    }

    .x-slider-action-columns .x-slider-button{
        display: inline-block !important;
        margin: auto !important;
        padding: 5px 20px !important;
    }

    .x-slider-arrows{
        height: auto !important;
        top: auto !important;
        bottom: 0 !important;
    }

    .--r-max-h250{
        max-height: 250px !important;
    }

    .--r-ta-center{
        text-align: center !important;
    }

    .--r-mb-0{
        margin-bottom: 0 !important;
    }

    .--r-mt-0{
        margin-top: 0 !important;
    }

    .--r-flex-none{
        flex: none !important;
    }

    .--r-p-0{
        padding: 0 !important;
    }

    .--r-pb-0{
        padding-bottom: 0 !important;
    }

    .--r-p-10{
        padding: 10px !important;
    }

    .--r-p-20{
        padding: 20px !important;
    }

    .--r-dp-flex{
        display: flex !important;
    }

    .x-slider-dots button {
        width: 20px !important;
        height: 5px !important;
    }

    .x-slider-dots {
        bottom: -5px !important;
    }

    .x-slider-arrows{
        display: none !important;
    }
}
