﻿:root {
    --renk1: #0085b0;
    --renk2: #f79e1b;
    --radius: 3px;
    /* 13695c */
}

.slider {
    display: flex;
    width: 100%;
    overflow: hidden;
}

    .slider .slidertable {
        position: relative;
        height: 100%;
        display: table;
        width: 100%;
        z-index: 5;
    }

    .slider .slidertablecell {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
        z-index: 10;
        position: relative;
    }

    .slider .containerr {
        z-index: 5;
    }

.sliderbox {
    width: auto;
    display: inline-block;
    padding: 0px 0px;
    margin-bottom: 10px;
}


    .sliderbox h1 {
        padding: 0px;
        margin: 0px;
        position: relative;
        font-size: 24px;
        color: #fff;
        font-weight: 700;
    }

.sliderbox2 {
    width: 100%;
    display: block;
    padding: 0px 0px;
}

    .sliderbox2 p {
        padding: 0px;
        margin: 0px;
        position: relative;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }

.slidercontent {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    bottom: 0px;
}

    .slidercontent .btns {
        position: relative;
        font-size: 14px;
        padding: 15px 31px;
        transition: all 350ms ease-out;
        color: #fff;
        text-align: center;
        background: var(--renk1);
        overflow: hidden;
        display: inline-block;
    }

        .slidercontent .btns:hover {
            color: #fff;
            background: var(--renk2);
        }

        .slidercontent .btns:before {
            transition: all 350ms ease-out;
            content: "";
            position: absolute;
            left: -16px;
            top: -16px;
            width: 15px;
            height: 15px;
            background: #fff;
            opacity: 0.7;
            border-radius: 50%;
            z-index: 1;
        }

        .slidercontent .btns:after {
            transition: all 350ms ease-out;
            content: "";
            position: absolute;
            right: -16px;
            bottom: -16px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #000;
            opacity: 0.3;
            z-index: 1;
        }

        .slidercontent .btns:hover:after {
            height: 100px;
            width: 100px;
            opacity: 0.0;
        }

        .slidercontent .btns:hover:before {
            height: 100px;
            width: 100px;
            opacity: 0.0;
        }

.sliderbgcolor {
    width: 100%;
    height: 60%;
    bottom: 0px;
    left: 0px;
    position: absolute;
    z-index: 1;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
}

.slider .owl-item .slideritem {
    height: 425px;
}

.slideritemimgabbs {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    z-index: 0;
}

.slideritem img, .slideritem video, .slideritem iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.slider .owl-stage-outer {
    height: 100% !important;
}

.slider .owl-item {
    height: 100% !important;
}

.slider .owl-stage {
    height: 100% !important;
}

.slider .owl-dots {
    bottom: 0px;
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin-top: 10px;
    gap: 0px;
    margin-left: -5px;
    margin-right: -5px;
}

.slider .owl-dot {
    width: 20%;
    padding: 0px 5px;
    flex: 0 0 auto;
}

.slider .owl-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    z-index: 2;
    width: 100%;
    display: block !important;
}

    .slider .owl-nav .owl-next, .slider .owl-nav .owl-prev {
        position: absolute;
        background: rgba(0 0 0 / 20%);
        color: #fff;
        margin: 0px;
        border-radius: 0px;
        padding: 6px 10px;
    }

    .slider .owl-nav .owl-next {
        right: 0px;
    }

    .slider .owl-nav .owl-prev {
        left: 0px;
    }

        .slider .owl-nav .owl-next:hover, .slider .owl-nav .owl-prev:hover {
            background: rgba(0 0 0 / 20%);
            opacity: 0.8;
            color: #fff;
        }

    .slider .owl-nav .owl-next:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f054";
        font-size: 14px;
        font-weight: 900;
    }

    .slider .owl-nav .owl-prev:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f053";
        font-size: 14px;
        font-weight: 900;
    }

.slider .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 4px;
    background: #fff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.slider .owl-dots .owl-dot.active span {
    background: var(--renk1);
}


.custom-dot-thumb {
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    opacity: 1;
    transition: opacity 0.3s, border 0.3s;
    border: 1px solid transparent;
}

.owl-dot.active .custom-dot-thumb {
    opacity: 1;
    border: 1px solid #000;
}



body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #000;
    height: 100%;
    box-sizing: border-box;
    display: block;
}

html {
    height: 100%;
}

a, a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 1400px;
}

.maxwidth100 {
    max-width: 100%;
}

.row:after {
    content: "";
    clear: both;
}

.flexrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flexrow2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.flexrow3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flexrow4 {
    display: flex;
    flex-wrap: wrap;
}

.dflexspacediv {
    display: flex;
    justify-content: space-between;
    align-items: top;
}

