<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}


:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #282828;
    --accent-color: #1670b1;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --renk2: #03305d;
}


:root {
    --nav-color: #000000;
    --nav-hover-color: #0168b3;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #0168b3;
}

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}


:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow: hidden;
    overflow-x: hidden !important;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.loader {
    position: absolute;
    z-index: 1035 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* BaÅŸlangÄ±Ã§ta logo gÃ¶rÃ¼nmez */
    width: 100%;
    height: 100%;
    animation: showLogo .1s forwards; /* Logo yavaÅŸÃ§a gÃ¶rÃ¼nsÃ¼n */
}

    .loader::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 1;
        transform: translateY(0%); /* BaÅŸlangÄ±Ã§ta tamamen aÅŸaÄŸÄ±da */
    }

#logo {
    width: 100%;
    height: 100%;
    opacity: 1;
    animation: growShrink 2s ease-in-out 2s forwards; /* 2 saniye bekledikten sonra animasyon baÅŸlar */
}

@keyframes showLogo {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes growShrink {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(30);
        opacity: 0;
    }
}

}

.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .header .logo {
        display: block;
        transition: .5s;
    }

    .header .logo2 {
        display: none;
        transition: .5s;
    }

    .header .logo img {
        max-height: 50px;
    }

.scrolled .header .logo {
    display: none;
    transition: .5s;
}

.scrolled .header .logo2 {
    display: block;
    transition: .5s;
}

    .scrolled .header .logo2 img {
        max-height: 50px;
    }


.menubg {
    width: 100%;
    padding: 10px 100px;
    background-color: transparent;
    transition: .5s;
    border-bottom: 1px solid #ffffff6b;
}

.scrolled .menubg {
    background-color: #fff;
    transition: .5s;
}

@media (max-width: 1200px) {

        .header .logo h1 {
            font-size: 24px;
        }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgb(255, 255, 255);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu &gt; ul &gt; li {
            white-space: nowrap;
            padding: 0px;
        }

            .navmenu &gt; ul &gt; li:last-child {
                padding-right: 0;
            }


    .scrolled .navmenu a,
    .scrolled .navmenu a:focus {
        color: color-mix(in srgb, var(--nav-color), transparent 30%);
        font-size: 15px;
        padding: 10px ;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: color-mix(in srgb, #fff, transparent 0%);
        font-size: 15px;
        padding: 10px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

        .navmenu a i,
        .navmenu a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
            transition: 0.3s;
        }

    .navmenu &gt; ul &gt; li &gt; a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -16px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover &gt; a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }


    .navmenu li:hover &gt; a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #fff;
    }

    .scrolled .navmenu li:hover &gt; a,
    .scrolled .navmenu .active,
    .scrolled .navmenu .active:focus {
        color: var(--nav-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

        .navmenu .dropdown ul li {
            min-width: 200px;
        }

        .navmenu .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
            color: var(--nav-dropdown-color);
        }

            .navmenu .dropdown ul a i {
                font-size: 12px;
            }

            .navmenu .dropdown ul a:hover,
            .navmenu .dropdown ul .active:hover,
            .navmenu .dropdown ul li:hover &gt; a {
                color: var(--nav-dropdown-hover-color);
            }

    .navmenu .dropdown:hover &gt; ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover &gt; ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #fff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
        margin-left: 20px;
    }

    .scrolled .mobile-nav-toggle {
        color: #0074e0;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
        margin-left:20px;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown &gt; .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu &gt; ul {
                display: block;
            }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    transition: all 0.4s;
    border-radius: 30px;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }



.banneralan {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
}

    .banneralan::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background-color: #00000052;
        width: 100%;
        height: 100%;
        z-index: 9;
    }


    .banneralan .square-icons {
        bottom: 0;
        position: absolute;
        right: 0;
        z-index: 15;
    }

        .banneralan .square-icons .square-lg {
            background-color: #ffffffc2;
            height: clamp(6.375rem, 5.0833333333rem + 4.3055555556vw, 10.25rem);
            position: relative;
            width: clamp(6.375rem, 5.0833333333rem + 4.3055555556vw, 10.25rem);
            border-radius:50%;
        }

        .banneralan .square-icons .square-sm {
            background-color: #ffffff87;
            height: clamp(3.1875rem, 2.5416666667rem + 2.1527777778vw, 5.125rem);
            left: 0;
            position: absolute;
            top: 0;
            transform: translate(-100%, -100%);
            width: clamp(3.1875rem, 2.5416666667rem + 2.1527777778vw, 5.125rem);
            border-radius: 50%;
        }

