body,
ul,
li,
a,
p {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

a {
    outline: none;
    text-decoration: none;
}

button {
    outline: none;
}

body {
    overflow-x: hidden;
}

body.ovh {
    overflow: hidden;
}

.ovh::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

a:hover {
    text-decoration: none;
    color: unset;
}

img {
    max-width: 100%;
}

.container-fluit {
    width: calc(100% - 60px);
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

.container {
    max-width: 1080px;
    padding: 0;
    position: relative;
}

.swiper-container {
    overflow: hidden;
}

body,
html {
    height: 100%;
}

/*
b, strong {font-weight: 400;}
*/
.btn-tumu {
    display: block;
    margin: 40px auto 0 auto;
    width: max-content;
    position: relative;
    color: #5E5E5E;
    font-size: 16px;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.btn-tumu::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -15px;
    top: -5px;
    border-left: 1px solid #008100;
    border-top: 1px solid #008100;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.btn-tumu::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: -15px;
    bottom: -5px;
    border-right: 1px solid #008100;
    border-bottom: 1px solid #008100;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.btn-tumu:hover::before {
    width: 100%;
    height: 100%;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.btn-tumu:hover::after {
    width: 100%;
    height: 100%;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: inherit;
}

table {
    caption-side: bottom;
    border-collapse: inherit;
    width: 100%;
}

.metin-2 {
    width: 100%;
}

.h4,
h4 {
    display: block;
    width: 100%;
    margin: 0 auto 20px auto;
    position: relative;
    font-size: 1.3rem;
    font-weight: 400;
    color: #5E5E5E;
    text-align: center;
}

h4::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #008100;
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    margin: auto;
}


header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 12;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.3s background-color ease;
    -webkit-transition: 0.3s background-color ease;
    -moz-transition: 0.3s background-color ease;
}

header.mini {
    padding: 5px 0;
}

header.mini .logo img {
    height: 40px;
}

header .kutu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

header .logo img {
    filter: brightness(0) invert(1);
    height: 43px;
}

header .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

header .menu>ul.m {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0 32px;
}

header .menu>ul>li {
    display: block;
    list-style: none;
}

header .menu>ul>li.acilir ul {
    box-shadow: 0 0 8px -4px #888888;
    position: absolute;
    transform: translateX(50px);
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .menu>ul>li.acilir ul li {
    list-style: none;
}

header .menu>ul>li.acilir ul li a {
    display: block;
    font-size: 13px;
    color: #252525;
    padding: 5px;
}

header .menu>ul>li.acilir ul li:hover a {
    color: rgba(255, 15, 15);
}

header .alt .menu>ul>li.acilir:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .menu>ul>li>a {
    display: block;
    color: #ffffff;
    font-size: 13px;
    position: relative;
    font-weight: 300;
}

header .menu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #ffffff;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .menu>ul>li.aktif>a::after {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
}

header.bg .menu>ul>li.aktif>a::after {
    background: #008100;
}

header .menu>ul>li:not(.dil, .ara)>a:hover::after {
    width: 100%;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .menu>ul.dilAra {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0 23px;
}

header .menu>ul.dilAra>li.dil {
    position: relative;
    cursor: pointer;
}

header .menu>ul.dilAra>li.dil a {
    font-size: 13px;
    gap: 4px;
    display: flex;
    align-items: center;
}

header .menu>ul.dilAra>li.dil .bi-globe {
    font-size: 16px;
}

header .menu>ul.dilAra .bi-search {
    font-size: 18px;
}

header .menu>ul.dilAra>li.dil ul {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 10;
    background: white;
    padding: 0 15px;
    right: 0;
    box-shadow: 0 0 20px -5px #838383;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .menu>ul.dilAra>li.dil ul.ac {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .menu>ul.dilAra>li.dil ul li {
    display: block;
}

header .menu>ul.dilAra>li.dil ul li a {
    display: block;
    color: #232323;
    padding: 10px;
}

header .menu>ul.dilAra>li.dil:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

header .dilAra li.ara {
    position: relative;
}

header .dilAra li.ara>a {
    font-size: 16px;
}

header .dilAra li.ara .sitedeara {
    position: absolute;
    right: 0;
    display: none;
    top: 100%;
    z-index: 2;
}

header .dilAra li.ara .sitedeara .form-group {
    display: flex;
}

header .dilAra li.ara .sitedeara .form-group input {
    border: 1px solid #0e213e;
    outline: none;
    padding: 10px 15px;
    font-size: 15px;
    box-shadow: unset;
}

header .dilAra li.ara .sitedeara .form-group .btn-ara {
    border: 1px solid #0e213e;
    background: #0e213e;
    color: #fff;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 400;
}

header.bg {
    background-color: #ffffff;
    box-shadow: 0 0 30px -10px #888;
    transition: 0.3s background-color ease;
    -webkit-transition: 0.3s background-color ease;
    -moz-transition: 0.3s background-color ease;
}

header.bg .logo img {
    filter: unset;
}

header.bg .menu>ul>li>a {
    color: #000;
}

header .menu>ul>li>a::after {
    background: #000;
}

header .mobilMenu {
    position: absolute;
}

.anaSlayt {
    position: relative;
    padding: 0;
    height: 100%;
    display: block;
}

.anaSlayt .slayt {
    height: 100%;
}

.anaSlayt .slayt .kutu {
    position: relative;
}

.anaSlayt .slayt .kutu::before {
    content: "";
    position: absolute;
    left: 0;
    height: 0;
    width: 100%;
    height: 100%;
    display: block;
    /*background: linear-gradient(90deg, rgb(0 0 0 / 13%) 0%, rgb(215 215 215 / 38%) 100%);*/
}

.pd-5 {
    padding: 5px;
}

.anaSlayt .slayt .kutu:nth-child(n+2) {
    display: none;
}

.anaSlayt .slayt .slick-list {
    height: 100%;
}

.anaSlayt .slayt .slick-list div:not(.metin) {
    height: 100%;
}

.anaSlayt .slayt .kutu {
    display: block !important;
    position: relative;
}

.anaSlayt .slayt .resim {
    height: 100%;
}

.anaSlayt .slayt .resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anaSlayt .slayt .metin {
    display: none;
}

.anaSlayt .slayt .metin {
    color: #ffffff;
    display: block;
    width: max-content;
    max-width: 1080px;
    padding: 50px;
    position: absolute;
    height: auto;
    left: calc((100% - 1350px) / 2);
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.anaSlayt .slayt .metin span.bas {
    display: block;
    margin-bottom: 20px;
    width: 100%;

    /* text-shadow: 1px 1px 2px black; */
    /* text-shadow: -1px 1px 0px #000000; */
    font-size: 65px;
    font-weight: 100;
    text-shadow: 0px 0px 15px #000000;
    line-height: 60px;
    opacity: 0;
    -webkit-opacity: 0;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;

}

.anaSlayt .slayt .metin p.p b {
    display: block;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0px 0px 5px #000000;
}

.anaSlayt .slayt .metin::before {
    content: "";
    display: block;
    opacity: 0;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0px;
    top: 0px;
    border-left: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.1);
    transition: 0.6s ease all;
    -moz-transition: 0.6s ease all;
    -webkit-transition: 0.6s ease all;
}


.anaSlayt .slayt .metin::after {
    content: "";
    display: block;
    opacity: 0;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transition: 0.6s ease all;
    -moz-transition: 0.6s ease all;
    -webkit-transition: 0.6s ease all;
}
    /*
.anaSlayt .slayt .metin span.bas {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    font-size: 65px;
    font-weight: 100;
     text-shadow: 1px -1px #000000;
    line-height: 60px;
    opacity: 0;
    -webkit-opacity: 0;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
   
}

.anaSlayt .slayt .metin p.p {
    margin: 0;
    text-shadow: 0px 0px 30px #000000;
    font-size: 16px;
    font-weight: 300;
    opacity: 0;
    -webkit-opacity: 0;
    transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.anaSlayt .slayt .metin p.p b {
    display: block;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0px 0px 5px #000000;
}

.anaSlayt .slayt .metin::before {
    content: "";
    display: block;
    opacity: 0;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0px;
    top: 0px;
    border-left: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    box-shadow: -1px -1px rgba(0, 0, 0, 0.37);
    transition: 0.6s ease all;
    -moz-transition: 0.6s ease all;
    -webkit-transition: 0.6s ease all;
}

.anaSlayt .slayt .metin::after {
    content: "";
    display: block;
    opacity: 0;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.37);
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transition: 0.6s ease all;
    -moz-transition: 0.6s ease all;
    -webkit-transition: 0.6s ease all;
}
*/

    @-webkit-keyframes yukariKay {
        0% {
            opacity: 0;
            -webkit-opacity: 0;
            -webkit-transform: translateY(300px);
            transform: translateY(300px);
        }

        100% {
            opacity: 1;
            -webkit-opacity: 1;
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    @keyframes yukariKay {
        0% {
            opacity: 0;
            -webkit-opacity: 0;
            -webkit-transform: translateY(300px);
            transform: translateY(300px);
        }

        100% {
            opacity: 1;
            -webkit-opacity: 1;
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    @keyframes slide-progress {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0);
        }
    }

    @-webkit-keyframes yukariKay {
        0% {
            opacity: 0;
            -webkit-opacity: 0;
            -webkit-transform: translateY(300px);
            transform: translateY(300px);
        }

        100% {
            opacity: 1;
            -webkit-opacity: 1;
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    @keyframes yukariKay {
        0% {
            opacity: 0;
            -webkit-opacity: 0;
            -webkit-transform: translateY(300px);
            transform: translateY(300px);
        }

        100% {
            opacity: 1;
            -webkit-opacity: 1;
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    .anaSlayt .slayt .slick-active .kutu .metin span.bas {
        animation-name: yukariKay;
        animation-duration: 1s;
        opacity: 1;
        -webkit-opacity: 1;
    }

    .anaSlayt .slayt .slick-active .kutu .metin p.p {
        animation-name: yukariKay;
        animation-duration: 1.5s;
        opacity: 1;
        -webkit-opacity: 1;
    }

    .anaSlayt .slayt .slick-active .metin::before {
        animation-name: yukariKay;
        animation-duration: 0.5s;
        opacity: 1;
        -webkit-opacity: 1;
    }

    .anaSlayt .slayt .slick-active .metin::after {
        animation-name: yukariKay;
        animation-duration: 2s;
        opacity: 1;
        -webkit-opacity: 1;
    }

    .anaSlayt .slayt .slick-arrow {
        position: absolute;
        right: calc((100% - 1200px) / 2);
        z-index: 3;
        font-size: 0;
        border: 1px solid rgb(255, 255, 255, 0.5);
        background: unset;
        color: #fff;
        border-radius: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .anaSlayt .slayt .slick-arrow:hover {
        background: #008100;
        color: #ffffff;
        border-color: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .anaSlayt .slayt .slick-arrow::after {
        font-size: 1rem;
        font-family: bootstrap-icons !important;
        display: inline-block;
    }

    .anaSlayt .slayt .slick-prev {
        bottom: calc(50% - 25px);
    }

    .anaSlayt .slayt .slick-prev::after {
        content: "\f284";
    }

    .anaSlayt .slayt .slick-next {
        bottom: calc(50% + 25px);
    }

    .anaSlayt .slayt .slick-next::after {
        content: "\f285";
    }

    .anaSlayt .rakamlar {
        position: absolute;
        z-index: 2;
        left: 0;
        bottom: 0px;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        padding: 25px 0 8px 0;
        text-align: center;
    }

    .anaSlayt .rakamlar ul {
        max-width: 990px;
        margin: auto;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .anaSlayt .rakamlar ul li {
        font-size: 32px;
        line-height: 50px;
        font-weight: 300;
        width: 20%;
        display: block;
        list-style: none;
        color: rgb(255 255 255 / 79%);
        position: relative;
        transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
    }

    .anaSlayt .rakamlar ul li::before {
        content: "";
        position: absolute;
        right: -10px;
        bottom: 0;
        width: 0px;
        height: 100%;
        display: block;
        border-right: 1px solid #ffffff;
    }

    .anaSlayt .rakamlar ul li:last-child:before {
        display: none;
    }

    .anaSlayt .rakamlar ul li p {
        margin: 0 auto;
        font-size: 14px;
        font-weight: 400;
        padding: 0;
        line-height: 1rem;
        max-width: 135px;
    }

    .anaSlayt .rakamlar ul li:hover {
        color: #ffffff;
        transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
    }

    section {
        padding: 50px 0;
    }

    section h4.bas {
        display: block;
        width: 100%;
        margin: 0 auto 20px auto;
        position: relative;
        font-size: 1.3rem;
        font-weight: 400;
        color: #5E5E5E;
        text-align: center;
    }

    section h4.bas::before {
        content: "";
        width: 30px;
        height: 1px;
        background: #008100;
        position: absolute;
        left: 0;
        bottom: -2px;
        right: 0;
        margin: auto;
    }

    .faaliyetAlan {
        background: #f0efee;
        font-size: 14px;
        color: #5E5E5E;
        font-weight: 300;
    }

    .faaliyetAlan .kutu {
        margin: auto;
        /*max-width: 650px;*/
        padding-bottom: 15px;
        text-align: center;
    }

    .faaliyetAlan .kutu .metin {
        margin-bottom: 20px;
    }

    .faaliyetAlan .kutu .metin b {
        display: block;
        font-weight: 400;
        font-size: 16px;
    }

    .sayfaDetay.faaliyetAlan .kutu .metin b {
        display: inline-block;
    }

    .faaliyetAlan .kutu1 {
        margin: auto;
        /*max-width: 650px;*/
        padding-bottom: 15px;
    }

    .faaliyetAlan .kutu1 .metin {
        margin-bottom: 20px;
    }

    .faaliyetAlan .kutu1 .metin b {
        display: block;
        font-weight: 400;
        font-size: 16px;
    }

    .sayfaDetay.faaliyetAlan .kutu1 .metin b {
        display: inline-block;
    }


    .faaliyetSlayt {
        position: relative;
    }

    .faaliyetSlayt .slick-list {
        margin: 0 -10px;
    }

    .faaliyetSlayt .slick-arrow {
        position: absolute;
        top: calc(50% - 15px);
        padding: 0;
        z-index: 3;
        font-size: 0;
        background: #ffffff;
        color: #008100;
        border-radius: 0;
        border: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .faaliyetSlayt .slick-arrow:hover {
        background: #008100;
        color: #ffffff;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .faaliyetSlayt .slick-arrow::after {
        font-size: 16px;
        font-family: bootstrap-icons !important;
        display: inline-block;
    }

    .faaliyetSlayt .slick-prev {
        left: -40px;
    }

    .faaliyetSlayt .slick-prev::after {
        content: "\f284";
    }

    .faaliyetSlayt .slick-next {
        right: -40px;
    }

    .faaliyetSlayt .slick-next::after {
        content: "\f285";
    }

    .faaliyetSlayt .slick-slide>div {
        padding: 10px;
    }

    .faaliyetler {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .faaliyet {
        position: relative;
        cursor: pointer;
        box-shadow: 0 0 5px -3px #9f9e9e;
        background: #fff;
    }

    .faaliyet .resim {
        position: relative;
        height: 0;
        padding-bottom: 55%;
        overflow: hidden;
        transform: rotateY(0deg);
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .faaliyet .resim img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transform: scale(1);
        transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -webkit-transition: 0.5s ease all;
    }

    .faaliyet .resim::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: rgb(0, 0, 0, 0.5);
        background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(185 185 185 / 58%) 100%);
        z-index: 1;
    }

    .faaliyet .resim .bas {
        position: absolute;
        font-size: 16px;
        font-weight: 400;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 2;
        top: 50%;
        color: #fff;
        display: block;
        width: 60%;
        margin: auto;
        right: 0;
        left: 0;
        text-align: center;
        text-shadow: 0px 0px 20px #424242;
    }

    .faaliyet .resim .bas::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: -15px;
        top: -15px;
        box-shadow: -1px -1px rgba(0, 0, 0, 0.37);
        border-left: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .faaliyet .resim .bas::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: -15px;
        bottom: -15px;
        box-shadow: 1px 1px rgba(0, 0, 0, 0.37);
        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .faaliyet .metin {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 15px;
        transform: rotateY(180deg);
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .faaliyet.bos .metin {
        display: none;
    }

    .faaliyet .metin p {
        width: 100%;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #5e5e5e;
    }

    .faaliyet .metin b {
        display: block;
        margin-bottom: 10px;
    }

    .faaliyet:hover .metin {
        transform: rotateY(0deg);
        opacity: 1;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .faaliyet:hover .resim {
        transform: rotateY(180deg);
        opacity: 0;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .faaliyet.bos:hover .resim {
        transform: rotateY(0deg);
        opacity: 1;
    }

    .faaliyet.bos:hover .resim img {
        transform: scale(1.08);
        transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -webkit-transition: 0.5s ease all;
        ;
    }

    .hizmetlerimiz {
        font-size: 14px;
        color: #5E5E5E;
    }

    .hizmetlerimiz .kutu {
        text-align: center;
        margin: auto;
        max-width: 670px;
    }

    .hizmetlerimiz .kutu .metin {
        margin-bottom: 20px;
        font-weight: 300;
    }

    .hizmetlerimiz .kutu .metin b {
        display: block;
        font-weight: 400;
        font-size: 1rem;
    }

    .hizmetlerimiz #hizmetSlayt.flipster {
        overflow: hidden;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet {
        width: 40%;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet img {
        width: 100%;
        filter: drop-shadow(0 5px 15px -5px #555);
    }

    .hizmetlerimiz #hizmetSlayt .hizmet .metin {
        width: 150%;
        height: 120px;
        left: -25%;
        position: relative;
        transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
        text-align: center;
        padding: 5px 0;
        opacity: 0;
        visibility: hidden;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet .metin p {
        display: none;
    }

    .flipster--loop .flipster__item {
        position: absolute;
    }

    .flipster--loop .flipster__item--past-2 {
        transform: translateX(-100%);
    }

    .flipster--loop .flipster__item--future-2 {
        transform: translateX(100%);
    }

    .flipster--loop .flipster__item--past-1 {
        transform: translateX(-50%);
    }

    .flipster--loop .flipster__item--future-1 {
        transform: translateX(50%);
    }

    .flipster--infinite-carousel .flipster__container,
    .flipster--infinite-carousel .flipster__item {
        transition: all 350ms ease-in-out;
        transition-timing-function: cubic-bezier(0.56, 0.12, 0.12, 0.98);
    }

    .flipster--infinite-carousel .flipster__item__content {
        transition: inherit;
    }

    .flipster--infinite-carousel .flipster__item {
        position: absolute;
        opacity: 0;
        perspective: 800px;
    }

    .flipster--infinite-carousel .flipster__item--past-2,
    .flipster--infinite-carousel .flipster__item--future-2 {
        opacity: 1;
        transition-delay: 90ms;
    }

    .flipster--infinite-carousel .flipster__item--past-1,
    .flipster--infinite-carousel .flipster__item--future-1 {
        opacity: 1;
        transition-delay: 60ms;
    }

    .flipster--infinite-carousel .flipster__item--current {
        opacity: 1;
        transition-delay: 0;
    }

    .flipster--infinite-carousel .flipster__item--past .flipster__item__content,
    .flipster--infinite-carousel .flipster__item--future .flipster__item__content {
        transform: scale(0.4);
    }

    .flipster--infinite-carousel .flipster__item--past-2 .flipster__item__content {
        transform: translateX(-75%) rotateY(45deg) scale(0.6);
    }

    .flipster--infinite-carousel .flipster__item--future-2 .flipster__item__content {
        transform: translateX(75%) rotateY(-45deg) scale(0.6);
    }

    .flipster--infinite-carousel .flipster__item--past-1 .flipster__item__content {
        transform: translateX(-50%) rotateY(45deg) scale(0.8);
    }

    .flipster--infinite-carousel .flipster__item--future-1 .flipster__item__content {
        transform: translateX(50%) rotateY(-45deg) scale(0.8);
    }

    .flipster--infinite-carousel .flipster__item--current .flipster__item__content {
        transform: translateX(0) rotateY(0deg) scale(1);
    }

    .flipster--carousel .flipster__item--past-1,
    .flipster--carousel .flipster__item--future-1 {
        opacity: 1;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet .metin span.bas {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #5E5E5E;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet span.bas2 {
        display: block;
        font-size: 20px;
        font-weight: 400;
        position: absolute;
        background: #008100;
        background: linear-gradient(270deg, #00db00 0%, #008100 100%);
        top: 50%;
        color: #fff;
        padding: 5px 10px;
        box-shadow: 10px 0 10px -5px black;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet.flipster__item--past span.bas2 {
        left: 0;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet.flipster__item--future span.bas2 {
        right: 0;
        box-shadow: -10px 0 10px -5px black;
        background: linear-gradient(270deg, #00db00 0%, #008100 100%);
    }

    .hizmetlerimiz #hizmetSlayt .hizmet.flipster__item--current .metin {
        opacity: 1;
        visibility: visible;
        transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet.flipster__item--current span.bas2 {
        display: none;
    }

    .hizmetlerimiz #hizmetSlayt .hizmet.flipster__item--current .metin p {
        display: block;
    }

    .referanslar {
        background: url("../img/1-background.jpg") no-repeat;
        background-size: cover;
        position: relative;
        font-size: 14px;
        color: #5E5E5E;
    }

    .referanslar::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255 / 81%);
    }

    .referanslar .kutu {
        text-align: center;
        margin: auto;
        max-width: 670px;
    }

    .referanslar .kutu .metin {
        margin-bottom: 20px;
        font-weight: 300;
    }

    .referanslar .kutu .metin b {
        display: block;
        font-size: 1rem;
        font-weight: 400;
    }

    .referanslar .tabSlayt {
        width: calc(100% - 30px);
        cursor: grab;
        margin: auto;
        flex-wrap: unset;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        gap: 50px;
        white-space: nowrap;
        overflow: auto;
        scrollbar-width: none;
    }

    .referanslar .tabSlayt::-webkit-scrollbar {
        display: none;
    }

    .referanslar .tabSlayt .nav-item .nav-link {
        color: #5E5E5E;
        position: relative;
        padding: 0;
        cursor: grab;
    }

    .referanslar .tabSlayt .nav-item .nav-link.active {
        font-weight: 400;
        background: unset;
    }

    .referanslar .tabSlayt .nav-item .nav-link::before {
        content: "";
        display: block;
        width: 0px;
        height: 100%;
        border-right: 1px solid rgba(255, 15, 15, 0.5);
        position: absolute;
        right: -25px;
        top: 0;
    }

    .referanslar .tabSlayt .nav-item:last-child .nav-link::before {
        display: none;
    }

    .referanslar .refTab .box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 5px 0;
        gap: 10px;
        width: 100%;
        margin: 15px 0 50px 0;
    }

    .referanslar .refTab .box-mobile {
        display: none;
    }

    .referanslar .referans {
        position: relative;
        width: 100%;
        padding: 0;
        cursor: pointer;
        box-shadow: 0 0 5px -3px #9f9e9e;
        height: 11vw;
        overflow: hidden;
    }

    .referanslar .referans .resim {
        height: 100%;
        position: relative;
        transform: rotateY(0deg);
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar .referans .resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -webkit-transition: 0.5s ease all;
    }

    .referanslar .referans .resim::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: rgb(0, 0, 0, 0.5);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

    .referanslar .referans .resim .bas {
        position: absolute;
        font-weight: 400;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 2;
        top: 50%;
        color: #fff;
        display: block;
        width: 60%;
        margin: auto;
        right: 0;
        left: 0;
        text-align: center;
        text-shadow: 0px 0px 5px #000000;
    }

    .referanslar .referans .resim .bas::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: -15px;
        top: -15px;
        border-left: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .referanslar .referans .resim .bas::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: -15px;
        bottom: -15px;
        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .referanslar .referans .metin {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 15px;
        background: white;
        transform: rotateY(180deg);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        overflow: hidden;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar .referans .metin p {
        margin: 0;
        width: 100%;
        text-overflow: ellipsis;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #5e5e5e;
    }

    .referanslar .referans .metin b {
        display: block;
        margin-bottom: 10px;
    }

    .referanslar .referans.bos .metin {
        display: none;
    }

    .referanslar .referans:hover .metin {
        transform: rotateY(0deg);
        opacity: 1;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar .referans:hover .resim {
        transform: rotateY(180deg);
        opacity: 0;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar .referans.bos:hover .resim {
        transform: rotateY(0deg);
        opacity: 1;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar .referans.bos:hover .resim img {
        transform: scale(1.08);
        transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -webkit-transition: 0.5s ease all;
    }




    .referanslar1 {
        background: url("../img/1-background.jpg") no-repeat;
        background-size: cover;
        position: relative;
        font-size: 14px;
        color: #5E5E5E;
    }

    .referanslar1::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255 / 81%);
    }

    .referanslar1 .kutu {
        text-align: center;
        margin: auto;
        max-width: 670px;
    }

    .referanslar1 .kutu .metin {
        margin-bottom: 20px;
        font-weight: 300;
    }

    .referanslar1 .kutu .metin b {
        display: block;
        font-size: 1rem;
        font-weight: 400;
    }

    .referanslar1 .tabSlayt {
        width: calc(100% - 30px);
        cursor: grab;
        margin: auto;
        flex-wrap: unset;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        gap: 50px;
        white-space: nowrap;
        overflow: auto;
        scrollbar-width: none;
    }

    .referanslar1 .tabSlayt::-webkit-scrollbar {
        display: none;
    }

    .referanslar1 .tabSlayt .nav-item .nav-link {
        color: #5E5E5E;
        position: relative;
        padding: 0;
        cursor: grab;
    }

    .referanslar1 .tabSlayt .nav-item .nav-link.active {
        font-weight: 400;
        background: unset;
    }

    .referanslar1 .tabSlayt .nav-item .nav-link::before {
        content: "";
        display: block;
        width: 0px;
        height: 100%;
        border-right: 1px solid rgba(255, 15, 15, 0.5);
        position: absolute;
        right: -25px;
        top: 0;
    }

    .referanslar1 .tabSlayt .nav-item:last-child .nav-link::before {
        display: none;
    }

    .referanslar1 .refTab .box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 5px 0;
        gap: 10px;
        width: 100%;
        margin: 15px 0 5px 0;
    }

    .referanslar1 .refTab .box-mobile {
        display: none;
    }

    .referanslar1 .referans1 {
        position: relative;
        width: 100%;
        padding: 0;
        height: 11vw;
        overflow: hidden;
    }

    .referanslar1 .referans1 .resim {
        height: 100%;
        position: relative;
        transform: rotateY(0deg);
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar1 .referans1 .resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -webkit-transition: 0.5s ease all;
    }

    .referanslar1 .referans1 .resim::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 1;
    }

    .referanslar1 .referans1 .resim .bas {
        position: absolute;
        font-weight: 400;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 2;
        top: 50%;
        color: #fff;
        display: block;
        width: 60%;
        margin: auto;
        right: 0;
        left: 0;
        text-align: center;
        text-shadow: 0px 0px 5px #000000;
    }

    .referanslar1 .referans1 .resim .bas::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: -15px;
        top: -15px;
        border-left: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .referanslar1 .referans1 .resim .bas::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: -15px;
        bottom: -15px;
        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .referanslar1 .referans1 .metin {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 15px;
        background: white;
        transform: rotateY(180deg);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        overflow: hidden;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar1 .referans1 .metin p {
        margin: 0;
        width: 100%;
        text-overflow: ellipsis;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #5e5e5e;
    }

    .referanslar1 .referans1 .metin b {
        display: block;
        margin-bottom: 10px;
    }

    .referanslar1 .referans1 .bos .metin {
        display: none;
    }





    .referanslar2 .refTab .box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 5px 0;
        gap: 10px;
        width: 100%;
        margin: 15px 0 50px 0;
    }

    .referanslar2 .referans {
        position: relative;
        width: 100%;
        padding: 0;
        box-shadow: 0 0 5px -3px #9f9e9e;
        height: 11vw;
        overflow: hidden;
    }

    .referanslar2 .referans .resim {
        height: 100%;
        position: relative;
        transform: rotateY(0deg);
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referanslar2 .referans .resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: 0.5s ease all;
        -moz-transition: 0.5s ease all;
        -webkit-transition: 0.5s ease all;
    }

    .referanslar2 .referans .resim::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 1;
    }

    .referanslar2 .referans .resim .bas {
        position: absolute;
        font-weight: 400;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 2;
        top: 50%;
        color: #fff;
        display: block;
        width: 60%;
        margin: auto;
        right: 0;
        left: 0;
        text-align: center;
        text-shadow: 0px 0px 5px #000000;
    }

    .referanslar2 .referans .resim .bas::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: -15px;
        top: -15px;
        border-left: 1px solid #ffffff;
        border-top: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }

    .referanslar2 .referans .resim .bas::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: -15px;
        bottom: -15px;
        border-right: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        transition: 0.6s ease all;
        -moz-transition: 0.6s ease all;
        -webkit-transition: 0.6s ease all;
    }










    section.haberler {
        font-size: 14px;
        color: #5E5E5E;
        background: #f8f8f8;
    }

    section.haberler .kutu {
        text-align: center;
        margin: auto;
        max-width: 670px;
    }

    section.haberler .kutu .metin {
        margin-bottom: 20px;
        font-weight: 300;
    }

    section.haberler .kutu .metin b {
        display: block;
        font-size: 1rem;
        font-weight: 400;
    }

    .haberSlayt .slick-list {
        margin: 0 -10px;
    }

    .haberSlayt .slick-arrow {
        position: absolute;
        top: calc(50% - 15px);
        padding: 0;
        z-index: 3;
        font-size: 0;
        background: #ffffff;
        color: #008100;
        border-radius: 0;
        border: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .haberSlayt .slick-arrow:hover {
        background: #008100;
        color: #ffffff;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .haberSlayt .slick-arrow::after {
        font-size: 16px;
        font-family: bootstrap-icons !important;
        display: inline-block;
    }

    .haberSlayt .slick-prev {
        left: -40px;
    }

    .haberSlayt .slick-prev::after {
        content: "\f284";
    }

    .haberSlayt .slick-next {
        right: -40px;
    }

    .haberSlayt .slick-next::after {
        content: "\f285";
    }

    .haberSlayt .slick-slide>div {
        padding: 10px;
    }

    .haberSlayt .haber .k {
        box-shadow: 0 0 5px -2px #bfbfbf;
        border-radius: 2px;
        overflow: hidden;
    }

    .haberSlayt .haber .metin {
        padding: 20px 30px;
        background: #ffffff;
    }

    .haberSlayt .haber .metin .bas {
        display: block;
        margin-bottom: 15px;
        font-weight: 300;
        height: 60px;
    }

    .haberSlayt .haber .metin b.bas {
        display: block;
        margin-bottom: 15px;
        font-weight: 400;
        height: 60px;
    }

    .haberSlayt .haber .metin p.p {
        display: block;
        margin-bottom: 10px;
    }

    .haberSlayt .haber .metin a {
        display: block;
        position: relative;
        color: #5E5E5E;
        width: max-content;
        margin: 0 auto;
    }

    .haberSlayt .haber .metin a::before {
        content: "";
        position: absolute;
        display: block;
        width: 50%;
        height: 1px;
        bottom: -3px;
        left: 0;
        right: 0;
        margin: auto;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .haberSlayt .haber .metin a:hover::before {
        width: 85%;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    /* footer {
        padding: 50px 0 10px 0;
        background: #f2f1f0;
        font-size: 13px;
        color: #5E5E5E;
        font-weight: 300;
    }

    footer .sol .logo {
        margin-bottom: 30px;
        max-width: 80%;
    }

    footer .sol .logo p {
        display: block;
        margin: 15px 0;
    }

    footer .sol ul.il {
        display: block;
        width: 100%;
        font-size: 13px;
    }

    footer .sol ul.il li {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
    }

    footer .sol ul.il li a {
        display: flex;
        gap: 10px;
        color: #5E5E5E;
    }

    footer .sol ul.il li a i {
        font-size: 18px;
    }

    footer .sol ul.sos {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 20px;
        padding-top: 20px;
        width: 100%;
    }

    footer .sol ul.sos li {
        display: block;
        list-style: none;
    }

    footer .sol ul.sos li a {
        background: #474747;
        color: #F6F6F6;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        border-radius: 5px;
    }

    footer .sag .kutu {
        display: flex;
        flex-wrap: wrap;
        color: #5E5E5E;
        font-size: 13px;
    }

    footer .sag .kutu .k {
        padding: 0 10px;
        margin-bottom: 40px;
    }

    footer .sag .kutu .k ul {
        padding: 0 10px;
    }

    footer .sag .kutu>div:nth-child(n+4) {
        margin: 0;
    }

    footer .sag .kutu .k ul li {
        display: block;
        list-style: none;
        min-height: 22px;
    }

    footer .sag .kutu .k ul.ha li {
        margin-bottom: 10px;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding-bottom: 10px;
    }

    footer .sag .kutu .k ul.ha li:last-child {
        border-bottom: unset;
    }

    footer .sag .kutu .k span.bas {
        display: block;
        width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
        position: relative;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding: 0 0 3px 10px;
    }

    footer .sag .kutu .k span.bas::before {
        content: "";
        z-index: 2;
        position: absolute;
        width: 80px;
        height: 1px;
        bottom: -1px;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    footer .sag .kutu .k:hover span.bas::before {
        width: 150px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    footer .sag .kutu .k a {
        display: block;
        color: #5E5E5E;
        line-height: 1rem;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
        font-size: 14px;
    }

    footer .sag .kutu .k a:hover {
        color: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    } */

   
    footer {
        padding: 50px 0 10px 0;
        background: #f2f1f0;
        font-size: 13px;
        color: #5E5E5E;
        font-weight: 300;
    }
    
    footer .sol .logo {
        margin-bottom: 10px;
        max-width: 80%;
    }
    
    footer .sol .logo p {
        display: block;
        margin: 5px 0;
    }
    
    footer .sol ul.il {
        display: block;
        width: 100%;
        font-size: 13px;
    }
    
    footer .sol ul.il li {
        display: block;
        margin-bottom: 10px;
    }
    
    footer .sol ul.il li a {
        display: flex;
        gap: 10px;
        color: #5E5E5E;
    }
    
    footer .middle ul.il li a i {
        padding-right: 10px;
        font-size: 20px;
        line-height: 26px;
    }
    
    footer .sol ul.sos {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 20px;
        padding-top: 20px;
        width: 100%;
    }
    
    footer .sol ul.sos li {
        display: block;
        list-style: none;
    }
    
    footer .sol ul.sos li a {
        background: #474747;
        color: #F6F6F6;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        border-radius: 5px;
    }
    
    footer .middle {
        margin-top: 30px;
    }
    
    footer .middle ul.il {
        display: block;
        width: 100%;
        font-size: 13px;
    }
    
    footer .middle ul.il li {
        display: block;
        margin-bottom: 10px;
    }
    
    footer .middle ul.il li a {
        display: flex;
        gap: 10px;
        color: #5E5E5E;
    }
    
    footer .middle ul.il li a i {
        font-size: 18px;
    }
    
    footer .middle .kutu {
    
        color: #5E5E5E;
        font-size: 13px;
    }
    
    footer .middle.kutu .k {
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    
    footer .middle .kutu .k span.bas {
        display: block;
        width: 80%;
        font-size: 14px;
        margin-bottom: 20px;
        position: relative;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding: 0 0 3px 0;
    }
    
    footer .middle .kutu .k span.bas::before {
        content: "";
        z-index: 2;
        position: absolute;
        width: 60px;
        height: 1px;
        bottom: -1px;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    footer .middle .kutu .k:hover span.bas::before {
        width: 150px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    footer .middle .kutu .k a {
        display: block;
        color: #5E5E5E;
        line-height: 1rem;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    footer .middle .kutu .k a:hover {
        color: #494848;
        font-weight: bold;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    
    footer .sag {
        margin-top: 30px;
    }
    
    footer .sag .kutu {
    
        color: #5E5E5E;
        font-size: 13px;
    }
    
    footer .sag .kutu .k {
        padding: 0 2px;
        margin-bottom: 40px;
    }
    
    footer .sag .kutu .k ul {
        padding: 0 10px;
    }
    
    footer .sag .kutu>div:nth-child(n+4) {
        margin: 0;
    }
    
    footer .sag .kutu .k ul li {
        display: block;
        list-style: none;
        min-height: 22px;
    }
    
    footer .sag .kutu .k ul.ha li {
        margin-bottom: 10px;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding-bottom: 10px;
    }
    
    footer .sag .kutu .k ul.ha li:last-child {
        border-bottom: unset;
    }
    
    footer .sag .kutu .k span.bas {
        display: block;
        width: 80%;
        font-size: 14px;
        margin-bottom: 20px;
        position: relative;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding: 0 0 3px 0px;
    }
    
    footer .sag .kutu .k span.bas::before {
        content: "";
        z-index: 2;
        position: absolute;
        width: 60px;
        height: 1px;
        bottom: -1px;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    footer .sag .kutu .k:hover span.bas::before {
        width: 150px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    footer .sag .kutu .k a {
        display: block;
        color: #5E5E5E;
        line-height: 1rem;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }
    
    footer .sag .kutu .k a:hover {
        color: #494848;
        font-weight: bold;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }


    .altKusak {
        background: #e5e5e4;
        padding: 10px 0;
        font-size: 12px;
        color: #5E5E5E;
    }

    .altKusak .kutu {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .altKusak .kutu>div {
        width: 33.3%;
    }

    .altKusak .kutu>div:nth-child(2) {
        text-align: center;
    }

    .altKusak .kutu>div:nth-child(3) {
        text-align: right;
    }

    .altKusak .kutu a {
        color: #5E5E5E;
    }

    .sayfaKusak {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        min-height: 315px;
        width: 100%;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .sayfaKusak::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgb(0, 0, 0);
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .sayfaKusak .container-fluit {
        width: 100%;
        z-index: 2;
        color: #ffffff;
    }

    .sayfaKusak h1.b {
        margin-bottom: 40px;
        font-size: 28px;
    }

    .sayfaKusak .breadcrumb {
        margin-bottom: 10px;
    }

    .sayfaKusak .breadcrumb .breadcrumb-item {
        color: #ffffff;
        font-size: 14px;
    }

    .sayfaKusak .breadcrumb .breadcrumb-item a {
        color: #ffffff;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .sayfaKusak .breadcrumb .breadcrumb-item:first-child img {
        height: 13px;
    }

    .sayfaKusak .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        content: ">";
        color: #ffffff;
    }

    .sayfaDetay {
        color: #5E5E5E;
        font-size: 13px;
        padding-bottom: 0px;
        font-weight: 400;
    }

    .sayfaDetay.faaliyetAlan {
        font-size: 14px;
    }

    .sayfaDetay .tarihce {
        position: relative;
        left: 50%;
        gap: 30px;
        display: flex;
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .sayfaDetay .tarihce li {
        display: flex;
        padding: 0 0 0 75px;
        font-weight: 300;
        line-height: 24px;
        gap: 10px;
        left: -10px;
        width: 50%;
        position: relative;
        color: #5E5E5E;
    }

    .sayfaDetay b {
        font-weight: 400;
    }

    .sayfaDetay .tarihce li .tarih {
        position: absolute;
        font-size: 20px;
        line-height: 22px;
        font-weight: 400;
        left: -100px;
        border-bottom: 1px solid #008100;
    }

    .sayfaDetay .tarihce li::before {
        content: "";
        position: absolute;
        left: 0;
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        background: url("../img/adim.svg") no-repeat;
        background-size: contain;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sayfaDetay .tarihce li::after {
        content: "";
        width: 0px;
        height: calc(100% + 10px);
        position: absolute;
        left: 10px;
        border-right: 1px solid #707070;
        top: 20px;
    }

    .sayfaDetay .tarihce li:last-child:after {
        display: none;
    }

    .sayfaDetay .tarihce li:nth-child(2n) {
        left: calc(-50% + 10px);
        justify-content: flex-end;
        text-align: right;
        padding: 0 75px 0 0;
    }

    .sayfaDetay .tarihce li:nth-child(2n) .tarih {
        left: unset;
        right: -100px;
    }

    .sayfaDetay .tarihce li:nth-child(2n)::before {
        order: 1;
        left: unset;
        right: 0;
    }

    .sayfaDetay .tarihce li:nth-child(2n):after {
        left: unset;
        right: 9px;
    }

    .sayfaDetay .ikiliMetin {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        line-height: 24px;
        padding: 30px 0;
    }

    .sayfaDetay .ikiliMetin p:nth-child(2n) {
        position: relative;
    }

    .sayfaDetay .ikiliMetin p:nth-child(2n)::before {
        content: "";
        position: absolute;
        left: -30px;
        width: 0;
        height: calc(100% - 33%);
        border-left: 1px solid #707070;
    }

    .sayfaTablar {
        background: #F0EFEE;
        padding: 30px 0;
    }

    .sayfaTablar .nav-pills {
        padding: 30px 0;
        justify-content: flex-end;
    }

    .sayfaTablar .nav-pills .nav-item:last-child {
        border-right: unset;
    }

    .sayfaTablar .nav-pills .nav-item {
        padding: 10px 40px;
    }

    .sayfaTablar .nav-pills .nav-link {
        position: relative;
        font-size: 16px;
        color: #B5B5B5;
        border-right: 1px solid #E0E0E0;
        font-weight: 400;
        border-radius: 0;
        padding: 0;
        background: unset;
    }

    .sayfaTablar .nav-pills .nav-link::before {
        content: "";
        width: 30px;
        height: 1px;
        background: #008100;
        position: absolute;
        left: 0;
        bottom: -2px;
        right: 0;
        margin: auto;
    }

    .sayfaTablar .nav-pills .nav-link.active {
        color: #5E5E5E;
    }

    .sayfaTablar .tab-pane .kutu {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .sayfaTablar .tab-pane .kutu .resim {
        flex: 6;
    }

    .sayfaTablar .tab-pane .kutu .resim img {
        width: 100%;
    }

    .sayfaTablar .tab-pane .kutu .metin {
        flex: 6;
        font-weight: 300;
    }

    .sayfaTablar .tab-pane .kutu .metin p {
        margin-bottom: 20px;
    }

    .sayfaTablar .tab-pane .kutu .metin p:last-child {
        margin-bottom: 0px;
    }

    .sayfaDetay .metin ul:not(.nav) {
        margin: 15px 0;
        padding-left: 15px;
    }

    .sayfaDetay .metin ul:not(.nav) li {
        list-style: none;
        margin-bottom: 10px;
        position: relative;
    }

    .sayfaDetay .metin ul:not(.nav) li:last-child {
        margin-bottom: 0;
    }

    .sayfaDetay .metin ul:not(.nav) li::before {
        content: "";
        display: block;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #008100;
        position: absolute;
        left: -15px;
        top: 8px;
    }

    .kaliteKutu {
        padding: 50px 0;
        background: #F8F8F8;
    }

    .kaliteKutu ul {
        padding: 30px 0;
        padding-left: 15px;
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        padding-left: 15px;
    }

    .kaliteKutu ul li {
        list-style: none;
        position: relative;
    }

    .kaliteKutu ul li::before {
        content: "";
        display: block;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #008100;
        position: absolute;
        left: -15px;
        top: 8px;
    }

    .kaliteSlayt {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .kaliteSlayt.slick-slider {
        display: block;
    }

    .kaliteSlayt.slick-slider .resim {
        display: block !important;
        flex: 2;
        padding: 0 8px;
    }

    .kaliteSlayt.slick-slider .slick-list {
        margin: 0 -8px;
    }

    .kaliteSlayt .slick-arrow {
        position: absolute;
        top: calc(50% - 15px);
        padding: 0;
        z-index: 3;
        font-size: 0;
        background: #ffffff;
        color: #008100;
        border-radius: 0;
        border: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .kaliteSlayt .slick-arrow:hover {
        background: #008100;
        color: #ffffff;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .kaliteSlayt .slick-arrow::after {
        font-size: 16px;
        font-family: bootstrap-icons !important;
        display: inline-block;
    }

    .kaliteSlayt .slick-prev {
        left: -40px;
    }

    .kaliteSlayt .slick-prev::after {
        content: "\f284";
    }

    .kaliteSlayt .slick-next {
        right: -40px;
    }

    .kaliteSlayt .slick-next::after {
        content: "\f285";
    }

    .faaliyetAlan.sayfaDetay {
        background: white;
        padding-bottom: 50px;
    }

    .sayfaDetay .detay {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 40px;
    }

    .sayfaDetay .detay .resim {
        flex: 4;
        max-width: 40%;
        box-shadow: 0 0 5px gray;
        height: max-content;
    }

    .sayfaDetay .detay .resim img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sayfaDetay .detay .metin {
        flex: 6;
    }

    .sayfaDetay .detay .metin .tarih {
        display: block;
        font-size: 13px;
    }

    .sayfaDetay .detay .metin b.bas {
        display: block;
        margin: 10px 0;
        font-weight: bold;
        font-size: 16px;
    }

    .sayfaDetay .metinDetay p:not(:last-child) {
        margin-bottom: 15px;
    }

    .sayfaDetay .metin p:not(:last-child) {
        margin-bottom: 15px;
    }

    .galeriler {
        flex: unset;
        width: 100%;
        padding: 30px 0 0 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .galeriler .galeri {
        background: #fff;
        box-shadow: 0 0 5px #d9d9d9;
        padding: 5px;
    }

    .galeriler .galeri a {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .hizliBaglanti {
        flex: unset;
        width: 100%;
        padding: 30px 0;
    }

    .hizliBaglanti span.bas {
        display: block;
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 20px;
        position: relative;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding: 0 0 3px 10px;
    }

    .hizliBaglanti span.bas::before {
        content: "";
        z-index: 2;
        position: absolute;
        width: 80px;
        height: 1px;
        bottom: -1px;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .hizliBaglanti ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 0;
    }

    .hizliBaglanti ul li {
        display: block;
        width: calc(25% - 10px);
        max-width: 220px;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 0 10px -5px #888888;
        list-style: none;
        padding: 0;
        columns: unset;
        -webkit-columns: unset;
        -moz-columns: unset;
    }

    .hizliBaglanti ul li a::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: rgb(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
    }

    .hizliBaglanti ul li img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }

    .hizliBaglanti ul li::before {
        display: none;
    }

    .hizliBaglanti ul li a {
        display: block;
        font-weight: 400;
        position: relative;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hizliBaglanti ul li span.s {
        position: absolute;
        display: block;
        padding: 0 5px;
        text-align: center;
        left: 0;
        right: 0;
        width: 100%;
        top: 50%;
        color: #ffffff;
        z-index: 3;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .sirketler .sirket {
        padding: 30px 0;
    }

    .sirketler .sirket:nth-child(2n) {
        background: #F0EFEE;
    }

    .sirketler .sirket .box .head {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px 0;
        border-bottom: 1px solid rgb(112, 112, 112, 0.5);
        align-items: flex-end;
        align-items: end;
    }

    .sirketler .sirket .box .head .sol img {
        max-height: 70px;
    }

    .sirketler .sirket .box .head .sag {
        position: relative;
    }

    .sirketler .sirket .box .head .sag .buyuk {
        position: absolute;
        font-size: 38px;
        line-height: 50px;
        bottom: 0;
        z-index: 0;
        color: #F0EFEE;
        font-weight: 400;
    }

    .sirketler .sirket:nth-child(2n) .box .head .sag .buyuk {
        color: #E6E5E4;
    }

    .sirketler .sirket .box .head .sag .bas {
        position: relative;
        z-index: 2;
    }

    .sirketler .sirket .box .body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 15px;
    }

    .sirketler .sirket .box .body .sol p:not(:last-child) {
        margin-bottom: 15px;
    }

    .sirketler .sirket .box .body .sag .b {
        font-weight: 400;
    }

    .hizmetler .hizmet {
        padding: 30px 0;
    }

    .hizmetler .hizmet:nth-child(2n) {
        background: #F0EFEE;
    }

    .hizmetler .hizmet .box .head {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-end;
        padding: 0;
        height: 50px;
        border-bottom: 1px solid rgb(112, 112, 112, 0.5);
    }

    .hizmetler .hizmet:nth-child(2n) .box .head {
        justify-content: flex-end;
    }

    .hizmetler .hizmet .box .head .bas {
        position: relative;
        z-index: 2;
    }

    .hizmetler .hizmet .box .head .buyuk {
        position: absolute;
        font-size: 38px;
        line-height: 50px;
        bottom: 0;
        z-index: 0;
        color: #F0EFEE;
        font-weight: 400;
    }

    .hizmetler .hizmet:nth-child(2n) .box .head .buyuk {
        color: #E6E5E4;
    }

    .hizmetler .hizmet .box .body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-top: 30px;
    }

    .hizmetler .hizmet .box .body .sol p:not(:last-child) {
        margin-bottom: 15px;
    }

    .hizmetler .hizmet:nth-child(2n) .box .body .sol {
        order: 2;
    }

    .hizmetler .hizmet .box .body .sag .b {
        font-weight: 400;
    }

    .hizmetler .hizmet .box .body .metin ul {
        padding-left: 30px;
    }

    .hizmetler .hizmet a {
        color: #707070;
    }

    .hizmetler .hizmet .incele {
        display: block;
        width: max-content;
        position: relative;
        font-weight: 400;
        margin: auto;
    }

    .hizmetler .hizmet .incele::before {
        content: "";
        position: absolute;
        display: block;
        width: 50%;
        height: 1px;
        bottom: -3px;
        left: 0;
        right: 0;
        margin: auto;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .hizmetler .hizmet .incele:hover::before {
        width: 85%;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }


    .sayfaDetay .referanslar {
        background: #ffffff;
    }

    .referans-slayt.slick-slider {
        display: block;
    }

    .referans-slayt.slick-slider .resim {
        display: block !important;
        flex: 2;
        padding: 0 8px;
    }

    .referans-slayt.slick-slider .slick-list {
        margin: 0 -5px;
    }

    .referans-slayt .slick-arrow {
        position: absolute;
        top: calc(50% - 15px);
        padding: 0;
        z-index: 3;
        font-size: 0;
        background: #ffffff;
        color: #008100;
        border-radius: 0;
        border: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referans-slayt .slick-arrow:hover {
        background: #008100;
        color: #ffffff;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .referans-slayt .slick-arrow::after {
        font-size: 16px;
        font-family: bootstrap-icons !important;
        display: inline-block;
    }

    .referans-slayt .slick-prev {
        left: -40px;
    }

    .referans-slayt .slick-prev::after {
        content: "\f284";
    }

    .referans-slayt .slick-next {
        right: -40px;
    }

    .referans-slayt .slick-next::after {
        content: "\f285";
    }

    .sayfaDetay.ref {
        background: #F8F8F8;
    }

    .referans-slayt .referans {
        display: block !important;
        padding: 5px;
    }

    .referans-slayt .referans img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .sayfaDetay.ref .refDetay {
        padding: 30px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        gap: 20px 40px;
    }

    .sayfaDetay.ref .refDetay .solk {
        flex: 8;
    }

    .sayfaDetay.ref .refDetay .solk span.b {
        display: block;
        font-weight: 400;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .sayfaDetay.ref .refDetay .solk p:not(:last-child) {
        margin-bottom: 15px;
    }

    .sayfaDetay.ref .refDetay .sagk {
        width: calc(33.33% - 10px);
        background: #fff;
        box-shadow: 0 0 10px -5px #bfbfbf;
        border-radius: 5px;
        padding: 10px;
    }

    .sayfaDetay.ref .refDetay .sagk ul li {
        display: flex;
        flex-wrap: wrap;
        font-weight: 300;
        justify-content: space-between;
        position: relative;
        border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        padding: 5px 15px;
        margin-bottom: 10px;
    }

    .sayfaDetay.ref .refDetay .sagk ul li span {
        font-weight: 400;
    }

    .sayfaDetay.ref .refDetay .sagk ul li::before {
        content: "";
        width: 50px;
        height: 0;
        position: absolute;
        bottom: -1px;
        left: 15px;
        border-bottom: 1px solid rgb(255, 0, 0, 0.5);
    }

    .sayfaDetay .haberler {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .sayfaDetay .haberler .haber {
        border: 1px solid rgb(206, 206, 206, 0.5);
    }

    .sayfaDetay .haberler .haber .resim img {
        width: 100%;
    }

    .sayfaDetay .haberler .haber .metin {
        color: #5E5E5E;
        padding: 15px;
    }

    .sayfaDetay .haberler .haber .metin .tarih {
        display: block;
        font-size: 13px;
    }

    .sayfaDetay .haberler .haber .metin .bas {
        font-size: 14px;
        font-weight: 400;
        margin: 10px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .sayfaDetay .haberler .haber .metin .p {
        height: 42px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .sayfaDetay .haberler .haber .metin .incele {
        display: block;
        margin: 0 0 0 auto;
        width: max-content;
        position: relative;
    }

    .sayfaDetay .haberler .haber .metin .incele::before {
        content: "";
        position: absolute;
        display: block;
        width: 50%;
        height: 1px;
        bottom: -3px;
        left: 0;
        right: 0;
        margin: auto;
        background: #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .sayfaDetay .haberler .haber .metin .incele:hover::before {
        width: 85%;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .sayfaDetay .pagination {
        justify-content: center;
        padding: 30px 0 0 0;
        gap: 5px 20px;
    }

    .sayfaDetay .pagination .page-link {
        padding: 0;
        border: unset;
        color: #2C2C2C;
        background: unset;
        outline: none;
        box-shadow: unset;
    }

    .sayfaDetay .pagination .page-item:first-child {
        margin-right: 15px;
    }

    .sayfaDetay .pagination .page-item:last-child {
        margin-left: 15px;
    }

    .sayfaDetay .pagination .page-item:first-child .page-link,
    .sayfaDetay .pagination .page-item:last-child .page-link {
        color: #008100;
    }

    .sayfaDetay .pagination .page-item.disabled .page-link {
        color: rgb(255, 15, 15, 0.4);
    }

    .sayfaDetay .pagination .page-item.active .page-link {
        border-bottom: 1px solid #008100;
        color: #5E5E5E;
    }

    .sayfaDetay .harita {
        width: 100%;
        height: 350px;
        margin: 30px 0;
    }

    .sayfaDetay .harita iframe {
        width: 100%;
        height: 350px;
    }

    .sayfaDetay .iletisimBilgi {
        display: flex;
        gap: 25px 50px;
        flex-wrap: wrap;
    }

    .sayfaDetay .iletisimBilgi .solk {
        width: 340px;
        background: #F2F1F0;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 30px;
    }

    .sayfaDetay .iletisimBilgi .solk span.b {
        display: block;
        width: max-content;
        margin: 0 auto;
        position: relative;
        font-size: 24px;
        line-height: 28px;
        color: #5E5E5E;
    }

    .sayfaDetay .iletisimBilgi .solk span.b::before {
        content: "";
        width: 30px;
        height: 1px;
        background: #008100;
        position: absolute;
        left: 0;
        bottom: -2px;
        right: 0;
        margin: auto;
    }

    .sayfaDetay .iletisimBilgi .solk ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sayfaDetay .iletisimBilgi .solk ul li {
        width: 100%;
        display: block;
        list-style: none;
        font-size: 16px;
        color: #000;
    }

    .sayfaDetay .iletisimBilgi .solk ul li span {
        color: #5E5E5E;
    }

    .sayfaDetay .iletisimBilgi .solk ul.sos li {
        width: max-content;
        font-size: 18px;
    }

    .sayfaDetay .iletisimBilgi .solk ul.sos li a {
        color: #5E5E5E;
    }

    .sayfaDetay .iletisimBilgi .sagk {
        flex: 6;
        padding: 15px 0 0 15px;
    }

    .sayfaDetay .iletisimBilgi .sagk span.b {
        font-size: 20px;
        color: #000;
        border-bottom: 1px solid #dedede;
        display: block;
        max-width: 75%;
        margin-bottom: 30px;
        padding-bottom: 5px;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .form-group {
        width: 100%;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .form-group label {
        display: block;
        padding-bottom: 5px;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .form-control {
        padding: 10px 15px;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .form-group.yarim {
        width: calc(50% - 10px);
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .onayGonder {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        color: #5E5E5E;
        justify-content: space-between;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .onayGonder a {
        color: #000;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .btn-gonder {
        position: relative;
        box-shadow: unset;
        outline: none;
        padding: 6px 30px;
        color: #5E5E5E;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .btn-gonder::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 0;
        border-left: 1px solid #008100;
        border-top: 1px solid #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .btn-gonder::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 0;
        bottom: 0;
        border-right: 1px solid #008100;
        border-bottom: 1px solid #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .btn-gonder:hover::before {
        width: 75%;
        height: 25px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .sayfaDetay .iletisimBilgi .sagk .iForm .btn-gonder:hover::after {
        width: 75%;
        height: 25px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }


    .blog-widget {
        padding: 10px 30px;
        color: black;
        margin: 10px 0px 10px 0px;
    }

    .blog-widget h5 a {
        color: black;
    }

    .blog-widget .category-list li {
        padding: 5px 0;
        border-bottom: 1px solid #E8E8E8;
        font-weight: 300;
        font-size: 13px;
        list-style: none;
    }

    .blog-widget .category-list li a i {
        margin-right: 10px;
    }

    .blog-widget .category-list li:last-child {
        border-bottom: none;
    }

    .blog-widget h5 {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
    }

    .blog-widget .category-list li a {
        color: black;
    }




    .blog-widget-s {
        padding: 10px 30px;
        color: black;
        margin: 10px 0px 10px 0px;
    }

    .blog-widget-s h5 a {
        color: white;
    }

    .blog-widget-s .category-list li {
        padding: 5px 0;
        border-bottom: 1px solid #E8E8E8;
        font-weight: 300;
        font-size: 13px;
        list-style: none;
    }

    .blog-widget-s .category-list li a i {
        margin-right: 10px;
    }

    .blog-widget-s .category-list li:last-child {
        border-bottom: none;
    }

    .blog-widget-s h5 {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
    }

    .blog-widget-s .category-list li a {
        color: black;
    }


    .category-list {
        margin-bottom: 30px;
    }

    .category-list  .fa-file-pdf:before {
        content: "\f1c1";
        font-size: 22px;
    }

    #cevapModal .basarili .checkmark {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: block;
        stroke-width: 2;
        stroke: #4bb71b;
        stroke-miterlimit: 10;
        box-shadow: inset 0px 0px 0px #4bb71b;
        animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
        position: relative;
        top: 5px;
        right: 5px;
        margin: 0 auto;
    }

    #cevapModal .basarili .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #4bb71b;
        fill: #fff;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    #cevapModal .basarili .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }

    @keyframes stroke {
        100% {
            stroke-dashoffset: 0;
        }
    }

    @keyframes scale {

        0%,
        100% {
            transform: none;
        }

        50% {
            transform: scale3d(1.1, 1.1, 1);
        }
    }

    @keyframes fill {
        100% {
            box-shadow: inset 0px 0px 0px 30px #4bb71b;
        }
    }

    span.cevap {
        font-size: 18px;
        display: block;
        text-align: center;
        font-weight: 300;
        margin-top: 20px;
    }

    .ikSayfa {
        color: #5E5E5E;
        font-size: 14px;
    }

    .ikSayfa .metin {
        text-align: center;
        margin-bottom: 20px;
    }

    .ikSayfa .metin b {
        display: block;
        font-weight: 400;
        font-size: 16px;
    }

    .ikSayfa .metin p:not(:last-child) {
        margin-bottom: 15px;
    }

    .ikSayfa .ikForm {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 30px;
        max-width: 700px;
        margin: auto;
        width: 100%;
    }

    .ikSayfa .ikForm .form-group {
        width: 100%;
    }

    .ikSayfa .ikForm .yarim {
        width: calc(50% - 15px);
    }

    .ikSayfa .ikForm .form-control {
        color: #6e6e6e;
    }

    .ikSayfa .ikForm .dosya label {
        margin: 0;
    }

    .ikSayfa .ikForm textarea {
        min-height: 120px;
    }

    .ikSayfa .ikForm .onayGonder {
        width: 100%;
    }

    .ikSayfa .ikForm .onayGonder a {
        color: #000;
        text-decoration: underline;
    }

    .ikSayfa .ikForm .onayGonder .btn-primary {
        display: block;
        margin: auto;
    }

    .ikSayfa .pozisyonlar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
        margin: 50px 0;
    }

    .ikSayfa .pozisyonlar .site {
        background: #ffffff;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 0 5px -2px gray;
    }

    .ikSayfa .pozisyonlar .logo {
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 5px;
        border-bottom: 1px solid #cacaca;
    }

    .ikSayfa .pozisyonlar .logo img {
        max-height: 40px;
    }

    .ikSayfa .pozisyonlar .satir {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        gap: 10px;
        justify-content: space-between;
        line-height: 18px;
    }

    .ikSayfa .pozisyonlar .satir:nth-child(2n+1) {
        background: #f1f1f1;
    }

    .ikSayfa .pozisyonlar .satir .incele {
        background: #0a66c2;
        color: #fff;
        padding: 5px 10px;
        border-radius: 3px;
        font-weight: 400;
        font-size: 15px;
    }

    .ikSayfa .btn-gonder {
        position: relative;
        box-shadow: unset;
        outline: none;
        padding: 6px 30px;
        color: #5E5E5E;
        display: block;
        margin: 30px auto 0 auto;
    }

    .ikSayfa .btn-gonder::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 0;
        border-left: 1px solid #008100;
        border-top: 1px solid #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .ikSayfa .btn-gonder::after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 0;
        bottom: 0;
        border-right: 1px solid #008100;
        border-bottom: 1px solid #008100;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .ikSayfa .btn-gonder:hover::before {
        width: 75%;
        height: 25px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .ikSayfa .btn-gonder:hover::after {
        width: 75%;
        height: 25px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .aramaSonuclari {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 30px 0;
    }

    .aramaSonuclari .sonuc a {
        box-shadow: 0 0 5px -2px gray;
        display: block;
        padding: 15px;
        border-radius: 5px;
        color: #313131;
        font-size: 14px;
        line-height: 18px;
        background-color: #ffffff;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    .aramaSonuclari .sonuc a:hover {
        background: #008100;
        color: #ffffff;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

    @media (max-width: 1200px) {
        section {
            padding: 30px 0;
        }

        .container-fluit {
            width: calc(100% - 30px);
        }

        .container {
            max-width: calc(100% - 60px);
            overflow: hidden;
        }

        .anaSlayt .slayt .metin {
            left: 15px;
        }

        .faaliyetSlayt .slick-prev {
            left: 0;
        }

        .faaliyetSlayt .slick-next {
            right: 0;
        }

        .haberSlayt .slick-prev {
            left: 0;
        }

        .haberSlayt .slick-next {
            right: 0;
        }

        .kaliteSlayt .slick-prev {
            left: 0;
        }

        .kaliteSlayt .slick-next {
            right: 0;
        }

        .referans-slayt .slick-prev {
            left: 0;
        }

        .referans-slayt .slick-next {
            right: 0;
        }

        header .menu>ul.m {
            position: absolute;
            z-index: 9;
            left: -100%;
            top: 63px;
            background: #f4f4f4;
            height: calc(100vh - 63px);
            display: block;
            width: 100%;
            padding: 30px;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        header .menu>ul.m li a {
            display: block;
            padding: 10px;
            color: #181818;
            font-size: 16px;
            text-align: center;
        }

        header .menu.ac>ul.m {
            left: 0;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        header .menu {
            flex: unset;
            gap: 20px;
            align-items: center;
        }

        header .mobilMenu {
            display: block;
            order: 2;
            width: 24px;
            text-align: left;
            height: 26px;
            position: relative;
            right: 0;
        }

        header .mobilMenu span {
            width: 100%;
            height: 0;
            color: #ffffff;
            border-radius: 2px;
            border-bottom: 1px solid;
            position: absolute;
            top: calc(50% - 1px);
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        header .mobilMenu span::before {
            display: block;
            content: "";
            width: 24px;
            height: 0;
            border-bottom: 1px solid;
            position: absolute;
            border-radius: 2px;
            transform: translateY(-8px);
            -webkit-transform: translateY(-8px);
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        header .mobilMenu span::after {
            display: block;
            content: "";
            width: 24px;
            height: 0;
            border-bottom: 1px solid;
            position: absolute;
            border-radius: 2px;
            transform: translateY(8px);
            -webkit-transform: translateY(8px);
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        header .menu.ac .mobilMenu span {
            width: 0;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        header .menu.ac .mobilMenu span::before {
            transform: rotate(-45deg) translate(0px);
            -webkit-transform: rotate(-45deg) translate(0px);
        }

        header .menu.ac .mobilMenu span::after {
            transform: rotate(45deg) translate(0px);
            -webkit-transform: rotate(45deg) translate(0px);
        }

        header.bg .menu .mobilMenu span {
            color: #000;
        }

        header .alt .menu>ul {
            display: none;
            position: absolute;
            background: #324eaf;
            top: 65px;
            left: 0;
            width: 100%;
            height: calc(100vh - 65px);
            overflow: hidden auto;
            padding: 20px;
        }

        header .alt .menu>ul>li {
            border-bottom: 1px solid #2e4699;
            width: 100%;
            height: max-content;
        }

        header .alt .menu>ul>li:last-child {
            border-bottom: unset;
        }

        header .alt .menu>ul>li.dil {
            border-bottom: unset;
            background: #405bb7;
            margin: 15px 0;
        }

        header .alt .menu>ul>li.dil a {
            padding: 10px;
            gap: 10px;
            color: #fff;
            font-size: 14px;
        }

        header .menu>ul>li.aktif>a::after {
            background: rgba(142, 142, 142, 0.5);
        }

        header.bg .menu>ul>li.aktif>a::after {
            background: rgba(142, 142, 142, 0.5);
        }

        header .alt .menu>ul>li.dil ul {
            display: none;
        }

        header .alt .menu>ul>li.dil img {
            height: 20px;
        }

        header .alt .menu>ul>li.dil a {
            display: block;
        }

        header .alt .menu>ul>li.dil.ac ul {
            display: block;
        }

        header .alt .menu>ul>li.sosyal {
            width: max-content;
            border-bottom: unset;
        }

        header .alt .menu>ul>li.sosyal a {
            font-size: 24px;
            padding: 0;
        }

        header .alt .menu>ul>li>a {
            height: auto;
            padding: 10px 0;
            font-size: 16px;
            color: #ffffff;
        }

        header .alt .menu>ul>li.acilir>a {
            pointer-events: all;
        }

        header .alt .menu>ul>li.acilir>a::after {
            content: "\f078";
            font-weight: 900;
            font-family: "Font Awesome 6 Free";
            font-size: 14px;
            position: absolute;
            right: 20px;
        }

        header .alt .menu.ac>ul {
            display: flex;
            flex-wrap: wrap;
        }

        header .alt .menu>ul>li.acilir>ul {
            position: relative;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: translateX(0px);
            column-count: 1;
            width: 100%;
            padding: 0 10px;
            background: #405bb7;
            transition: unset;
            -moz-transition: unset;
            -webkit-transition: unset;
        }

        header .alt .menu>ul>li.acilir:hover>ul {
            display: none;
            transition: unset;
            -moz-transition: unset;
            -webkit-transition: unset;
        }

        header .alt .menu>ul>li:hover>a {
            background: unset;
            color: #ffffff;
        }

        header .dilAra {
            margin: 0 0 0 auto;
        }

        header .dilAra li.ara {
            position: unset;
        }

        header .dilAra li.ara .sitedeara {
            right: 15px;
        }

        .referanslar .refTab .box {
            grid-template-columns: repeat(3, 1fr);
        }

        .sayfaKusak {
            min-height: 240px;
        }

        .sayfaKusak h1.b {
            margin-bottom: 30px;
            font-size: 28px;
        }

        section h4.bas {
            font-size: 28px;
        }

        .hizmetlerimiz #hizmetSlayt .hizmet {
            width: 60%;
        }

        .hizmetlerimiz #hizmetSlayt .hizmet .metin {
            left: 0;
            width: 100%;
            height: 200px;
        }
        footer .sag .kutu .k span.bas {
            font-size: 13px;
            width: 100%;
    
        }
    
        footer .middle .kutu .k span.bas {
            font-size: 13px;
            width: 100%;
    
        }

    }

    @media (max-width: 768px) {
        .sayfaKusak .breadcrumb .breadcrumb-item {
            color: #ffffff;
            font-size: 14px;
            margin-left: 10px;
        }

        .sayfaKusak .breadcrumb {
            flex-wrap: nowrap;
            white-space: nowrap;
            overflow: auto;
            margin-left: 16px;
        }

        .referanslar .refTab .box {
            display: none;
        }

        .referanslar .refTab .box-mobile {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
        .sliders {
            height: 100%;
        }


        .anaSlayt .slayt .metin {
            color: #ffffff;
            display: block;
            width: max-content;
            max-width: 1080px;
            padding: 30px;
            position: absolute;
            height: auto;
            left: calc((100% - 1350px) / 2);
            top: 50%;
            -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
        }

        .anaSlayt .slayt .metin {
            left: 15px;
            width: 100%;
        }

        .anaSlayt .slayt .metin span.bas {
            display: block;
            margin-bottom: 20px;
            width: 100%;
            text-shadow: 0px 0px 30px #000000;
            font-size: 30px;
            font-weight: 100;
            line-height: 30px;
            opacity: 0;
            -webkit-opacity: 0;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        .anaSlayt .rakamlar ul li p {
            margin: 0 auto;
            font-size: 12px;
            font-weight: 400;
            padding: 0;
            line-height: 1rem;
            max-width: 135px;
        }

        .anaSlayt .rakamlar ul li {
            font-size: 20px;
            line-height: 25px;
            font-weight: 300;
            width: 20%;
            display: block;
            list-style: none;
            color: rgb(255, 255, 255, 0.5);
            position: relative;
            transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
        }

        .anaSlayt .rakamlar ul li {
            font-size: 20px;
            line-height: 25px;
            font-weight: 300;
            width: 20%;
            display: block;
            list-style: none;
            color: rgb(255, 255, 255, 0.5);
            position: relative;
            transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
        }


        .faaliyetler {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .faaliyet .resim {
            position: relative;
            height: 0;
            padding-bottom: 70%;
            overflow: hidden;
            transform: rotateY(0deg);
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }

        .faaliyet .resim .bas {
            position: absolute;
            font-size: 14px;
            font-weight: 400;
            -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
            z-index: 2;
            top: 50%;
            color: #fff;
            display: block;
            width: 60%;
            margin: auto;
            right: 0;
            left: 0;
            text-align: center;
            text-shadow: 0 0 5px black;
        }


        .referanslar2 .refTab .box {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            padding: 5px 0;
            gap: 10px;
            width: 100%;
            margin: 15px 0 50px 0;
        }

        .referanslar2 .referans {
            position: relative;
            width: 100%;
            padding: 0;
            cursor: pointer;
            box-shadow: 0 0 5px -3px #9f9e9e;
            height: 21vw;
            overflow: hidden;
        }

       

        .galeriler {
            flex: unset;
            width: 100%;
            padding: 30px 0 0 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .sayfaDetay .detay .resim {
            flex: none;
            max-width: 100%;
            box-shadow: 0 0 5px gray;
            height: max-content;
        }

        .blog-widget {
            display: none;
        }


        .container {
            max-width: 100%;
            padding: 5px 15px;
        }

        .container-fluit {
            max-width: 100%;
            padding: 0 15px;
        }

        .referanslar .refTab .box {
            grid-template-columns: repeat(2, 1fr);
            margin: 15px 0;
        }

        .referanslar .referans {
            height: auto;
        }

        .hizmetlerimiz #hizmetSlayt .hizmet span.bas2 {
            display: none;
        }

        section h4.bas {
            font-size: 24px;
            color: #373737;
            max-width: 100%;
        }

        .anaSlayt {
            height: 100%;
            overflow: hidden;
        }

        .anaSlayt .slayt {
            height: calc(100% - 142px);
        }

        .anaSlayt .slayt .swiper-pagination {
            background: rgba(14, 33, 62, 0.8);
        }

        .anaSlayt .rakamlar {
            padding: 10px 15px;
            background: #000000d6;
        }

        .anaSlayt .rakamlar ul {
            flex-wrap: wrap;
            gap: 10px;
        }

        .anaSlayt .rakamlar ul li {
            width: calc(33.33% - 7px);
            font-size: 18px;
            line-height: 24px;
        }

        .anaSlayt .rakamlar ul li::before {
            right: -5px;
            border-right: 1px solid rgba(0, 0, 0, 0.5);
        }

        .anaSlayt .rakamlar ul li:nth-child(3):before {
            display: none;
        }

        .anaSlayt .rakamlar ul li p {
            font-size: 12px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .anaSlayt .slayt .metin {
            left: 15px;
            width: calc(100% - 30px);
            padding: 30px;
            max-width: 100%;
        }

        .anaSlayt .slayt .metin span.bas {
            margin-bottom: 15px;
            font-size: 24px;
            line-height: 28px;
        }

        .anaSlayt .slayt .metin::before {
            width: 40px;
            height: 40px;
        }

        .anaSlayt .slayt .metin::after {
            width: 40px;
            height: 40px;
        }

        .altKusak .kutu>div {
            width: 100%;
            text-align: center;
        }

        .altKusak .kutu .algoJS {
            order: 2;
        }

        .altKusak .kutu>div:nth-child(3) {
            text-align: center;
        }

        .hizmetlerimiz #hizmetSlayt .hizmet .metin {
            left: -20px;
            width: calc(100% + 40px);
        }

        .hizmetlerimiz #hizmetSlayt .hizmet {
            width: calc(100% - 60px);
        }

        footer {
            padding: 15px 0;
        }
    
        footer .sol .logo {
            max-width: 100%;
            text-align: center;
        }
    
        footer .sol ul.il {
            font-size: 14px;
        }
    
        footer .sol ul.il a {
            flex-wrap: wrap;
            text-align: center;
            justify-content: center;
            gap: 0;
        }
    
        footer .sol ul.il a span {
            display: block;
            width: 100%;
        }
    
    
    
        footer .middle .kutu .k:hover span.bas::before {
            width: 60%;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }
    
        footer .middle .kutu .k span.bas {
            font-weight: 400;
            color: #2c2c2c;
            padding: 0;
            text-align: center;
            margin: 0 auto 20px;
    
        }
    
        footer .sag .kutu .k span.bas::before {
            content: "";
            width: 70px;
            height: 1px;
           background: #008100;
            position: absolute;
            left: 0;
            bottom: -1px;
            right: 0;
            margin: auto;
        }
    
        footer .middle .kutu .k span.bas {
            display: block;
            width: 100%;
            font-size: 14px;
            margin-bottom: 20px;
            position: relative;
            border-bottom: 1px solid rgb(94, 94, 94, 0.5);
        }
    
        footer .middle .kutu .k span.bas::before {
            content: "";
            z-index: 2;
            position: absolute;
            width: 60px;
            left: 40%;
            height: 1px;
            bottom: -1px;
           background: #008100;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }
    
        footer .sag .kutu .k span.bas {
            font-weight: 400;
            color: #2c2c2c;
            padding: 0;
            text-align: center;
            width: 100%;
        }
    
        footer .sag .kutu .k {
            padding: 0 10px;
            margin-bottom: 10px;
            padding: 0;
        }
    
        footer .middle {
            margin-top: 0px;
        }
    
        footer .sag .kutu .k ul.ha li {
            border: unset;
        }
    
        footer .middle ul.il li a i {
            font-size: 18px;
            padding-right: 10px;
        }
    
        footer .sol ul.sos {
            padding: 10px 0 30px 0;
            justify-content: center;
        }
    
        footer .map {
            text-align: center;
            margin-top: 30px
        }
    
        footer .map iframe {
            max-width: 700px;
            width: 100%;
        }
        .sayfaKusak {
            min-height: 180px;
        }

        .sayfaKusak h1.b {
            margin-bottom: 10px;
            font-size: 24px;
            margin-left: 16px;
        }

        .sayfaDetay .tarihce {
            left: 0;
        }

        .sayfaDetay .tarihce li {
            text-align: center;
            padding: 0;
            gap: 10px;
            left: 0;
            width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .sayfaDetay .tarihce li:nth-child(2n) {
            left: 0;
            text-align: center;
            padding: 0;
            justify-content: center;
        }

        .sayfaDetay .tarihce li::before,
        .sayfaDetay .tarihce li::after {
            display: none;
        }

        .sayfaDetay .tarihce li .tarih {
            position: relative;
            left: 0;
        }

        .sayfaDetay .tarihce li:nth-child(2n) .tarih {
            left: 0;
            right: unset;
        }

        .sayfaDetay .ikiliMetin {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        .sayfaDetay .detay .resim {
            width: 100%;
            max-width: 100%;
            flex: unset;
        }

        .sayfaDetay .detay .metin {
            flex: unset;
            width: 100%;
        }

        .sayfaTablar {
            padding: 20px 0;
        }

        .sayfaTablar .nav-pills {
            padding: 10px 0;
            justify-content: center;
        }

        .sayfaTablar .nav-pills .nav-item {
            padding: 10px;
        }

        .sayfaTablar .tab-pane .kutu {
            gap: 20px;
        }

        .sayfaTablar .tab-pane .kutu .resim {
            flex: unset;
            width: 100%;
        }

        .sayfaTablar .tab-pane .kutu .metin {
            flex: unset;
            width: 100%;
        }

        .kaliteKutu ul {
            padding: 20px 0;
            columns: 1;
            -webkit-columns: 1;
            -moz-columns: 1;
            padding-left: 15px;
        }

        .hizliBaglanti ul {
            padding: 0;
            gap: 10px;
        }

        .faaliyetler {
            grid-template-columns: repeat(1, 1fr);
        }

        .galeriler {
            grid-template-columns: repeat(3, 1fr);
        }

        .hizmetler .hizmet {
            padding: 20px 0;
        }

        .hizmetler .hizmet .box .body {
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
            padding-top: 10px;
        }

        .hizmetler .hizmet .box .body .metin ul {
            padding-left: 15px;
        }

        .hizmetler .hizmet .box .body .metin ul li {
            margin-bottom: 5px;
        }

        .hizmetler .hizmet:nth-child(2n) .box .head {
            justify-content: flex-start;
        }

        .hizmetler .hizmet:nth-child(2n) .box .body .sol {
            order: 0;
        }

        .sirketler .sirket .box .head {
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
            padding: 10px 0;
        }

        .sirketler .sirket .box .head .sol img {
            max-height: 60px;
        }

        .sirketler .sirket .box .head .sag .buyuk {
            display: none;
        }

        .sirketler .sirket .box .body {
            grid-template-columns: repeat(1, 1fr);
        }

        .sayfaDetay.ref .refDetay .solk {
            flex: unset;
            width: 100%;
            order: 2;
        }

        .sayfaDetay.ref .refDetay .sagk {
            width: 100%;
        }

        .sayfaDetay .haberler {
            grid-template-columns: repeat(1, 1fr);
        }

        .sayfaDetay .iletisimBilgi .solk {
            width: 100%;
        }

        .sayfaDetay .iletisimBilgi .sagk {
            flex: unset;
            padding: 0;
            width: 100%;
        }

        .faaliyetSlayt .slick-list {
            margin: 0;
        }

        .faaliyetSlayt .slick-slide>div {
            padding: 10px 0;
        }

        .faaliyetSlayt .faaliyet:nth-child(n+3) {
            display: none;
        }

        .faaliyetSlayt .faaliyet:hover .resim {
            opacity: 1;
            transform: rotateY(0deg);
        }

        .faaliyetSlayt .faaliyet:hover .metin {
            opacity: 0;
        }

        .ikSayfa .pozisyonlar {
            grid-template-columns: repeat(1, 1fr);
        }

        .ikSayfa .ikForm .yarim {
            width: 100%;
        }

        .aramaSonuclari {
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
        }

    }

    @media (max-width: 400px) {}

    @media (min-width: 1900px) {
        .container {
            max-width: 1300px;
        }

        .container-fluit {
            width: calc(100% - 60px);
            max-width: 1600px;
            padding: 0;
            margin: 0 auto;
        }

        header {
            padding: 12px 0;
        }

        .btn-tumu {
            font-size: 18px;
        }

        section h4.bas {
            font-size: 30px;
        }

        header .logo img {
            height: 53px;
        }

        header .menu>ul>li>a {
            font-size: 16px;
        }

        header .menu>ul.dilAra {
            gap: 0 33px;
        }

        header .menu>ul.dilAra>li.dil a {
            font-size: 15px;
        }

        header .menu>ul.dilAra>li.dil .bi-globe {
            font-size: 18px;
        }

        .anaSlayt .slayt .metin {
            left: calc((100% - 1600px) / 2);
        }

        .anaSlayt .rakamlar {
            padding: 42px 0 23px 0;
        }

        .anaSlayt .rakamlar ul {
            max-width: 65%;
        }

        .anaSlayt .rakamlar ul li {
            font-size: 40px;
        }

        .anaSlayt .rakamlar ul li p {
            font-size: 16px;
            line-height: 20px;
            max-width: 145px;
        }

        .faaliyetAlan {
            font-size: 18px;
        }

        .faaliyetSlayt .faaliyet .resim .bas {
            font-size: 18px;
            width: 50%;
        }

        .faaliyetAlan .kutu {
            max-width: 100%;
        }

        .faaliyetAlan .kutu .metin b {
            font-size: 20px;
        }

        .faaliyetAlan .kutu1 {
            max-width: 100%;
        }

        .faaliyetAlan .kutu1 .metin b {
            font-size: 20px;
        }

        .hizmetlerimiz {
            font-size: 18px;
        }

        .hizmetlerimiz .kutu {
            max-width: 100%;
        }

        .hizmetlerimiz .kutu .metin b {
            font-size: 20px;
        }

        .hizmetlerimiz .hizmetSlayt .hizmet .metin {
            width: 200%;
            left: -50%;
        }

        .hizmetlerimiz .hizmetSlayt .hizmet .metin span.bas {
            font-size: 20px;
        }

        .referanslar {
            font-size: 18px;
        }

        .referanslar .kutu {
            max-width: 100%;
        }

        .referanslar .kutu .metin b {
            font-size: 20px;
        }

        .referanslar .tabSlayt {
            gap: 60px;
        }

        .referanslar .tabSlayt .nav-item .nav-link {
            font-size: 18px;
        }

        .referanslar .tabSlayt .nav-item .nav-link::before {
            right: -30px;
        }

        section.haberler {
            font-size: 18px;
        }

        section.haberler .kutu {
            max-width: 100%;
        }

        section.haberler .kutu .metin b {
            font-size: 20px;
        }

        .haberSlayt .haber .metin p.p {
            font-size: 16px;
        }

        .haberSlayt .haber .metin a {
            font-size: 16px;
        }

        footer {
            font-size: 16px;
        }
    
        footer .sol .logo img {
            height: 60px;
        }
    
        footer .sol .logo p {
            margin: 15px 0;
        }
    
        footer .sol ul.il li a {
            font-size: 15px;
        }
    
        footer .sol ul.il li a i {
            font-size: 20px;
            line-height: 26px;
        }
    
        footer .sol ul.sos li a {
            width: 26px;
            height: 26px;
            font-size: 14px;
        }
    
        footer .sag .kutu .k span.bas {
            font-size: 18px;
            border-bottom: 2px solid rgba(94, 94, 94, 0.5);
        }
    
        footer .sag .kutu .k a {
            font-size: 15px;
            line-height: 26px;
        }
    
        footer .sag .kutu .k span.bas::before {
            height: 2px;
            bottom: -2px;
        }
    
        footer .middle .kutu .k span.bas {
            font-size: 18px;
            border-bottom: 2px solid rgba(94, 94, 94, 0.5);
        }
    
        footer .middle .kutu .k a {
            font-size: 15px;
            line-height: 26px;
        }
    
        footer .middle .kutu .k span.bas::before {
            height: 2px;
            bottom: -2px;
        }
    
        footer .middle ul.il li a {
            font-size: 15px;
        }
    
        footer .middle ul.il li a i {
            padding-right: 10px;
            font-size: 20px;
            line-height: 26px;
        }
    
        footer .map iframe {
            width: 400px;
        }
    }

    @media (prefers-reduced-motion: no-preference) {
        :root {
            scroll-behavior: auto;
        }
    }

    .error-notice{
        margin:5px; /* Make sure to keep some distance from all sides */
      }
      
      .oaerror{
        width:100%;
        background-color: #ffffff;
        padding:10px;
        border:1px solid #eee;
        border-left-width:5px;
        border-radius: 3px;
        opacity : 1; transition:opacity 1s;
        margin:10px auto;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
      }
      
      .danger{
        border-left-color: #d9534f; /* Left side border color */
        background-color: rgba(217, 83, 79, 0.1); /*Same color as the left border with reduced alpha to 0.1*/
      }
      
      .danger strong{
        color:#d9534f;
      }
      
      .warning{
        border-left-color: #f0ad4e;
        background-color: rgba(240, 173, 78, 0.1);
      }
      
      .warning strong{
        color:#f0ad4e;
      }
      
      .info {
        border-left-color: #5bc0de;
        background-color: rgba(91, 192, 222, 0.1);
      }
      
      .info strong {
        color: #5bc0de;
      }
      
      .success {
        border-left-color: #2b542c;
        background-color: rgba(43, 84, 44, 0.1);
      }
      
      .success strong {
        color: #2b542c;
      }      