@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Alegreya:400,700&amp;subset=latin-ext');


:root {
    --color-bg: #f1e0c5;
    --color-text: #342a21;
    --color-underline: #fff;
}

html {
    /* font-size: 62.2%; */
    font-size: 0.588vw;
}

body {
    /*font-family: 'Alegreya', sans-serif;*/
    font-size: 15px;
    font-weight: 400;
    background: #fff;
    color: #333333;
    overflow-x: hidden;
}

a,
button {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

    a,
    a:hover {
        text-decoration: none;
    }

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

label {
    margin-bottom: 0;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, .5);
    display: block;
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

    .scrolltotop:hover {
        background: #000;
        color: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    }

.container {
    padding-left: 20px;
    padding-right: 20px;
}


/*  ===top-header-area-start=== */
.top-header {
    background-image: url(/content/img/header_with_flag.png);
    background-repeat: no-repeat;
    background-size: 20.4rem;
    background-position: top right;
}

.top-header-inner {
    display: flex;
    align-items: end;
    padding: 1.2rem 2.4rem;
    justify-content: space-between;
}

.top-menu-inner-item {
    display: flex;
    flex-direction: column;
    margin-right: 21rem;
    width:50%;
}

.top-logo-item img {
    width: 50.4rem;
}

.top-search-item {
    margin-left: auto;
    position: relative;
}

    .top-search-item input {
        font-size: 16px;
        font-weight: 400;
        width: 450px;
        color: #000;
        outline: none;
        padding: 10px 20px;
        border: none;
        border-radius: 40px;
        border: 1px solid #013483;
    }

        .top-search-item input:focus {
            border: 1px solid #013483;
        }

    .top-search-item button {
        width: 70px;
        height: 45px;
        display: block;
        background: #212E84;
        border: 1px solid #000000;
        border-radius: 40px;
        text-align: center;
        line-height: 40px;
        position: absolute;
        top: 0;
        right: 0;
    }

.menu-top-item {
    width: 100% !important;
}

    .menu-top-item ul {
        display: flex;
        align-items: center;
    }

        .menu-top-item ul li a {
            /* font-family: 'Alegreya';*/
            font-style: normal;
            font-weight: 700;
            font-size: 1.4rem;
            line-height: 1.1875;
            color: #fff;
            padding: 2rem 2.2rem;
            display: inline-block;
        }


/* .main-menu-area-start */

.main-menu-area {
    background-color: #0B5494;
    padding: 2rem 2rem;
    margin-bottom: 1rem;
}

.main-menu-item ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .main-menu-item ul li a {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 700;
        font-size: 1.6rem;
        color: #FFFFFF;
        text-align: center;
        display: block;
    }

/
.main-menu-item ul li a i {
    top: 2px;
    position: relative;
    padding-right: 3px;
}







h1 {
    font-size: 3rem;
    color: var(--color-text);
}

.main-menu {
    --underline-width: 0;
    --underline-offset-x: 0;
    position: relative;
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .main-menu::before {
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        height: 5px;
        width: var(--underline-width);
        transform: translateX(var(--underline-offset-x));
        background-color: var(--color-underline);
        transition: transform 0.3s, width 0.5s;
        border-radius: 4px;
    }

.main-menu-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    color: var(--color-text);
    text-decoration: none;
}




.top-menu {
    --underline-width: 0;
    --underline-offset-x: 0;
    position: relative;
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .top-menu::before {
        content: "";
        display: block;
        position: absolute;
        top: 70%;
        height: 3px;
        width: var(--underline-width);
        transform: translateX(var(--underline-offset-x));
        background-color: var(--color-underline);
        transition: transform 0.3s, width 0.5s;
        border-radius: 4px;
    }

.top-menu-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    color: var(--color-text);
    text-decoration: none;
}



.menu-top-bg {
    background: linear-gradient(90deg, rgba(255,255,255,1) 32%, rgba(33,46,132,1) 36%, rgba(33,46,132,1) 70%,rgba(33,46,132,0.8) 85%, rgba(255,255,255,1) 100%);
    height: 4rem;
    margin-top: -6rem;
    margin-bottom: 0.5rem;
    z-index: -10;
    position: sticky;
}


/* .mobile-menu-area-start */
.mobile-menu-area {
    margin-bottom: 20px;
    display: none;
}

.mobile-header {
    border-bottom: 1px solid #0F00BF;
}

    .mobile-header ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .mobile-header ul li a {
            font-size: 17px;
            color: transparent;
        }

.mobile-menu-body {
    display: none;
}

.mobile-menu-item {
    padding: 10px 0;
}

    .mobile-menu-item ul li a {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 400;
        font-size: 28px;
        color: #013483;
        padding: 9px 13px;
        border-radius: 10px;
        display: block;
        margin-bottom: 4px;
    }

        .mobile-menu-item ul li a span {
            font-weight: 700;
        }

        .mobile-menu-item ul li a:hover {
            color: #fff !important;
            background: #013483;
        }

            .mobile-menu-item ul li a:hover .maga-menu {
                color: #fff !important;
            }

.maga-menu {
    font-weight: 700;
    color: #D91717;
}

.hello .maga-menu {
    font-weight: 700;
    color: #fff;
}

.redss {
    color: #D91717;
}

/* mobile-search-item */

.mobile-search-item {
    margin-bottom: 20px;
}

    .mobile-search-item form {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-search-item input {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        color: #013483;
        display: inline-block;
        max-width: 570px;
        width: 100%;
        padding: 20px 18px;
        background-color: #E4E4E4;
        border-radius: 15px;
        border: none;
        outline: none;
        margin-right: 10px;
    }

        .mobile-search-item input::placeholder {
            color: #013483;
            opacity: 1;
        }

    .mobile-search-item button {
        width: 70px;
        height: 60px;
        display: block;
        background: #212E84;
        border: none;
        border-radius: 20px;
        text-align: center;
        line-height: 45px;
    }

/* /mobile-menu-btn */

.mobile-menu-btn ul {
    text-align: center;
}

    .mobile-menu-btn ul li {
        display: inline-block;
        text-align: center;
    }

        .mobile-menu-btn ul li a {
            /* font-family: 'Alegreya';*/
            font-style: normal;
            font-weight: 400;
            font-size: 15px;
            color: #FFFFFF;
            background: #013483;
            border-radius: 20px;
            padding: 18px 20px;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 15px;
            transition: .2s;
        }

            .mobile-menu-btn ul li a:hover {
                background-color: #032b66;
            }

/* ======sub-menu-item==== */

.hello {
    background-color: #032b66;
    color: #fff !important;
}

.open-sub-menus {
    display: none;
}

.open-sub-menus-item {
    border-left: 2px solid #003382;
    margin-left: 2px;
}

.open-sub-menus h6 {
    font-weight: 700;
    font-size: 30px;
    padding: 10px 0;
    color: #032b66;
}

.open-sub-menus ul li a {
    margin-left: 15px;
    font-size: 20px;
}

/*=========== hero-slider-area-star==== */

.hero-container {
    margin: 0 auto;
}

.hero-slider-item {
    position: relative;
}

    .hero-slider-item img {
        max-height: 600px !important;
    }

    .hero-slider-item h3 {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 700;
        font-size: 5rem;
        color: #fff;
        position: absolute;
        bottom: 10rem;
        left: 12rem;
        text-shadow: 2px 2px #000;
    }

.main-content {
    position: relative;
}

    .main-content .owl-theme .custom-nav {
        position: absolute;
        top: 35%;
        left: 0;
        right: 0;
        z-index: 99999999;
    }

        .main-content .owl-theme .custom-nav .owl-prev,
        .main-content .owl-theme .custom-nav .owl-next {
            position: absolute;
            color: inherit;
            background: none;
            border: none;
            z-index: 100;
        }

            .main-content .owl-theme .custom-nav .owl-prev i,
            .main-content .owl-theme .custom-nav .owl-next i {
                font-size: 30px;
                /* color: red; */
                border-radius: 50%;
                z-index: 99999999999;
                display: none !important;
            }

        .main-content .owl-theme .custom-nav .owl-prev {
            left: 0;
            /*display: none;*/
        }

        .main-content .owl-theme .custom-nav .owl-next {
            right: 0;
            /*display: none;*/
            z-index: 99999999 !important;
        }


    .main-content .owl-theme .owl-dots .owl-dot span {
        width: 8rem;
        height: 1rem;
        margin: 5px 7px;
        background: #d6d6d6;
        display: block;
        -w ebkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 0;
    }

        .main-content .owl-theme .owl-dots .owl-dot span:hover {
            background-color: #fff;
        }

    .main-content .owl-theme .owl-dots {
        -webkit-tap-highlight-color: transparent;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

.mobile-hero-slider {
    display: none;
}
/* ============================= */
.main-content5 {
    position: relative;
}

    .main-content5 .owl-theme .custom-nav {
        position: absolute;
        top: 35%;
        left: 0;
        right: 0;
        z-index: 99999999;
    }

        .main-content5 .owl-theme .custom-nav .owl-prev,
        .main-content5 .owl-theme .custom-nav .owl-next {
            position: absolute;
            color: inherit;
            background: none;
            border: none;
            z-index: 100;
        }

            .main-content5 .owl-theme .custom-nav .owl-prev i,
            .main-content .owl-theme .custom-nav .owl-next i {
                font-size: 30px;
                /* color: red; */
                border-radius: 50%;
                z-index: 99999999999;
                display: none !important;
            }

        .main-content5 .owl-theme .custom-nav .owl-prev {
            left: 0;
            /* display: none; */
        }

        .main-content5 .owl-theme .custom-nav .owl-next {
            right: 0;
            /* display: none; */
            z-index: 99999999 !important;
        }


    .main-content5 .owl-theme .owl-dots .owl-dot span {
        width: 12.4rem;
        height: 1rem;
        margin: 5px 7px;
        background: #d6d6d6;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 0;
    }



    .main-content5 .owl-theme .owl-dots {
        text-align: center;
        -webkit-tap-highlight-color: transparent;
        position: absolute;
        bottom: -10px;
    }

/*============ news-slider-area-start====== */

.news-slider-area {
    padding: 20px 0;
}

.news-container {
    max-width: 1400px;
    margin: auto;
}

.news-slider-item {
    cursor: pointer;
    transition: all .2s ease-in-out;
}

    .news-slider-item:hover {
        transform: scale(1.01);
        box-shadow: 0 0 11px 5px rgba(33,33,33,.2);
        border-radius: 15px;
    }

.news-slider-content {
    min-height: 372px;
    background-color: #6D9DC5;
    padding: 27px 27px 27px 27px;
    display: flex;
    flex-direction: column;
}

    .news-slider-content a {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        color: #FFFFFF;
        display: inline-block;
        margin-bottom: 29px;
        display: block;
    }

    .news-slider-content h2 {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        color: #FFFFFF;
    }

.news-slider-content-header {
    height: 130px;
    border-bottom: 2px solid #fff;
}

.ns-date {
    margin-top: 2px;
    /*margin-top: auto;*/
}

    .ns-date p {
        font-weight: 700;
        font-size: 18px;
        color: #FFFFFF;
    }

.news-slider-img img {
    width: 100%;
}

.n-s-c-2 {
    background: #FF8811;
}

.n-s-c-3 {
    background: #885053;
}

.n-s-c-4 {
    background: #C5283D;
}

    .n-s-c-4 a {
        padding-bottom: 20px !important;
    }

.n-s-c-5 {
    background: #003382;
    /*background: #C9D5B5;*/
}


.n-s-c-6 {
    background: #79001E;
}


    /*.n-s-c-6 a {
        color: rgba(0,0,0,0.7) !important;
    }

    .n-s-c-6 p {
        color: rgba(0,0,0,0.7) !important;
    }*/


.n-s-c-7 {
    background: #57cdf1;
}

.n-s-c-8 {
    background: #8FC93A;
}



/* nav arrow 2 */

.main-content2 {
    position: relative;
}

    .main-content2 .owl-theme .custom-nav {
        position: absolute;
        top: 42%;
        left: -60px;
        right: -60px;
    }

        .main-content2 .owl-theme .custom-nav .owl-prev,
        .main-content2 .owl-theme .custom-nav .owl-next {
            position: absolute;
            color: inherit;
            background: none;
            border: none;
            z-index: 100;
        }

            .main-content2 .owl-theme .custom-nav .owl-prev i,
            .main-content2 .owl-theme .custom-nav .owl-next i {
                font-size: 60px;
                font-weight: 700;
                color: #05213E;
            }

        .main-content2 .owl-theme .custom-nav .owl-prev {
            left: 0;
        }

        .main-content2 .owl-theme .custom-nav .owl-next {
            right: 0;
        }

    .main-content2 .owl-theme .owl-dots {
        text-align: center;
        -webkit-tap-highlight-color: transparent;
        display: none;
    }

/* =====Mevzuat Sirkuleri slider area start ======== */

.mevzuat-sirkuleri-area {
    /*padding-bottom: 10px;*/
}

.mev-slider-item {
    position: relative;
}

    .mev-slider-item img {
        height: 300px;
    }

    .mev-slider-item ul {
        display: flex;
        align-items: center;
        position: absolute;
        top: 30px;
        left: 20px;
    }

        .mev-slider-item ul li a {
            font-weight: 200;
            font-size: 15px;
            color: #000000;
            display: inline-block;
            padding: 8px 30px;
            background-color: #f1eeee;
            border-radius: 20px;
            margin: 0 20px;
        }

.mev-slider-content {
    position: absolute;
    bottom: 50px;
    left: 40px;
}

    .mev-slider-content h3 {
        font-weight: 700;
        font-size: 28px;
        color: #FFFFFF;
        text-shadow: 2px 2px #000;
    }

    .mev-slider-content p {
        font-weight: 400;
        font-size: 19px;
        color: #FFFFFF;
        text-shadow: 2px 2px #000;
    }

.main-content3 .ms-slider, .main-content3 .mv-slider {
    position: relative;
}

.main-content3 .owl-theme .owl-dots .owl-dot span {
    width: 8rem;
    height: 10px;
    margin: 5px 23px;
    z-index: 300;
}

.main-content3 .owl-theme .owl-dots {
    text-align: center;
    width: 100%;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    bottom: -2px;
}

.main-content3 .owl-theme .owl-nav {
    /*display: none;*/
}


.main-content3 .owl-theme .owl-dots .owl-dot span:hover {
    background: #ffffff;
}


.main-content3 .owl-theme .owl-dots .owl-dot span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #d6d6d6;
}

.main-content3 .other-button {
    position: absolute;
    float: right;
    right: 20px;
    z-index: 10;
    top: 2rem;
}

    .main-content3 .other-button a {
        font-weight: 700;
        font-size: 15px;
        color: #000000;
        display: inline-block;
        padding: 8px 30px;
        background-color: #f1eeee;
        border-radius: 20px;
        margin: 0 20px;
    }

.main-content3 .owl-theme .custom-nav .owl-prev,
.main-content3 .owl-theme .custom-nav .owl-next {
    position: absolute;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
    color: #fff;
    font-size: 25px;
    text-shadow: 2px 2px 2px #333;
}


.ms-slider .owl-theme .custom-nav .owl-prev,
.ms-slider .owl-theme .custom-nav .owl-next {
    bottom: 40%;
}

.mv-slider .owl-theme .custom-nav .owl-prev,
.mv-slider .owl-theme .custom-nav .owl-next {
    bottom: 50%;
}

.main-content3 .owl-theme .custom-nav .owl-prev {
    left: 0;
    /*display: none;*/
}

.main-content3 .owl-theme .custom-nav .owl-next {
    right: 0;
    /*display: none;*/
    z-index: 99999999 !important;
}


.main-content3-ps {
    position: absolute;
}

.main-content3-ul {
    position: absolute;
    top: 2rem;
    z-index: 100;
}

    .main-content3-ul a {
        font-weight: 700;
        font-size: 15px;
        color: #000000;
        display: inline-block;
        padding: 8px 30px;
        background-color: #f1eeee;
        border-radius: 20px;
        margin: 0 20px;
    }

@media (max-width:1500px) {

    .main-content3 .owl-theme .owl-dots .owl-dot span {
        width: 5rem !important;
    }
}





/* =====SGK area start --===== */

.finance {
    /*height: 100%;
    background: url('') no-repeat;
   
    width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;*/
}

.gray-img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); /* New WebKit */
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray; /* IE6+ */
}

