@charset "UTF-8";

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

figcaption,
figure,
main {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: "Titillium Web", sans-serif;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: "Titillium Web", sans-serif;
    font-size: 1em;
}



sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: "Titillium Web", sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details,
menu {
    display: block;
}


template {
    display: none;
}

[hidden] {
    display: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre,
fieldset,
ul,
ol,
menu,
form {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

input {
    border: 0 none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button {
    background: none;
    cursor: pointer;
}

button,
fieldset,
iframe {
    border: 0;
}

fieldset,
ul,
ol,
button,
menu {
    padding: 0;
}

ol,
ul {
    list-style: none;
}

textarea {
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.icon {
    font-size: 18px;
    color: currentColor;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}


.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}


.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    40% {
        -webkit-transform: translateY(-30px) translateX(-50%);
        transform: translateY(-30px) translateX(-50%);
    }

    60% {
        -webkit-transform: translateY(-15px) translateX(-50%);
        transform: translateY(-15px) translateX(-50%);
    }
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    40% {
        -webkit-transform: translateY(-30px) translateX(-50%);
        transform: translateY(-30px) translateX(-50%);
    }

    60% {
        -webkit-transform: translateY(-15px) translateX(-50%);
        transform: translateY(-15px) translateX(-50%);
    }
}

.bounceArrow {
    -webkit-animation-name: bounceArrow;
    animation-name: bounceArrow;
}

@-webkit-keyframes swing {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
}

@keyframes swing {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes swingIcon {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
}

@keyframes swingIcon {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Lazy Load Container */
.lazy-container {
    position: relative;
    background: transparent;
    overflow: hidden;
    height: 100%;
}

/* Loading Spinner */
.lazy-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(214, 51, 132, 0.2);
    border-radius: 50%;
    border-top-color: #d63384;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Lazy Image Stili */
img.lazy {
    opacity: 0;
    filter: blur(5px);
    transition: transform 0.5s ease, filter 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

img.lazy-loaded {
    opacity: 1;
    filter: blur(0);
}


/* Owl Carousel - Core */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Owl Carousel - Auto Height Plugin */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Default theme - Owl Carousel CSS File */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    -webkit-transform: scale(1);
    transform: scale(1);
    background: #869791;
}

body {
    font-family: "Titillium Web", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #5e5e5e;
    overflow-x: hidden;
}

body.bg {
    background: #eff2f7;
}

.whatsapp {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 70px;
    right: 33px;
    background: #25d366;
    border: 5px solid #fff;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #fff;
    z-index: 999;
    -webkit-transition: .3s;
    transition: .3s;
}

.duyduy {
    bottom: 144px;
    background: #1e5c99;
}

@media (max-width: 767px) {
    .whatsapp {
        right: 12px;
        width: 55px;
        height: 55px;
        bottom: 60px;
    }

    .duyduy {
        bottom: 125px;
    }
}

.whatsapp:before,
.whatsapp:after {
    content: "";
    position: absolute;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 100%;
    -webkit-animation: pulsate 1.5s ease-out;
    animation: pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
}

.duyduy:before,
.duyduy:after {
    background: #6b48a924;
}

.whatsapp:before {
    width: 80px;
    height: 80px;
}

@media (max-width: 767px) {
    .whatsapp:before {
        width: 65px;
        height: 65px;
    }
}

.whatsapp:after {
    width: 100px;
    height: 100px;
}

@media (max-width: 767px) {
    .whatsapp:after {
        width: 75px;
        height: 75px;
    }
}

.whatsapp .icon {
    font-size: 28px;
}

@media (max-width: 767px) {
    .whatsapp .icon {
        font-size: 22px;
    }
}

.whatsapp.is-active {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
}

@media (max-width: 767px) {
    .whatsapp.is-active {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -13px;
    margin-right: -13px;
}

@media (min-width: 1824px) {
    .header-nav {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-nav {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.header-nav-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.baslik-gezinti-ogesi {
    padding-left: 13px;
    padding-right: 13px;
}

@media (min-width: 1824px) {
    .baslik-gezinti-ogesi {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .baslik-gezinti-ogesi {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.baslik-gezinti-ogesi._apply>a {
    background: #1e5c99;
    padding-left: 10px;
    padding-right: 10px;
}

.baslik-gezinti-ogesi>a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    height: 63px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    -webkit-transition: .3s;
    transition: .3s;
}

@media (min-width: 1366px) {
    .baslik-gezinti-ogesi>a {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .baslik-gezinti-ogesi>a {
        font-size: 13px;
    }
}

.baslik-gezinti-ogesi>a:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: currentColor;
    width: 0;
    margin: 0 auto;
    -webkit-transition: width .3s;
    transition: width .3s;
}

.baslik-gezinti-ogesi:hover>a:before {
    width: 100%;
}

.baslik-gezinti-ogesi:hover>.header-nav-links {
    opacity: 1;
    visibility: visible;
}

.baslik-gezinti-ogesi:hover>.baslik-nav-acilir-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .4s .4s;
    transition: .4s .4s;
}

.header-nav-links {
    position: absolute;
    background: #fff;
    border-radius: 0 0 10px 10px;
    min-width: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
}

.header-nav-links._right {
    right: 13px;
}

.header-nav-links>li {
    display: block;
}

.header-nav-links>li>a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.3px;
    padding: 10px 25px;
    color: #1e5c99;
    -webkit-transition: .3s;
    transition: .3s;
}

.header-nav-links>li>a:hover {
    color: #fff;
    background: #1e5c99;
}

.baslik-nav-acilir-menu {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.baslik-nav-acilir-menu>.container {
    padding-top: 100px;
    padding-bottom: 40px;
}

.baslik-nav-acilir-menu-heading .title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.baslik-nav-acilir-menu-heading .text {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    max-width: 350px;
}

.baslik-nav-acilir-liste ul:hover li a .icon svg {
    opacity: .5;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

.baslik-nav-acilir-liste ul li {
    margin-bottom: 20px;
}

.baslik-nav-acilir-liste ul li:hover a {
    background: #1e5c99;
}

.baslik-nav-acilir-liste ul li:hover a .icon svg {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.baslik-nav-acilir-liste ul li a {
    border-radius: 10px;
    background: #1e5c998a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-right: 10px;
    height: 90px;
    -webkit-transition: .3s;
    transition: .3s;
}

.baslik-nav-acilir-liste .icon {
    color: #fff;
    font-size: 32px;
    height: 100%;
    background: #1e5c99;
    width: 70px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}

.baslik-nav-acilir-liste .icon svg {
    -webkit-transition: .3s;
    transition: .3s;
}

.baslik-nav-acilir-liste .desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 17px;
}

.baslik-nav-acilir-liste .desc .title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.baslik-nav-acilir-liste .desc .text {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.baslik-nav-acilir-menu .cards .card {
    margin-bottom: 20px;
    background: transparent;
    border: none;
}

.baslik-nav-acilir-menu .cards .card a {
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.baslik-nav-acilir-menu .kart-sekil {
    background: #1e5c99;
    height: 100px;
}

.baslik-nav-acilir-menu .kart-sekil .icon {
    color: #fff;
    font-size: 42px;
}

.baslik-nav-acilir-menu .kart-altbilgisi {
    height: 65px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.baslik-nav-acilir-menu .kart-altbilgisi .title {
    color: #fff;
    font-size: 14px;
}

.baslik-nav-acilir-menu .kesfet {
    margin-bottom: 20px;
}

.mobil-navigasyon {
    background-color: #f3f3f3;
    -webkit-box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 445px;
    height: 100%;
    overflow: hidden;
    z-index: 99999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.35s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.35s cubic-bezier(0, 0, 0.2, 1);
}

.mobil-navigasyon.is-visible {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 479px) {
    .mobil-navigasyon {
        width: 320px;
    }
}

.mobil-gezinme-sarmalayicisi {
    overflow-y: auto;
    height: calc(100% - 65px);
    scrollbar-color: rgba(0, 0, 0, 0.12) #fff;
    scrollbar-width: thin;
}

.mobil-gezinme-sarmalayicisi::-webkit-scrollbar-track {
    background-color: #fff;
}

.mobil-gezinme-sarmalayicisi::-webkit-scrollbar {
    width: 6px;
}

.mobil-gezinme-sarmalayicisi::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.12);
}

.mobil-gezinme-sarmalayicisi .buttons-container {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
}

.mobil-gezinme-sarmalayicisi .buttons-container .button.min-width {
    min-width: 250px;
}

.mobil-gezinme-basligi {
    position: relative;
    background: #f3f3f3;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobil-nav-baslik-govdesi {
    position: relative;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 25px;
    padding-right: 20px;
}

.mobil-nav-baslik-logosu a {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 600;
}

.mobil-gezinme-icerigi {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobil-gezinme-icerigi.other {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mobil-gezinme-icerigi li.heading {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 20px;
    padding-bottom: 10px;
    color: #1e5c99;
    font-size: 13px;
    letter-spacing: .2em;
    font-weight: 600;
    z-index: 1;
}

.mobil-gezinme-icerigi>ul>li:not(.heading):not(.not).acik>a,
.mobil-gezinme-icerigi>ul>li:not(.heading):not(.not):hover>a {
    background: #fff;
    color: #1e5c99;
}

.mobil-gezinme-icerigi>ul>li:not(.heading).not>a {
    color: #999;
    font-weight: 500;
    letter-spacing: 0;
}

.mobil-gezinme-icerigi>ul>li:not(.heading).not>a:hover {
    color: #1e5c99;
}

.mobil-gezinme-icerigi>ul>li:not(.heading)>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #333;
    font-size: 14px;
    letter-spacing: -0.5px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2;
    -webkit-transition: .3s;
    transition: .3s;
}

.mobil-gezinme-icerigi>ul>li:not(.heading)>a .icon {
    opacity: .3;
    width: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mobil-gezinme-icerigi>ul>li:not(.heading)>a.link {
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobil-navigasyon__plus {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    margin-right: 0;
    color: #5e5e5e;
}

.mobil-navigasyon-altyazisi {
    background: #fff none repeat scroll 0 0;
    display: none;
}

.mobil-navigasyon-altyazisi>li {
    display: block;
}

.mobil-navigasyon-altyazisi>li:last-child {
    padding-bottom: 20px;
}

.mobil-navigasyon-altyazisi>li:last-child a {
    border-bottom: 0 none;
}

.mobil-navigasyon-altyazisi>li>a {
    color: #5e5e5e;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 40px;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}

.mobil-navigasyon-altyazisi>li>a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: currentColor;
    opacity: .3;
    width: 5px;
    height: 5px;
    border-radius: 100%;
}

.mobil-navigasyon-altyazisi>li>a:hover {
    color: #1e5c99;
}

.mobil-navigasyon-altyazisi>li.heading {
    position: sticky;
    top: 40px;
    background: #fff;
}

.mobil-navigasyon-kapat {
    color: #1e5c99;
}

.mobil-navigasyon-kapat .icon {
    font-size: 28px;
}

.mobil-navigasyon__footer {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 65px;
    background: #fff;
    -webkit-box-shadow: 8px 12px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 8px 12px 25px rgba(0, 0, 0, 0.1);
}

.mobil-navigasyon__footer a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 65px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    opacity: .3;
}

.slide,
.slide-material,
.arden {
    height: 100vh;
}

@media (min-width: 1824px) {

    .slide,
    .slide-material,
    .arden {
        height: 100vh;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .slide,
    .slide-material,
    .arden {
        height: 600px;
    }
}

@media (max-width: 479px) {

    .slide,
    .slide-material,
    .arden {
        height: 300px;
    }
}

.slayt-listesi {
    position: relative;
    top: 0;
    left: 0;
}

.slayt-listesi li {
    display: none;
}

.slide-material {
    overflow: hidden;
    position: relative;
}

.slide-material img {
    -webkit-transition: -webkit-transform 10s ease-in 0s;
    transition: -webkit-transform 10s ease-in 0s;
    transition: transform 10s ease-in 0s;
    transition: transform 10s ease-in 0s, -webkit-transform 10s ease-in 0s;
}

.slide-material img,
.slide-material video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slayt-foto>div {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    -webkit-transition: -webkit-transform 10s ease-in 0s;
    transition: -webkit-transform 10s ease-in 0s;
    transition: transform 10s ease-in 0s;
    transition: transform 10s ease-in 0s, -webkit-transform 10s ease-in 0s;
    opacity: .8;
}

.slide-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.slide-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding-top: 50px;
}

.slide-content {
    width: 65%;
    position: relative;
    z-index: 4;
    text-align: center;
}

@media (min-width: 1824px) {
    .slide-content {
        width: 85%;
    }
}

@media (max-width: 1199px) {
    .slide-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .slide-content {
        text-align: center;
		margin-top: 55px;
    }
	.section-haberler {
		padding-top: 30px !important;
	}
}

.slide-content .heading {
    color: #fff;
    font-size: 65px;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 3px;
}

@media (min-width: 1824px) {
    .slide-content .heading {
        font-size: 62px;
    }
}

@media (max-width: 479px) {
    .slide-content .heading {
        font-size: 25px;
        letter-spacing: 0px;
    }
}

.slide-content .heading span {
    font-family: "Roboto", sans-serif;
    font-size: 50px;
    display: block;
    font-weight: 900;
    letter-spacing: 0px;
}

@media (min-width: 1824px) {
    .slide-content .heading span {
        font-size: 86px;
    }
}

@media (max-width: 479px) {
    .slide-content .heading span {
        font-size: 35px;
        letter-spacing: -2px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .slide-content .heading span {
        font-size: 35px;
        letter-spacing: -3px;
    }
}

.slide-content .text {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
}

.slide-pagination {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    z-index: 4;
    text-align: center;
    display: none;
}

@media (max-width: 991px) {
    .slide-pagination {
        display: none;
    }
}

.slide-pagination li {
    display: inline-block;
}

.slide-pagination li a {
    width: 20px;
    height: 20px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    position: relative;
    margin: 0 3px;
    border-radius: 50%;
    background: #fff;
}

.slide-pagination li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1e5c99;
    opacity: 0;
    visibility: hidden;
}

.slide-pagination li.is-active a:before {
    opacity: 1;
    visibility: visible;
}

.slide-arrows {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin-top: -20px;
    text-align: center;
}

@media (max-width: 991px) {
    .slide-arrows {
        display: none;
    }
}

.slide-arrows a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    z-index: 4;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.slide-arrows a:last-child {
    margin-right: 0;
}

.slide-arrows a.prev {
    padding-left: 5px;
    left: 20px;
}

.slide-arrows a.next {
    padding-right: 5px;
    right: 20px;
}

.slide-arrows a .arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-top: 7px solid currentColor;
    border-right: 7px solid currentColor;
}

.slide-arrows a .arrow.left {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.slide-arrows a .arrow.right {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.slayt-listesi li.is-active .slide-material img,
.slayt-listesi li.is-active .slayt-foto>div {
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
}

.slayt-listesi li.is-active .slide-content .heading,
.slayt-listesi li.is-active .slide-content .text,
.slayt-listesi li.is-active .slide-content .slide-buttons>div {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.slide-content .heading,
.slide-content .text {
    opacity: 0;
    visibility: hidden;
}

.slide-content .heading {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
    -webkit-transition: .9s .1s;
    transition: .9s .1s;
}

.slide-content .text {
    -webkit-transform: translateY(-90px);
    transform: translateY(-90px);
    -webkit-transition: .9s .2s;
    transition: .9s .2s;
}

.buttons-container.center {
    text-align: center;
    width: 100%;
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    font-family: inherit;
    text-align: center;
    line-height: 1.2;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .3px;
    border-radius: 10px;
    height: 50px;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    border: 2px solid transparent;
    background: #a17c9b;
}

.button:not(:last-child) {
    margin-right: 0;
}

.button .icon {
    margin-left: 10px;
    font-size: 18px;
}

.button.min-width {
    min-width: 230px;
}

.app-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
}

.app-overlay.is-visible {
    opacity: .7;
    visibility: visible;
}

.app-scroll {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    right: 35px;
    bottom: 70px;
    background: #0f3248;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 767px) {
    .app-scroll {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 60px;
    }
}

.app-scroll .icon {
    font-size: 22px;
}

@media (max-width: 767px) {
    .app-scroll .icon {
        font-size: 18px;
    }
}

.app-scroll.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.kisayollar-ogesi {
    position: relative;
}

.kisayollar-ogesi>a::after {
    content: "";
    position: absolute;
    top: 25%;
    bottom: 25%;
    /* yüksekliği %50 yapar */
    right: 0;
    width: 1px;
    background-color: #fff;
}

/* Son elemanda çizgiyi kaldır */
.kisayollar-ogesi:last-child>a::after {
    display: none;
}


.kisayollar-ogesi:hover .kisayollar-kapsayici,
.kisayollar-acilir-menu:hover~.kisayollar-kapsayici {
    background-color: #fff;
}

.kisayollar-ogesi:hover .kisayollar-kapsayici .icon,
.kisayollar-ogesi:hover .kisayollar-kapsayici .desc,
.kisayollar-acilir-menu:hover~.kisayollar-kapsayici .icon,
.kisayollar-acilir-menu:hover~.kisayollar-kapsayici .desc {
    color: #000;
}


.kisayollar-ogesi:hover .kisayollar-kapsayici:before {
    width: 100%;
    background-color: #000;
}

.kisayollar-ogesi:hover .kisayollar-acilir-menu {
    opacity: 1;
    visibility: visible;
}

.kisayollar-ogesi:hover .kisayollar-acilir-listesi li a .icon {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.kisayollar-kapsayici {
    background-color: #0f3248;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 19px;
    padding-right: 19px;
    position: relative;
    overflow: hidden;
}

.kisayollar-kapsayici:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    height: 4px;
    width: 0;
    -webkit-transition: width .3s;
    transition: width .3s;
}

.kisayollar-kapsayici .icon {
    color: #fff;
    font-size: 24px;
}

.kisayollar-kapsayici .desc {
    padding-left: 13px;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.kisayollar-kapsayici .desc .title {
    font-size: 16px;
    letter-spacing: -0.5px;
    font-weight: 900;
}

.kisayollar-kapsayici .desc .text {
    font-size: 13px;
    line-height: 1.3;
}

.kisayollar-acilir-menu {
    position: absolute;
    right: 0;
    bottom: 80px;
    left: 0;
    background: #fff;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
}

.kisayollar-acilir-menu .heading {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.5px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.35);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.kisayollar-acilir-listesi li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    color: #000;
    font-size: 13px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    position: relative;
    z-index: 1;
}

.kisayollar-acilir-listesi li a:hover {
    color: #1a4e82;
    -webkit-transition: .3s;
    transition: .3s;
}

.kisayollar-acilir-listesi li a:hover:before {
    opacity: 1;
    visibility: visible;
}

.kisayollar-acilir-listesi li a .icon {
    font-size: 13px;
    margin-right: 7px;
    width: 18px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 479px) {
    .shortcuts.list-button ul li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.shortcuts.list-button ul li:nth-child(1) .shortcuts-card {
    background: #65be9f;
}

.shortcuts.list-button ul li:nth-child(1) .shortcuts-card:before {
    background: #65be9f;
}

.shortcuts.list-button ul li:nth-child(2) .shortcuts-card {
    background: #6f8a93;
}

.shortcuts.list-button ul li:nth-child(2) .shortcuts-card:before {
    background: #6f8a93;
}

.shortcuts.list-button ul li:nth-child(3) .shortcuts-card {
    background: #aa9785;
}

.shortcuts.list-button ul li:nth-child(3) .shortcuts-card:before {
    background: #aa9785;
}

.shortcuts.list-button ul li:nth-child(4) .shortcuts-card {
    background: #4badba;
}

.shortcuts.list-button ul li:nth-child(4) .shortcuts-card:before {
    background: #4badba;
}

.shortcuts.list-button ul li:nth-child(5) .shortcuts-card {
    background: #fbb843;
}

.shortcuts.list-button ul li:nth-child(5) .shortcuts-card:before {
    background: #fbb843;
}

.shortcuts.list-button.v1:hover .shortcuts-card {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.shortcuts.list-button.v1 .shortcuts-card {
    border-radius: 15px;
}

.shortcuts.list-button.v1 .shortcuts-card:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
}

.shortcuts.list-button.v1 .shortcuts-card:before {
    display: none;
}

.shortcuts.list-button.v1 .shortcuts-card .more {
    display: none;
}

.shortcuts.list-button.v-light ul li:nth-child(n+3) {
    margin-bottom: 0 !important;
}

.shortcuts.list-button.v-light .shortcuts-card {
    background: #eff2f7 !important;
}

.shortcuts.list-button.v-light .shortcuts-card a>.icon {
    color: #1e5c99;
}

.shortcuts.list-button.v-light .shortcuts-card a .title {
    color: #1e5c99;
}

.shortcuts.list-button.v-border .shortcuts-card {
    background: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shortcuts.list-button.v-border .shortcuts-card a>.icon {
    color: #fff;
}

.shortcuts.list-button.v-border .shortcuts-card a .title {
    color: #fff;
}

.shortcuts.list-button .shortcuts-card:hover:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    border-radius: 0 0 10px 10px;
    -webkit-transition: .3s;
    transition: .3s;
}

.shortcuts.list-button .shortcuts-card:hover .more {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s .2s;
    transition: .3s .2s;
}



.shortcuts.list-button .shortcuts-card a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.shortcuts.list-button .shortcuts-card a>.icon {
    font-size: 48px;
}

.shortcuts.list-button .shortcuts-card .title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.5px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
}

.shortcuts.list-button .shortcuts-card .text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3;
    overflow: hidden;
    max-height: 34px;
    padding-left: 3px;
    padding-right: 3px;
    margin-top: 5px;
    display: none;
}

.shortcuts.list-button .shortcuts-card .more {
    position: absolute;
    bottom: -13px;
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 1199px) {
    .shortcuts.list-button .shortcuts-card .more {
        display: none;
    }
}

.shortcuts.list-button .shortcuts-card .more .icon {
    font-size: 24px;
}


.kesfet.style-1 .kesfet-karti:hover .kesfet-islem {
    background: rgba(255, 255, 255, 0.2);
}

.kesfet.style-1 .kesfet-kapak {
    height: 250px;
}

.kesfet.style-1 .kesfet-islem {
    background: rgba(255, 255, 255, 0.1);
}

.kesfet.style-1 .kesfet-islem a {
    color: #fff;
}

.kesfet:not(.style-1) .kesfet-karti:hover .kesfet-islem {
    background: #4b3600;
}

.kesfet:not(.style-1) .kesfet-karti:hover .kesfet-islem a {
    color: #fff;
}

.kesfet-karti {
    display: block;
    position: relative;
}

.kesfet-kapsayici {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.kesfet-kapak {
    height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 991px) {
    .kesfet-kapak {
        height: 300px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .kesfet-kapak {
        height: 300px;
    }
}

.kesfet-kapak img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.kesfet-govde {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    padding: 25px 30px 40px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 991px) {
    .kesfet-govde {
        padding: 20px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .kesfet-govde {
        padding: 20px;
    }
}

.kesfet-govde:before,
.kesfet-govde:after {
    content: "";
    position: absolute;
    height: 75%;
    z-index: -1;
}

.kesfet-govde:before {
    top: 0;
    right: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(transparent));
    background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
}

.kesfet-govde:after {
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.85)));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.kesfet-govde .title {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
}

@media (min-width: 768px) and (max-width: 991px) {
    .kesfet-govde .title {
        font-size: 18px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .kesfet-govde .title {
        font-size: 18px;
    }
}

.kesfet-listesi p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: .3s;
    transition: .3s;
}


.kesfet-islem {
    background: rgba(255, 255, 255, 0.5);
    margin-top: -30px;
    height: 80px;
    padding-top: 30px;
    border-radius: 0 0 20px 20px;
    -webkit-transition: .3s;
    transition: .3s;
}

.kesfet-islem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    color: #4b3600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.cards:not(.color-1) .card a:hover .kart-sekil {
    background: #1e5c998a;
}

.cards:not(.color-1) .card a:hover .kart-sekil .icon {
    color: #fff;
}

.cards .card {
    margin-bottom: 30px;
}

.cards .card a {
    padding: 7px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    display: block;
    position: relative;
    background: #fff;
    border-radius: 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.cards .card a:hover {
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.cards .card a:hover .kart-altbilgisi .sub>.icon {
    -webkit-transform: translateX(5px) scale(1.2);
    transform: translateX(5px) scale(1.2);
}

.kart-sekil {
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(7, 148, 170, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s;
    transition: .3s;
}

.kart-sekil .icon {
    color: #1e5c99;
    font-size: 60px;
}


.kart-altbilgisi {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    height: 190px;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}

.kart-altbilgisi .title {
    color: #1e5c99;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    max-height: 44px;
}

.kart-altbilgisi .text {
    color: #5e5e5e;
    font-size: 13px;
    margin-top: 10px;
    overflow: hidden;
    max-height: 61px;
}

.kart-altbilgisi .sub {
    position: absolute;
    right: -7px;
    bottom: -7px;
    left: -7px;
    border-radius: 0 0 15px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 25px;
    padding-right: 25px;
}

.kart-altbilgisi .sub .date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.kart-altbilgisi .sub .date .icon {
    font-size: 13px;
    margin-right: 7px;
}

.kart-altbilgisi .sub>.icon {
    color: #1e5c99;
    font-size: 14px;
    -webkit-transition: .3s;
    transition: .3s;
}

.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1001;
}

.baslik-mobil-dugmeleri {
    display: none;
}

@media (max-width: 991px) {
    .baslik-mobil-dugmeleri {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.baslik-mobil-dugmeleri button {
    color: #fff;
    font-family: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.baslik-mobil-dugmeleri button .icon {
    font-size: 24px;
}

.baslik-mobil-dugmeleri button .text {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-left: 6px;
}

.header-top {
    height: 90px;
    background: #1a4e82;
}

.header-top>.container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-bottom {
    height: 63px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #1e5c99;
}

@media (max-width: 767px) {
    .header-bottom {
        margin-top: 0;
    }

    .ustbar {
        padding: 62px 0 15px !important;
    }

    .detay-ust {
        height: 63px !important;
    }
}

.header-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.baslik-logo {
    top: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%);
    background-color: #fff;
    width: 220px;
    height: 210px;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-border-bottom-right-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-bottomright: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.baslik-logo.is-visible {
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

.baslik-logo.is-visible img {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 479px) {
    .baslik-logo {
        width: 120px;
        height: 115px;
        -webkit-border-bottom-right-radius: 30px;
        -webkit-border-bottom-left-radius: 30px;
        -moz-border-radius-bottomright: 30px;
        -moz-border-radius-bottomleft: 30px;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .baslik-logo {
        width: 180px;
        height: 170px;
    }
}

.baslik-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 91%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.baslik-logo h1 {
    margin: 0;
    font-size: 0;
}

.baslik-logo img {
    width: 165px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s .4s;
    transition: .3s .4s;
}

@media (max-width: 479px) {
    .baslik-logo img {
        width: 90px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .baslik-logo img {
        width: 140px;
    }
}

.header-weather {
    margin-left: 50px;
    font-family: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-weather {
        margin-left: 20px;
    }
}

.header-weather:hover .text .icon {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.header-weather>.icon {
    margin-right: 8px;
    font-size: 28px;
}

.header-weather .text {
    font-weight: 900;
    font-size: 20px;
    position: relative;
}

@media (max-width: 479px) {
    .header-weather .text {
        font-size: 18px;
    }
}

.header-weather .text .icon {
    font-size: 14px;
    margin-left: -2px;
    -webkit-transition: .3s;
    transition: .3s;
}

.header-contact a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2px;
    border-radius: 10px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.header-contact a .icon {
    margin-left: 5px;
    color: #fff;
    width: 38px;
    height: 40px;
    font-size: 16px;
    border-radius: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-contact a .description {
    text-align: center;
    padding-right: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-contact a .description .title {
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-contact a .description .text {
    font-size: 16px;
    font-weight: 900;
    margin-top: 3px;
    position: relative;
}

.header-social a {
    width: 37px;
    height: 37px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    -webkit-transition: .3s;
    transition: .3s;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

.header-social a:not(:last-child) {
    margin-right: 8px;
}

.header-social a:hover {
    background: #1e5c99;
    border: 1px solid #1e5c99;
}

.header-button {
    margin-right: 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: inherit;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 37px;
    height: 37px;
}

.header-button:hover .text:before {
    width: 100%;
}

.header-button .icon {
    font-size: 19px;
}

.header-button .text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.3px;
    position: relative;
}

.header-button .text:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    background: #fff;
    height: 2px;
    width: 0;
    -webkit-transition: width .3s;
    transition: width .3s;
}

.baslik-yerlesimi {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    overflow: hidden;
    background: #1e5c99;
    z-index: 1000;
    -webkit-transition: height .45s;
    transition: height .45s;
}

.baslik-yerlesimi:before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    background-blend-mode: multiply;
    background-color: #1a4e82;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    height: 100%;
    opacity: .8;
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

@media (max-width: 767px) {
    .footer {
        margin-bottom: 55px;
    }

    .ikon-kare {
        width: 35px !important;
        height: 35px !important;
    }

    .yazi-ctrl .btn {
        height: 35px !important;
    }

    .btn-geri {
        height: 35px !important;
        border-radius: 7px !important;
        padding: 0px 14px !important;
        position: absolute !important;
        right: 6px !important;
        top: 13px !important;
        z-index: 9999 !important;
    }
}

.footer-top {
    background: #1e5c99;
    min-height: 444px;
    position: relative;
    padding-bottom: 40px;
}

.footer-top:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #1a4e82;
    height: 72px;
}

.footer-heading {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 72px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-heading {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .footer-heading {
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .footer-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.footer-card ul li a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 15px;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}

.footer-card ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer-card ul li a:hover {
    color: #fff;
}

.footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .footer-contact {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.footer-contact-numbers {
    width: 100%;
    margin-top: 10px;
}

@media (min-width: 1200px) {
    .footer-contact-numbers {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .footer-contact-numbers {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.footer-contact-numbers ul li {
    margin-bottom: 0;
}

.footer-contact-numbers ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .footer-contact-numbers ul li {
        text-align: center;
    }
}

.footer-contact-numbers ul li a {
    display: block;
    position: relative;
    text-align: right;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 991px) {
    .footer-contact-numbers ul li a {
        text-align: center;
    }
}

.footer-contact-numbers ul li a:hover {
    color: #fff;
}

.footer-contact-numbers ul li a .title {
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 0px;
}

.footer-contact-numbers ul li a .number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Titillium Web", sans-serif;
    font-size: 30px;
    line-height: .8;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .footer-contact-numbers ul li a .number {
        font-size: 30px;
    }
}

.footer-contact-numbers ul li a .icon {
    font-size: 35px;
    margin-right: 15px;
}

@media (max-width: 1199px) {
    .footer-contact-numbers ul li a .icon {
        font-size: 35px;
    }
}

.footer-contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-contact-info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .footer-contact-info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (max-width: 991px) {
    .footer-contact-info {
        text-align: center;
    }
}

.footer-contact-info a {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
    -webkit-transition: .3s;
    transition: .3s;
}

@media (min-width: 480px) and (max-width: 767px) {
    .footer-contact-info a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-contact-info a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.footer-contact-info a:hover {
    color: #fff;
}

.footer-contact-info a strong {
    font-weight: 700;
}

.footer-logo {
    background-color: #fff;
    width: 241px;
    height: 225px;
    margin-bottom: 10px;
    margin-right: -20px;
    -webkit-border-bottom-right-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-bottomright: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 1;
}

@media (max-width: 991px) {
    .footer-logo {
        display: none;
    }
}

.footer-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 91%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-logo img {
    width: 186px;
    padding: 15px;
}

.footer-bottom {
    background: #1a4e82;
    padding-top: 25px;
    padding-bottom: 25px;
}

@media (max-width: 479px) {
    .footer-bottom .container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer-bottom .text {
    color: #fff;
    font-size: 13px;
}

.footer-bottom .design {
    color: #009fb3;
}

.footer-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    background: #fff;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (max-width: 767px) {
    .footer-nav {
        display: block;
    }
}

.footer-nav ul li a,
.footer-nav ul li button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 55px;
}

.footer-nav ul li a:not(.btn-search),
.footer-nav ul li button:not(.btn-search) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #5e5e5e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-transition: .3s;
    transition: .3s;
}

.footer-nav ul li a:not(.btn-search):hover,
.footer-nav ul li button:not(.btn-search):hover {
    background: #f26c4f;
    color: #fff;
}

.footer-nav ul li a:not(.btn-search):hover .icon,
.footer-nav ul li button:not(.btn-search):hover .icon {
    color: #fff;
}

.footer-nav ul li a:not(.btn-search) .icon,
.footer-nav ul li button:not(.btn-search) .icon {
    color: #f26c4f;
    font-size: 16px;
    margin-bottom: 3px;
}

.footer-nav ul li a.btn-search,
.footer-nav ul li button.btn-search {
    margin-top: -15px;
    width: 55px;
    height: 55px;
    background: #f26c4f;
    color: #fff;
    border-radius: 50%;
}

.footer-nav ul li a.btn-search .icon,
.footer-nav ul li button.btn-search .icon {
    font-size: 22px;
}

.arden {
    position: relative;
    overflow: hidden;
}

.arden:before,
.arden:after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
}

.arden:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgb(0 28 66 / 66%) 0, rgba(217, 217, 217, 0.09) 100%);
}

.arden:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 46, 109, 0.5), rgba(217, 217, 217, 0.09));
}

@media (max-width: 1199px) {
    .shortcuts:not(.list-button):not(.list-body) {
        display: none;
    }
}

.shortcuts.style-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.kesfet-carousel {
    margin-top: 50px;
}

.kesfet-heading .heading {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-top: -10px;
}

.no-scroll {
    overflow: hidden;
}

.pos-relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.z-index {
    position: relative;
    z-index: 9;
}

.container-fluid {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1750px) {
    .container-fluid {
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (min-width: 2020px) {
    .container-fluid {
        max-width: 2000px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container-fluid {
        max-width: 992px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid {
        max-width: 768px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .container-fluid {
        max-width: 600px;
    }
}

@media (max-width: 479px) {
    .container-fluid {
        max-width: 390px;
    }
}

/* SLIDER */
.section-haberler {
    background: #eff2f7;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-swiper {
    overflow: hidden;
    background: #000;
    position: relative
}

.hero-slide {
    position: relative
}

.hero-slide a {
    display: block;
    position: relative
}

.hero-slide img {
    width: 100%;
    height: 543px !important;
    object-fit: cover
}

.hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px clamp(16px, 3vw, 36px);
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .35) 40%, rgba(0, 0, 0, 0) 100%);
}

.hero-date {
    opacity: .9;
    font-size: .9rem;
    margin-bottom: 6px
}

.hero-title {
    font-weight: 800;
    font-size: clamp(22px, 2.1vw, 34px);
    line-height: 1.2;
    margin: 0 0 8px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}

.hero-desc {
    max-width: 900px;
    opacity: .95;
    font-size: .95rem
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: none;
    font-size: 30px;
}

.hero-prev {
    left: 14px
}

.hero-next {
    right: 14px
}

.hero-prev:hover,
.hero-next:hover {
    opacity: 0.7;
}

.pagination-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0f3248;
    padding: 0px;
    margin-top: 2px;
    overflow-x: auto;
}

.hero-pagination {
    display: flex;
    gap: 0
}

.hero-pagination .swiper-pagination-bullet {
    height: 50px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000001f;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    opacity: 1;
    cursor: pointer;
    padding: 0px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    transition: .2s;
    margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet:first-child {
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.hero-pagination .swiper-pagination-bullet:hover {
    background: #0f3248}

.hero-pagination .swiper-pagination-bullet-active {
    background: #0f3248;
    color: #fff
}

.btn-all {
    margin-left: auto;
    white-space: nowrap;
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: #ec2d2d;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.btn-all:hover {
    color: #fff;
    filter: brightness(.95)
}

.side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.side-card {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 150px;
    text-decoration: none;
    height: 189px;
}

.side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.9);
    transition: transform 0.4s ease, filter 0.4s ease;
    /* animasyon */
}

.side-card:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.side-caption {
    position: absolute;
    inset: auto 0 0 0;
    color: #fff;
    padding: 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 10%, rgba(0, 0, 0, 0) 80%);
    transition: background 0.4s ease;
}

.side-card:hover .side-caption {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9) 15%, rgba(0, 0, 0, .1) 85%);
}

.side-title {
    font-size: .95rem;
    font-weight: 700;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.side-date {
    font-size: .8rem;
    opacity: .9
}

@media (max-width: 991.98px) {
    .hero-slide img {
        height: 240px !important;
		object-fit: contain;
    }
	.hero-desc {
		font-size: 12px !important;
		margin-top: 14px !important;
		line-height: normal !important;
	}
    .side-grid {
        grid-template-columns: 1fr 1fr
    }
	.hero-pagination .swiper-pagination-bullet {
		height: 30px !important;
		min-width: 30px !important;
	}
	.hero-title {
		font-size: clamp(16px, 2.1vw, 34px) !important;
	}
	.baskan-foto {
        background-position: top !important;
    }
	.mesaj-kutu {
		margin-left: 0 !important;
        padding: 10px !important;
        margin-top: 75%;
	}
	.baskan-foto::before {
		display:none;
	}
	.row-vcenter {
        flex-direction: column-reverse !important;
		padding-bottom: 10px !important;
    }
	.fotolar-baslik {
		margin-top: 20px !important;
	}
	.ok.sol {
		left: 10px !important;
	}
	.ok.sag {
		right: 10px !important;
	}
}

@media (max-width: 575.98px) {
    .side-grid {
		grid-template-columns: repeat(2, 1fr);
    }
	.side-card {
		height: 140px !important;
	}
}


/* PROJELER */
.section-projeler {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.bolum-baslik {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.bolum-baslik h2 {
    font-weight: 800;
    color: #1f3750;
    font-size: 28px;
    text-transform: uppercase;
}

.bolum-baslik p {
    color: #5c6b80;
    max-width: 820px;
    margin: 8px auto;
}

.filtre-grup {
    gap: 12px;
    justify-content: center;
    margin: 20px auto 30px;
}

.filtre-buton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    text-transform: uppercase;
    background: rgba(85, 178, 80, 0.1);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 30px;
    color: #55b250;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.25;
    -webkit-transition: .3s;
    transition: .3s;
    min-width: 250px;
}

.filtre-buton:hover {
    transform: translateY(-1px);
}

.filtre-buton.aktif {
    background: #cfe9d8;
}

.proje-karti {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: .25s;
    display: block;
    color: inherit;
    text-decoration: none;
}

.proje-karti:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.proje-resim {
    aspect-ratio: 16/11;
    background: #ddd;
    overflow: hidden;
}

.proje-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.proje-karti:hover .proje-resim img {
    transform: scale(1.08);
}

.proje-baslik {
    padding: 12px 14px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #f2f2f2;
    color: #233044;
    transition: .3s ease background, .3s ease color;
}

.proje-karti:hover .proje-baslik {
    background: #1a4e82;
    color: #fff;
}

.alt-nav-kapsayici {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.alt-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #e47929;
    border-radius: 40px;
    padding: 8px 14px;
    box-shadow: 0 12px 28px rgba(31, 95, 180, .2);
    width: min(340px, 95%);
}

.ok-sol,
.ok-sag {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, .3);
    color: #fff;
    transition: .2s;
    cursor: pointer;
}

.ok-sol:hover,
.ok-sag:hover {
    background: rgba(255, 255, 255, .5);
}

.tum-projeler {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tum-projeler a {
    background: rgba(255, 255, 255, .3);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 46px;
    border-radius: 20px;
    font-size: 17px;
    transition: .2s;
}

.tum-projeler a:hover {
    background: rgba(255, 255, 255, .5);
}

@media(max-width:575px) {
    .filtre-buton {
        font-size: 13px;
        padding: 8px 14px;
    }

    .ok-sol,
    .ok-sag {
        width: 38px;
        height: 38px;
    }

    .tum-projeler a {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* DUYURULAR-İHALELER-ETKİNLİKLER */
.section-duyuru-ihale-etkinlik {
    background: #f1f1f1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.panel {
    background: #ffffff;
    border: 1px solid #e9edf2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.panel-baslik {
    padding: 14px 18px;
    border-bottom: 1px solid #e9edf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-baslik h5 {
    margin: 0;
    font-weight: 800;
    letter-spacing: .2px;
}

.panel-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid #e9edf2;
    background: #ffffff;
    color: #2b3341;
    text-decoration: none;
}

.icon-btn:hover {
    background: #f8fafc;
}

.icon-btn.is-disabled {
    opacity: .4;
    pointer-events: none;
}

.panel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.duyuru-liste {
    list-style: none;
    margin: 0;
    padding: 0;
}

.duyuru-kalem {
    position: relative;
    border-bottom: 1px solid #e9edf2;
}

.duyuru-link {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
}

.duyuru-link:hover {
    background: #f8fafc;
}

.duyuru-ikon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #e74d5a;
    background: #fdebee;
    border: 1px solid #f7d2d8;
    flex: 0 0 42px;
}

.duyuru-icerik {
    flex: 1;
    min-width: 0;
}

.duyuru-baslik {
    margin: 0 0 4px;
    font-weight: 700;
    line-height: 1.35;
}

.duyuru-tarih {
    font-size: .92rem;
    color: #6b7280;
}

.ihale-item .duyuru-link {
    padding-left: 14px
}

.ihale-saat {
    width: 72px;
    text-align: center;
    padding-top: 2px;
}

.ihale-saat .saat {
    font-weight: 900;
    color: #e74d5a;
    line-height: 1;
}

.ihale-saat .gun {
    font-size: .84rem;
    color: #6b7280
}

.ihale-item::before {
    content: "";
    position: absolute;
    left: 95px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e9edf2;
}

.ihale-item .duyuru-icerik {
    padding-left: 10px
}

.event-kutu {
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #e9edf2;
    padding: 16.6px 18px;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
}

.event-kutu:hover {
    background: #f8fafc;
}

.event-tarih {
    width: 64px;
    text-align: center;
    border-right: 1px dashed #e9edf2;
    padding-right: 12px;
}

.event-gun {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #e74d5a
}

.event-ay {
    font-size: .86rem;
    color: #6b7280
}

.lock-height {
    height: auto;
}

.line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media (max-width: 991.98px) {
    .ihale-item::before {
        left: 68px
    }

    .ihale-saat {
        width: 68px
    }
}


/* LOGOLAR */
.section-logolar {
    background: #eff2f7;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.belediye-kart {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5eaf0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
    padding: 20px 16px 16px;
    text-align: center;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all .2s ease;
}

.belediye-kart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

.belediye-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.belediye-logo img {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
}

.belediye-ad {
    font-weight: 600;
    color: #243047;
    font-size: .95rem;
}

.belediye-alt {
    font-size: .8rem;
    color: #7a879b;
}

.belediye-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.owl-carousel .item {
    padding: 10px;
}

.ok {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1f4c86;
    color: #fff;
    box-shadow: 0 4px 12px rgba(31, 76, 134, .25);
    z-index: 5;
    cursor: pointer;
    user-select: none;
    transition: all .2s ease;
}

.ok:hover {
    background: #163a65;
}

.ok.sol {
    left: 60px;
}

.ok.sag {
    right: 60px;
}

.owl-dots {
    display: none;
}

@media (max-width:576px) {
    .belediye-kart {
        height: 150px;
    }

    .belediye-logo {
        width: 70px;
        height: 70px;
    }

    .belediye-logo img {
        max-width: 55px;
        max-height: 55px;
    }
}

/* BAŞKAN */
.baskan-bolum {
    position: relative;
    background: #1a4e82;
    overflow: hidden;
}

.sahne {
    position: relative;
    min-height: 600px;
}

.row-vcenter {
    min-height: 600px;
    align-items: center;
    justify-content: start;
}

.baskan-foto {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(900px, 50vw);
    background-image: url('../../uploads/baskan/baskan_resim.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 0;
}

.baskan-foto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
	  90deg,
	  #1a4e82 0%,
	  #1a4e82 10%,
	  #1a4e8299 30%,
	  #1a4e8200 45%,
	  #1a4e8200 100%
	);

    pointer-events: none;
}

.icerik-kapsayici {
    position: relative;
    z-index: 2;
}

.fotolar-baslik {
    font-family: Allura, cursive;
    font-size: 30px;
    color: #e7eeff;
    margin-bottom: 18px;
}

.galeri {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.foto-kare {
    position: relative;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

@supports not (aspect-ratio: 4 / 3) {
    .foto-kare {
        height: 140px;
    }
}

.foto-kare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.foto-kare:hover img {
    transform: scale(1.05);
}

.btn-tumu {
    background: #fff;
    color: #1a4e82;
    border: 0;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    font-size: 14px;
}

.btn-tumu:hover {
    background: #f6f8ff !important;
    color: #082357;
}

.mesaj-kutu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-left: 50px;
}

.mesaj-icerik h2 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 12px;
    color: #fff;
}

.mesaj-icerik p {
    color: #e9eeff;
    line-height: 1.6;
    margin-bottom: 12px;
}

.imza {
    font-family: Allura, cursive;
    font-size: 44px;
    color: #fff;
    line-height: 1;
    margin-top: 30px;
}

.unvan {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #cfd9ff;
    margin: 4px 0 10px;
    font-weight: 600;
}

.sosyal {
    margin-top: 6px;
}

.sosyal a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, .18);
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    transition: background .2s ease, transform .2s ease;
}

.sosyal a:hover {
    background: rgba(0, 0, 0, .30);
    transform: translateY(-1px);
}

@media (max-width:1199.98px) {
    .galeri {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:991.98px) {
    .sahne {
        min-height: 620px;
    }

    .row-vcenter {
        min-height: 620px;
    }

    .baskan-foto {
        width: 100%;
    }

    .galeri {
        grid-template-columns: repeat(3, 1fr);
    }

    .mesaj-icerik h2 {
        font-size: 28px;
    }
}

@media (max-width:575.98px) {
    .galeri {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* DETAY */
.detay-ust {
    height: 153px;
}

.ustbar {
    background: #1a4e82;
    color: #fff;
    padding: 18px 0
}

.ustbar h1 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    max-width: 530px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 11px;
    height: 30px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    opacity: .8;
}

.breadcrumb-item a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 11px;
}

.breadcrumb-item.active {
    color: #f1f5f9;
    opacity: .4;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: #cbd5e1;
    margin: 0;
}

.ikon-kare {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0000000f;
    border: 1px solid rgba(255, 255, 255, .18);
}

.ikon-kare:hover {
    background: #00000024;
	color: #fff;
}

.yazi-ctrl .btn {
    height: 42px;
    border-radius: 10px;
    color: #fff;
    background: #0000000f;
    border: 1px solid rgba(255, 255, 255, .18);
}

.yazi-ctrl .btn:hover {
    background: #00000024;
	color: #fff !important;
	 border: 1px solid rgba(255, 255, 255, .18) !important;
}

.btn-geri {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 10px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    background: #0000000f;
}

.btn-geri:hover {
    background: #00000024;
	color: #fff !important;
	 border: 1px solid rgba(255, 255, 255, .18) !important;
}

.sol-panel-nav {
    background: #fff;
    -webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 25px 25px 10px 25px;
    border-radius: 0 11px 11px 0;
}

.sol-panel {
    background: #eff2f7;
    border: 1px solid #e9edf2;
    border-radius: 14px;
    overflow: hidden;
}

.sol-panel .panel-baslik {
    background: #3f464e;
    font-weight: 700;
    padding: 16px 20px;
    border-bottom: 1px solid #e9edf2;
    color: #fff;
}

.sol-panel .liste .oge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #e9edf2;
    color: #49525b;
    text-decoration: none;
}

.sol-panel .liste .oge.is-active {
    background: #f8fafc
}

.sol-panel .liste .oge:hover {
    background: #f8fafc
}

.sol-panel .liste .oge:last-child {
    border-bottom: 0
}

.icerik {
    min-height: 700px;
    background: #fff;
}

.icerik-ic {
    padding-left: 15px;
}

.yazi {
    font-size: 18px;
    line-height: 1.85;
    color: #334155
}

.yazi p {
    margin-bottom: 1.1rem
}

.yazi::after {
    content: "";
    display: block;
    clear: both
}

.gorsel-sag {
    float: right;
    width: 520px;
    max-width: 48%;
    margin: 0 0 16px 24px;
    border-radius: 14px;
    border: 1px solid #e9edf2;
    overflow: hidden;
}

.gorsel-sag img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover
}

@media (max-width: 992px) {
    .gorsel-sag {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px 0;
    }
}

.kutu-link {
    display: block;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 16px 32px rgba(16, 24, 40, .12);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    aspect-ratio: 1/1.15;
    overflow: hidden;
}

.kutu-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, .16);
    filter: saturate(1.05);
    color: #fff;
}

.kutu-ic {
    height: 100%;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.kutu-ikon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
}

.kutu-ikon i {
    font-size: 30px;
    color: #fff
}

.kutu-baslik {
    margin: 0;
    text-align: center;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-size: 13px;
}

.kutu-bir {
    background: #5fbfae
}

.kutu-iki {
    background: #6e8b95
}

.kutu-uc {
    background: #b6a18f
}

.kutu-dort {
    background: #4cb6bf
}

.kutu-bes {
    background: #f0b435
}

.kutu-alti {
    background: #b94a94
}

@media (max-width:420px) {
    .kutu-ikon {
        width: 56px;
        height: 56px
    }

    .kutu-ikon i {
        font-size: 26px
    }

    .kutu-baslik {
        font-size: .95rem
    }
}

/* ANASAYFA FOTO VİDEO */
.section-foto-video {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.soldaki {
    background: #e47929;
    color: #fff;
    height: 100%;
    padding: 56px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
}

.soldaki .baslik1 {
    font-weight: 300;
    font-size: 48px;
    line-height: 1.1;
    margin: 0
}

.soldaki .baslik2 {
    font-weight: 300;
    font-size: 40px;
    line-height: 1.15;
    margin: 8px 0 18px
}

.soldaki p {
    font-size: 15px;
    line-height: 1.7;
    opacity: .95;
    margin: 12px 0 22px;
    max-width: 560px;
    margin-left: auto
}

.soldaki .butonlar {
    display: flex;
    gap: 10px;
    justify-content: flex-end
}

.soldaki .btn {
    border: 1px solid rgba(255, 255, 255, .85);
    color: #fff;
    padding: .7rem 1.2rem
}

.soldaki .btn:hover {
    background: #fff;
    color: #e47929}

.kahraman {
    position: relative;
    height: 100%
}

.kahraman .owl-carousel .item {
    position: relative;
    padding: 0;
}

.kahraman .kapak {
    width: 100%;
    height: 385px;
    object-fit: cover;
    display: block;
    filter: brightness(.9)
}

.kahraman .kararma {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .65))
}

.kahraman .hud {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    color: #fff;
    text-align: center;
}

.kahraman .ikon-halka {
    width: 54px;
    height: 54px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: auto
}

.kahraman .ikon-halka i {
    font-size: 20px;
    color: #fff
}

.kahraman .baslik {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45)
}

.kahraman .owl-theme .owl-dots {
    position: absolute;
    bottom: 12px;
    right: 14px;
    left: auto;
    display: block;
}

.kahraman .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px
}

.sag-kolon {
    display: flex
}

.sag-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    height: 100%;
}

.video-kart {
    position: relative;
    background: #000;
    overflow: hidden;
    border-radius: 0px;
    height: 100%;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .06);
}

.video-kart a {
    position: absolute;
    inset: 0;
    display: block
}

.video-kart img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
    transition: transform .35s ease
}

.video-kart .katman {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .78));
    transition: .35s
}

.video-kart .metin {
    position: absolute;
    left: 16px;
    right: 84px;
    bottom: 18px;
    color: #fff;
    text-align: left
}

.video-kart .metin .t {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25
}

.video-kart .oynat {
    position: absolute;
    right: 14px;
    bottom: 14px;
    /* SAĞ ALTA */
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(2px)
}

.video-kart:hover img {
    transform: scale(1.03)
}

.video-kart:hover .katman {
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .9))
}

@media (max-width:1199.98px) {
    .kahraman .kapak {
        height: 385px
    }
}

@media (max-width:991.98px) {
    .soldaki {
        padding: 44px 28px
    }

    .soldaki .baslik1 {
        font-size: 42px
    }

    .soldaki .baslik2 {
        font-size: 34px
    }

    .kahraman .kapak {
        height: 220px
    }
}

@media (max-width:575.98px) {
    .kahraman .kapak {
        height: 220px
    }

    .sag-grid {
		grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 170px)
    }
}

/* ====== ANASAYFA HIZLI MENÜ ====== */
.section-quickbar {
    background: #f4f7fb;
    padding: 36px 0;
    position: relative;
}

.section-quickbar .serit {
    max-width: 100%;
    margin: 0 auto;
}

.section-quickbar #hizli-serit.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.section-quickbar #hizli-serit.owl-carousel .owl-stage {
    padding: 18px 0 28px;
}

.section-quickbar #hizli-serit.owl-carousel .owl-stage-outer {
    overflow-x: hidden;
    overflow-y: visible;
}

.section-quickbar .kutu-oge {
    width: 100%;
    border-radius: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
    background: #5c8ebc;
}

.section-quickbar .kutu-oge:hover {
    transform: translateY(-14px);
    z-index: 5;
}

.section-quickbar .kutu {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.section-quickbar .kutu:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 18px 18px 0 0;
}

.section-quickbar .kutu-icerik {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.section-quickbar .kutu-oge:hover .kutu-icerik {
    transform: translateY(-20px);
}

.section-quickbar .ikon {
    font-size: 42px;
    margin-bottom: 12px;
    line-height: 1
}

.section-quickbar .baslik {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .2px
}

.section-quickbar .alt-yazi {
    font-size: 14px;
    margin-top: 6px;
    opacity: .95
}

.section-quickbar .incele {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, .25);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .3s ease, transform .3s ease, background .25s ease;
    pointer-events: none;
}

.section-quickbar .kutu-oge:hover .incele {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.section-quickbar .incele:hover {
    background: rgba(0, 0, 0, .38);
}

.section-quickbar .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
}

.quickbar-ok {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1f4c86;
    color: #fff;
    box-shadow: 0 4px 12px rgba(31, 76, 134, .25);
    z-index: 5;
    cursor: pointer;
    user-select: none;
    transition: all .2s ease;
}

.quickbar-ok:hover {
    background: #163a65;
}

.quickbar-ok.sol {
    left: 60px;
}

.quickbar-ok.sag {
    right: 60px;
}

@media (max-width:576px) {
    .section-quickbar .kutu {
        min-height: 200px
    }
}

/* === İLETİŞİM === */
.info-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: .15s ease;
    border-radius: 15px;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12)
}