.row7-5 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.col7-5 {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.text-left {
    text-align: left !important;
}

.heightauto {
    height: auto !important;
}

.text-white {
    color: #fff !important;
}

.maxw100 {
    max-width: 100% !important;
}

.w100 {
    width: 100% !important;
}

.h100 {
    height: 100% !important;
}

.hauto {
    height: auto !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.radius3 {
    border-radius: 3px;
}

.radius5 {
    border-radius: 5px;
}

header {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.header_top {
    background: #053147;
    padding: 10px 0px;
}

    .header_top .container:before, .header_top .container:after {
        content: none;
    }

    .header_top .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

.header_in {
    background: #21201e;
    padding: 20px 0px 40px 0px;
    box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
}

.top_menu {
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
    z-index: 10;
    position: relative;
    flex: none;
}

    .top_menu li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .top_menu li a {
            padding: 3px 0px;
            font-size: 13px;
            font-weight: 400;
            transition: all 150ms ease-out;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }


            .top_menu li a:hover {
                color: rgba(255 255 255 / 70%);
            }

.logo_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logodiv {
    display: block;
    top: 0px;
    z-index: 1;
}

    .logodiv img {
        position: relative;
        border: 0px;
        max-width: 100%;
        transition: all 350ms ease-out;
    }

.menu_btn {
    position: relative;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0 0 0 / 15%);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    font-size: 20px;
    border-radius: var(--radius);
}

    .menu_btn:hover {
        color: #fff;
    }

    .menu_btn i {
    }

.menu_close {
    color: #fff;
    font-size: 30px;
    float: left;
    padding: 0px;
}

    .menu_close:hover {
        color: var(--renk1);
    }

.mobil_menu_link_close {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    z-index: 10;
    cursor: pointer;
    background: var(--renk1);
    display: none;
    opacity: 0.8;
}

.mobil_menu {
    display: none;
    width: 80%;
    right: -350px;
    top: 0px;
    position: fixed;
    z-index: 10000;
    padding: 15px;
    height: 100vh;
    transition: all 350ms ease-out;
    background: #21201e;
    overflow-y: auto;
}

.mobil_menu_title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
}

    .mobil_menu_title img {
        width: 190px;
    }

.menu_cizgi {
    height: 1px;
    background: rgba(255 255 255 / 10%);
    margin-top: 10px;
    margin-bottom: 15px;
}

.mobil_menu_list {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

    .mobil_menu_list li {
        margin: 0px;
        padding: 0px;
        list-style: none;
    }

        .mobil_menu_list li a {
            display: block;
            font-size: 15px;
            color: #fff;
            text-decoration: none;
            padding: 12px 0px;
            border-bottom: 1px solid rgba(255 255 255 / 10%);
            transition: all 250ms ease-out;
            font-weight: 500;
            cursor: pointer;
        }

            .mobil_menu_list li a:hover {
                background: rgba(0 0 0 / 50%);
                padding-left: 7px;
                color: #fff;
            }

            .mobil_menu_list li a i {
                margin-right: 7px;
            }

    .mobil_menu_list ul {
        position: relative;
        z-index: 5;
        display: none;
        padding: 0px;
        margin: 0px;
        padding: 7px 7px 7px 15px;
    }

        .mobil_menu_list ul li a {
            font-weight: 300;
        }


.searchfrm {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    width: 240px;
    max-width: 100%;
    padding: 0px;
    box-shadow: 0px 0px 10px rgba(0 0 0 / 5%);
    overflow: hidden;
    z-index: 10;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(0 0 0 / 10%);
}

.mobil_menu .searchfrm {
    display: flex !important;
    width: 100%;
}

.searchfrm .form-control {
    display: block;
    width: calc(100% - 40px);
    border-radius: 0px;
    background: none;
    border: 0px;
    height: 38px;
    font-size: 13px;
    color: #000;
    border: 0px solid #cda554;
    box-sizing: border-box;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-shadow: 0px 0px 7px rgba(0 0 0 / 10%);
}

    .searchfrm .form-control::placeholder {
        color: rgba(0 0 0 / 60%) !important;
    }


.searchfrm .btn {
    background: var(--renk2);
    color: #fff;
    border: 0px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 150ms ease-out;
    border-radius: 0px;
    width: 40px;
    height: 38px;
    font-size: 15px;
    box-sizing: border-box;
}

    .searchfrm .btn:hover {
        background: var(--renk1);
        color: #fff;
    }

.headermenudiv {
    background: var(--renk1);
    border-radius: var(--radius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    margin-top: -25px;
}

.header_menu {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex: none;
    position: relative;
    flex: 1;
}

    .header_menu li {
        margin: 0px;
        padding: 0px;
        list-style: none;
        float: none;
        display: inline-block;
        position: relative;
    }

    .header_menu ul li {
        margin: 0px;
        padding: 0px 0px;
        list-style: none;
        display: block;
    }

    .header_menu ul {
        background: var(--renk1);
        position: absolute;
        z-index: 10;
        display: none;
        width: 200px;
        left: 0px;
        padding: 0px 0px;
        margin: 0px;
        overflow: hidden;
        -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.22);
        -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.22);
        box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.22);
        height: auto;
    }

    .header_menu li > a {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 15px;
        font-weight: 500;
        padding: 17px 15px;
        position: relative;
        color: #fff;
        text-decoration: none;
        transition: all 150ms ease-out;
        cursor: pointer;
        line-height: normal;
    }

    .header_menu li:hover > a {
        background: rgba(255 255 255 / 10%);
        color: #fff;
    }

        .header_menu li:hover > a i {
            color: #fff;
        }

    .header_menu li:hover > ul {
        display: block;
    }

    .header_menu li ul li a {
        font-size: 14px;
        font-weight: 400;
        padding: 10px 10px 10px 10px;
        color: #fff;
        text-align: left;
        text-decoration: none;
        border-top: 0px solid #704794 !important;
        border-bottom: 1px solid rgba(255 255 255 / 10%);
        transition: all 250ms ease-out;
        display: block;
        border-radius: 0px;
        border-right: 0px;
        text-shadow: 0px 0px 0px #333;
    }

        .header_menu li ul li a i {
            color: #fff;
            font-size: 14px;
            margin-right: 7px;
        }

        .header_menu li ul li a:hover {
            color: #fff;
            border-bottom: 1px solid rgba(255 255 255 / 10%);
        }

            .header_menu li ul li a:hover i {
                color: var(--renk1);
            }


.bgsbtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--renk2);
    overflow: hidden;
    z-index: 10;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    gap: 7px;
    padding-right: 12px;
    transition: all 150ms ease-out;
}

    .bgsbtn i {
        padding: 10px 12px;
        background: #156b5f;
        font-size: 16px;
    }

    .bgsbtn:hover {
        background: #21201e;
        color: #fff;
    }

    .bgsbtn:active:not(:hover), .bgsbtn:focus:not(:hover) {
        color: #fff;
        background: #2cac43;
    }


.textas {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    padding: 0px;
    margin: 0px;
}

.texthome {
    color: #555555;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 15px;
}

.content3 {
    margin: 25px auto 25px auto;
}

.content {
    margin: 50px auto 50px auto;
}

.content2 {
    margin: 50px auto 50px auto;
    min-height: 300px;
}

.mobilemargin {
    margin-bottom: 30px;
    width: 100%;
    display: none;
}

.bgslist {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .bgslist li {
        list-style: none;
        margin: 0px;
        padding: 0px;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 10px 0px;
        background: #fff;
        align-items: start;
        border-radius: var(--radius);
        border-bottom: 1px solid #e9e9e9;
        margin-bottom: 15px;
        /*border-left: 3px solid var(--renk1);*/
    }

.bgstitle h4 {
    margin: 0px;
    padding: 0px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff5722;
}

.bnkinf {
    margin-bottom: 30px;
}

.bnkinf_ {
    display: flex;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
    border-radius: var(--radius);
    flex-direction: column;
    height: 100%;
}

.banktitle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0 0 0 / 10%);
}

.banktitletext {
    font-size: 16px;
    display: flex;
    flex-direction: column;
}

.banktitleimg {
    width: 110px;
    flex: none;
    box-shadow: 0px 0px 10px rgba(0 0 0 / 5%);
    border: 1px solid #e9e9e9;
}

    .banktitleimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banktext .item {
    padding: 7px 0px;
}


.homeempty {
    width: 100%;
    height: 40px;
}

.faalbox {
    margin-bottom: 30px;
}

.faalbox_ {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0px 0px 10px rgba(0 0 0 / 7%);
}

.faalbox_img {
    overflow: hidden;
    position: relative;
    flex: none;
}

    .faalbox_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.faalbox_ h3 {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px;
    background: #13695c;
    transition: all 150ms ease-out;
    color: #fff;
    height: 100%;
}

    .faalbox_ h3 i {
        font-size: 13px;
    }

.faalbox_:hover h3 {
    background: var(--renk2);
    color: #fff;
}


.blogdiv {
    margin-bottom: 30px;
}

.blogdiv_ {
    height: 100%;
}

.blogdivimg {
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 12px;
    position: relative;
}

    .blogdivimg img {
        width: 100%;
        min-height: 100%;
    }