.finance .finance-header {
    z-index: 55;
    position: absolute;
    margin-top: 20px;
    margin-left: 15px;
}

.finance-header .finance-title {
    /* font-family: 'Alegreya';*/
    font-style: normal;
    font-weight: 700;
    font-size: 27px;
    color: #F1F1F1;
}

.finance-header span {
}

.finance .card-img-overlay {
    border-radius: 15px;
}


.skg-item {
    position: relative;
    transition: all .2s ease-in-out;
}

    .skg-item:hover {
        box-shadow: 0 0 11px 5px rgba(33,33,33,.2);
        border-radius: 15px;
        transform: scale(1.01);
    }


    .skg-item img {
        width: 100%;
    }

.skg-content {
    position: absolute;
    bottom: 19px;
    width: 100%;
}

    .skg-content a {
        /* font-family: 'Alegreya';*/
        font-style: normal;
        font-weight: 700;
        font-size: 27px;
        color: #FFFFFF;
        display: block;
        text-align: center;
    }

/* =====TÜRMOB E-BİRLİK -area-start ===== */
.turmob-item-area {
    padding: 30px 0;
}

.turmob-items {
    text-align: center;
}



    .turmob-items img {
        width: 80px;
    }

    .turmob-items h4 {
        font-size: 16px;
        font-weight: 700;
        color: #212E84;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .turmob-items p {
        font-size: 14px;
        color: #757B81;
    }