.info-card .top {
    background: #3f464e;
    text-align: center;
    padding: 22px 18px
}

.info-card .top i {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px
}

.info-card .top h6 {
    margin: 0;
    font-weight: 800;
    font-size: 14px;
    color: #fff
}

.info-card .bottom {
    padding: 20px 16px;
    text-align: center;
    font-size: 14px;
    color: #374151;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-title h1 {
    margin: 0;
    line-height: 1.06;
    font-weight: 800;
    font-size: 45px
}

.hero-title .mavi {
    color: #1a4e82}

.hero-title .siyah {
    color: #151923
}

.hero-desc {
    font-size: 18px;
    margin-top: 20px
}

.hero-desc a {
    color: #1a4e82;
    font-weight: 600;
    text-decoration: none
}

.hero-desc a:hover {
    text-decoration: underline
}

.form-oval {
    position: relative;
    width: 100%
}

.form-oval i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #3f464e;
    font-size: 18px;
    width: 22px;
    text-align: center;
    pointer-events: none;
    z-index: 2;
}

.form-oval .form-control {
    height: 64px;
    padding: 14px 18px 14px 54px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e3e3e3;
}

.form-oval .form-control::placeholder {
    color: #3f464e
}

.form-oval .form-control:focus {
    border-color: #3f464e;
    box-shadow: none;
}

.switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #6b7384;
    line-height: 1.3
}

.switch input.switch-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.switch .switch-track {
    width: 42px;
    height: 22px;
    flex: none;
    background: #e9eef6;
    border: 1px solid #dbe4f1;
    border-radius: 999px;
    position: relative;
    transition: .18s;
}

.switch .switch-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
    transition: .18s;
}

.switch input.switch-input:checked+.switch-track {
    background: #bfe6cc;
    border-color: #a7dbb9
}

.switch input.switch-input:checked+.switch-track .switch-dot {
    left: 22px;
    background: #1a4e82}

.btn-gonder {
    height: 50px;
    padding: 0 36px;
    border-radius: 8px;
    border: none;
    background: #3f464e;
    color: #fff;
    font-weight: 800;
    letter-spacing: .6px;
}

.btn-gonder:hover {
    background: #1a4e82 !important;
    color: #fff !important;
}

@media (max-width: 992px) {
    .hero-title h1 {
        font-size: 42px
    }
}

.harita-kart {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e3e3e3;
    padding: 32px
}

.harita-baslik {
    color: #1f4bb2;
    font-weight: 800
}

.map-wrap {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e6edf5
}

/* === FOTO GALERİ === */
.galeri-kutu {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    background: #000;
    transition: transform .25s ease, box-shadow .25s ease;
    isolation: isolate;
}

.galeri-kutu::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.galeri-kutu::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .85) 100%);
    z-index: 1;
}