.blogdiv_pad {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.blogdiv_ h3 {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogdiv_ p {
    margin: 0px;
    padding: 0px;
    color: #000;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 23;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogvideobox {
    display: none;
}

.blogvideo .blogvideobox {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--renk1);
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 25px;
    line-height: 1.0;
    color: #fff;
}

.blogdiv:hover .blogdiv_ h3 {
    color: var(--renk1);
}

.blog_details_img {
    margin: 0px 0px 25px 0px;
    max-width: 100%;
}

.blog_details_box {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog_details_date {
    display: inline-block;
    font-size: 14px;
    background: #fff;
    color: #333;
    font-style: italic;
}

.blog_social a {
    margin: 0px 0px;
    display: inline-flex;
    color: #666;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: var(--radius);
}

    .blog_social a:hover {
        background: #fff;
        color: #222;
    }

.sol_imgs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30PX;
}

    .sol_imgs img {
        border-radius: var(--radius);
        transition: all 150ms ease-out;
    }

        .sol_imgs img:hover {
            transform: translateY(4px);
        }

.homesol {
    border-radius: var(--radius);
    box-shadow: 0px 0px 10px rgba(0 0 0 / 5%);
    overflow: hidden;
    margin-bottom: 30px;
}

    .homesol h3 {
        margin: 0px;
        padding: 0px;
        background: #555;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        padding: 10px;
    }

    .homesol img {
        max-width: 100%;
    }

    .homesol p {
        padding: 15px;
        font-size: 13px;
        color: #555;
        line-height: 1.7;
    }

.homesollink {
    color: #2196f3;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.bb_link {
    margin: 0px;
    padding: 0px;
    list-style: none;
    background: rgba(255 255 255 / 10%);
    border-radius: 10px;
    margin-bottom: 30px;
}

    .bb_link li {
        margin: 0px;
        padding: 0px 0px;
        list-style: none;
    }

        .bb_link li a {
            display: flex;
            font-size: 16px;
            font-weight: 600;
            padding: 10px 10px;
            border-bottom: 1px solid rgba(0 0 0 / 20%);
            border-radius: 5px;
            transition: all 150ms ease-out;
            color: #fff;
            gap: 10px;
            align-items: center;
            background: #F79E1B;
            background: linear-gradient(90deg,rgba(247, 158, 27, 1) 0%, rgba(0, 133, 176, 1) 10%, rgba(19, 105, 92, 1) 100%);
            margin-bottom: 5px;
            background-size: 243% 100%;
        }

            .bb_link li a i {
                font-size: 28px;
            }

            .bb_link li a:hover {
                background-size: 100% 100%;
            }

.btn100 {
    position: relative;
    font-size: 14px;
    padding: 12px 26px;
    transition: all 350ms ease-out;
    color: #fff;
    text-align: center;
    background: var(--renk1);
    overflow: hidden;
    display: inline-block;
}

    .btn100:hover, .btn100:focus {
        color: #fff;
        background: var(--renk2);
    }

    .btn100:active {
        color: #fff;
        background: #666;
    }

        .btn100:active:not(:hover), .btn100:focus:not(:hover) {
            color: #fff;
            background: var(--renk1);
        }

    .btn100:before {
        transition: all 350ms ease-out;
        content: "";
        position: absolute;
        left: -16px;
        top: -16px;
        width: 15px;
        height: 15px;
        background: #fff;
        opacity: 0.7;
        border-radius: 50%;
        z-index: 1;
    }

    .btn100:after {
        transition: all 350ms ease-out;
        content: "";
        position: absolute;
        right: -16px;
        bottom: -16px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #000;
        opacity: 0.3;
        z-index: 1;
    }

    .btn100:hover:after {
        height: 100px;
        width: 100px;
        opacity: 0.0;
    }

    .btn100:hover:before {
        height: 100px;
        width: 100px;
        opacity: 0.0;
    }

.Social_Links {
    position: relative;
    display: inline-flex;
    gap: 3px;
}

    .Social_Links a {
        text-decoration: none;
        color: #fff;
        font-size: 22px;
        align-items: center;
        justify-content: center;
        display: inline-flex;
        width: 45px;
        height: 45px;
        border-radius: 50px;
        text-align: center;
        transition: all 180ms ease-out;
        background: #0085b0;
    }


        .Social_Links a:hover {
            background: rgba(255 255 255 / 10%);
        }



.csstable {
    border: 0px solid #e9e9e9;
    background: #fff;
    box-shadow: 0px 0px 0px rgba(0 0 0 / 5%);
    border-spacing: 0;
}

    .csstable table {
        margin-bottom: 0px;
    }

    .csstable > table > thead {
        background: #fff;
        border: 0px solid #f9f9f9;
        border-bottom: 1px solid #ccc;
        border-top: 0px solid #ccc;
    }

        .csstable > table > thead > tr > th {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            padding: 12px 10px;
            position: relative;
        }

            .csstable > table > thead > tr > th:after {
            }

    .csstable > table > tbody > tr > td {
        font-size: 14px;
        font-weight: 400;
        color: #333;
        padding: 15px 10px;
        border-top: 1px solid #eeeeee;
        position: relative;
    }

        .csstable > table > tbody > tr > td b {
            font-weight: 500;
        }

    .csstable > table > tbody > tr:hover td {
    }

.pageboxbg {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30PX 0PX 30PX 0PX;
    border-bottom: 1px solid #eee;
    z-index: 0;
}

    .pageboxbg .container:after, .pageboxbg .container:before {
        content: none;
    }

    .pageboxbg .container {
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pageboxbg h3 {
        padding: 0px;
        margin: 0px;
        color: #000;
        font-size: 20px;
        font-weight: 600;
    }

.main_title {
    margin-bottom: 30px;
    position: relative;
}

    .main_title h2 {
        margin: 0px;
        padding: 0px;
        font-size: 26px;
        font-weight: 700;
        color: #000;
        padding-bottom: 15px;
    }

    .main_title:before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 35px;
        height: 2px;
        background: var(--renk2);
    }


.pagenum {
    margin-top: 30px;
    display: block;
    margin-bottom: 20PX;
    text-align: left;
}

    .pagenum a {
        padding: 8px 12px;
        color: #333;
        font-size: 14px;
        background: #fff;
        border: 1px solid #ddd;
        font-weight: 400;
        display: inline-block;
        margin-bottom: 2px;
        border-radius: 3px;
    }

        .pagenum a:hover {
            background: var(--renk1);
            color: #fff;
            border: 1px solid transparent;
        }

        .pagenum a.active {
            background: var(--renk1);
            color: #fff;
            border: 1px solid transparent;
        }

.pagetitle {
    margin-bottom: 20px;
}

    .pagetitle h2 {
        margin: 0px;
        padding: 0px;
        font-size: 24px;
        font-weight: 600;
        color: var(--renk1);
    }


.contact_form {
}

    .contact_form label {
        font-weight: 444;
        color: #333;
        font-size: 14px;
    }

    .contact_form .radio-inline {
        font-weight: 500;
        color: #333;
        font-size: 14px;
        padding-top: 10px;
    }

    .contact_form .btn {
        background: var(--renk1);
        color: #fff;
        border: 0px;
        width: 100%;
        font-weight: 500;
        padding: 12px 38px;
        transition: all 150ms ease-out;
        margin-bottom: 0px;
        border-radius: var(--radius);
        font-size: 16px;
    }

        .contact_form .btn:hover, .contact_form .btn:focus {
            color: #fff;
            background: var(--renk2);
            outline: none;
        }

            .contact_form .btn:focus:not(:hover):not(:active) {
                background: var(--renk1);
                color: #fff;
            }

    .contact_form .form-control {
        font-size: 14px;
        color: #222;
        height: 50px;
        border: 0px;
        border-radius: var(--radius);
        background: #fff;
        box-shadow: 0 0px 10px rgba(0 0 0 /0%);
        padding-left: 30PX;
        border: 1px solid #e9e9e9;
    }

.contact_form2 .form-control {
    padding-left: 15px;
    height: 40px;
}

.contact_form .form-control::-webkit-input-placeholder {
    color: #666;
}

.contact_form2 .form-control {
    padding-left: 15px;
    height: 40px;
}

.inputdivi {
    position: relative;
}

    .inputdivi i {
        position: absolute;
        left: 0px;
        top: 17px;
        font-size: 14px;
        margin-left: 10px;
        color: #999;
    }

.contact_form .dropdown {
    padding: 7px 12px;
}

.contact_form .textrea {
    height: 110px;
}

.contact_form .form-group {
}

.contact_form_bg {
    background: #fff;
    padding: 25px;
    padding-bottom: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--renk1);
}