/* =====Turmob bizden area start ====== */

.rurmob-news-area {
    padding: 44px 0;
}

.rumob-news-item {
    position: relative;
    border-radius: 20px;
    transition: all .2s ease-in-out;
}

    .rumob-news-item:hover {
        box-shadow: 0 0 11px 5px rgba(33,33,33,.2);
        transform: scale(1.01);
    }

    .rumob-news-item img {
        width: 100%;
        border-radius: 20px;
    }

    .rumob-news-item a h2 {
        font-weight: 700;
        font-size: 30px;
        color: #F1F1F1;
        position: absolute;
        top: 45px;
        left: 39px;
    }


    .rumob-news-item a p {
        font-size: 25px;
        color: #F1F1F1;
        position: absolute;
        top: 90px;
        left: 39px;
    }

.rumob-link-content {
    position: absolute;
    bottom: 28px;
    text-align: right;
    display: block;
    width: 100%;
}

.rumob-link {
    font-weight: 400;
    font-size: 18px;
    color: #000000 !important;
    display: inline-block;
    background: #d9d9d9;
    border-radius: 50px;
    padding: 10px 15px;
    margin-right: 36px;
    transition: .2s;
}

    .rumob-link:hover {
        background: #d9d9d9;
    }

.rumob-h2 {
    color: #717171 !important;
}

