* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Open Sans', 'Helvetica Neue', 'Roboto', Arial, sans-serif;
}
html.menu-open {
    overflow: hidden; 
}


html {
    overflow-x: hidden;

    transition: margin-right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
    html.menu-open {
        margin-right: 0 !important; 
        overflow: hidden;
    }
.no-scroll {
    overflow: hidden;
}

/* Header CSS Kodları Buradan Başlıyor */

.logo-header-large {
    display: block;
    margin-top: 8px;
}

.logo-header-small {
    display: none !important;
}

body {
    transition: padding-right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    body.menu-open {
        padding-right: 17px; /* Scroll çubuğunun genişliği kadar padding ekliyoruz */
    }


header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    z-index: 1111;
    background-color: transparent;
}

#recaptcha-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}








.language-box-mobil {
    display: none;
}
/*header.scrolled {
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }*/

.navbar img {
    transition: all 0.3s ease-in-out;
}

/*header.scrolled .navbar img {
    transform: scale(0.9);
}
*/
.header-menu-icon {
    position: relative;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 80px;
    top: 0px;
    z-index: 1120;
    background: #fff;
}

.header-menu-icon-gray-desktop {
    background: #f2f2f2;
}

header.menu-open .header-menu-icon-gray-transparent {
    background: #f2f2f2;
}



.language-box {
    bottom: 8px;
    display: flex;
    gap: 8px;
    z-index: 1120;
}

.language-menu-icon {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    /*background-color: #f8f9fa;*/
    transition: background-color 0.3s, transform 0.2s;
    font-size: 16px;
    font-weight: normal;
}

    .language-menu-icon:hover {
        background-color: #fff;
    }




#fullScreenMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

    #fullScreenMenu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: -2;
    }

    #fullScreenMenu::after {
        content: "";
        position: absolute;
        width: 1074px;
        height: 1074px;
        border-radius: 1074px;
        background: rgba(164, 185, 222, 0.8);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: blur(272px);
        z-index: -1;
    }


#rightTopCircle {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 1074px;
    background: rgba(255, 0, 4, 0.2);
    top: -200px;
    right: -200px;
    filter: blur(222px);
    z-index: -1;
}

#bottomRightCircle {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 841px;
    background: rgba(123, 177, 168, 0.6);
    bottom: -230px;
    right: -130px;
    filter: blur(150px);
    z-index: -1;
}

#fullScreenMenu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fullScreenMenuListItem {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

#fullScreenMenu.show .fullScreenMenuListItem {
    opacity: 1;
    transform: translateY(0);
}


/*Menu icon*/
#menuIconOpen {
    opacity: 1;
    transform: rotate(0deg);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#menuIconClose {
    opacity: 0;
    transform: rotate(-90deg);
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: absolute;
    pointer-events: none;
}

.menu-open #menuIconOpen {
    opacity: 0;
    transform: rotate(90deg);
    pointer-events: none;
    position: absolute;
}

.menu-open #menuIconClose {
    opacity: 1;
    transform: rotate(0deg);
    pointer-events: auto;
}
/*Menu icon*/



.fullScreenMenuListItem ul li {
    position: relative;
    list-style: none;
    padding-bottom: 8px;
    cursor: pointer;
}


.fullScreenMenuListItem ul li a {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: inline-block;
    width: fit-content !important;
}


        .fullScreenMenuListItem ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 8px;
            width: 0;
            height: 2px;
            background-color: black;
            transition: width 0.3s ease-in-out;
        }



        .fullScreenMenuListItem ul li a:hover::after {
            width: 100%;
        }


        .fullScreenMenuListItem ul li a:hover {
            color: #060d46;
        }


    .fullScreenMenuListItem ul li ul li a::after {
        height: 1px;
        bottom: -2px;
        background-color: black;
    }


.cerez-menu ul.cerez-menu-list li {
    position: relative;
}

    .cerez-menu ul.cerez-menu-list li a {
        position: relative;
        text-decoration: none;
    }

        .cerez-menu ul.cerez-menu-list li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background-color: black;
            transition: width 0.3s ease-in-out;
        }

        .cerez-menu ul.cerez-menu-list li a:hover::after {
            width: 100%;
        }