.carousel-control-next, .carousel-control-prev {
    z-index: 40;
}

.carousel-caption {
    position: absolute;
    top: 40%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    z-index: 9;
}

    .carousel-caption h5 {
        color: #fff;
        font-size: 4rem;
        font-weight: bold;
    }

    .carousel-caption p {
        color: #fff;
        font-size: 2rem;
        font-weight: 400;
    }

        .carousel-caption p span, .carousel-caption p strong {
            color: #fff;
            font-size: 2rem;
        }



    .carousel-caption .carousel-text h5,
    .carousel-caption .carousel-text p {
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    }

.carousel-item.active .carousel-caption .carousel-text h5,
.carousel-item.active .carousel-caption .carousel-text p {
    transform: translateY(0);
    opacity: 1;
}


.titleHome {
    font-size: 2.875rem;
    font-family: Title Regular;
    color: #00349b;
}

.arrowbtn.white {
    border: 1px solid white;
    color: white;
}

    .arrowbtn.white svg {
        stroke: white;
    }

        .arrowbtn.white svg path {
            stroke: white;
        }

.arrowbtn svg {
    height: 15px;
}

.arrowbtn {
    border: 1px solid #0074e0;
    padding: 17px 35px;
    border-radius: 30px;
    display: flex;
    gap: 1rem;
    width: max-content;
    align-items: center;
    text-decoration: none;
    color: #00349b;
    transition: .25s;
    font-size:16px;
}

    .arrowbtn:hover {
        background-color: #0074e0;
        color: white;
    }

        .arrowbtn:hover svg path {
            stroke: white;
        }


    .arrowbtn2.white {
        border: 1px solid white;
        color: white;
    }

        .arrowbtn2.white svg {
            stroke: white;
        }

            .arrowbtn2.white svg path {
                stroke: white;
            }

    .arrowbtn2 svg {
        height: 15px;
    }



.arrowbtn2 {
    border: 1px solid #fff;
    padding: 17px 35px;
    border-radius: 30px;
    display: flex;
    gap: 1rem;
    width: max-content;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: .25s;
}

    .arrowbtn2:hover {
        background-color: #0074e0;
        color: #fff;
    }

        .arrowbtn2:hover svg path {
            stroke: #fff;
        }


.buyukHak {
    border-radius: 30px;
    overflow: hidden;
}



    .buyukHak img {
        height: 100%;
        object-fit: cover;
    }

    .buyukHak:hover .buyukHakRight {
        background-color: #032363;
    }


.buyukHakRight {
    background-color: #00349b;
    width: 100%;
    height: 100%;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .25s;
}

    .buyukHakRight h3 {
        font-size: 1.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 123.52%;
        letter-spacing: .6px;
        font-family: Title Regular;
        color: white;
        padding-right: 30%;
    }


    .buyukHakRight p {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: .32px;
        color: white;
        margin-top: 1rem;
        padding-right: 2rem;
    }

    .buyukHakRight span {
        color: white;
        opacity: .8;
        font-size: 13px;
    }

.buyukHak:hover .devaminioku {
    transform: translateX(10px);
}

.devaminioku {
    display: flex;
    gap: 1rem;
    color: white;
    margin-top: 2rem;
    transition: .25s;
}


.activelang {
    background: #0074e0 !important;
    color: white !important;
    border: 1px solid #0074e0 !important;
}