/*==== footer-area-start ====== */

footer {
    background: #0B5494;
    padding: 44px 0 20px 0;
}

.footer-wrapperr {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
}


.footer-left-content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 21px;
}

.footer-left-content small {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 25px;
    display: block;
}

.footer-left-content p {
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
}

    .footer-left-content p span {
        font-weight: 700;
    }



.social-icon ul {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}

    .social-icon ul li a {
        width: 50px;
        height: 50px;
        text-align: center;
        display: block;
        line-height: 50px;
        color: #fff;
        font-size: 20px;
        background-color: #0B4C86;
        margin-right: 15px;
        transition: .2s;
    }

        .social-icon ul li a:hover {
            transform: scale(1.2);
        }

        .social-icon ul li a span i {
            transform: rotate(47deg) !important;
        }

.f-apps-store {
    text-align: center;
}

    .f-apps-store ul li a {
        margin-bottom: 8px;
        display: block;
    }

    .f-apps-store p {
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
    }

/*======= mega-menu-area======== */


.mega-menu-area {
    background-color: #0B5494;
    background-repeat: no-repeat;
    max-width: 905px;
    padding: 30px 30px 30px 30px;
    border-top: 2px solid #fff;
    width: 100%;
    position: absolute;
    top: 4rem;
    /*left: 0px;*/
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.opens-mega-menus {
    opacity: 1;
    visibility: visible !important;
}

.m-b-arrow {
    text-align: left;
    position: relative;
    margin-top: -52px;
}

.mega-manu-item {
    /*margin-top: 40px;*/
}

    .mega-manu-item h2 {
        font-weight: 700;
        font-size: 20px;
        color: #FFFFFF;
        margin-bottom: 20px;
        text-align: left !important;
    }

    .mega-manu-item ul {
        border-left: 2px solid #FFFFFF;
        margin-bottom: 10px;
        display: block !important;
    }


        .mega-manu-item ul li a {
            font-weight: 400;
            font-size: 17px;
            color: #FFFFFF;
            display: inline-block;
            padding: 10px 15px;
            display: block !important;
            text-align: left !important;
        }

            .mega-manu-item ul li a:hover {
                color: #8abae3;
            }



@media (max-width: 1201px) {


    .main-content .owl-theme .owl-dots .owl-dot span {
        width: 5rem;
    }
}

/* 
==============================
page-2-start
========================== */



.tabs {
    width: 100%;
    display: inline-block;
}



.tab-links:after {
    display: block;
    clear: both;
    content: '';
}

.tab-links {
    padding: 10px 0 0 0;
    align-items: center;
    justify-content: center;
}


    .tab-links a:hover {
        background: #212E84;
        text-decoration: none;
        outline: none;
        color: #fff;
    }


    .tab-links li.active a, .tab-links li.active a:hover {
        color: #fff;
    }

.tab {
    display: none;
}

    .tab.active {
        display: block;
    }

.tab-links li a {
    color: #212E84 !important;
}

    .tab-links li a:hover {
        color: #fff !important;
    }

.tab-links li .active {
    background: #212E84;
    color: #fff !important;
}



#tab1 > div h3,
#tab2 > div h3,
#tab3 > div h3,
#tab4 > div h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin-bottom: 20px;
}