.galeri-kutu:hover::before {
    transform: scale(1.1);
}

.g-icerik {
    position: absolute;
    inset: 0;
    padding: 25px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    color: #fff;
}

.g-baslik {
    position: relative;
    max-width: 85%;
}

.g-baslik::before {
    content: "";
    position: absolute;
    left: -17px;
    top: .35rem;
    width: 5px;
    height: 80%;
    background: #2db54d;
}

.g-baslik h4 {
    margin: 0;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
}

.g-aksiyon {
    align-self: flex-end;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.g-aksiyon i {
    font-size: 18px;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.galeri-kutu:hover .g-aksiyon i {
    -webkit-transform: translateX(7px) scale(1.2);
    transform: translateX(7px) scale(1.2);
}

.galeri-kutu .kenar {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 575.98px) {
    .galeri-kutu {
        height: 200px;
    }
}


/* FOTO DETAY */
.kapak {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #000;
}

.kapak img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .8s ease
}

.kapak:hover img {
    transform: scale(1.06)
}

.kapak::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .85));
    z-index: 1
}

.kapak-icerik {
    position: absolute;
    inset: 0;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    z-index: 2
}

.kapak-baslik {
    position: relative;
    margin-bottom: .9rem;
    padding-left: 16px;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45)
}

.kapak-baslik::before {
    content: "";
    position: absolute;
    left: 0;
    top: .35rem;
    width: 5px;
    height: 75%;
    background: #2db54d;
    border-radius: 0px
}