.devaminioku div {
    height: 22px;
    width: 22px;
    background-color: white;
    border-radius: 50%;
    padding: 6.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .devaminioku div svg {
        height: 100%;
        width: 100%;
    }


.kucukhak {
    display: flex;
    gap: 2rem;
    border-radius: 15px;
    transition: .25s;
    cursor: pointer;
}

    .kucukhak:hover {
        background-color: #71818f31;
    }


    .kucukhak h3 {
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 130%;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        color: #00349b;
    }

    .kucukhak img {
        height: 110px;
        width: 110px;
        object-fit: cover;
        border-radius: 13px;
    }

    .kucukhak:hover .kucukhakright .devaminioku {
        transform: translateX(10px);
    }


.kucukhakright {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


    .kucukhakright .devaminioku {
        margin-top: 15px !important;
        color: #00349bab;
    }

        .kucukhakright .devaminioku div {
            background-color: #00349b;
        }

            .kucukhakright .devaminioku div svg {
                fill: white;
                color: white;
                stroke: white;
            }

.kucukHaklar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.uygulamaslider img {
    width: 100%;
    height: 15rem;
}

.imgDis p {
    position: absolute;
    bottom: 12px;
    left: 2rem;
    z-index: 4;
    color: white;
    font-size: 24px;
    font-weight: 250;
    transition: .25s;
}


.imgDis:hover p {
    transform: translateX(10px);
}


.imgDis {
    border-radius: 15px;
    overflow: hidden;
}

    .imgDis::before {
        position: absolute;
        height: 100%;
        width: 100%;
        content: "";
        z-index: 3;
        background: linear-gradient(to top, #021428d9 20%, rgb(0 0 0 / 24%) 86%);
    }

    .imgDis:hover::after {
        opacity: 1;
    }

    .imgDis::after {
        position: absolute;
        height: 100%;
        width: 100%;
        content: "";
        z-index: 3;
        background: #0214286e;
        left: 0;
        opacity: 0;
        transition: .25s;
        pointer-events: none;
    }


.swiper-scrollbar {
    bottom: -3rem !important;
    height: 6px !important;
    left: 0 !important;
    width: 96% !important;
}

.swiper-scrollbar-drag {
    background-color: #00349b !important;
}

.urunOks {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    top: 1rem;
    gap: 4px;
}

    .urunOks svg {
        fill: #00349b;
    }

#Sprev {
    transform: rotate(180deg);
}

.swiper-button-disabled {
    opacity: .6;
}


.cevreDost p {
    color: #00349b;
}


.buyukDost p {
    font-size: 2.5rem;
    width: 93%;
    font-family: Title Regular;
    line-height: 4.75rem;
    letter-spacing: .45px;
}

.buyukDost span {
    background-color: #aad6ff;
    padding: 10px 20px;
    border-radius: 31px;
    font-weight: 600;
}


.sorimg {
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.referansProjeler {
    background-color: #c6cedf;
}

.refTitle {
    background-color: #0074e0;
    width: max-content;
    color: white;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 15px;
    display: block;
}

.reftitle2 {
    font-size: 2.5rem;
    color: #00349b;
    font-family: Title Regular;
    margin-top: 2rem;
}


.refKutu {
    background: #ffffff70;
    padding: 17px;
    border-radius: 16px;
    margin-top: 1rem;
    transition: .25s;
    cursor: pointer;
}

    .refKutu:hover {
        background-color: #ffffffc2;
    }

    .refKutu b {
        font-weight: 500;
        color: #00349b;
        font-size: 16px;
        margin-top: 10px;
        display: flex;
        text-align: center;
        height: 43px;
        justify-content: center;
        align-items: center;
    }

    .refKutu img {
        height: 10rem;
        object-fit: cover;
        border-radius: 10px;
    }

.footerBgPath {
    position: absolute;
    right: 2rem;
    bottom: 0;
}

footer ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 8px;
}

    footer ul li:first-child {
        font-size: 20px;
        opacity: 1;
        font-weight: 600;
        margin-bottom: 5px;
    }

    footer ul li {
        color: rgba(255, 255, 255, 1);
        opacity: .75;
        transition: .25s;
        font-weight: 400;
        cursor: pointer;
    }

        footer ul li:hover {
            opacity: 1;
        }

footer {
    background-color: #03305d;
    position: relative;
}


    footer ul li a {
        color: white;
        text-decoration: none;
    }

.otherFootherUl {
    display: flex;
    flex-direction: row;
    gap: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

    .otherFootherUl li {
        color: rgba(255, 255, 255, 1);
        opacity: .75;
        font-weight: 400;
        font-size: 14px !important;
        font-weight: 400 !important;
        opacity: .5 !important;
        margin-bottom: 0px !important;
    }

.whiteLogo path {
    fill: white;
}

.rowTopBorder {
    border-top: 1px solid #ffffff3b;
}


footer ul li {
    list-style: none;
}



#main-carousel {
    position: relative;
}

    #main-carousel::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #0e3b8557;
        z-index: 9;
    }


    #main-carousel h5 {
        font-size: 3rem;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        -webkit-animation: leftToRight 1s ease-in-out .5s;
        animation: leftToRight 1s ease-in-out .5s;
        color: #fff;
    }

        #main-carousel h5 span {
            font-size: 3rem;
            font-weight: 600;
            font-family: "Poppins", sans-serif;
            -webkit-animation: leftToRight 1s ease-in-out .5s;
            animation: leftToRight 1s ease-in-out .5s;
            color: #fff;
        }

    #main-carousel h2 {
        font-size: 1.5rem;
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        letter-spacing: 2px;
        -webkit-animation: topToBottom 1s linear .3s;
        animation: topToBottom 1s linear .3s;
        color: #fff;
    }

    #main-carousel .carousel-caption {
        right: 15%;
        bottom: unset;
        top: 55%;
        -webkit-transform: translateY(-50%);
        transform: translateY(0%);
        text-align: left;
        z-index: 990;
    }

    #main-carousel .carousel-control-next,
    #main-carousel .carousel-control-prev {
        top: 50%;
        bottom: unset;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 70px;
        height: 70px;
        border-radius: 0%;
        font-size: 2rem;
        background-color: rgb(255 255 255 / 15%);
        padding: 5px;
        -webkit-transition: 5s all;
        transition: 5s all;
        text-decoration: none;
        z-index: 99;
        transition: .5s;
        border-radius:40px;
    }

    #main-carousel:hover .carousel-control-next,
    #main-carousel:hover .carousel-control-prev {
        opacity: 1;
        transition: .5s;
    }

    #main-carousel .carousel-control-next {
        right: 3%;
    }

    #main-carousel .carousel-control-prev {
        left: 3%;
    }


    #main-carousel .btn-info {
        background: transparent;
        border: 0;
        font-size: 1rem;
        position: relative;
        padding: 20px 0 0;
        margin: 20px 0 0;
        color: #fff;
    }

        #main-carousel .btn-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 63px;
            height: 3px;
            background-color: #fff;
            transition: .5s;
        }

        #main-carousel .btn-info:hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fff;
            transition: .5s;
        }


