@font-face {
    font-family: 'Argede';
    src: url('../../font/Argede Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'argedebold';
    src: url('../../font/Argede Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Argede';
    src: url('../../font/argede light.otf') format('opentype');
    font-weight: 300;
}


.mobile-fixed-header {
    position: fixed;
    top: 78px;
    width: 100%;
    height: calc(100% - 78px);
    background: linear-gradient(356deg, #020a12e3, #14487cbd, #14487c);
    z-index: 99;
    padding-top: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    backdrop-filter: blur(3px);
}

.mobile-header.mobile-header-2 {
    position: unset;
}

    .mobile-header.mobile-header-2 .mobile-nav-top
    {
        padding: 30px 20px;
    }

        .mobile-header.mobile-header-2 .mobile-nav-top .mobile-header-light-logo {
            display: none;
        }

        .mobile-header.mobile-header-2.show .mobile-nav-top .mobile-header-light-logo {
            display: block;
        }

    .mobile-header.mobile-header-2.show .mobile-nav-top .mobile-header-logo {
        display: none;
    }

    .mobile-header.mobile-header-2.show .mobile-nav-top svg path {
        stroke: #ffffff;
    }




.mobile-header.mobile-header-uc .mobile-nav-top {
    padding: 30px 20px;
}

    .mobile-header.mobile-header-uc .mobile-nav-top .mobile-header-light-logo {
        display: none;
    }

.mobile-header.mobile-header-uc.show .mobile-nav-top .mobile-header-light-logo {
    display: block;
}

.mobile-header.mobile-header-uc.show .mobile-nav-top .mobile-header-logo {
    display: none;
}

.mobile-header.mobile-header-uc.show .mobile-nav-top svg path {
    stroke: #ffffff;
}





    .mobile-fixed-header.show {
        opacity: 1;
        visibility: visible;
        transition: .4s;
    }

.mobile-header.show {
    backdrop-filter: blur(3px);
    background: #14487C;
    transition: .4s;
}

.mobile-fixed-header-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 24px;
    overflow: hidden;
    overflow-y: auto;
}

    .mobile-fixed-header-content .accordion > ul {
        display: flex;
        flex-direction: column;
        padding: 24px;
        margin: 0;
        list-style: none;
        border-radius: 4px;
        background: #0A3053;
    }

        .mobile-fixed-header-content .accordion > ul > li > a {
            font-family: 'Inter';
            font-size: 16px;
            line-height: 24px;
            color: #fff;
            display: flex;
            align-items: center;
            padding: 8px 16px;
            background: linear-gradient(45deg,#14487c,#2f6ca9);
            border-radius: 4px;
            justify-content: space-between;
        }

        .mobile-fixed-header-content .accordion > ul .accordion-item {
            border: none;
            outline: none;
            box-shadow: none;
            background: no-repeat;
        }

            .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-button {
                outline: 0;
                border: 0;
                box-shadow: none;
                font-family: 'Inter';
                font-size: 16px;
                line-height: 24px;
                color: #fff;
                backdrop-filter: blur(3px);
                background-color: transparent;
                padding: 12px 0;
                border-bottom: 1px solid #6b99c7;
                border-radius: 0 !important;
                column-gap: 4px;
            }

            .mobile-fixed-header-content .accordion > ul > .accordion-item > .accordion-body {
                border-top: 0;
                box-shadow: inset #6b99c7 0 -1px 0 0;
                background: #2b67a333;
                padding: 18px 14px;
            }

                .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-body > ul {
                    padding: 0;
                    list-style: none;
                    margin: 0;
                    display: flex;
                    flex-direction: column;
                    row-gap: 15px;
                }

        .mobile-fixed-header-content .accordion > ul li ul {
            padding: 0;
        }

        .mobile-fixed-header-content .accordion > ul > li > a {
            font-family: 'Inter';
            font-size: 16px;
            line-height: 24px;
            color: #fff;
            display: flex;
            align-items: center;
            padding: 12px 0;
            background: none;
            justify-content: space-between;
            border-bottom: 1px solid #6b99c7;
            border-radius: 0;
        }

        .mobile-fixed-header-content .accordion > ul > li:last-child > a {
            border-bottom: 0;
            padding-bottom: 0;
        }

        .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-body > ul > li a {
            border-bottom: 1px solid #9cb5cd;
            padding-bottom: 12px;
            display: flex;
            font-family: 'Inter';
            font-size: 15px;
            line-height: 23px;
            color: #fff;
            position: relative;
            column-gap: 4px;
        }
            .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-body > ul > li a.disabled {
                cursor: default;
                pointer-events: none;
                color: #ffffff7d;
            }

            .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-body > ul > li a::before {
                content: "-";
            }

                    .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-body > ul > li:last-child a {
                        padding: 0;
                        border: none;
                    }

            .mobile-fixed-header-content .accordion > ul .accordion-item .accordion-button::after {
                background: none;
                content: "\f078";
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 14px;
            }

        .mobile-fixed-header-content .accordion > ul > li > a svg {
            width: 24px;
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-fixed-header-content .accordion > ul > li > a svg path {
            fill: #fff;
        }

.mobile-fixed-header-bottom-content {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 16px;
    column-gap: 16px;
    align-items: center;
}

.mobile-fixed-header-social-media ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 16px;
}

    .mobile-fixed-header-social-media ul li a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        background: #14487c80;
        border-radius: 5px;
    }


        .mobile-fixed-header-social-media ul li a svg path {
            fill: #fff;
        }

.mobile-fixed-header-catalog a {
    padding: 12px 70px;
    background: #fff;
    width: max-content;
    display: flex;
    align-items: center;
    color: #14487c;
    border-radius: 50px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
    justify-content: center;
    max-width: 100%;
    column-gap: 12px;
}

.mobile-fixed-header-content .accordion > ul li .accordion-item .accordion-collapse > .accordion-body {
    padding: 10px;
    padding-left: 20px;
    position: relative;
}

    .mobile-fixed-header-content .accordion > ul li .accordion-item .accordion-collapse > .accordion-body::before {
        content: "";
        position: absolute;
        top: 8px;
        left: 0;
        width: 2px;
        height: calc(100% - 16px);
        background: #114e8b;
    }



.overlay-ust {
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    display: flex;
}

a {
    text-decoration: none !important;
}

.navbar.navbar-bir {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.navbar-bir {
    border-bottom: 1px solid #FFFFFF1A;
    padding: 0 !important;
}

.navbar-bir .nav-link {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white !important;
}

.navbar-bir .navbar-collapse {
    justify-content: end;
}

.navbar-bir .nav-sag {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.header-2 .dil-drop .nav-link {
    color: #181818 !important;
}

.header-3 .dil-drop .nav-link {
    color: #181818 !important;
}

.katalog-btn {
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    column-gap: 10px !important;
    font-family: Inter !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    background-color: white !important;
    color: #14487C !important;
    width: 133px !important;
    height: 48px !important;
    border-radius: 47px !important;
    -webkit-border-radius: 47px !important;
    -moz-border-radius: 47px !important;
    -ms-border-radius: 47px !important;
    -o-border-radius: 47px !important;
}

.header-2 .katalog-btn {
    background-color: #14487C !important;
    color: white !important;
}

.dropdown.dil-drop .nav-link {
    column-gap: 5px !important;
    display: flex !important;
    align-items: center !important;
}

.navbar-nav {
    margin-right: 30px !important;
    column-gap: 30px !important;
}

.header-2 .custom-mega-dropdown-button {
    color: #181818 !important;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.header-3 .custom-mega-dropdown-button {
    color: #181818 !important;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.header-3 .katalog-btn {
    color: white !important;
    background-color: #5B913B !important;
}

.container.custom-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.custom-mega-dropdown-inner {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 0;
    background: white;
    height: 482px;
    top: 100%;
    transform: translate(0, 24px);
    visibility: hidden;
    opacity: 0;
    transition: .4s;
}

.arge-mega-dropdown .custom-mega-dropdown-inner {
    height: max-content;
    padding: 120px 0;
}

.mega-dropdown-image-area img {
    height: 380px;
    object-fit: cover;
}

.mega-dropdown-pages-area ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    height: 100%;
    justify-content: start;
}

.mega-dropdown-pages-area ul li a {
    padding: 12px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    transition: .4s;
}

.mega-dropdown-pages-area ul li a.active {
    color: #D1000F;
    transition: .4s;
}

.mega-dropdown-pages-area {
    height: 100%;
}

.custom-mega-dropdown:hover .custom-mega-dropdown-inner {
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
    transition: .4s;
}

.custom-mega-dropdown-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    padding: 32px 0;
    cursor: pointer;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
}

.nav-linkler {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nokta-drop {
    display: none !important;
}

.masa-nav-sag {
    column-gap: 30px;
    display: flex;
    align-items: center;
}

.nokta-drop .custom-mega-dropdown-inner {
    position: absolute;
    width: 16%;
    background: white;
    height: auto;
    top: 100%;
    right: 12rem;
    left: unset !important;
    transform: translate(0, 24px);
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    left: 68%;
    transform: translateX(0) translateY(0px);
    padding: 10px 0px 10px 20px;
}

.nokta-drop .custom-mega-dropdown-button {
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 1.5%;
    color: #181818;
}

.nokta-drop .custom-mega-dropdown-button svg path {
    stroke: white !important;
    fill: white !important;
}

.header-2 .nokta-drop .custom-mega-dropdown-button svg path
{
    stroke: #000000 !important;
    fill: #000000 !important;
}

.nokta-drop {
    margin-right: 1rem !important;
}

.nokta-drop .custom-mega-dropdown-inner {
    justify-content: start !important;
    text-align: start !important;
    align-items: start !important;
    flex-direction: column;
}

.nokta-drop .custom-mega-dropdown-button {
    padding: 15px 0 !important;
}

.header-alt-alan {
    cursor: pointer;
    column-gap: 14px;
    display: flex;
    align-items: start;
}

    .header-alt-alan.disabled {
        pointer-events: none;
        opacity: 0.4;
        user-select: none;
    }

.products-dropdown .header-alt-alan .header-icon {
    filter: brightness(0) opacity(0.7);
    transition: .4s;
}

.products-dropdown .header-alt-alan:hover .header-icon {
    filter: none;
    transition: .4s;
}


.header-detay-baslik {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1.5%;
    color: #181818;
}

.header-detay {
    margin-top: 8px;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #646464;
}

.header-ic-row {
    row-gap: 90px;
}

.header-ic-row.cozum {
    justify-content: space-between;
}

.custom-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #181818;
}

.custom-list li:hover {
    color: #14487C;
}

.custom-border {
    border: 1px solid #E8EDF2;
    margin-top: 30px;
    margin-bottom: 30px;
}

.custom-list li::before {
    content: "-";
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    color: #181818;
    margin-right: 8px;
    color: #333;
}

.alt-banner {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.alt-bg {
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    background-color: #F8FAFC;
    padding: 20px;
}

.navbar.navbar-bir.header-2 {
    position: relative !important;
}

.navbar.navbar-bir.header-3 {
    position: relative !important;
}

.alt-banner-title {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0%;
    color: #646464;
}

.alt-banner i {
    color: #646464;
    font-size: 15px;
}

.mobile-dil {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 3rem;
}

.mobile-dil img {
    width: 26px;
    height: 26px;
}

.mobile-dil img.active {
    border: 3px solid white;
    padding: 1px;
    border-radius: 2rem;
}

.dil-drop .dropdown-menu {
    max-width: 4rem !important;
    min-width: 4rem !important;
    top: 3rem !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.dil-drop .dropdown-menu .dropdown-item {
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    color: #000000 !important;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, #002041 0%, #14487C 100%);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    position: relative;
    top: 15%;
    width: 100%;
    text-align: center;
    margin-top: 0;
}

.mobile-header .accordion-button.ic-button {
    font-size: 18px !important;
    padding: 15px 11px 15px 0 !important;
}

.mobile-header #cozumlerimizCollapse {
    padding-left: 1rem !important;
}

.mobile-header .accordion .accordion-body .accordion .accordion-body.ic-body .body-icerik {
    padding-left: 2rem !important;
    padding-top: 1rem !important;
    font-weight: 400 !important;
    font-size: 15px !important;
}

.overlay a {
    padding: 15px 0 15px 0 !important;
    font-family: Inter;
    font-weight: 400;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.mobile-header .accordion {
    width: 100% !important;
    background-color: transparent !important;
}

.mobile-header .accordion-body a {
    padding: 0 !important;
}

.mobile-header .accordion-item {
    border: 0 !important;
    background-color: transparent !important;
}

.mobile-header .accordion-button::after {
    background-image: url(../img/downs.png) !important;
}

.mobile-header .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: unset !important;
}

.mobile-header .accordion-button:not(.collapsed) {
    box-shadow: unset !important;
    color: #FFFFFF !important;
}

.mobile-header .accordion-body.icerik-body {
    padding-left: 1rem !important;
    font-size: 18px !important;
    font-weight: 400;
    padding-bottom: 11px !important;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-header .accordion-body {
    display: flex;
    flex-direction: column;
    text-align: start !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
}

.body-icerik {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    padding: 15px 11px 15px 0 !important;
    letter-spacing: 1.5%;
    color: white;
}

.mobile-header .accordion-button {
    font-family: Inter;
    font-weight: 400;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    background-color: transparent !important;
    width: 100% !important;
    padding: 15px 30px 15px 0 !important;
}

.overlay .closebtn {
    position: absolute;
    top: 5%;
    left: 45px;
    font-size: 40px;
    padding: 0 !important;
}

.mobile-header {
    position: absolute;
    top: 0;
    z-index: 61;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .4s;
}

.mobile-nav-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 0 20px;
    position: relative;
}

.mobile-header {
    display: none !important;
}

.navbar {
    display: block !important;
}

.mobile-header-iki {
    position: relative;
}

.mobile-header-iki .mobile-nav-top {
    padding: 20px !important;
}

.mobile-header-uc {
    position: relative;
}

.mobile-header-uc .mobile-nav-top {
    padding: 20px !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #14487c !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.sayfa-iletisim-bg {
    padding-top: 69px;
    padding-bottom: 69px;
    background: linear-gradient(0deg, #14487C, #14487C), linear-gradient(107.41deg, #002041 0%, #14487C 100%);
}

.alt-iletisim {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.bos-beyaz-btn {
    border: 1px solid #FFFFFF !important;
    width: 160px !important;
    height: 59px !important;
    color: #FFFFFF !important;
    font-family: Poppins !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-align: center !important;
    vertical-align: middle !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.bos-beyaz-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #FFFFFF;
    z-index: -1;
    transition: height 0.3s ease;
}

.bos-beyaz-btn:hover {
    color: #000000 !important;
}

.bos-beyaz-btn:hover::before {
    height: 100%;
}

.custom-main {
    margin-bottom: 116px !important;
}

.iletisim-alt-detay .form-check-input:focus {
    border-color: #fff !important;
    outline: 0;
    box-shadow: unset !important;
}

.iletisim-alt-detay .form-check-label {
    font-family: Inter !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 24px !important;
    letter-spacing: 0% !important;
    color: #93ABC3;
}

.iletisim-alt-detay .form-check-input {
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
}

.iletisim-alt-detay .form-check-label span {
    color: white !important;
}

.iletisim-alt-detay {
    margin-top: 20px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.alt-iletisim-btn {
    column-gap: 10px !important;
    display: flex !important;
    align-items: center !important;
    background-color: #FFFFFF !important;
    font-family: Inter !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 26px !important;
    letter-spacing: 0px !important;
    color: #1A2A39 !important;
}

.alt-row {
    justify-content: space-between !important;
}

.alt-iletisim-title {
    margin-top: 16px;
    margin-bottom: 22px;
    font-family: Inter;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

.iletisim-alt-number {
    transition: .4s !important;
    padding: 16px !important;
    border: 1px solid var(--White, #FFFFFF) !important;
    font-family: Inter !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 100% !important;
    letter-spacing: 0px !important;
    vertical-align: middle !important;
    display: flex !important;
    align-items: center !important;
    column-gap: 10px !important;
    color: #FFFFFF !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    -webkit-transition: .4s !important;
    -moz-transition: .4s !important;
    -ms-transition: .4s !important;
    -o-transition: .4s !important;
}

.sayfa-iletisim-bg input {
    height: 60px !important;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #485561;
}

.sayfa-iletisim-bg .form-control:focus {
    color: var(--bs-body-color);
    background-color: white !important;
    border-color: white !important;
    outline: 0;
    box-shadow: unset !important;
}

.sayfa-iletisim-bg input::placeholder {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #485561;
}

.alt-row {
    row-gap: 2rem;
    align-items: center;
}

.iletisim-alt-number::before {
    transition: .4s !important;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white !important;
    z-index: -1;
    transition: width 0.3s ease;
}

.iletisim-alt-number:hover::before {
    transition: .4s !important;
    width: 100%;
}

.iletisim-alt-number:hover {
    transition: .4s !important;
    color: black !important;
}

.iletisim-alt-number:hover svg path {
    transition: .4s !important;
    fill: black !important;
    stroke: black !important;
}

svg path {
    transition: .4s !important;
}

.link-button {
    width: max-content;
    max-width: 100%;
    display: block;
    margin: auto;
}


.custom-language-dropdown {
    position: relative;
}

    .custom-language-dropdown .custom-language-dropdown-link {
        color: #ffffff;
        text-decoration: none;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        column-gap: 6px;
        width: 54px;
        height: 35px;
        justify-content: center;
        border-radius: 50px;
        font-family: Poppins;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }

        .custom-language-dropdown .custom-language-dropdown-link::after {
            content: "\f078";
            width: 12px;
            height: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            color: #ffffff;
        }

.header-2 .custom-language-dropdown .custom-language-dropdown-link {
    color: #181818 !important;
}

    .header-2 .custom-language-dropdown .custom-language-dropdown-link::after
    {
        color: #181818!important;
    }

.header-3 .custom-language-dropdown .custom-language-dropdown-link {
    color: #181818 !important;
}

    .header-3 .custom-language-dropdown .custom-language-dropdown-link::after {
        color: #181818 !important;
    }

    .custom-language-dropdown-inner {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 16px);
        padding-top: 16px;
        opacity: 0;
        visibility: hidden;
        transition: .4s;
    }

.custom-language-dropdown:hover .custom-language-dropdown-inner {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    transition: .4s;
}

.custom-language-dropdown-inner-navigation-area {
    background: #ffffff;
    padding: 24px;
    width: max-content;
    max-width: 250px;
    box-shadow: 0px 6px 74px 0px #0000002E;
    border-radius: 4px;
}

    .custom-language-dropdown-inner-navigation-area ul {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding: 0;
        list-style: none;
        margin: 0;
        row-gap: 20px;
    }

        .custom-language-dropdown-inner-navigation-area ul li {
            width: 100%;
        }

            .custom-language-dropdown-inner-navigation-area ul li a {
                max-width: 100%;
                display: block;
                transition: .4s;
                font-family: Montserrat;
                font-weight: 400;
                font-size: 15px;
                line-height: 23px;
                color: #232323;
                text-decoration: none;
            }

.main-header-search {
    position: relative;
}

.main-header-search-input {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    background: #fff;
    padding: 10px;
    width: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    box-shadow: 0 0 1px 1px #0000001a;
}

    .main-header-search-input.show {
        opacity: 1;
        visibility: visible;
        transition: .4s;
        width: 405px;
    }

    .main-header-search-input input {
        width: 100%;
        border: 0;
        outline: 0;
        box-shadow: none;
        font-size: 14px;
        line-height: 22px;
        color: #a3a3a3;
        padding: 4px 12px;
    }

.mobile-search-button svg path {
    fill: #fff;
}

.mobile-header-search-input {
    position: absolute;
    top: 24px;
    right: 16px;
    width: calc(70% - 32px);
    height: calc(100% - 32px);
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

    .mobile-header-search-input.show {
        opacity: 1;
        visibility: visible;
        width: calc(100% - 32px);
        transition: .4s;
    }

    .mobile-header-search-input input {
        width: 100%;
        height: 100%;
        border: none;
        box-shadow: none;
        outline: none;
        font-size: 14px;
        line-height: 22px;
        color: #a3a3a3;
        padding: 4px 12px;
    }

.mobile-header-search-close-button {
    border: 0;
    padding: 0;
    margin: 0;
    color: var(--main-color);
    background: none;
    outline: 0;
    font-size: 20px;
}

.main-header-search button {
    background: none;
    outline: none;
    box-shadow: none;
    border: none;
    font-size: 18px;
    color: #ffffff;
}



.header-2 .main-header-search button {
    color: #14487c;
}

.header-3 .main-header-search button {
    color: #5b913b;
}

.main-header-search-input button {
    background: none;
    color: #14487c;
    outline: none;
    box-shadow: none;
    border: none;
}

.mobile-nav-right {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

    .mobile-nav-right span {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


.mobile-search-input-area {
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    position: absolute;
    width: calc(100% - 40px);
    box-shadow: 0 0 3px 0px #00000024;
}

    .mobile-search-input-area.show
    {
        opacity: 1;
        visibility: visible;
        transition: .4s;
    }

    .mobile-search-input-area input {
        width: 100%;
        padding: 14px 10px;
        font-size: 14px;
        box-shadow: none;
        outline: none;
        border: none;
        font-family: 'Inter';
    }

    .mobile-search-input-area button {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0,-50%);
        background: none;
        outline: 0;
        box-shadow: none;
        border: 0;
        color: #14487c;
    }

.mobile-header-uc .main-header-search button {
    color: #5b913b;
}

.mobile-header-uc .mobile-nav-right span svg path {
    stroke: #5b913b;
}

.mobile-header-uc .mobile-search-input-area button {
    color: #5b913b;
}

.mobile-header-2 .main-header-search button svg path {
    fill: #14487c;
}

.mobile-header-2 .mobile-nav-right span svg path {
    stroke: #14487c;
}

.mobile-header-2.show .main-header-search button svg path {
    fill: #ffffff;
}

.mobile-header-uc.show .main-header-search button {
    color: #fff;
}


    @media only screen and (max-width: 1400px) {
        .masa-nav-sag {
        display: none !important;
    }
    .nokta-drop {
        display: block !important;
    }
}

@media only screen and (max-width: 1285px) {
    .navbar-nav {
        margin-right: 15px !important;
        column-gap: 15px !important;
    }
    .navbar-bir .nav-sag {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }
}

@media only screen and (max-width: 1200px) {
    .katalog-btn {
        width: 115px !important;
    }
}

@media only screen and (max-width: 991px) {
    .sayfa-iletisim-bg input {
        height: 45px !important;
    }
    .mobile-header {
        display: block !important;
    }
    .navbar {
        display: none !important;
    }
}

@media only screen and (max-width: 768px) {
    .alt-bg .alt-banner {
        flex-wrap: wrap;
        row-gap: 13px;
    }
    .alt-bg {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 540px) {
    .iletisim-alt-detay {
        flex-direction: column;
        row-gap: 2rem;
    }
    .bos-beyaz-btn {
        width: 100% !important;
    }
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }
    .overlay .accordion-button {
        font-size: 20px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media only screen and (max-width: 425px) {
    .alt-iletisim {
        flex-direction: column !important;
    }
    .alt-banner-title {
        font-size: 13px;
    }
}