.kapak-cizgi {
    height: 2px;
    background: rgba(255, 255, 255, .3);
    margin: .4rem 0 1rem
}

.kapak-alt {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .95rem;
    opacity: .9
}

.ok-dugme {
    position: absolute;
    right: 16px;
    top: 10%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 2;
    color: #fff;
    transition: .25s
}

.ok-dugme:hover {
    background: rgba(255, 255, 255, .3);
    transform: translateY(-50%) translateX(2px)
}

.thumb {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    transition: transform .2s ease, box-shadow .2s ease
}

.thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .6s ease
}

.thumb:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
}

@media (max-width:575.98px) {
    .kapak {
        height: 340px
    }

    .thumb {
        height: 130px
    }
}

/* ETKİNLİKLER */
.etkinlik-kart {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 20px;
    transition: .25s;
    cursor: pointer;
}

.etkinlik-kart:hover,
.etkinlik-kart:focus {
    box-shadow: 0 14px 34px rgba(16, 24, 40, .10);
    border-color: #dce4ee
}

.etkinlik-kart:focus-visible {
    outline: 3px solid #8cc2ff;
    outline-offset: 2px
}

.tarih {
    text-align: center;
    color: #1e3a5f
}

.tarih .gun {
    font-size: 42px;
    font-weight: 800
}