@-webkit-keyframes leftToRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }

    80% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: .7;
    }

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

@keyframes leftToRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }

    80% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: .7;
    }

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

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

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: .7;
    }

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

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

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: .7;
    }

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


.bnrBorder {
    height: 2px;
    width: 30%;
    background-color: #fff;
    margin-bottom: 20px;
    margin-top: 20px;
}




.posts {
    width: 100%;
    overflow: hidden;
    height: 16rem;
    position: relative;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    border-radius: 10px;
}



    .posts::before {
        position: absolute;
        height: 100%;
        width: 100%;
        content: "";
    }


    .posts::before {
        background-color: #003d7b9d;
        transition: .3s;
    }

    .posts:hover::before {
        background-color: #003d7bd3;
    }




    .posts::after {
        position: absolute;
        top: 20px;
        left: 20px;
        content: attr(data-text);
        background-color: white;
        color: var(--renk2);
        padding: 3px 10px;
        font-weight: 600;
        border-radius: 10px;
        display: none;
    }

.postContent {
    position: absolute;
    bottom: 1rem;
    padding-left: 2rem;
    z-index: 2;
    padding-right: 5rem;
    width: 100%;
    transition: .3s;
}

.postSirala a {
    color: white;
}

.postContent b {
    color: white;
    font-size: 21px;
    display: block;
}