.contact_form_bg2 {
    background: #f9f9f9;
    padding: 25px;
    padding-bottom: 10px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.contact_map {
    width: 100%;
    height: 450px;
}

.cont_title {
    margin-bottom: 30px;
}

    .cont_title h2 {
        padding: 0px;
        margin: 0px;
        font-size: 20px;
        color: var(--renk1);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .cont_title h2 i {
            font-size: 24px;
            color: #ccc;
        }

.contact_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .contact_list li {
        padding: 0;
        margin: 0;
        list-style: none;
        padding: 10px 5px 10px 5px;
        border-bottom: 1px solid rgba(255 255 255 / 7%);
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-content: start;
        line-height: 1.9;
        color: #000;
        background: #fff;
        border: 1px solid #f9f9f9;
    }

        .contact_list li a:hover {
            color: var(--renk1);
        }

        .contact_list li i {
            margin-right: 10px;
            color: var(--renk1);
            font-size: 18px;
            width: 30px;
            height: 30px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 0px solid var(--renk1);
        }

.contact_social_icon {
    display: block;
    margin-bottom: 0px;
    padding: 10px 0px 30px 0px;
}

    .contact_social_icon a {
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        align-items: center;
        justify-content: center;
        display: inline-flex;
        width: 35px;
        height: 35px;
        border-radius: var(--radius);
        text-align: center;
        transition: all 180ms ease-out;
        background: var(--renk1);
    }

        .contact_social_icon a:hover {
            color: #fff;
            background: var(--renk2);
        }


.m_galeri_l {
    padding: 15px;
    isplay: inline-block;
    overflow: hidden;
    border-bottom: 0px solid #CCC;
}

    .m_galeri_l:hover .m_galeri_img {
        transform: scale(1.2) rotate(0deg);
        z-index: 3;
        box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

.m_galeri_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 300ms ease-out;
    vertical-align: text-bottom;
}

.m_galeri_a {
    width: 100%;
    height: 150px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    position: relative;
    box-sizing: border-box;
    border-radius: var(--radius);
}

.m_galeri_efekt {
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: rgba(257,68,54, 0.4);
    transition: all 200ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .m_galeri_efekt i {
        font-size: 250px;
        color: #ffffff;
        opacity: 0;
        transition: all 400ms ease-out;
    }

.m_galeri_l:hover .m_galeri_efekt i {
    transform: rotate(0deg);
    font-size: 40px;
    opacity: 1;
}

.m_galeri_l:hover .m_galeri_efekt {
    width: 100%;
    z-index: 5;
    opacity: 1;
}



.videogaleri {
    margin-bottom: 30px;
    position: relative;
}

    .videogaleri a {
        display: block;
        text-decoration: none;
    }

.videogaleriyazi {
    color: #313131;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.videogaleriimg {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    height: 130px;
    border-radius: var(--radius);
    border: 1px solid #eee;
}

.videogaleriefekt {
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 0;
    width: 100%;
    background: rgba(0,0,0,0.2);
    transition: all 200ms ease-out;
    text-align: center;
}

    .videogaleriefekt i {
        font-size: 40px;
        color: #ffffff;
        margin-top: 20%;
    }

.videogaleriimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 250ms ease-out;
}

.videogaleri:hover .videogaleriimg img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.videogaleri:hover .videogaleriefekt {
    height: 100%;
    z-index: 5;
}

.videogaleri:hover .videogaleriimg img {
    -webkit-filter: contrast(150%);
    filter: contrast(150%);
}



.galeri_kat {
    padding: 15px;
    display: inline-block;
    overflow: hidden;
    border-bottom: 0px solid #CCC;
}

    .galeri_kat:hover .m_galeri_img {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -moz-transform: scale(1.2);
        transform: scale(1.2) rotate(15deg);
        z-index: 3;
        box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

.galeri_kat_img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 300ms ease-out;
    vertical-align: text-bottom;
}

.galeri_kat a {
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    display: block;
    position: relative;
    border: 0px solid #eeeeee;
    border-radius: var(--radius);
    box-sizing: border-box;
}

.galeri_kat_efekt {
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: rgba(0 0 0 / 40%);
    transition: all 200ms ease-out;
    text-align: center;
}

    .galeri_kat_efekt i {
        font-size: 40px;
        color: #ffffff;
        margin-top: 25%;
        transition: all 200ms ease-out;
        transform: scale(0.4);
    }

.galeri_kat:hover .galeri_kat_efekt {
    width: 100%;
    z-index: 5;
    opacity: 1;
}

    .galeri_kat:hover .galeri_kat_efekt i {
        transform: rotate(0deg);
        transform: scale(1.2);
    }

.galeri_kat_baslik {
    color: #000;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    font-size: 16PX;
}

.filter {
    margin-bottom: 0px;
    text-align: center;
}

.filter_productdetails {
    text-align: right;
}

.filter a {
    float: none;
    display: inline-block;
    padding: 1px 4px 1px 0px;
    line-height: 14px;
    border-left: 1px solid rgba(255 255 255 / 20%);
    color: #666;
    line-height: 1.2;
    text-decoration: none;
    font-size: 13px;
}

    .filter a i {
        font-size: 13px;
        margin-right: 1px;
    }

    .filter a:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f105";
        font-size: 13px;
        margin-left: 7px;
    }

    .filter a:first-child {
        border-left: 0px;
        padding-left: 0px;
    }

    .filter a:last-child:after {
        content: none;
    }


/* Elit Creative */
.ElitCreative {
    position: relative;
    display: inline-block;
    padding: 0px;
}

    .ElitCreative .elit-icon {
        position: relative;
        cursor: pointer;
        display: block;
        width: 68px;
        overflow: hidden;
        -webkit-transition: width 0.3s;
        -webkit-transition-timing-function: linear;
        transition: width 0.3s;
        transition-timing-function: linear;
        margin-right: 10px;
        padding-top: 17.5px;
    }

        .ElitCreative .elit-icon img {
            position: relative;
            cursor: pointer;
            max-width: none;
        }

    .ElitCreative .elit-popup {
        width: 185px;
        box-sizing: border-box;
        bottom: 40px;
        left: -50px;
        position: absolute;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        padding: 15px;
        display: none;
        text-align: center;
        z-index: 9999999999;
    }

        .ElitCreative .elit-popup .elit-logo {
            width: auto;
            margin-bottom: 7px;
        }

        .ElitCreative .elit-popup a {
            color: #4e4e4e;
        }

            .ElitCreative .elit-popup a:hover {
                color: #4e4e4e;
            }

        .ElitCreative .elit-popup .elit-text-1 {
            color: #4e4e4e;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            font-family: Calibri, sans-serif;
        }

        .ElitCreative .elit-popup .elit-text-2 {
            color: #4e4e4e;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 5px;
            font-family: Calibri, sans-serif;
        }

        .ElitCreative .elit-popup .pupup-mask {
            position: absolute;
            left: 0px;
            bottom: -11px;
            width: 100%;
            text-align: center;
        }

    .ElitCreative:hover .elit-icon {
        width: 131px;
    }

    .ElitCreative:hover .elit-popup {
        display: block;
    }

.elit-icon {
    padding: 0px;
    margin-bottom: 0;
    /*height: 50px;*/
}

.dikey_ortala {
    display: table-cell;
    vertical-align: middle;
}
/* Footer Elit İmza */

footer {
    background: #21201e;
    position: relative;
    margin-top: 90px;
    padding-top: 50px;
    border-top: 5px solid var(--renk1);
}

.footer_bg_img {
    text-align: center;
    top: 0px;
    position: absolute;
    width: 100%;
    opacity: 0.1;
}

    .footer_bg_img img {
        max-width: 100%;
    }

.footer_top {
    border-bottom: 1px solid rgba(255 255 255 / 10%);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer_in {
    position: relative;
    z-index: 1;
}

    .footer_in:after, .footer_in:before {
        content: none;
    }

.footer_copyright {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    background: #053147;
    padding: 10px 0px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

    .footer_copyright .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .footer_copyright .container:after, .footer_copyright .container:before {
            content: none;
        }

.footerdiv {
    margin-top: 20px;
}

.footerdivpad {
    padding-left: 30px;
}

.footer_logo {
    display: block;
}

    .footer_logo img {
        max-width: 100%;
    }

.footerdiv h2 {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    display: block;
    margin-bottom: 22px;
}

.footerbox {
    margin-bottom: 5px;
    margin-top: 5px;
}

.footerbox_ {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

    .footerbox_ i {
        margin-right: 15px;
        font-size: 16px;
        color: #d9d9d9;
    }

    .footerbox_ span {
        font-size: 14px;
        color: #fff;
    }


.footer_menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

    .footer_menu li {
        margin: 0;
        padding: 0;
        list-style: none;
        display: block;
    }

        .footer_menu li a {
            position: relative;
            padding: 4px 0px;
            font-size: 14px;
            color: #fff;
            text-decoration: none;
            display: block;
            transition: all 80ms ease-out;
        }


            .footer_menu li a i {
                font-size: 12px;
                margin-right: 5px;
                transition: all 800ms ease-out;
            }

            .footer_menu li a:hover {
                color: #fff;
                text-decoration: underline;
            }

.Footer_Social_Links {
    display: block;
    margin-top: 20PX;
}

    .Footer_Social_Links a {
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        align-items: center;
        justify-content: center;
        display: inline-flex;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        transition: all 180ms ease-out;
        border: 1px solid transparent;
    }

        .Footer_Social_Links a:hover {
            border: 1px solid rgba(255 255 255 / 30%);
        }

        .Footer_Social_Links a:last-child {
            margin-right: 0px;
            padding: 0px 0px 0px 0px;
        }

.footer_text {
    color: #cfcfcf;
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 1.6;
    width: 80%;
}

.owl-stage {
}

.owl-stage-outer {
}

.owl-item {
    height: 100%;
}

    .owl-item .item {
        height: 100%;
    }

.owlstyle .owl-nav {
    position: absolute;
    top: -75px;
    right: 0px;
}



    .owlstyle .owl-nav .owl-next, .owlstyle .owl-nav .owl-prev {
        border-radius: 0px;
        background: none;
        padding: 5px 10px;
        border-radius: 3px;
        color: #fff;
        font-size: 15px;
        background: var(--renk1);
    }

    .owlstyle .owl-nav .owl-next {
    }

    .owlstyle .owl-nav .owl-prev {
    }



        .owlstyle .owl-nav .owl-next:hover, .owlstyle .owl-nav .owl-prev:hover {
            background: #666;
            color: #fff;
        }

        .owlstyle .owl-nav .owl-next.disabled, .owlstyle .owl-nav .owl-prev.disabled:hover {
            background: var(--renk1);
            color: #fff;
        }

    .owlstyle .owl-nav .owl-next:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f054";
        font-weight: 900;
    }

    .owlstyle .owl-nav .owl-prev:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f053";
        font-weight: 900;
    }

    .owlstyle .owl-nav .owl-next:before {
    }

    .owlstyle .owl-nav [class*=owl-] {
        margin: 0px;
        margin-left: 8px;
    }

@keyframes moveUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}

.cookie {
    z-index: 100;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: rgba(0 0 0 / 80%);
    padding: 30px;
    animation: moveUp 1s ease-in-out normal;
}

.cookiebtn {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    background: var(--renk1);
    color: #fff;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: center;
}

    .cookiebtn.cookiebtn2 {
        background: var(--renk2);
    }

    .cookiebtn:hover {
        background: rgba(255 255 255 / 30%);
        color: #fff;
    }

.cookiebtnlink {
    display: block;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

    .cookiebtnlink:hover {
        color: var(--renk2);
    }

.cookietext {
    color: rgba(255 255 255 / 70%);
    font-size: 14px;
}

.cookie_title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer_logo img {
    max-width: 100%;
    width: 350px;
}

.ElitCreative {
    display: none;
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        width: 970px;
    }

    .header_menu li a {
        font-size: 13px;
        padding: 15px 7px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .container {
        width: 750px;
    }

    .header_menu {
        display: none;
    }

    .menu_btn {
        display: flex;
    }

    .headermenudiv {
        padding: 10px;
    }

    .sol_imgs {
        align-items: center;
    }

    .mobilemargin {
        display: block;
    }
}



@media (max-width: 768px) {
    .logodiv {
        text-align: center;
    }

        .logodiv img {
            max-width: 90%;
        }

    .logo_menu {
        gap: 10px;
        flex-direction: column;
    }

    .searchfrm {
        width: 100%;
    }

    .container {
        width: 100%;
    }

    header {
    }

    .header_menu {
        display: none;
    }

    .menu_btn {
        display: flex;
    }

    .top_menu {
        flex-wrap: wrap;
        gap: 5px;
        flex: auto;
        justify-content: center;
    }

        .top_menu li a {
            font-size: 12px;
        }

        .top_menu li:first-child {
            display: none;
        }

    .Social_Links {
        display: none;
    }

    .searchfrm {
        width: 163px;
    }

    .pageboxbg {
        padding: 20px 0px 20px 0px;
        height: auto;
    }

        .pageboxbg h3 {
            font-size: 18px;
            text-align: center;
            margin-bottom: 10px;
        }

    .bgslist li {
        width: 100%;
    }

    .bgstitle h4 {
        font-size: 18px;
    }

    .banktitletext {
        font-size: 14px;
    }

    .banktext {
        font-size: 13px;
    }

    footer {
        margin-top: 45px;
    }

    .footer_social_icon a {
        font-size: 15px;
    }

    .footerdiv {
        width: 100%;
        text-align: center;
    }

    .footer_copyright .container {
        flex-direction: column;
    }

    .footerbox_ {
        justify-content: center;
    }

    .footer_top {
        flex-direction: column;
    }

    .dblock-xs {
        display: block !important;
    }

    .dflexspacediv-xs {
        display: flex;
        justify-content: space-between;
        align-items: top;
    }

    .pagetitle h2 {
        font-size: 18px;
        font-weight: 700;
    }

    .main_title {
        text-align: left;
    }

        .main_title h2 {
            font-size: 18px;
            width: 75%;
        }

    .blogdiv_ h3 {
        font-size: 16px;
    }

    .faalbox_ h3 {
        font-size: 16px;
    }

    .headermenudiv {
        padding: 10px;
    }

    .slider .owl-item .slideritem {
        height: 200px;
    }

    .slider {
    }

    .slidercontent {
        padding: 5px 30px;
    }

    .sliderbox h1 {
        font-size: 16px;
        font-weight: 700;
    }

    .sliderbox2 {
        display: none;
    }

        .sliderbox2 p {
            font-size: 16px;
            font-weight: 400;
        }

    .slidercontent .btn_s {
        font-size: 15px;
        padding: 7px 22px;
    }

    .owlstyle .owl-nav {
        position: absolute;
        top: -75px;
        right: 0px;
    }

        .owlstyle .owl-nav .owl-next, .owlstyle .owl-nav .owl-prev {
            padding: 4px 10px;
            font-size: 14px;
        }

    .sol_imgs {
        align-items: center;
    }

    .mobilemargin {
        display: block;
    }

    .m_galeri_l a {
        height: 100px;
    }

    .videogaleriimg {
        height: auto;
    }

    .galeri_kat a {
        height: auto;
    }


    .filter a {
        font-size: 12px;
    }

    .text-left-xs {
        text-align: left !important;
    }

    .text-center-xs {
        text-align: center !important;
    }

    .xs-row7-5 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .xs-col7-5 {
        padding-left: 5px;
        padding-right: 5px;
    }


    .pagenum a {
        padding: 5px 10px;
        font-size: 14px;
    }

    .ElitCreative {
        margin-top: 10px;
    }

        .ElitCreative .elit-icon {
            width: auto;
        }

    .elit-popup {
        display: none !important;
    }

    .xsmb20 {
        margin-bottom: 20px;
    }

    .cookie {
        overflow-y: auto;
        height: 85%;
    }

    .cookietext {
        font-size: 13px;
    }

    .cookiebtn {
        padding: 7px 15px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .searchfrm {
        display: none;
    }

    .ElitCreative {
        display: none;
    }
}


@media (min-width: 480px) and (max-width: 768px) {
}