.tarih .ay {
    font-size: 14px;
    font-weight: 700;
    color: #5b6b7f
}

.tarih .yil {
    font-size: 16px;
    font-weight: 800
}

.tarih .saat {
    font-size: 13px;
    color: #6b7a8a;
    margin-top: 4px
}

.afis {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #000
}

.afis img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.etkinlik-icerik h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #1f2a37
}

.kategori {
    font-size: 14px;
    color: #7a8896;
    margin-bottom: 6px
}

.yer-etiket {
    font-size: 14px;
    color: #21a350;
    font-weight: 800;
    margin-right: 4px
}

.yer-detay {
    font-size: 14px;
    color: #627386
}

/* DUYURULAR */
.duyuru-kart {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5edf5;
    border-radius: 14px;
    padding: 18px 22px;
    text-decoration: none;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    height: 100%;
}

.duyuru-kart:hover {
    box-shadow: 0 14px 34px rgba(16, 24, 40, .09);
    border-color: #dbe6f1;
    transform: translateY(-2px);
}

.duyuruikon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #f3f7fb;
    color: #0d3b66;
    flex: 0 0 auto;
}

.duyuruikon i {
    font-size: 22px;
}

.duyuruicerik {
    min-width: 0;
}

.duyurubaslik {
    font-weight: 800;
    font-size: 16px;
    color: #0b4a86;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.duyurutarih {
    font-size: 14px;
    color: #7c8b98;
    display: flex;
    align-items: center;
    gap: 8px;
}

.duyurutarih i {
    color: #97a6b5;
}

@media (max-width:576px) {
    .duyuruikon {
        width: 48px;
        height: 48px
    }
}

/* PROJELER */
.proje-kart {
    border: none;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(102, 102, 102, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .3s ease;
}

.projeresim {
    overflow: hidden
}

.projeresim img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 250px;
    transition: transform .45s ease;
}

.proje-kart:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.proje-kart:hover .projeresim img {
    transform: scale(1.08);
}

.projeicerik {
    padding: 20px
}

.projebaslik {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
    background: #55b250;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proje-metin {
    color: #475569;
    margin: 0
}

.proje-alt {
    margin-top: auto;
    padding: 10px 20px;
    border-top: 1px solid #eaeff5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proje-kat-adi {
    font-weight: 600;
    color: #858585;
}

.proje-link {
    text-decoration: none;
    font-weight: 600;
    padding: 5px 5px;
    color: #55b250;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.proje-link:hover {
    color: #000
}

.proje-link i {
    transition: .3s
}

.proje-link:hover i {
    transform: translateX(5px)
}

/* HABERLER*/
.filter-bar {
    margin-bottom: 20px;
}

.search-wrap {
    background: #fff;
    border: 2px solid rgba(102, 102, 102, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    min-height: 50px;
}

.search-wrap input {
    border: 0;
    outline: 0;
    flex: 1;
    min-width: 180px;
}

.search-wrap input::placeholder {
    color: #9aa3af
}

.search-icon {
    color: #9aa3af
}

.konular-wrap {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

#konular-toggle {
    display: none
}

.konular-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px 14px;
    width: 180px;
    font-weight: 700;
    color: #55b250;
    border-left: 1px solid #e5e7eb;
    user-select: none;
}

.konular-btn .chev {
    font-size: .9rem;
    color: #55b250;
    transition: transform .25s ease;
}

#konular-toggle:checked+label .chev {
    transform: rotate(180deg);
}

.konular-menu {
    position: absolute;
    right: -2px;
    top: 100%;
    margin-top: 3px;
    min-width: 180px;
    background: #fff;
    list-style: none;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    -webkit-box-shadow: 0 10px 30px rgba(102, 102, 102, 0.15);
    box-shadow: 0 10px 30px rgba(102, 102, 102, 0.15);
}

#konular-toggle:checked~.konular-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.konular-menu li a {
    display: block;
    padding: 6px 14px;
    line-height: 1.4;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}

.konular-menu li:last-child a {
    border-bottom: 0
}

.konular-menu li a:hover {
    background: #fff;
    color: #111827;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(102, 102, 102, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.news-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 18px
}

.news-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.news-card:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.news-card:hover .news-media img {
    transform: scale(1.06);
}

.news-body {
    padding: 0 24px 8px
}

.news-title {
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.35;
    margin: 0 0 10px;
    letter-spacing: .2px;
    text-transform: uppercase;
}

.news-underline {
    width: 56px;
    height: 5px;
    background: #55b250;
    border-radius: 12px;
    margin: 6px 0 14px;
    transition: width .4s ease;
}

.news-card:hover .news-underline {
    width: 100px;
}

.news-excerpt {
    color: #5b6776;
    margin-bottom: 16px;
}

.news-meta {
    padding: 0 24px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: .95rem;
}

.dot {
    width: 6px;
    height: 6px;
    background: #9ca3af;
    border-radius: 50%
}

.meta-spacer {
    flex: 1
}

.meta-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid #e6edf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-arrow i {
    font-size: .95rem;
    color: #55b250}

/* PROJE DETAY */
.kb-hero {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.kb-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0
}

.kb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .65) 100%);
    z-index: 1;
    pointer-events: none
}

.kb-hero-meta {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: #fff;
    z-index: 2
}

.kb-hero-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 40px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, .35)
}

.kb-hero-title::before {
    content: "";
    width: 4px;
    height: 30px;
    background: #f97316;
    border-radius: 2px
}

.kb-hero-sub {
    opacity: .9;
    margin-top: 4px
}

.kb-info {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    display: flex;
    gap: 14px;
    align-items: center
}

.kb-info-icon {
    width: 50px;
    height: 55px;
    display: grid;
    place-items: center;
    background: #f1f5f9;
    color: #1a4e82;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.kb-info-label {
    margin: 0;
    font-size: 12px;
    color: #6b7280
}

.kb-info-value {
    margin: 0;
    font-weight: 600
}

.kb-article {
    background: #fff;
}

.kb-article ul {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0
}

.kb-article li {
    margin-bottom: 6px
}

.kb-article li i {
    color: #10b981;
    margin-right: 8px
}

.kb-gallery-title {
    font-size: 14px;
    color: #6b7280;
    margin: 8px 0 10px;
    font-weight: 600;
}

.kb-thumb {
    position: relative;
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff
}

.kb-thumb img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease
}

.kb-thumb:hover img {
    transform: scale(1.05)
}

.kb-gallery-row .kb-thumb {
    position: relative
}

.kb-gallery-row>.col-md-4:not(:first-child) .kb-thumb::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e7eb;
    pointer-events: none;
}

.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.88);
}

.fancybox__toolbar {
    background: transparent;
    box-shadow: none
}

.fancybox__counter {
    position: absolute;
    left: 10px;
    top: 6px;
    color: #d1d5db;
    font-size: 14px
}

.fancybox__caption {
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    color: #d1d5db;
    font-size: 14px;
    padding: 6px 56px;
    background: transparent
}

.fancybox__nav {
    display: none !important;
}

.kb-nav {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    display: flex;
    gap: 12px;
}

.kb-nav button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .38);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
    backdrop-filter: blur(2px);
    transition: opacity .2s ease, transform .05s ease;
}

.kb-nav button svg {
    width: 26px;
    height: 26px
}

.kb-nav button:active {
    transform: scale(.97)
}

.kb-nav .is-off {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(25%)
}

@media (max-width:576px) {
    .kb-hero img {
        height: 320px
    }

    .kb-hero-title {
        font-size: 28px
    }

    .kb-nav {
        right: 14px;
        bottom: 14px
    }
}

/* ÜYELER */
.filtreler .btn {
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
    padding: .6rem 1rem;
    font-weight: 600;
}

.filtreler .btn.active {
    border-color: #d8b15a;
    box-shadow: 0 10px 24px rgba(216, 177, 90, .22)
}

.uye-kart {
    display: block;
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, .10);
    transition: transform .2s ease, box-shadow .2s ease;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.uye-kart:hover {
    box-shadow: 0 16px 40px rgba(16, 24, 40, .14);
}

.uye-foto {
    width: 100%;
    height: 360px !important;
    object-fit: cover;
    background: #f5f5f7;
}

.kimlik {
    padding: 20px 15px;
    border-top: 1px solid #eee;
}

.kimlik .isim {
    font-weight: 800;
    font-size: 1.05rem
}

.kimlik .parti {
    color: #6b7280;
    font-size: .9rem
}

.kimlik-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #3f464e;
    color: #fff;
    transform: translateY(100%);
    transition: transform .22s ease;
    padding: 20px 15px;
}

.kimlik-hover .isim {
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase
}

.kimlik-hover .parti {
    opacity: .9
}