.postContent p {
    color: white;
    padding-right: 1rem;
}

.arrowPost {
    position: absolute;
    right: 1rem;
    color: white;
    bottom: 1rem;
}

    .arrowPost svg {
        height: 35px;
        transition: .3s;
        width: auto;
        border: 2px solid white;
        border-radius: 50%;
    }


.posts:hover .arrowPost svg {
    background-color: white;
    color: var(--renk2);
    transform: translateX(-6px);
}

.posts:hover .postContent {
    transform: translateY(-6px);
}

.postTitle {
    color: var(--renk2);
    font-size: 2.4rem;
    position: relative;
    display: flex;
    margin-top: 3rem;
}


.urunbg
{
    background-color:#f7f7f7;
    position:relative;
}



.headerTop {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
}

    .headerTop .title {
        font-size: 2.45rem;
        margin-top: 15px;
        font-style: normal;
        font-weight: 500;
        color: var(--renk2);
        font-stretch: normal;
        letter-spacing: normal;
        margin-bottom: 15px;
    }


.block-system-breadcrumb-block .breadcrumb {
    background-color: transparent;
    padding: 0;
}

    .block-system-breadcrumb-block .breadcrumb .breadcrumb-item a {
        color: #979797;
        text-decoration: none;
        font-weight: 400;
        font-size: 17px;
    }

    .block-system-breadcrumb-block .breadcrumb .breadcrumb-item {
        font-weight: 500;
        font-size: 17px;
        color: #000;
    }

.block-system-breadcrumb-block .breadcrumb-item.active a {
    color: #332a31;
}

.breadcrumb-item.active a {
    font-weight: 600 !important;
}

.breadcrumb-item.active {
    font-weight: 600 !important;
}

.block-system-breadcrumb-block .breadcrumb-item + .breadcrumb-item::before {
    color: #03438f;
}


.headerTop .paragraph p {
    font-size: 1.25rem;
    line-height: 2rem;
    color: #2D2D2D;
    font-style: normal;
    font-weight: 400;
}

.headerTop .icon-arrow {
    margin-top: 30px;
    display: block;
    height: 40px;
    width: 40px;
}

    .headerTop .icon-arrow i {
        font-size: 40px;
        color: #00aeef;
    }

.pageBanner {
    position: relative;
    width: 100%;
    height: 550px;
    padding: 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}


.kurumsalBox {
    height: 350px;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}


    .kurumsalBox .block-link {
        width: 100%;
        height: 100%;
        font-size: 0;
        display: block;
    }