#tab1 > div p,
#tab2 > div p,
#tab3 > div p,
#tab4 > div p {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: black;
    margin-bottom: 20px;
}


.uye-list-area {
    overflow: hidden;
}

.uye-acc-wrapper {
    margin-bottom: 11px;
}

.uye-acc-title {
    position: relative;
}

    .uye-acc-title p {
        font-weight: 400;
        font-size: 20px;
        color: #212E84;
        display: block;
        padding: 19px 34px;
        background: #FFFFFF;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        cursor: poAlegreya;
    }

.acc-arrow {
    position: absolute;
    top: 20px;
    right: 16px;
}

.uye-acc-open {
    display: none;
}

    .uye-acc-open ul li a {
        font-weight: 400;
        font-size: 20px;
        color: #212E84;
        background: #F2F2F2;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        display: block;
        padding: 19px 34px;
    }

.uye-acc-title.open span {
    transform: rotate(185deg);
}

.uye-active span {
    transform: rotate(185deg);
}

.uye-active.open span {
    transform: rotate(0deg);
}




/* uye-tab-itemss */

.uye-tab-content-title h2 {
    /* font-family: 'Alegreya';*/
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    background-color: #212E84;
    padding: 17px 65px;
    color: #fff;
}


.uye-tab-items-content {
    padding: 0px 40px;
}