.uye-kart:hover .kimlik-hover {
    transform: translateY(0)
}

.uye-kart.aktif .kimlik-hover {
    transform: translateY(0)
}

/* MECLİS KARARLARI */
.liste-alani {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kart-link {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(16, 24, 40, .04);
    transition: all .3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transform: scale(1);
    opacity: 1;
}

.liste-alani:hover .kart-link {
    transform: scale(0.95);
    opacity: .7;
}

.liste-alani:hover .kart-link:hover {
    transform: scale(1);
    opacity: 1;
    z-index: 5;
    background: #f9fbff;
    border-color: #dfe6ee;
}

.kart-simge-alani {
    width: 128px;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eef2f6;
    background: #f7fbff;
    flex: 0 0 auto;
}

.kart-simge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f464e;
    font-size: 32px;
}

.kart-icerik {
    padding: 18px 22px
}

.kart-baslik {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #3f464e;
    margin-bottom: 6px;
}

.kart-karar {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #555555;
    margin-bottom: 6px;
}

.kart-tarih {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kart-tarih .fa-calendar-days {
    color: #94a3b8;
    font-size: 15px;
}

@media (max-width:576px) {
    .kart-simge-alani {
        width: 30%;
        min-height: 64px;
        border-right: 0;
        border-bottom: 0;
    }

    .kart-icerik {
        padding: 14px 16px
    }
}

@media (min-width:576px) {
    .kart-link {
        flex-direction: row;
    }
}

/* ETKİNLİK DETAY */
.etkinlik-afis {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e6edf5
}

.etkinlik-afis img {
    display: block;
    width: 100%;
    height: auto
}

.etkinlik-baslik {
    color: #37a64b;
    font-weight: 800;
    margin: 4px 0 12px
}

.ayrac {
    height: 1px;
    background: #e6edf5;
    margin: 10px 0 18px
}

.bilgi-kart {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e8edf3;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .04)
}

.bilgi-kart+.bilgi-kart {
    margin-top: 14px
}

.bilgi-sembol {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f7ff;
    color: #0b5ed7;
    font-size: 18px
}

.bilgi-yazi .kucuk-baslik {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .6px
}

.bilgi-yazi .deger {
    display: block;
    margin-top: 2px;
    font-weight: 700;
    color: #1f2a37;
    text-decoration: none
}

.bilgi-yazi .deger:hover {
    text-decoration: underline;
    color: #0b5ed7
}

.etkinlik-aciklama {
    margin-top: 30px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #374151
}

.liste-baslik {
    color: #37a64b;
    font-weight: 800;
    font-size: 16px;
    margin: 10px 0 12px
}

.etkinlik-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .04);
    transition: .18s
}

.etkinlik-link+.etkinlik-link {
    margin-top: 14px
}

.etkinlik-link:hover {
    transform: translateY(-2px);
    border-color: #dfe6ee;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .10)
}

.etkinlik-link-baslik {
    font-weight: 600
}

.etkinlik-link-sag {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    font-size: 14px
}

.etkinlik-link-sag .fa-calendar-days {
    color: #94a3b8
}

.etkinlik-link-sag .fa-chevron-right {
    color: #9aa3af
}

.pagination-btn-wrapper ul li {
    margin-right: 5px;
    display: inline-block
}

.pagination-btn-wrapper ul li a,
.pagination-btn-wrapper ul li span {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    background: #fff;
    font-size: 17px;
    font-weight: bold;
    color: #000;
    margin-right: 1px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out -webkit-box-shadow: 5px 5px 20px rgba(23, 53, 86, 0.15);
    box-shadow: 5px 5px 20px rgba(23, 53, 86, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.pagination-btn-wrapper ul .active a,
.pagination-btn-wrapper ul li a:hover {
    background-color: #1a4e82;
    color: #fff
}

.yazi-icerik-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.08);
}

.yazi-icerik-header .title {
    color: #55b250;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
}

.yazi-icerik-header .date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #999;
    font-size: 13px;
    margin-left: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.yazi-icerik-header .date .icon {
    margin-right: 3px;
    margin-top: -2px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(102, 102, 102, 0.5);
    width: 30px;
    height: 30px;
    align-items: center;
    font-size: 14px;
}

.haber-liste {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.haber-kart {
    position: relative;
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .08);
    text-decoration: none;
    color: #1f2341;
    transition: transform .15s ease, box-shadow .15s ease;
}

.haber-kart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(16, 24, 40, .12);
}

.haber-resim {
    position: relative;
    border-radius: 11px 0 0 11px;
    overflow: hidden;
    aspect-ratio: 16/13;
    background: #e7ecf5;
}

.haber-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.haber-etiket {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background: #1e5c99;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(27, 102, 255, .35);
    border: 3px solid #fff;
	    z-index: 1;
}

.haber-etiket small {
    opacity: .9;
    font-weight: 700;
}

.haber-icerik {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.haber-baslik {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.haber-tarih {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9aa3b2;
    font-weight: 600;
}

.haber-tarih i {
    font-size: 12px;
}

@media (max-width:340px) {
    .haber-kart {
        gap: 10px;
        grid-template-columns: 98px 1fr;
    }
}

.sidebar-baslik {
    color: #55b250;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 5px;
}

.gl-subhead {
    font-size: 16px;
    font-weight: 800;
    color: #55b250;
    margin: 22px 0 10px;
    text-transform: uppercase;
}

.gl-feature {
    display: flex;
    gap: 16px;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .08);
    text-decoration: none;
    color: inherit;
    margin-top: 50px;
}

.gl-media {
    flex: 0 0 280px;
    border-radius: 11px 0 0 11px;
    overflow: hidden;
    background: #e7ecf5;
    height: 140px;
}

.gl-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gl-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0
}

.gl-eyebrow {
    font-size: 12px;
    letter-spacing: .25em;
    color: #9aa3b2;
    font-weight: 700;
    margin-top: 4px
}

.gl-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase
}

.gl-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #1db954;
    background: #e9f7ee;
    margin-left: 8px;
    align-self: center;
    transition: transform .2s ease
}

.gl-feature:hover .gl-arrow {
    transform: translateX(4px)
}

.gl-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 22px
}

.gl-item {
    display: flex;
    gap: 18px;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, transform .2s ease
}

.gl-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 24, 40, .12)
}

.gl-item .gl-media {
    flex-basis: 300px;
    height: 160px
}

.gl-item-title {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase
}

.gl-item-desc {
    margin: 0;
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.5
}

.gl-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #9aa3b2;
    font-weight: 600;
    font-size: 12px
}

.gl-meta i {
    font-size: 12px
}

.gl-item .gl-arrow {
    background: #ecf7ff;
    color: #2f6cff
}

@media (max-width:900px) {
    .gl-item .gl-media {
        flex-basis: 240px;
        height: 140px
    }
}

@media (max-width:720px) {

    .gl-feature,
    .gl-item {
        flex-direction: column
    }

    .gl-media {
        height: 200px
    }

    .gl-item .gl-media {
        height: 180px
    }

    .gl-arrow {
        align-self: flex-end
    }
}

.document-card {
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .04);
    border: 1px solid #e8edf3;
    border-radius: 10px;
    padding: 25px 25px 20px 25px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    transition: .18s;
}

@media (max-width: 1199px) {
    .document-card {
        padding: 20px 20px 15px 20px;
        height: 190px;
    }
}

.document-card:hover {
    -webkit-box-shadow: 0 8px 22px rgba(16, 24, 40, .10);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .10);
    transform: translateY(-2px);
}

.document-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.document-header .icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 28px;
}

@media (max-width: 1199px) {
    .document-header .icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.document-header .icon:not([class*="ui-type-"]) {
    background-color: rgba(94, 120, 143, 0.1);
    color: #515558;
}

.document-header .icon.ui-type-pdf {
    background-color: rgba(223, 33, 33, 0.1);
    color: #df2121;
}

.document-header .icon.ui-type-jpeg,
.document-header .icon.ui-type-jpg,
.document-header .icon.ui-type-png,
.document-header .icon.ui-type-tiff {
    background-color: rgba(163, 33, 223, 0.1);
    color: #a321df;
}

.document-header .icon.ui-type-word,
.document-header .icon.ui-type-doc,
.document-header .icon.ui-type-docx {
    background-color: rgba(33, 138, 223, 0.1);
    color: #218adf;
}

.document-header .icon.ui-type-ppt,
.document-header .icon.ui-type-pptx {
    background-color: rgba(223, 33, 33, 0.1);
    color: #df2121;
}

.document-header .icon.ui-type-excel,
.document-header .icon.ui-type-xls,
.document-header .icon.ui-type-xlsx {
    background-color: rgba(34, 211, 172, 0.1);
    color: #1d4f91;
}

.document-header .icon.ui-type-mp3,
.document-header .icon.ui-type-mp4,
.document-header .icon.ui-type-wmv {
    background-color: rgba(211, 134, 34, 0.1);
    color: #d38622;
}

.document-header .icon.ui-type-rar {
    background-color: rgba(100, 77, 46, 0.1);
    color: #644d2e;
}

.document-header .icon.ui-type-zip {
    background-color: rgba(212, 164, 100, 0.1);
    color: #d4a464;
}

.document-header .type {
    color: #7a93a9;
    font-size: 48px;
    opacity: 0.15;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
}

@media (max-width: 1199px) {
    .document-header .type {
        font-size: 32px;
    }
}

.document-footer {
    line-height: 1.3;
}

.document-footer .title {
    color: #515558;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@media (max-width: 1199px) {
    .document-footer .title {
        font-size: 14px;
    }
}

.document-footer .link {
    color: rgba(122, 147, 169, 0.6);
    font-size: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5px;
}

@media (max-width: 1199px) {
    .document-footer .link {
        font-size: 11px;
    }
}

.document-footer .link .icon {
    font-size: 10px;
    opacity: 0.5;
    margin-left: 5px;
}


.ih-topbar {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.ih-filters {
    display: flex;
    gap: 10px;
    flex: 1 1 auto;
    align-items: center
}

.ih-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #eef2f7;
    color: #4b5565;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #e3e8ef;
    transition: .15s
}

.ih-chip i {
    font-size: 14px
}

.ih-chip.is-active {
    background: #e8eefc;
    color: #2f6cff;
    border-color: #d9e2ff;
    box-shadow: 0 4px 14px rgba(47, 108, 255, .15)
}

.ih-chip--blue {
    color: #2f6cff
}

.ih-chip--orange {
    color: #ff4d00
}

.ih-chip--green {
    color: #5fbfae
}

.ih-chip--red {
    color: #e11d48
}

.ih-search {
    position: relative;
    flex: 0 0 235px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
}

.ih-search input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
    background: transparent;
    color: #1f2341
}

.ih-search .ih-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #94a3b8
}

/* TABLE HEADER */
.ih-head {
    display: grid;
    grid-template-columns: 62px 1fr 200px 180px 120px;
    gap: 12px;
    padding: 10px 14px;
    margin: 10px 0 8px;
    color: #7b8794;
    font-weight: 700;
    border-bottom: 1px solid #e6eaf0
}

/* ROWS */
.ih-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ih-row {
    display: grid;
    grid-template-columns: 50px 1fr 200px 180px 120px;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 8px 26px rgba(16, 24, 40, .08);
    border: 1px solid #eef2f7
}

.ih-col-no {
    color: #64748b;
    font-weight: 700
}

.ih-col-title {
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.35
}

.ih-status {
    font-weight: 800
}

.ih-status.is-done {
    color: #2f6cff
}

.ih-status.is-progress {
    color: #5fbfae
}

.ih-status.is-cancel {
    color: #e11d48
}

.ih-status.is-delay {
    color: #ff4d00
}