.promakim-mobil-header-social-wrap {
    margin-bottom: 48px;
}
/* Header CSS Kodları Burada Bitiyor */
/*Home CSS Kodları Buradan Başlıyor*/
.home-container {
    background: linear-gradient(0deg, #FFF 0%, #E3E7FF 100%);
    min-height: auto;
    height: auto;
}
/*Slider CSS*/
.slider-container {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    position: relative;
    gap: 20px;
}

.slider-item {
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .slider-item.active img {
        transform: scale(1.1);
    }


    .slider-item.active {
        flex: 8;
        background: rgba(0, 0, 0, 0.40);
        z-index: 2;
    }

    .slider-item:not(.active) {
        flex: 1;
    }


.slider-content {
    z-index: 2;
    bottom: 40px;
    /*padding: 0px 420px 0px 40px;*/
    left: 40px;
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 2s ease-in-out, transform 0.8s ease-in-out;
}

.ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Kaç satır gösterileceğini belirtir */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 594px;
    height: auto;
}

.home-slider-heading-mobil {
    display: none;
}

.slider-item.active .slider-content {
    opacity: 1;
    transform: translateY(0)
}

.slider-item:not(.active) .slider-content {
    opacity: 0;
    transform: translateY(20px);
}
/*Slider CSS*/





/*Index Çözüm Kodları Buradan Başlıyor*/
.cozum-responsive-paragraf {
    max-width: 594px;
    font-size: 21px;
   
}

.index-cozum-image-wrapper img {
    z-index: 2;
    position: relative;
}

.cozum-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 3;
}

.cozum-logo-container {
    z-index: 4;
}



.cozum-large-img {
    height: 640px;
    /*height: 973px*/
}

.cozum-small-img {
    height: 340px;
}