.uye-tab-top-content-item-wrapper {
    border-bottom: 1px solid #000000;
}

    .uye-tab-top-content-item-wrapper:last-of-type {
        border-bottom: none;
    }

.uye-tab-top-content-item {
    max-width: 190px;
    margin: auto;
}

.uye-tab-contents span img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-top: 25px;
}

.uye-tab-contents h5 {
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    margin-left: 15px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.uye-tab-contents p {
    font-weight: 400 !important;
    font-size: 14px;
    color: #000000;
    text-align: left !important;
    margin-bottom: 36px !important;
}

.uye-tab-contents {
    max-width: 171px;
    margin: auto;
}


/* ======1000px====== */


.uye-tab-top-1000px-content-item-wrapper {
    border-bottom: 1px solid #000000;
    display: none;
}

    .uye-tab-top-1000px-content-item-wrapper:last-of-type {
        border-bottom: none;
    }


.mobile-content-item-wrapper {
    border-bottom: 1px solid #000000;
    display: none;
}

    .mobile-content-item-wrapper:last-of-type {
        border-bottom: none;
    }


.tab-bar-click {
    margin-bottom: 30px;
}

    .tab-bar-click span {
        width: 80px;
        height: 65px;
        text-align: center;
        line-height: 65px;
        display: block;
        background: #EBEBEB;
        border-radius: 11px;
        cursor: poAlegreya;
    }

.tab-bar-click {
    display: none;
}

    .tab-bar-click span img {
        width: 45px;
    }



.mobile-menu-area2 {
    margin-bottom: 15px;
}


.uye-tab-top-content-item-wrapper:last-of-type {
    border-bottom: none;
}


/* =============end page ================ */
.page-header {
    font-size: 23px;
    letter-spacing: -0.03em;
    border-bottom: 1px solid #013483;
    margin-bottom: 20px;
    padding-bottom: 10px;
    margin-top: 10px;
    color: #013483;
}

.page-title h2 {
    /* font-family: 'Alegreya';*/
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    background-color: #212E84;
    padding: 17px 20px;
    color: #fff;
    margin-bottom: 10px;
}

.layout-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    margin-right: 30px;
}

.float-left {
    float: left !important;
}


.side-nav {
    margin-left: 10px;
}

    .side-nav ul {
        width: 100%;
    }

    .side-nav li {
        padding: 2px;
        background-color: #F2F2F2;
    }

    .side-nav a {
        color: #212E84;
        font-size: 15px;
        font-weight: 500;
        padding: 15px;
    }

    .side-nav li a:hover {
        color: #212E84;
        font-size: 15px;
        font-weight: 500;
        padding: 15px;
    }

    .side-nav li.active {
        padding: 2px;
        background-color: #212E84 !important;
    }


        .side-nav li.active a {
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            padding: 15px;
        }


    .side-nav li a:hover {
        color: #1591fb;
    }

    .side-nav button {
        margin-top: -15px;
        padding-bottom: 15px;
    }

    .side-nav img {
        border: none;
    }

.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.custom-bar-bg {
    background-color: #0B5494 !important;
    color: white !important;
}

.custom-bg {
    background-color: #0B5494 !important;
}

.table-header {
    background-color: #0B5494;
    color: #fff;
    box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.1);
}

.table-footer {
    background-color: #0B5494 !important;
    color: #fff !important;
    opacity: 0.7;
    box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.28);
    -webkit-box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.1);
}

.border-blue {
    border-color: #0b5494 !important;
}

.color-blue {
    color: #0b5494 !important
}

.striped tr:nth-child(even) {
    background: rgba(11, 84, 148, .2);
    box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.28);
    -webkit-box-shadow: 0 1px 9px 1px rgba(0, 0, 0, 0.1);
}


.hrdivider {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    color: #0B5494;
    height: 10px;
}

    .hrdivider span {
        position: absolute;
        top: -11px;
        background: #fff;
        padding: 0 20px;
        font-weight: bold;
        font-size: 16px;
        color: #0B5494;
        right: 50%;
    }