.ih-date {
    color: #475569;
    font-weight: 600
}

.ih-detail a {
    color: #2f6cff;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.ih-row:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .12)
}

/* RESPONSIVE */
@media (max-width:1000px) {
    .ih-head {
        grid-template-columns: 60px 1fr 170px 160px 100px
    }

    .ih-row {
        grid-template-columns: 60px 1fr 170px 160px 100px
    }
}

@media (max-width:760px) {
    .ih-head {
        display: none
    }

    .ih-row {
        grid-template-columns: 1fr 120px;
        grid-template-areas:
            "title title"
            "status date"
            "no detail";
        row-gap: 6px;
        column-gap: 12px
    }

    .ih-col-title {
        grid-area: title
    }

    .ih-status {
        grid-area: status
    }

    .ih-date {
        grid-area: date;
        justify-self: end
    }

    .ih-col-no {
        grid-area: no;
        color: #94a3b8
    }

    .ih-detail {
        grid-area: detail;
        justify-self: end
    }
}

/* Popup */
.ara-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    background: rgba(10, 12, 16, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    display: none;
    justify-content: center;
    align-items: center;
}

.ara-popup.active {
    display: flex;
}

/* Kart */
.ara-card {
    position: relative;
    width: min(720px, 92vw);
    max-height: min(80vh, 680px);
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    padding: 50px 24px 70px;
    transform: scale(.95);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.ara-popup.active .ara-card {
    transform: scale(1);
    opacity: 1;
}

/* Başlık */
.ara-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #141a22;
}

/* Kapat butonu */
.ara-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #2a2f36;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

.ara-close:hover {
    background: rgba(0, 0, 0, .06);
}

.ara-close:active {
    transform: scale(.96);
}

/* Form */
.ara-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 14px;
    padding: 10px 10px 10px 44px;
    box-shadow: 0 8px 24px rgba(20, 26, 34, .06) inset;
}

.ara-form .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #7c8798;
}

.ara-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #101418;
}

.ara-form input::placeholder {
    color: #a2aab6;
}

/* Ara butonu */
.ara-submit {
    border: 0;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    background: #1a4e82;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .1s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 6px 16px rgba(13, 110, 253, .25);
}

.ara-submit:hover {
    background: #0b5ed7;
}

.ara-submit:active {
    transform: translateY(1px);
}

/* Mobil */
@media (max-width: 480px) {
    .ara-card {
        padding: 22px 16px 16px;
    }

    .ara-title {
        font-size: 18px;
    }

    .ara-form {
        padding: 8px 8px 8px 42px;
    }

    .ara-submit {
        height: 38px;
        padding: 0 12px;
    }
}

.profil_resim_kapsayici {
    width: 100%;
    height: 100%;
    padding: 10px;
    float: left;
    margin: 0 25px 0 0;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 10px 20px 40px rgb(73 82 91 / 15%);
}

.profil_resim_kapsayici img {
    border-radius: 10px;
}

.gorev {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 oran */
    height: 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 0;
}

@media print {
    .no-print {
        display: none !important;
    }
}

.kapat {
    background: #000;
    border: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -1px;
    top: -1px;
    width: 40px;
    height: 40px;
    z-index: 12;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.14)
}

::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50px
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.5)
}

.modal_header_anasayfa {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
}

.modal_footer_anasayfa {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
}

#cookie-alert-popup *,
#cookie-alert-popup *:after,
#cookie-alert-popup *:before {
    box-sizing: inherit !important;
}

#cookie-alert-popup {
    position: fixed !important;
    bottom: 30px;
    left: 30px;
    z-index: 9999 !important;
    opacity: .8;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

#cookie-alert-popup:hover {
    opacity: 1
}

#cookie-alert-popup .alert-popup__card {
    background: #1a4e82;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
    position: relative !important;
    width: 400px !important;
    line-height: 1.5 !important
}

#cookie-alert-popup .cookie-alert-popup--closed {
    -webkit-animation: cookie-alert-popup--close 0.4s ease-in-out forwards !important;
    animation: cookie-alert-popup--close 0.4s ease-in-out forwards !important
}

#cookie-alert-popup .cookie-alert-popup--opened {
    -webkit-animation: cookie-alert-popup--open 0.4s ease-in-out forwards !important;
    animation: cookie-alert-popup--open 0.4s ease-in-out forwards !important
}

#cookie-alert-popup .alert-popup__content {
    padding: 30px 15px !important;
    text-align: center !important
}

#cookie-alert-popup .alert-popup__content--text-bold {
    font-weight: 600 !important
}

#cookie-alert-popup h3 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 0.5em !important
}

#cookie-alert-popup p {
    font-size: 14px !important;
    color: #fff !important;
    margin: 20px 0 !important;
    line-height: normal;
}

#cookie-alert-popup a {
    font-size: 14px !important;
    color: #fff !important;
    text-decoration: underline !important
}

#cookie-alert-popup button {
    background: #000;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    height: 3em !important;
    line-height: 3em !important;
    padding: 0 3em !important;
    transition: box-shadow 0.3s ease !important;
    outline: none !important;
    width: auto;
}

#cookie-alert-popup button:hover {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important
}

#cookie-alert-popup .cookie-alert-popup--close:after {
    color: #fff !important;
    content: "X" !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    position: absolute !important;
    right: 0.8em !important;
    top: 0.5em !important;
    -webkit-transform: scaleX(1.25) !important;
    transform: scaleX(1.25) !important;
    transition: color 0.3s ease !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

#cookie-alert-popup .cookie-alert-popup--close:hover:after {
    color: #212121 !important
}

@-webkit-keyframes cookie-alert-popup--close {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes cookie-alert-popup--close {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-webkit-keyframes cookie-alert-popup--open {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    80% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes mio-cookie-popup__open {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    80% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


.lang {
    float: left;
    width: 100%;
}

.lang img {
    display: inline-block;
    height: 16px;
    margin-right: 8px;
    margin-top: 0px;
    margin-bottom: -3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.lang .currencyitems a {
    width: 24%;
}

.activelang {
    opacity: 0.45;
    filter: alpha(opacity=45);
}

.activelangcur {
    opacity: 0.45;
    filter: alpha(opacity=45);
}

.lang h4 {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}

.lang a {
    display: inline-block;
    vertical-align: top;
    margin: 5px 10px;
    font-size: 16px;
    color: #9d9d9d;
    padding: 5px 15px;
    border: 1px solid #0000004d;
    border-radius: 5px;
}

.lang a selected {
    opacity: 0.45;
    filter: alpha(opacity=45);
}

.lang a:hover {
    color: #000;
}

.rounded-25 {
    border-radius: 25%;
}

.main-header-dil {
    margin-right: 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: inherit;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 37px;
    height: 37px;
}
.error-container {
	margin: 0 auto;
	text-align: center;
	padding: 30px 30px;
	border-radius: 10px;
	background-color: white;
	border: 1px solid #eaeaea;
}
.error-code {
	font-size: 9rem;
	font-weight: 800;
	color: #e74c3c;
	margin-bottom: 10px;
	line-height: 1;
	letter-spacing: -5px;
}
.error-title {
	font-size: 2rem;
	color: #2c3e50;
	margin-bottom: 25px;
	font-weight: 600;
}
.error-message {
	font-size: 1.2rem;
	color: #7f8c8d;
	margin-bottom: 40px;
	line-height: 1.6;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.btn-home {
	background-color: #3498db;
	border: 2px solid #3498db;
	padding: 12px 35px;
	font-size: 1.1rem;
	border-radius: 6px;
	margin-right: 10px;
	color: white;
	transition: all 0.2s ease;
}
.btn-home:hover {
	background-color: #2980b9;
	border-color: #2980b9;
}
.error-container .btn-search {
	background-color: white;
	border: 2px solid #3498db;
	padding: 12px 35px;
	font-size: 1.1rem;
	border-radius: 6px;
	color: #3498db;
	transition: all 0.2s ease;
}
.error-container .btn-search:hover {
	background-color: #f8f9fa;
}
.error-icon {
	font-size: 7rem;
	color: #f39c12;
	margin-bottom: 30px;
}
.divider {
	height: 2px;
	width: 100px;
	background: linear-gradient(90deg, transparent, #3498db, transparent);
	margin: 30px auto;
}
.error-container .search-box {
	max-width: 500px;
	margin: 30px auto;
}
.error-container .search-box .form-control {
	border-radius: 6px;
	padding: 12px 20px;
	font-size: 1rem;
	border: 1px solid #ddd;
}
.error-container .search-box .btn {
	border-radius: 6px;
	padding: 12px 25px;
	margin-left: 10px;
}
@media (max-width: 576px) {
	.error-code {
		font-size: 5rem;
		letter-spacing: -3px;
	}
	.error-title {
		font-size: 1.6rem;
	}
	.btn-home, .error-container .btn-search {
		display: block;
		width: 100%;
		margin: 10px 0;
	}
	.error-container .search-box .btn {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}
}
.faq-sidebar {
    position: relative;
    display: block;
    padding: 32px 29px 40px 29px;
    border: 1px solid #e7e3ee;
    border-radius: 0;
}
.sec-title {
    position: relative;
    display: block;
    margin-bottom: 35px;
}
.sec-title h2 {
   font-weight:bold;
}

/* === Mobil offcanvas === */
.side-panel-wrap {
    /* lg ve üstünde normal akış */
}

@media (max-width: 991.98px) {
	.icerik-ic {
		padding-left: 0px;
	}
	aside{
		margin-top:0 !important;
	}
	.yazi-icerik-header {
		flex-direction: column !important;
		align-items: start !important;
		justify-content: left !important;
	}
	.yazi-icerik-header .date {
		margin-left: 0 !important;
	}
    .side-panel-wrap {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(85vw, 360px);
        background: #fff;
        /* panel arkaplan */
        z-index: 9999;
        /* modal altı/üstü dengenize göre ayarlayın */
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
        transform: translateX(-100%);
        transition: transform .25s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 16px;
        /* içerik nefes alsın */
    }

    .side-panel-wrap.is-open {
        transform: translateX(0);
    }

    .side-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
    }

    .side-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* İsteğe bağlı: panel içi stiller */
.sol-panel .panel-baslik {
    font-weight: 700;
    margin-bottom: .75rem;
}

.sol-panel .liste .oge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .8rem;
    border-radius: .5rem;
}

.sol-panel .liste .oge.is-active {
    background: rgba(0, 0, 0, .04);
}
@media (min-width: 769px) {
  .whatsapp,
  .duyduy {
    font-size: 0; /* yazıyı gizler */
  }
}
@media (max-width: 769px) {
   /* Sıralama ve hizalama */
  .footer-nav .row {
    display: flex;                 /* .row zaten flex ama garanti edelim */
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* Genişlik davranışı */
  .footer-nav .row > li.col { flex: 1 1 0; }     /* yanlardakiler esner */
  .footer-nav .row > li.col-auto { flex: 0 0 auto; } /* ortadaki sabit genişlik */

  /* Mevcut DOM: 1=col-auto, 2=col, 3=col */
  .footer-nav .row > li:nth-child(1) { order: 2; } /* arama -> ortaya */
  .footer-nav .row > li:nth-child(2) { order: 1; } /* whatsapp -> sola */
  .footer-nav .row > li:nth-child(3) { order: 3; } /* duyurular -> sağa */
  
  .slayt-foto>div {
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain !important;
	}
	.belediye-ad {
		font-size: .80rem !important;
		line-height: normal !important;
	}
	.liste-baslik{
		margin-top:0px !important;
	}
	.whts{
		display:none;
	}
}
.whts{
	z-index: 0;
    position: absolute;
}