.kurumsalBoxLower .competency-block-lower {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 100%;
    min-width: 100%;
    z-index: 1;
    background: #fff;
}

    .kurumsalBoxLower .competency-block-lower .competency-link-title {
        display: flex;
        padding: 1.5rem 4rem 1.5rem 1.5rem;
        background: #03305d;
        position: relative;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

        .kurumsalBoxLower .competency-block-lower .competency-link-title a {
            font-size: 22px;
            width: 100%;
            color: white;
            font-weight: 400;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-decoration: none;
        }

        .kurumsalBoxLower .competency-block-lower .competency-link-title .arrow-right {
            position: unset;
            transform: none;
        }

        .kurumsalBoxLower .competency-block-lower .competency-link-title .arrow-right {
            color: #00aeef;
            margin-left: 0.5rem;
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
        }

            .kurumsalBoxLower .competency-block-lower .competency-link-title .arrow-right path:nth-child(1) {
                stroke: #00aeef;
                transition: transform 0.3s;
            }

            .kurumsalBoxLower .competency-block-lower .competency-link-title .arrow-right path:nth-child(2) {
                stroke: #00aeef;
                fill: #00aeef;
                transition: transform 0.3s;
            }

        .kurumsalBoxLower .competency-block-lower .competency-link-title:hover .arrow-right path:nth-child(1) {
            transition: transform 0.3s;
            transform: scaleX(2.5);
            stroke: #00aeef;
        }

        .kurumsalBoxLower .competency-block-lower .competency-link-title:hover .arrow-right path:nth-child(2) {
            transition: transform 0.3s;
            transform: translateX(10px);
            stroke: #00aeef;
            fill: #00aeef;
        }

.boxNext {
    border-top: 1px solid #000;
    padding-top: 30px;
    padding-left: 1rem;
}

    .boxNext .boxNextTitle {
        color: var(--renk2);
        font-size: 37px;
        font-weight: 600;
        line-height: normal;
        margin: 0;
        margin-bottom: 17px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .boxNext .boxNextText {
        color: #282d30;
        font-size: 1.2rem;
        font-weight: 300;
        line-height: normal;
        margin: 0;
        margin-bottom: 10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    .boxNext .btnRead {
        color: #282D30;
        font-size: 1rem;
        font-weight: 300;
        display: flex;
        text-decoration: none;
    }

.readMore {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #282D30;
    margin-bottom: 0.5rem;
    margin-top: 3rem;
}

.pageIcerik {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #332a31;
}


.kurumsalPage {
    position: relative;
    width: 100%;
    padding: 50px 0;
    margin: 0;
    background-color: #fff;
    z-index: 9;
}


.contactText {
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    line-height: 41px;
    letter-spacing: 3px;
    width: 90%;
}


.iletisimSayfaForm input {
    height: 56px;
    width: 100%;
    border-color: black;
    border: 1px solid #a7a7a7;
    border-radius: 30px;
    padding: 15px;
}

.iletisimSayfaForm label {
    width: 100%;
    margin: 10px 0;
    font-weight: bold;
}

.iletisimSayfaForm textarea {
    height: 200px;
    width: 100%;
    border-color: black;
    border: 1px solid #a7a7a7;
    border-radius: 30px;
    padding: 15px;
}


.iletisimBox
{
    background-color:#f7f7f7;
    border-radius:30px;
    padding:20px;
    width:100%;
    margin-bottom:20px;
}


    .iletisimBox .iletisimTitle
    {
        font-size:18px;
        font-weight:bold;
        color:#000;
        margin-bottom:10px;
    }

    .iletisimBox .contul
    {
        padding:0px;
        margin:0px;
        list-style:none;
    }

    .iletisimBox .contul li
    {
        padding-bottom:5px;
    }

        .iletisimBox .contul li i
        {
            font-size:17px;
            margin-right:5px;
            color:#000000;
        }


.refBox
{
    position:relative;
    width:100%;
    border-radius:15px;
    border:1px solid #ededed;
}

.refBox img
{
    border-radius:15px;
}



.rightSide {
    border-left: 1px solid #d4d4d4;
}


    .rightSide ul {
        display: flex;
        gap: 0.5rem;
        margin-bottom:0;
        align-items:center;
    }

    .rightSide li {
        list-style: none;
        background: transparent;
        height: 43px;
        width: 43px;
        border-radius: 50%;
        border: 1px solid #aad6ff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        position: relative;
        color: #0074e0;
        font-weight: bold;
        cursor: pointer;
    }

    .rightSide li a{
        color:#fff;
        font-size:16px;
        font-weight:300;
    }

.scrolled .rightSide li a {
    color: #0074e0;
    font-size: 16px;
    font-weight: 300;
}



.rightSide svg {
    height: 24px;
    fill: #ffffff;
}


/*Arama BaÅŸlangÄ±c*/

.visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.input,
.buttonn {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: normal;
    border: none;
    outline: none;
    max-width: 100%;
}

.fill-currentcolor {
    fill: currentcolor;
    color: #fff;
}

.fill-none {
    fill: none;
}

.icon {
    width: 24px;
    height: 24px;
    transition: .3s ease-out;
}

@media (min-width: 768px) {
    .icon {
        width: 32px;
        height: 32px;
    }
}

.buttonn {
    cursor: pointer;
}

.buttonn-open {
    justify-content: center;
    align-items: center;
    align-content: center;
}

.buttonn-open1 {
    justify-content: center;
    align-items: center;
    align-content: center;
}

.buttonn-close {
    position: absolute;
    top: 7.5vw;
    right: 7.5vw;
    padding: 0;
    background-color: transparent;
}

.buttonn-close2 {
    position: absolute;
    top: 7.5vw;
    right: 7.5vw;
    padding: 0;
    background-color: transparent;
}

.buttonn-search {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 25px 16px 21px;
}

@media (min-width: 768px) {
    .buttonn-search {
        padding: 30px 48px;
    }
}

.form-search {
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .form-search {
        max-width: 720px;
    }
}

.input-search {
    padding: 26px 16px 25px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #4c4c4c;
    background-color: #fff;
    box-shadow: 0 0px 0px rgba(160, 160, 160, 0.6), 0 3px 3px rgba(125, 125, 125, 0.4), 0 4px 9px rgba(142, 142, 142, 0.3);
}

@media (min-width: 768px) {
    .input-search {
        padding: 29px 80px 29px 48px;
        font-size: 32px;
    }
}

.input-search::placeholder {
    color: #BFBFBF;
}

.overlay {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    position: fixed;
    z-index: 3;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(242,242,242,0.8155637254901961) 100%);
    z-index: 99;
}

.overlay {
    align-items: center;
    align-content: center;
}

    .overlay button:focus {
        outline: 0px dotted;
        outline: 0px auto -webkit-focus-ring-color;
    }

.hiding {
    max-height: 0;
    opacity: 0;
    bottom: 0;
    transition: max-height 0.3s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s ease-out;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.hiding .buttonn-search,
.hiding .input-search {
    opacity: 0;
}

.hiding .button-search {
    transform: translate3d(0, 33%, 0);
}

.hiding .input-search {
    transform: translate3d(0, 50%, 0);
}

.showing {
    max-height: 100vh;
    top: 0;
    transition: max-height 0.4s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s ease-out;
}

.buttonn-search {
    transition: .4s .6s ease-out;
}

.input-search {
    transition: .8s .3s ease-out;
}

.perde {
    background: transparent;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
}

/*arama btn*/



.documentBox {
    border: 1px solid #c1c1c1;
    border-radius: 0;
    padding: 30px 35px;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


    .documentBox p {
        font-size: 18px;
        font-weight: 300;
    }


    .documentBox.sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 10rem;
        z-index: 9;
    }

    .documentBox .sbox {
        display: flex;
        width: 176px;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        column-gap: 2rem;
    }

        .documentBox .sbox a {
            color: #000;
        }

            .documentBox .sbox a svg {
                height: 25px;
                width: 25px;
            }



@media (max-width: 1444px) {

    .menubg {
        width: 100%;
        padding: 10px 60px;
        background-color: transparent;
        transition: .5s;
        border-bottom: 1px solid #ffffff6b;
    }

    .navmenu a, .navmenu a:focus {
        font-size: 14px;
        padding: 5px;
    }

    .scrolled .navmenu a, .scrolled .navmenu a:focus {
        font-size: 14px;
        padding: 5px;
    }

    .rightSide li {
        height: 35px;
        width: 35px;
        font-size: 13px;
    }

    #main-carousel .carousel-caption {
        top: 45%;
    }
}

@media (max-width: 992px) {

    #main-carousel h5 {
        font-size: 2rem;
    }
    .carousel-caption p {
        color: #fff;
        font-size: 1rem;
        font-weight: 400;
    }

    #main-carousel .carousel-caption {
        right: 15%;
        bottom: unset;
        top: 35%;
        -webkit-transform: translateY(-50%);
        transform: translateY(0%);
        text-align: left;
        z-index: 990;
    }

    .arrowbtn {
        border: 1px solid #0074e0;
        padding: 11px;
        border-radius: 30px;
        display: flex;
        gap: 1rem;
        width: max-content;
        align-items: center;
        text-decoration: none;
        color: #00349b;
        transition: .25s;
        font-size: 12px;
    }

    .buyukDost p {
        font-size: 1.5rem;
        width: 100%;
        font-family: Title Regular;
        line-height: 2.75rem;
        letter-spacing: .45px;
    }
}</pre></body></html>