@media only screen and (max-width: 1200px) {
    .hrdivider span {
        position: absolute;
        top: -9px;
        background: #fff;
        padding: 0 20px;
        font-weight: bold;
        font-size: 16px;
        color: #0B5494;
        right: 36%;
    }

    .news-slider-content-header {
        height:100px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1900px) {
    .hrdivider span {
        position: absolute;
        top: -11px;
        background: #fff;
        padding: 0 20px;
        font-weight: bold;
        font-size: 16px;
        color: #0B5494;
        right: 45%;
    }
}

}

.page-title a {
    color: #fff !important;
    font-size: 20px;
    text-decoration: none;
    right: 40px;
    position: relative;
}

.chamberDropDown {
    height: 50px;
    color: #0B5494;
    font-size: 20px;
    border-radius: 10px;
    width: 80%;
    margin-left: 10%;
}

.chamberCardHeader {
    background: #0B5494;
    height: 68px;
    position: relative;
}

    .chamberCardHeader strong {
        position: absolute;
        top: 20%;
        color: #fff;
        font-weight: 200;
        font-size: 32px;
    }

.triangle-bottomleft {
    width: 0px;
    height: 0px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-top: 34px solid #fff;
    border-bottom: 34px solid transparent;
    border-left: 34px solid transparent;
    border-right: 34px solid #fff;
}

.board-list {
    font-weight: 400;
}

    .board-list ul {
        margin-left: 20px;
        list-style: none;
    }

    .board-list li::before {
        content: '■ ';
        color: #0B5494;
    }

    .board-list li {
        font-weight: 400;
        font-size: 20px;
        padding-bottom: 3px;
    }

.bullet-list {
    font-weight: 400;
}

    .bullet-list ul {
        margin-left: 20px;
    }



    .bullet-list li::before {
        content: '■ ';
        color: #0B5494;
    }

    .bullet-list li {
        font-weight: 400;
        font-size: 20px;
        padding-bottom: 3px;
    }

.item-list {
    font-size: 22px;
    color: #000 !important;
}

    .item-list li {
        border-bottom: 5px solid rgba(0, 0, 0, .2);
        padding-bottom: 5px;
        padding-top: 10px;
        padding-left: 30px;
        vertical-align: bottom;
    }


    .item-list a {
        font-size: 22px;
        color: #000 !important;
        text-decoration: none;
        font-weight: 500;
    }

.form-title {
    color: #212E84;
    font-size: 20px;
}

.form-info {
    color: #0B5494;
    font-size: 15px;
}

.color-fontgray {
    color: #52535F;
}


.custom-form .btn-primary {
    background-color: #0B5494;
    height: 45px;
    font-size: 20px;
}

.custom-form input[type=text] {
    border: 2px solid #0B5494;
    height: 43px;
    font-size: 20px;
}

.custom-form input[type=email] {
    border: 2px solid #0B5494;
    height: 43px;
    font-size: 20px;
}

.custom-form textarea {
    border: 2px solid #0B5494;
    font-size: 20px;
}

.custom-form select {
    height: 43px;
    font-size: 20px;
}

.custom-form label {
    color: #0B5494;
    font-size: 24px;
}

.borderBlue {
    border: 2px solid #0B5494;
}


.blue-list p {
    color: #0B5494 !important;
    font-size: 18px;
}

.blue-list span {
    color: #000 !important;
    font-size: 18px;
}

.btn-primary {
    background-color: #0B5494;
}

.contact-info {
    font-size: 24px;
    color: #000;
}

    .contact-info span {
        color: #0B5494 !important;
    }

.alert-custom {
    color: #FFFFFF;
    background-color: #0B5494;
    border-color: #FFFFFF;
}

.fs-inherit {
    font-size: inherit;
}

.strippedcell {
    background-color: #0b549457 !important;
    color: black;
}

.bg-custom {
    background-color: #0B5494 !important;
}



.legRadius {
    border-radius: 15px;
}

.legATitle {
    position: relative;
    top: -280px;
    z-index: 100;
    color: #ffffff;
    left: 20px;
    font-size: 35px;
    font-weight: 700;
    text-shadow: 2px 2px #000;
}

.accordion-ekutuphane .card-header {
    background-color: #0B5494;
    color: #fff;
    font-size: 24px;
}

    .accordion-ekutuphane .card-header a {
        color: #fff;
        font-size: 20px;
    }

.accordion-ekutuphane li a p {
    color: #0B5494;
    font-size: 18px;
    font-weight: 400;
}

.accordion-ekutuphane li a span {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}