.slider img {
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .slider img.d-none {
        opacity: 0;
        visibility: hidden;
    }

    .slider img:not(.d-none) {
        opacity: 1;
        visibility: visible;
    }



/*Index Çözüm Kodları Burada Bitiyor*/


/*Distributorler CSS Kodları Buradan Başlıyor*/
.dist-container {
    background: linear-gradient(0deg, #FFF 0%, #E3E7FF 100%);
    padding-top: 662px;
    position: relative;
    margin-top: -600px;
}

.dist-image-d {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.dist-image {
    max-height: 180px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/*Distributorler CSS Kodları Burada Bitiyor*/

/* Medya Slider CSS Kodları Burada Başlıyor */
.blog-category-contain {
    top: 16px;
    left: 16px;
}

.media-slider-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 180px 20px 20px 20px;
}


.left-panel {
    flex-shrink: 0;
    text-align: center;
}

.arrows {
    display: flex;
    gap: 24px;
}

.media-arrow-left,
.media-arrow-right,
.media-arrow-left-mobil,
.media-arrow-right-mobil {
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 12px 12px;
    background-color: transparent;
}


.image-wrapper {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    align-items: flex-end;
    cursor: grab;
}


.slider-media {
    flex-shrink: 0;
    transition: transform 0.5s linear;
    border-radius: 12px;
    width: 100%;
}

.image-wrapper .slider-media.large {
    max-width: 993px;
    width: 100%;
    height: auto;
    max-height: 628px;
    border-radius: 12px;
}

    .image-wrapper .slider-media.large img {
        max-width: 100%;
        height: 628px;
        object-fit: cover;
        border-radius: 12px;
    }

.image-wrapper .slider-media.small {
    max-width: 378px;
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
}

    .image-wrapper .slider-media.small img {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
    }

.image-wrapper .slider-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.media-slider-arrow-mobil {
    display: none;
}

/* Content Wrapper */
.content-wrapper {
    margin-top: 20px;
    position: relative;
    height: 196px;
    /* overflow: hidden;*/
}

.media-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out
}

    .media-slider-content.active {
        /*display: block;*/
        visibility: visible;
        opacity: 1;
    }

.slider-media.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

.slider-media.slide-out-left {
    animation: slideOutLeft 0.5s ease forwards;
}

.slider-media.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

.slider-media.slide-out-right {
    animation: slideOutRight 0.5s ease forwards;
}

.media-arrow-hv {
    display: inline-flex;
    cursor: pointer;
    transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

    .media-arrow-hv:hover {
        background-color: #F7F7F7 !important;
        transition: ease-in-out 0.4s;
    }



.media-arrow-left:hover {
    transform: translateX(-2px);
}

.media-arrow-right:hover {
    transform: translateX(2px);
}
/*Medya Slider CSS Kodları Burada Bitiyor*/
/*Home CSS Kodları Burada Bitiyor*/
/*Footer CSS Kodları Burada Başlıyor*/
.promakim-contact-wrapper {
    position: relative;
    bottom: 125px;
}

.footer-image-slider {
    /*   margin-left: -48px;*/
    margin-right: -48px;
    max-width: calc(100% + 96px);
    overflow: hidden;
    margin-bottom: 112px
}

.footer-center {
    margin-bottom: 195px;
}

.footer-container {
    background: linear-gradient(180deg, #FFF 0%, #FFE3E3 100%);
}

.footer-box h4 {
    color: var(--footer-heading-color);
    font-weight: 400;
    font-size: 18px;
}

.footer-contact-input {
    width: 100%;
    max-width: 320px;
}

.footer-contact-form > button {
    position: absolute;
    right: 290px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-weight: 400;
    cursor: pointer;
}


    .footer-contact-form > button:hover {
        transform: translateY(-50%) scale(0.95);
        transition: transform 0.2s ease-in-out;
    }


.footer-slider-track {
    display: flex;
    white-space: nowrap;
    transition: transform 0.1s linear;
}

    .footer-slider-track img {
        width: auto;
        height: 80px;
        margin-right: 40px;
        object-fit: contain;
    }

.footer-box-item ul li {
    position: relative;
    list-style: none;
    padding-bottom: 8px;
    cursor: pointer;
}


    .footer-box-item ul li a {
        text-decoration: none;
        color: inherit;
        position: relative;
    }


        .footer-box-item ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background-color: black;
            transition: width 0.3s ease-in-out;
        }


        .footer-box-item ul li a:hover::after {
            width: 100%;
        }

.mobil-all-right {
    display: none;
}






/*Footer CSS Kodları Burada Bitiyor*/
/*Contact Form CSS Kodları Buradan Başlıyor*/
.promakim-contact-box {
    border-radius: 16px;
    background: linear-gradient(107deg, #7884DE 16.41%, #E2E5FF 89.07%);
    padding: 48px 158px 48px 48px;
}

.number-deger {
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid #A6A6A6;
    font-size: 14px;
    margin-left: 22px;
    text-align: center;
    top: 16px;
}

.form-input,
.form-textarea {
    padding: 16px 78px;
    font-size: 16px;
    outline: none;
    border: 1px solid transparent;
}

    .form-input:focus,
    .form-textarea:focus {
        border-color: #0056b3;
    }

.form-textarea {
    height: 135px;
    resize: none;
    border-radius: 26px;
}

.promakim-contact-box input::placeholder,
.promakim-contact-box textarea::placeholder {
    color: #000000;
    opacity: 1;
    font-size: 16px;
    font-weight: 300;
}

/*Contact Form CSS Kodları Burada Bitiyor*/



/*Hakkımızda Sayfası CSS Kodları Buradan Başlıyor*/
.hakkimizda-container {
    background: linear-gradient(0deg, #FFF 0%, #FFF8E3 100%);
    /*padding-bottom: 120px;*/
}

.hakkimizda-cozum-image-wrapper {
    height: 655px;
}

.ref-container {
    background: linear-gradient(180deg, #FFF 0%, #E3E7FF 100%);
    padding-top: 662px;
    position: relative;
    margin-top: -600px;
}

.hakkimizda-hero-slider-container {
    display: none;
}
/*Hakkımızda Sayfası CSS Kodları Burada Bitiyor*/
/*Hizmet Sayfası CSS Kodları Buradan Başlıyor*/
.hizmetler-container {
    background: linear-gradient(180deg, #FFF 0%, #E3E7FF 100%);
    padding-bottom: 112px;
}

.hizmetler-hero-left-box-image {
    height: 606px;
}

.hizmetler-item-wrapper:last-child {
    margin-bottom: 155px;
}

.service-collapse-buttons {
    transform: scale(1);
    transition: transform ease-in 0.3s;
}

    .service-collapse-buttons:hover {
        transform: scale(0.9);
    }

.hizmet-row {
    background: linear-gradient(180deg, #FFF 0%, #F7F7F7 170%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease-in-out;
}

    .hizmet-row:hover {
        background-size: 100% 100%;
    }




.collapse {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .collapse.show {
        animation: slideDown 0.5s ease forwards;
    }

    .collapse.hide {
        animation: slideUp 0.5s linear forwards;
        max-height: 0;
        opacity: 0;
    }


.toggle-icon .plus-vertical,
.toggle-icon .plus-horizontal {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}


.toggle-icon.open .plus-vertical {
    opacity: 0;
    transform: scaleY(0.5);
}


.toggle-icon.open .plus-horizontal {
    transform: rotate(180deg);
}

.hizmetler-item-wrapper > div:first-child {
    border-top: 1px solid #D4D4D4;
    padding-top: 32px
}
/*Hizmet Sayfası CSS Kodları Burada Bitiyor*/
/*İletişim Sayfası CSS Kodları Buradan Başlıyor*/
.iletisim-container {
    background: linear-gradient(180deg, #FFF 0%, #FBE3FF 100%);
}

.promakim-contact-page-box {
    border-radius: 16px;
    background: transparent !important;
    padding: 0px 0px 102px 0px;
}

.address-text-box > p, span {
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/*İletişim Sayfası CSS Kodları Burada Bitiyor*/

/*Policy Page CSS Kodları Buradan Başlıyor*/
.politika-menu {
    color: #B6B6B6;
}

    .politika-menu:hover {
        color: #000;
        transition: ease-in-out 0.3s;
    }

    .politika-menu.active {
        color: #000;
    }

/*Policy Page CSS Kodları Burada Bitiyor*/



/*Loading css*/
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFF 0%, #FFE3E3 100%);
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
    opacity: 1;
}

    #loading-screen.hidden {
        opacity: 0;
        visibility: hidden;
    }

/*Loading css*/


/* 404 Sayfası Stili */
.error-page {
    text-align: center;
    background: linear-gradient(180deg, #FFF 0%, #E3E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer-display-none {
    display: none;
}
/* 404 Sayfası Stili */

/*Cookie Bar CSS Kod Buradan Başlıyor*/

.cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 33px;
    background: var(--Black, #000);
    color: #EEF3FA;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: center;
}

    .cookie-bar > p {
        color: #747474;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        text-align: center;
        margin: 0;
    }

    .cookie-bar p > a {
        color: #fff !important;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        text-decoration: none;
    }

.cerez-buttons {
    display: flex;
    align-items: center;
    background: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    padding: 0;
    margin-left: 16px;
    border: none;
}

.accept-button {
    border-bottom: 1px solid #fff;
}

    .accept-button svg {
        margin-left: 8px;
        cursor: pointer;
    }

.reject-button {
    border-bottom: none;
}



/*Cookie Bar CSS Kod Burada Bitiyor*/


/*Updown icon*/

.scroll-to-top-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.scroll-to-top-visible {
    opacity: 1;
    visibility: visible;
}


#scrollToTop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
}

/*Updown icon*/
/* Menü ikonları için hover animasyonu */
.header-menu-icon {
    transition: transform 0.3s ease;
}

.header-menu-icon:hover {
    transform: scale(0.95);
}

.up-icon-contain {
    transition: transform 0.3s ease;
}

    .up-icon-contain:hover{
        transform: scale(0.95);
    }




.cozum-logo-container {
    max-width: 212px; 
    max-height: 104px; 
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.promakim-logo {
    width: 100% !important;
    height: 100% !important; 
    object-fit: contain !important;
    object-position: center !important;
}
.cozum-logo-container.cozum-logo-3dpromakim {
    max-width: 350px !important;
    max-height: 100px !important;
}
.cozum-logo-container.cozum-logo-roland {
    max-width: 200px !important;
    max-height: 104px !important;
}