.eLibray-card img {
    filter: gray; /* IE */
    -webkit-filter: grayscale(.4); /* Old WebKit */
    -webkit-filter: grayscale(40%); /* New WebKit */
    filter: grayscale(40%); /* Current draft standard */
}

.eLibray-card h2 {
    text-shadow: 2px 2px 2px #000;
}

.eLibray-card p {
    text-shadow: 2px 2px 2px #000;
}


.eLibray-card a {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.btn-bg-white {
    background-color: #fff;
}


.overlay-container {
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.medya-portali .overlay-image {
    height: 200px !important;
}

.overlay-image {
    display: block;
}

.overlay-content {
    background: rgba(33, 46, 132, 0.7);
    bottom: 0;
    color: white;
    font-size: 1em;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 3.75em 3em;
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    cursor: pointer;
}

    .overlay-content:hover {
        opacity: 1;
    }


.card-img-overlay {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#212e84+40,212e84+85&0.8+40,0+85 */
    background: -moz-linear-gradient(top, rgba(33,46,132,0.8) 40%, rgba(33,46,132,0) 85%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(33,46,132,0.8) 40%,rgba(33,46,132,0) 85%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(33,46,132,0.8) 40%,rgba(33,46,132,0) 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc212e84', endColorstr='#00212e84',GradientType=0 ); /* IE6-9 */
}

.main-card .card-img-overlay {
    top: unset;
    color: #fff;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#212e84+1,212e84+35&0+1,0.85+35 */
    background: -moz-linear-gradient(top, rgba(33,46,132,0) 1%, rgba(33,46,132,0.85) 35%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(33,46,132,0) 1%,rgba(33,46,132,0.85) 35%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(33,46,132,0) 1%,rgba(33,46,132,0.85) 35%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212e84', endColorstr='#d9212e84',GradientType=0 ); /* IE6-9 */
}


.bottomRadius {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}



.product-area {
    padding-top:0px;
    padding-bottom:44px;
  
}

.product-item {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 11px 5px rgba(33,33,33,.2);
    transition: all .2s ease-in-out;
}

    .product-item:hover {
        box-shadow: 0 0 13px 5px rgba(33,33,33,.2);
        transform: scale(1.01);
    }

    .product-item img {
        width: 100%;
        border-radius: 20px;
    }

    .product-item a h2 {
        font-weight: 700;
        font-size: 30px;
        color: #F1F1F1;
        position: absolute;
        top: 45px;
        left: 39px;
    }


    .product-item a p {
        font-size: 25px;
        color: #F1F1F1;
        position: absolute;
        top: 90px;
        left: 39px;
    }


.setOfFour {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 11px 5px rgba(33,33,33,.2);
    transition: all .2s ease-in-out;
}

    .setOfFour:hover {
        box-shadow: 0 0 13px 5px rgba(33,33,33,.2);
        transform: scale(1.01);
    }

    .setOfFour img {
        /*width: 100%;*/
        border-radius: 20px;
    }

    .setOfFour a h2 {
        font-weight: 700;
        font-size: 30px;
        color: #F1F1F1;
        position: absolute;
        top: 45px;
        left: 39px;
    }


    .setOfFour a p {
        font-size: 25px;
        color: #F1F1F1;
        position: absolute;
        top: 90px;
        left: 39px;
    }

element.style {
}

.images > li {
    float: left;
    width: 30%;
    /* height: 50%; */
    max-height: 289px px;
    /*margin: 0 -1px -1px 0;*/
    border: 1px solid transparent;
    overflow: hidden;
}

/*Finans*/
.financeTitle {
    font-size: 30px;
    font-weight: bolder;
}

.financeTable {
    font-size: 25px;
    line-height: 40px;
}

@media only screen and (max-width: 1200px) {
    .financeTable {
        font-size: 14px;
        line-height: 25px;
    }

    .financeTitle {
        font-size: 17px;
    }

    .financeButton {
        padding: 2rem;
        margin-right: 15px;
    }

    .hero-slider-item img {
        max-height: 300px !important;
    }


    .rumob-news-item a p {
        top: 65px;
    }


}

.hover-shadow {
    transition: all .2s ease-in-out;
}

    .hover-shadow:hover {
        /*box-shadow: 0 0 11px 5px rgba(33,33,33,.2);
        border-radius: 15px;*/
        transform: scale(1.08);
    }

.hover-warning:hover {
    background-color: #ffc107 !important;
}

.text-shadow {
    text-shadow: 2px 2px #000;
}

@media (min-width : 1951px) {

    .hero-slider-item img {
        max-height: 600px !important;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {

    .hero-slider-item img {
        max-height: 350px !important;
    }
}


.text-right{
    text-align:end;
}