@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: #008000;
}

@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: 200px;
        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;
}

.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: #008000;
    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: #008000;
    -webkit-transition: .3s;
    transition: .3s;
}

.header-nav-links>li>a:hover {
    color: #fff;
    background: #008000;
}

.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: #008000;
}

.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: #008000;
    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: #76d904;
    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: #008000;
    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: #008000;
    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: #008000;
}

.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: #008000;
}

.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: #ffffff;
    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: #ffee54;
}

.mobil-navigasyon-altyazisi>li.heading {
    position: sticky;
    top: 40px;
    background: #fff;
}

.mobil-navigasyon-kapat {
    color: #008000;
}

.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;
}

/* DESKTOP */
.slide,
.slide-material,
.arden {
    height: 900px;
    margin-top: 40px;  
}

/* TABLET */
@media (max-width: 767px) {
    .slide,
    .slide-material,
    .arden {
        height: 500px;
        margin-top: 20px;
    }
}

/* MOBİL */
@media (max-width: 479px) {
    .slide,
    .slide-material,
    .arden {
        height: 350px;
        margin-top: 20px;
    }
}


.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%;

    transform: none !important;
    transition: none !important;
}


.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: #008000;
    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-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: #009506;
    -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: #008000;
}

.shortcuts.list-button.v-light .shortcuts-card a .title {
    color: #008000;
}

.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: #0080008a;
}

.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: #008000;
    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: #008000;
    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: #008000;
    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: #009506;
}

.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: #008000;
}

@media (max-width: 767px) {
    .header-bottom {
        margin-top: 0;
    }

    .ustbar {
        padding: 100px 0 15px !important;
    }

    .detay-ust {
        height: 37px !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;
        padding-left: 520px; /* değeri arttırıp azaltabilirsin */

}


/* XL ekranlar (1920px ve üstü) */
@media (min-width: 1920px) {
    .header-container {
        padding-left: 120px;
    }
}

/* Large ekranlar (1440px - 1919px) */
@media (max-width: 1919px) and (min-width: 1440px) {
    .header-container {
        padding-left: 520px;
    }
}

/* Medium ekranlar (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .header-container {
        padding-left: 360px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .header-container {
        padding-left: 40px;
    }
}

/* Mobile (767px ve altı) */
@media (max-width: 767px) {
    .header-container {
        padding-left: 20px;
    }
}

.baslik-logo {
    top: 0;
    position: absolute;
    left: 14.9%;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%);
    background: -webkit-linear-gradient(90deg, #fff, #fff);
    width: 215px;
    height: 188px;
    -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;
}

@media (max-width: 768px) {
    .baslik-logo {
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
    }
}

.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: #008000;
    border: 1px solid #008000;
}

.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: #008000;
    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: #009506;
    -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: #008000;
    min-height: 444px;
    position: relative;
    padding-bottom: 40px;
}

.footer-top:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #009506;
    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: #009506;
    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;
}

.arden:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
}

@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: #009506;
    color: #fff;
}

.alt-nav-kapsayici {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.alt-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #71d103;
    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: #009506;
    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(1067px, 78vw);
    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,
	  #009506 0%,
	  #009506 10%,
	  #00950699 30%,
	  #00950600 45%,
	  #00950600 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: #009506;
    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: 127px;
}

.ustbar {
    background: #009506;
    color: #fff;
    padding: 70px 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: #71d103;
    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: #71d103}

.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: #009506}

.hero-title .siyah {
    color: #151923
}

.hero-desc {
    font-size: 18px;
    margin-top: 20px
}

.hero-desc a {
    color: #009506;
    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: #009506}

.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: #009506 !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: #009506;
    -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: #009506;
    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: #008000;
    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: #009506;
    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: #009506;
    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;
}

.drp-tumunu-gor {
    font-size: 14px;
    line-height: 47px !important;
    text-decoration: none;
    color: #676c6d !important;
    float: right;
    transition: all 0.3s;
}

.drp-tumunu-gor:hover {
    color: #008000 !important;
}

.drp-tumunu-gor.hover-bar:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    right: 0;
    background: #008000;
    width: 0;
    height: 1px;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.drp-tumunu-gor.hover-bar:hover:after {
    width: 100%;
}

.drp-haber-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drp-haber-box {
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.drp-haber-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.drp-haber-box:hover {
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.2);
}

.drp-haber-box .content {
    background: white;
    padding: 20px 20px 20px 10px !important;
    display: flex;
    align-items: center;
}

.drp-haber-box h4 {
    font-size: 14px;
    margin: 0;
    color: black;
}

.drp-haber-box p {
    color: grey;
    font-size: 12px;
    line-height: 12px;
    margin: 10px 0px 0px 0px;
}


.tumunu-gor.link-box a {
    color: white !important;
}

.tumunu-gor.link-box {
    background: #008000;
}

.tumunu-gor.link-box:hover a {
    color: white !important;
}

.bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}



.carousel-item img {
    height: 94%;
    width: 100%;
    object-fit: cover;

}



.bg-purple {
    background: #6f4ad3;
}

.bg-green {
    background: #45bb40;
}

.bg-red {
    background: #bb4040;
}

.bg-blue-1 {
    background: #6dc6bd;
}

.bg-blue-2 {
    background: #71d103;
}

.bg-blue-3 {
    background: #59b6ef;
}

.bg-blue-4 {
    background: #4e6a9b;
}

.slide-menu {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}

.slide-menu a {
    color: white;
    text-decoration: none;
}

.slide-menu .fa,
.slide-menu .fas,
.slide-menu .fab,
.slide-menu .far {
    font-size: 40px;
    z-index: 4;
}

.slide-menu .bg-blue-1 a {
    display: block;
}

.slide-menu .bg-blue-1 a:before,
.slide-menu .bg-blue-2 a:before,
.slide-menu .bg-blue-3 a:before,
.slide-menu .bg-blue-4 a:before,
.slide-menu .bg-purple a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    transition: 0.3s;
    z-index: 3;
}

.slide-menu .bg-blue-1 a:before {
    background: #fff;
    opacity: .3;
}

.slide-menu .bg-blue-2 a:before {
    background: #bb4040;
}

.slide-menu .bg-blue-3 a:before {
    background: #bb4040;
}

.slide-menu .bg-blue-4 a:before {
    background: #bb4040;
}

.slide-menu .bg-purple a:before {
    background: #bb4040;
}

.slide-menu .bg-blue-1 a:hover:before,
.slide-menu .bg-blue-2 a:hover:before,
.slide-menu .bg-blue-3 a:hover:before,
.slide-menu .bg-blue-4 a:hover:before,
.slide-menu .bg-purple a:hover:before {
    height: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
}

.slide-menu p {
    font-size: 12px;
    margin: 0;
    z-index: 4;
}

.slide-menu .col-9.flex-center>div {
    z-index: 4;
}

.slide-menu h6 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    z-index: 4;
}

.slide-menu {
    height: 110px;
}

.slide-menu .row {
    height: 100%;
}


.hamburger-box .icon {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger-box .icon .hamburger {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    transition: 0.5s;
    width: 100%;
    height: 20%;
    background: #fff;
    box-shadow: 0px 2px 5px rgb(0, 0, 0, 0.2);
}

.hamburger-box .icon .hamburger:before,
.hamburger-box .icon .hamburger:after {
    content: "";
    position: absolute;
    transition: 0.5s;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 5px rgb(0, 0, 0, 0.2);
}

.hamburger-box .icon .hamburger:before {
    top: -200%;
}

.hamburger-box .icon .hamburger:after {
    top: 200%;
}

.hamburger-box .icon.active .hamburger {
    background: rgb(0, 0, 0, 0);
    box-shadow: 0px 2px 5px rgb(0, 0, 0, 0);
}

.hamburger-box .icon.active .hamburger:before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger-box .icon.active .hamburger:after {
    transform: rotate(-45deg);
    top: 0;
}


#dismiss {
    width: 35px;
    height: 35px;
    text-align: center;
    background: #71d103;
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #fff;
    color: #71d103;
}

#dismiss i {
    line-height: 35px;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}


a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 40px !important;
    background: #008000;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #71d103;
}

a.article,
a.article:hover {
    background: #008000 !important;
    color: #fff !important;
}

#haberSlide {
    height: 100%;
}

#haberSlide .content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: white;
    z-index: 5 !important;
}

#haberSlide .content h3 {
    font-size: 22px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

#haberSlide .carousel-item a {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
    display: block;
}

#haberSlide .carousel-item a:hover img {
    transform: scale(1.2);
}

#haberSlide img {
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

#haberSlide .carousel-indicators {
    margin: 0;
    height: 50px;
    bottom: -50px;
    justify-content: flex-start;
    background: #008000;
}

#haberSlide .carousel-indicators li {
    height: 50px;
    width: 70px;
    margin: 0;
    background: #008000;
    text-indent: 0;
    border: none;
    text-align: center;
    line-height: 50px;
    opacity: 1;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

#haberSlide .carousel-indicators li:hover,
#haberSlide .carousel-indicators li.active {
    background: #334d66;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}




.haber-section>div {
    height: 480px;
}

.diger-haberler>div {
    height: 100%;
}

.haber-nav {
    height: 50px !important;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: #836a7d;
    z-index: 1;
}

.haber-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
}

.haber-nav ul li {
    display: inline-block;
    padding: 0px 15px;
    text-align: center;
    transition: all 0.3s;
}

.haber-nav ul li:hover {
    background: #334d66;
}

.haber-nav ul li a {
    color: white;
    line-height: 50px;
    text-decoration: none;
}

.diger-haberler>div>div {
    height: 50%;
    position: relative;
    overflow: hidden;
}

.diger-haberler img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.diger-haberler a {
    width: 100%;
    height: 100%;
    display: block;
}

.diger-haberler a .content {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 5;
}

.diger-haberler a .content p,
.diger-haberler a .content h3 {
    margin: 5px;
}

.diger-haberler a .content p {
    font-size: 14px;
}

.diger-haberler a .content h3 {
    font-size: 22px;
}

.diger-haberler a:hover img {
    transform: scale(1.2);
}

.etkinlik-section {
    padding: 60px 0px;
}

.bg-etkinlik {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-component .tab-head .tab-link {
    width: 33%;
    display: inline-block;
    padding: 10px 0;
    background: #dde3e8;
    color: #008000;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.tab-component .tab-head .tab-link:hover,
.tab-component .tab-head .tab-link.active {
    background: #008000;
    color: #dde3e8;
}

.tab-component .tab-head .row {
    display: flex;
    justify-content: space-between;
}

.tab-component .tab-body .tab-panel {
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    min-height: 380px;
    -webkit-box-shadow: 0 0 50px rgba(24, 76, 124, 0.1);
    box-shadow: 0 0 50px rgba(24, 76, 124, 0.1);
}

.tab-component .tab-body .tab-panel>div {
    display: none;
    padding: 25px 50px 25px 30px;
    position: relative;
    height: 370px;
    overflow-y: auto;
}

.tab-tum-buton {
    color: #008000;
    text-decoration: none;
    display: inline-block;
    float: right;
    padding-bottom: 10px;
    margin: 20px 30px;
    font-weight: 700;
    position: relative;
}

.tab-tum-buton::before {
    content: "";
    height: 1px;
    width: 0%;
    position: absolute;
    background: #008000;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}

.tab-tum-buton:hover {
    color: #008000;
    text-decoration: none;
}

.tab-tum-buton:hover::before {
    width: 100%;
}

.tab-component .tab-body .tab-panel.active {
    display: block;
}

.tab-component .tab-body .tab-panel .do-nicescroll3.active {
    display: block;
}

.etkinlik-list-box {
    padding-top: 9px;
    padding-bottom: 9px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.etkinlik-list-box:before {
    content: "";
    background: #fff;
    border-radius: 5px;
    position: absolute;
    z-index: -1;
    top: -1px;
    right: -10px;
    bottom: -1px;
    left: -10px;
    width: 50%;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.etkinlik-list-box:hover:before {
    -webkit-box-shadow: 0 0 30px rgba(24, 76, 124, 0.1);
    box-shadow: 0 0 30px rgba(24, 76, 124, 0.1);
    width: calc(100% + 20px);
    opacity: 1;
}

.etkinlik-list-box:last-child {
    margin-bottom: 10px;
    border-bottom: none;
}

.etkinlik-list-box p {
    margin: 0;
    font-weight: 500;
    padding-left: 15px;
    font-size: 14px;
    color: #6f6f6f;
    line-height: 1.35;
}

.etkinlik-list-box p:last-child {
    margin: 0;
    color: #6f6f6f;
    font-size: 13px;
    font-weight: 300;
}

.etkinlik-list-box a {
    text-decoration: none;
    color: black;
}

.etkinlik-list-box a:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    background: #4d6379;
    width: 4px;
}

.etkinlik-list-box a:hover {
    text-decoration: none;
    color: #008000;
}

#etkinlik-scroll {
    height: 330px !important;
}

@media (min-width: 1400px) {
	.tab-component .tab-body .tab-panel {
		min-height: 468px;
	}
	.tab-component .tab-body .tab-panel>div {
		height: 458px;
	}
	#etkinlik-scroll {
		height: 415px !important;
	}
}

#etkinlik-scroll .nicescroll-cursors {
    background-image: #008000;
    background-size: 20px 20px;
    height: 210px !important;
}

.etkinlik-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* .etkinlik-content {
    background: white;
    padding: 30px 100px 30px 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    widows: 100%;
    } */
.etkinlik-content {
    background: white;
    padding: 30px 100px 30px 50px;
    position: static;
    left: 0;
    bottom: 0;
    width: 100%;
}

.etkinlik-content h3 {
    font-size: 25px;
    font-weight: bold;
}

.etkinlik-content p {
    font-size: 14px;
}

.etkinlik-content .social a {
    text-decoration: none;
}

.etkinlik-content .social a:hover i {
    border: 2px solid #008000;
    color: #008000;
}

.etkinlik-content .social i {
    width: 28px;
    height: 28px;
    line-height: 26px;
    text-align: center;
    border: 2px solid #c0c5c9;
    color: #c0c5c9;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s;
}

.etkinlik-tarih {
    width: 50px;
    height: 100px;
    background: #c0c5c9;
    position: absolute;
    right: 10;
    top: 0;
    text-align: center;
    color: white;
    clip-path: polygon(100% 0, 100% 100%, 50% 80%, 0 100%, 0 0);
}

.owl-carousel-hizlimenu .owl-item:not(.active) {
    opacity: 0.5;
}

.etkinlik-tarih div:first-child {
    margin-top: 10px;
    font-size: 32px;
    line-height: 30px;
}

.etkinlik-tarih div:last-child {
    font-size: 16px;
}

.etkinlik-linkler {
    background: rgba(116, 162, 209, 0.7);
    padding: 30px 0px;
}

.etkinlik-linkler .main {
    display: flex;
    justify-content: space-between;
}

.etkinlik-linkler .main a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    padding: 25px 35px;
    text-decoration: none;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s;
}

.etkinlik-linkler .main a:hover {
    background: #008000;
}

.etkinlik-linkler .main a i {
    margin-right: 20px;
    font-size: 25px;
}

.custom-owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 9;
}

.custom-owl-nav button {
    position: absolute;
    top: 0;
    background: #71d103;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    outline: none;
    transition: all 0.3s;
    padding: 0;
}

.custom-owl-nav button:hover {
    background: #008000;
}

.custom-owl-nav button:first-child {
    left: 0;
}

.custom-owl-nav button:last-child {
    right: 0;
}

.custom-owl-nav button span {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 28px;
}

.baskan-section {
    position: relative;
}

.baskan-section .sol {
    text-align: center;
    background: white;
    padding-bottom: 30px;
}

.baskan-section img {
    width: 100%;
    object-fit: cover;
}

.baskan-section .sol h3 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 23px;
    font-family: "Montserrat", sans-serif;
    color: #008000;
}

.baskan-section .sol p {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: #969696;
}

.baskan-section .social {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.baskan-section .text-side {
    max-width: 680px;
    margin: 0px auto;
}

.baskan-section .text-side h3 {
    font-size: 85px;
    margin-bottom: 0px;
    font-weight: 800;
}

.baskan-section .text-side p {
    color: #008000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    letter-spacing: 6.7px;
    font-weight: 200;
}

.baskan-section .sag {
    display: flex;
    justify-content: center;
    align-items: center;
}

h3.g-title {
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 35px;
    color: #008000;
    font-weight: bold;
}

h4.g-title {
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 25px;
    color: #008000;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.baskan-section .social a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #008000;
    border-radius: 50%;
    font-size: 17px;
    opacity: 0.8;
    transition: all 0.3s;
}

.baskan-section .social a i:hover {
    background: #263c5a;
}

.baskan-section .social a {
    color: #fff;
    text-decoration: none;
}


.ozellik ul {
    list-style: none;
    padding: 0;
}

.ozellik ul li {
    padding-left: 25px;
    position: relative;
}

.ozellik ul li:before {
    content: "✓";
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.projeler-section {
    padding-bottom: 80px;
    background: #fdf4ef;
}

.projeler-section .owl-item {
    transition: all 0.5s;
}

.projeler-section .owl-item:not(.active) {
    transform: scale(0.8) !important;
    z-index: 1;
    filter: blur(3px);
    opacity: 0.7;
}


.projeler-section .tumunu-gor {
    text-align: center;
    margin-top: 30px;
}

.projeler-section .tumunu-gor a {
    color: #008000;
    border: 1px solid #008000;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none !important;
}

.projeler-section .tumunu-gor a:hover {
    color: white;
    background-color: #008000;
    transition: all 0.3s;
}

.projeler-section .owl-item.active+.owl-item,
.projeler-section .owl-item.active+.owl-item+.owl-item {
    transform: scale(0.8) !important;
    z-index: 1;
    filter: blur(3px);
    opacity: 0.7;
}

.projeler-section .owl-item.active {
    z-index: 99;
}

.projeler-section .custom-owl-nav {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    transform: translateY(-42px);
    width: auto;
    z-index: 9;
}

.projeler-section .custom-owl-nav button {
    width: 60px;
    height: 60px;
}

.projeler-section .custom-owl-nav button span {
    line-height: 75px;
}

.bg-festival {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.festival-section .video-box {
    position: relative;
}

.festival-section {
    padding-top: 70px !important;
    padding-bottom: 70px;
}

.festival-section>.slide-overlay {
    background: rgba(0, 0, 0, 0.8);
}


.festival-video {
    border-right: 1px solid #575758;
    display: flex;
    align-items: center;
}

.f-image-box {
    overflow: hidden;
    border-radius: 5px;
}

.f-image-box:hover .festival-image {
    transform: scale(1.2) rotateZ(-5deg);
}

.festival-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    -webkit-transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.f-image-box:hover .foto-image {
    transform: scale(1.2) rotateZ(-5deg);
}

.foto-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: all 0.3s;
}

.festival-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px !important;
    height: 50px;
}

.festival-fotolar a {
    text-decoration: none;
    color: white;
}

.festival-nav {
    left: 50px;
    right: 50px;
    width: auto;
}

.festival-nav button {
    opacity: 0.7;
    background: none;
    font-size: 150px;
    width: 80px;
    height: 75px;
}

.festival-nav button:hover {
    background: none;
    opacity: 1;
}

.fotogaleri-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    z-index: 1;
}

.fotogaleri-section .fotogaleri-nav {
    transform: translateY(-19px);
}

.fotogaleri-section .content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    width: 100%;
    padding: 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}

.fotogaleri-section a {
    color: white;
}

.hover-effect {
    overflow: hidden;
    transition: all 0.3s;
}

.hover-effect:hover img {
    transform: scale(1.2);
}

.btn-1 {
    color: black !important;
    border: 1px solid black;
    padding: 15px 20px;
    margin: 10px 0px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s;
    overflow: hidden;
}

.btn-1::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #008000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-1:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.btn-1:hover {
    text-decoration: none;
    color: white !important;
    border: 1px solid white;
    border-radius: 5px;
}

.iletisim-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.iletisim-form label {
    color: #6b6b6d;
}

.iletisim-form input {
    width: 100%;
    outline: none;
    border: 1px solid #dddedf;
    height: 50px;
    padding: 10px;
    transition: all 0.3s;
}

.iletisim-form textarea {
    width: 100%;
    outline: none;
    border: 1px solid #dddedf;
    height: 100px;
    padding: 10px;
    transition: all 0.3s;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
    border: 1px solid #71d103;
}

.iletisim-section .social a {
    color: #71d103;
    text-decoration: none;
    margin: 0 10px;
}

.iletisim-section .social a i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    font-size: 32px;
    transition: all 0.3s;
    background: #71d103;
}

.iletisim-section .social a i:hover {
    background: #008000;
}

.iletisim-section .sol div {
    display: flex;
    justify-content: center;
}

.form-button {
    background: #71d103;
    color: white;
    border: none !important;
    width: auto;
    padding: 10px 40px;
    border-radius: 5px;
}

.form-button:hover {
    background: #008000;
}

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

.hava-kutular {
    display: flex;
    justify-content: space-between;
    text-align: right;
}

.hava-kutu {
    display: inline-block;
    margin-left: 20px;
}

.hava-kutu:first-child {
    margin-left: 0px;
}

.hava-kutu h1 {
    font-size: 55px;
    position: relative;
    display: inline-block;
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    font-weight: 100;
}

.hava-kutu h1 img {
    position: absolute;
    right: -8px;
    bottom: 10px;
    width: 25px;
    opacity: 0.4;
}

.hava-kutu p {
    margin: 0;
    font-size: 11px;
    color: #fff;
    padding-left: 8px;
}

.gun {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px !important;
    font-weight: bold !important;
}

#page-up {
    position: fixed;
    right: 10;
    bottom: -70px;
    background: transparent;
    border: none;
    z-index: 99;
    outline: none;
    transition: all 0.3s;
}

#page-up.active {
    bottom: 20px;
}

#page-up i {
    width: 60px;
    height: 60px;
    background: white;
    color: #008000;
    font-size: 32px;
    line-height: 58px;
    border-radius: 50%;
    border: 1px solid #008000;
    z-index: 99;
}

.page-section {
    margin-bottom: 30px;
}



.kolay-menu {}

.kolay-menu>h4 {
    color: white;
    background: #008000;
    text-align: center;
    padding: 20px 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 0px;
}

.kolay-menu>ul {
    padding: 0;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-transition: .3s;
    transition: .3s;
}

.kolay-menu>ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.kolay-menu>ul>li:last-child {
    border-bottom: none;
}

.kolay-menu>ul>li>a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 16px;
    color: #788281;
    padding: 15px 20px;
    position: relative;
    height: fit-content;
    z-index: 1;
    transition: all 0.3s;
}

.kolay-menu>ul>li>a:before {
    content: "";
    background: #008000;
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    transition: all 0.3s;
    z-index: -1;
}

.kolay-menu>ul>li>a:hover:before {
    right: 0;
}

.kolay-menu>ul>li>a:hover {
    color: white;
}

.kolay-menu .social {
    text-align: center;
    padding-bottom: 20px;
}

.kolay-menu .social h4 {
    text-align: center;
    color: #008000;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.kolay-menu .social a {
    color: #fff;
    text-decoration: none;
    margin: 0 2px;
}

.kolay-menu .social a i {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    font-size: 21px;
    background: #008000;
    transition: all 0.3s;
}

.kolay-menu .social a i:hover {
    background: #71d103;
}




.sayfa-geri {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    float: right;
    border: 1px solid #fff;
    padding: 2px 10px;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sayfa-geri:hover {
    font-weight: bold;
    text-decoration: none;
    color: #7aab2b;
    border: 1px solid #7aab2b;
}

.sayfa-geri .icon {
    font-size: 11px;
    margin-right: 5px;
    margin-top: -2px;
    height: auto;
    width: auto;
}

.page-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    color: #008000;
    border-bottom: 1px solid #ebeded;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
}

.page-title::before {
    content: "";
    width: 35px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -1;
    background: #008000;
}

.full-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.e-tarih {
    width: 70px;
    height: 70px;
    background: #71d103;
    color: white;
    text-align: center;
    border-radius: 50%;
}

.image-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 150px;
}

.e-tarih p {
    margin: 0;
    font-size: 12px;
    font-weight: bolder;
    line-height: 12px;
}

.e-tarih p:first-child {
    font-size: 24px;
    padding-top: 8px;
    line-height: 24px;
}

.e-content {
    padding: 20px 18px;
}

.e-content p {
    font-size: 14px;
    font-weight: normal;
    color: #7f7f7f;
    margin: 0;
}

.e-content a {
    text-decoration: none;
}

.e-content h5:hover {
    color: #008000;
}

.e-content h5 {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    transition: all 0.3s;
}

.etkinlik-box>div {
    border-bottom: 1px solid #e9ebeb;
}

.etkinlik-box>div:last-child {
    border-bottom: none;
}

.haberler-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}

.haber-box {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 30px;
}

.cards-photo {
    overflow: hidden;
    height: 175px;
}

.haber-box a:hover img {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
    text-decoration: none;
}

.haber-box .content {
    padding: 20px;
}

.haber-box .content a:hover {
    text-decoration: none;
}

.haber-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: #008000;
}

.haber-box h4.title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    overflow: hidden;
    min-height: 45px;
}

.haber-box p {
    font-size: 12px;
    color: #c1c1c1;
}

.haber-box p.icerik {
    font-size: 14px;
    color: #6b6b6b;
    max-height: 110px;
    overflow: hidden;
}

.ihale-table thead th {
    color: #fff;
    font-size: 14px;
}

.ihale-table tbody tr {
    font-size: 15px;
    color: black;
    font-weight: 500;
}

.ihale-table tbody tr:nth-child(2n + 1) {
    background: #edf4f4;
}

.ihale-table tbody tr:nth-child(2n) {
    background: white;
}

.fotolar-box {}

.foto-box {
    height: 250px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
}

.foto-box .content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5;
    color: white;
}

.foto-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.foto-box span {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
}

.foto-box:hover img,
.foto-box:hover a {
    transform: scale(1.1);
}

.foto-box a {
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    transition: all 0.3s;
    transform-origin: left;
}

.foto-box a:hover {
    transform: scale(1.1);
}

.foto-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.foto-box p {
    font-size: 12px;
    color: #c1c1c1;
    margin-bottom: 5px;
}

.page-title .tarih {
    color: #a8afae;
    font-size: 12px;
    float: right;
    line-height: 31px;
}

.haber-detay-image {
    max-width: 50%;
    height: auto;
    margin: 0px 30px 20px 0px;
    float: left;
}

.detay {
    float: left;
    display: contents;
    text-align: justify;
    color: #6f6f6f !important;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    font-family: "Roboto", sans-serif !important;

}

.spot {
    color: black;
    font-size: 18px;
    font-weight: 400;
}

.small-title {
    color: #7f7f7f;
    font-size: 14px;
    font-weight: bold;
}

.page-title-personel {
    font-size: 28px;
    font-weight: bold;
    color: white;
    border-bottom: 1px solid #6d8fb2;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
}

.page-title-personel::before {
    content: "";
    width: 35px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -1;
    background: white;
}

.ilk-personel {
    background: #008000;
    padding-top: 100px !important;
}

.personel-foto {
    width: auto;
    background: #fff;
}

.personel-detay {
    text-align: center;
}

.ilk-personel .ad {
    color: white;
    margin: 10px 0 0 0;
    font-size: 21px;
}

.ilk-personel .unvan {
    color: #7497ba;
    margin: 0;
}

.ilk-personel .social {
    margin-top: 10px;
}

.ilk-personel .social a {
    color: white;
    text-decoration: none;
}

.ilk-personel .social i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    background: #7497ba;
    transition: all 0.3s;
}

.ilk-personel .social i:hover {
    background: white;
    color: #71d103;
}

.diger-personeller {
    padding: 80px 30px 30px 30px !important;
}

.diger-personeller .ad {
    color: black;
    margin: 10px 0 0 0;
    font-size: 21px;
}

.diger-personeller .unvan {
    color: #b5b5b5;
    margin: 0;
}

.diger-personeller .social {
    margin-top: 10px;
}

.diger-personeller .social a {
    color: white;
    text-decoration: none;
}

.diger-personeller .social i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    background: #b5b5b5;
    transition: all 0.3s;
}

.diger-personeller .social i:hover {
    background: #71d103;
}

.diger-personeller>div {
    margin-bottom: 50px;
}

.personeldis {
    -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);
    -webkit-transition: .3s;
    transition: .3s;
    padding-bottom: 10px;
}

.personeldis div {
    text-align: center;
}

.personeldis a {
    text-decoration: none;
}

.personeldis:hover {
    box-shadow: 0px 0px 30px 4px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    text-decoration: none;
}

.page-title-other-personel {
    font-size: 22px;
    text-align: center;
}

.iletisim-mini {
    padding: 45px;
    position: relative;
}

.iletisim-mini i {
    position: absolute;
    top: 0;
    left: 0;
    background: #008000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: white;
}

.iletisim-mini h5 {
    font-size: 22px;
    color: #008000;
}

.iletisim-mini p {
    color: 666868;
    font-size: 14px;
}

.iletisim-box {
    padding-top: 80px;
    background: #008000;
}

.iletisim-box .sol div {
    display: flex;
    justify-content: center;
}

.iletisim-box .sol .social a {
    color: #008000;
    text-decoration: none;
    margin: 0 5px;
}

.iletisim-box .sol .social a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    transition: all 0.3s;
    background: white;
}

.iletisim-box .sol .social a i:hover {
    background: #71d103;
    color: white;
}

.iletisim-box .title h3 {
    color: white;
    font-size: 35px;
}

.iletisim-box .title p {
    color: #b8b8c4;
    font-size: 18px;
}

.form-box {
    display: table;
    width: 100%;
}

.form-box .image {
    display: table-cell;
    white-space: nowrap;
    width: 40px;
    padding: 5px;
    vertical-align: middle;
    color: #fff;
}

.form-box .image i {
    font-size: 25px;
}

.form-box .image img {
    width: 28px;
}

.form-box .inputs {
    display: table-cell;
    padding: 10px;
}

.form-box .inputs .iletisim-form {
    width: 100%;
    border: none;
    outline: none;
    height: 50px;
    border-radius: 10px;
    padding: 5px 10px;
}

.form-box .inputs textarea.iletisim-form {
    min-height: 80px;
}

.form-button.iletisim-page {
    margin-top: 15px;
    margin-left: 53px;
    transition: all 0.3s;
}

.form-button.iletisim-page:hover {
    background: white;
    color: #008000;
}

.bize-ulasin {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.bize-ulasin h4 {
    color: #008000;
    font-size: 35px;
    margin: 0;
}

.bize-ulasin p {
    color: #8e8e8e;
    font-size: 18px;
    position: relative;
}

.bize-ulasin p::before {
    content: "";
    background-color: #008000;
    width: 25px;
    height: 5px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.etkinlik-kutucuk {
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    padding: 15px 30px;
    -webkit-box-shadow: 0 0 50px rgba(24, 76, 124, 0.1);
    box-shadow: 0 0 50px rgba(24, 76, 124, 0.1);
}

.etkinlik-kutucuk h5 {
    color: #008000;
    font-weight: bold;
    display: inline;
}

.etkinlik-kutucuk img {
    width: 100%;
}

.etkinlik-kutucuk ul {
    padding: 0;
    list-style: none;
    margin-top: 15px;
}

.etkinlik-kutucuk ul li {
    margin-top: 5px;
}

.etkinlik-kutucuk ul li a:hover {
    text-decoration: none;
}

.etkinlik-kutucuk ul li a:hover span:last-child {
    background-color: #008000;
    color: white;
    transition: all 0.3s;
}

.etkinlik-kutucuk ul li a span:first-child {
    display: inline-flex;
    width: 40px;
    height: 35px;
    text-align: center;
    background: #dce4eb;
    color: #008000;
    line-height: 32px;
    border-radius: 3px;
}

.etkinlik-kutucuk ul li a span:first-child i {
    line-height: 32px;
    width: 100%;
    text-align: center;
}

.etkinlik-kutucuk ul li a span:last-child {
    display: inline-flex;
    height: auto;
    background: #dce4eb;
    color: #008000;
    width: calc(100% - 45px);
    line-height: 35px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 300;
}

.e-content p:last-child {
    font-size: 15px;
    font-weight: 300;
}

.gecmis-etkinlik-box {
    margin-top: 10px;
    padding: 5px;
    background: #71d103;
    border: 1px solid #71d103;
    border-radius: 5px;

    transition: all 0.3s;
}

.gecmis-etkinlik-box:hover {
    background: white;
}

.gecmis-etkinlik-box:hover a {
    color: #008000;
}

.gecmis-etkinlik-box a {
    color: white;
    text-decoration: none !important;
    transition: all 0.3s;
}

.gecmis-etkinlik-box a span:first-child {
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    font-size: 24px;
}

.gecmis-etkinlik-box a span:last-child {
    display: inline-flex;
    width: calc(100% - 55px);
    height: 50px;
    flex-direction: column;
    vertical-align: middle;
}

.owl-carousel-etkinlik img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
}

.owl-carousel-etkinlik .row {
    height: 100%;
    min-height: 350px;
}



.etkinlik-foto-buton {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.etkinlik-foto-buton:hover {
    background-color: white;
    color: #008000;
    text-decoration: none;
}

.etkinlik-detay-kutu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hizli-menu-box {
    width: 100%;
    position: relative;
    height: 285px;
}

.hizli-menu-box .hizli-icon {
    text-align: center;
    font-size: 45px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

.hizli-menu-box p {
    color: white;
    margin: 0;
    text-align: center;
}

.hizli-menu-box p:first-child {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.hizli-menu-box p:last-child {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    margin-top: 5px;
}

.hizli-menu-box:hover .hizli-back {
    transform: translateY(20px);
}

.hizli-menu-box:hover>a:first-child {
    transform: translateY(0px);
}

.hizli-back {
    position: absolute;
    width: 100%;
    background: rgb(17, 98, 114);
    z-index: 1;
    top: 30px;
    bottom: 30px;
    left: 0px;
    transform: translateY(0px);
    transition: all 0.3s;
    border-radius: 12px;
}

.hizli-back span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 55px;
    color: white;
    text-decoration: none !important;
    font-size: 17px;
    font-weight: 700;
}

.hizli-menu-box>a:first-child {
    text-decoration: none !important;
    border-radius: 12px;
    width: 100%;
    height: 235px;
    display: block;
    padding: 40px 15px;
    position: relative;

    transition: all 0.3s;
    transform: translateY(30px);

    z-index: 3;

    background: rgb(29, 172, 202);
    background: -moz-linear-gradient(135deg,
            rgba(29, 172, 202, 1) 0%,
            rgba(29, 172, 202, 1) 48%,
            rgba(28, 150, 176, 1) 51%,
            rgba(28, 150, 176, 1) 100%);
    background: -webkit-linear-gradient(135deg,
            rgba(29, 172, 202, 1) 0%,
            rgba(29, 172, 202, 1) 48%,
            rgba(28, 150, 176, 1) 51%,
            rgba(28, 150, 176, 1) 100%);
    background: linear-gradient(135deg,
            rgba(29, 172, 202, 1) 0%,
            rgba(29, 172, 202, 1) 48%,
            rgba(28, 150, 176, 1) 51%,
            rgba(28, 150, 176, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1dacca", endColorstr="#1c96b0", GradientType=1);
}

.hizli-menu .owl-item:nth-child(4n + 2) .hizli-menu-box>a:first-child {
    background: rgb(169, 181, 200);
    background: -moz-linear-gradient(135deg,
            rgba(169, 181, 200, 1) 0%,
            rgba(169, 181, 200, 1) 48%,
            rgba(158, 170, 188, 1) 51%,
            rgba(158, 170, 188, 1) 100%);
    background: -webkit-linear-gradient(135deg,
            rgba(169, 181, 200, 1) 0%,
            rgba(169, 181, 200, 1) 48%,
            rgba(158, 170, 188, 1) 51%,
            rgba(158, 170, 188, 1) 100%);
    background: linear-gradient(135deg,
            rgba(169, 181, 200, 1) 0%,
            rgba(169, 181, 200, 1) 48%,
            rgba(158, 170, 188, 1) 51%,
            rgba(158, 170, 188, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a9b5c8", endColorstr="#9eaabc", GradientType=1);
}

.hizli-menu .owl-item:nth-child(4n + 2) .hizli-menu-box .hizli-back {
    background: rgb(109, 117, 129);
}

.hizli-menu .owl-item:nth-child(4n + 3) .hizli-menu-box>a:first-child {
    background: rgb(255, 216, 61);
    background: -moz-linear-gradient(135deg,
            rgba(255, 216, 61, 1) 0%,
            rgba(255, 216, 61, 1) 48%,
            rgba(242, 204, 52, 1) 51%,
            rgba(242, 204, 52, 1) 100%);
    background: -webkit-linear-gradient(135deg,
            rgba(255, 216, 61, 1) 0%,
            rgba(255, 216, 61, 1) 48%,
            rgba(242, 204, 52, 1) 51%,
            rgba(242, 204, 52, 1) 100%);
    background: linear-gradient(135deg,
            rgba(255, 216, 61, 1) 0%,
            rgba(255, 216, 61, 1) 48%,
            rgba(242, 204, 52, 1) 51%,
            rgba(242, 204, 52, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd83d", endColorstr="#f2cc34", GradientType=1);
}

.hizli-menu .owl-item:nth-child(4n + 3) .hizli-menu-box .hizli-back {
    background: rgb(192, 163, 46);
}

.hizli-menu .owl-item:nth-child(4n + 4) .hizli-menu-box>a:first-child {
    background: rgb(250, 89, 187);
    background: -moz-linear-gradient(135deg,
            rgba(250, 89, 187, 1) 0%,
            rgba(250, 89, 187, 1) 48%,
            rgba(237, 80, 176, 1) 51%,
            rgba(237, 80, 176, 1) 100%);
    background: -webkit-linear-gradient(135deg,
            rgba(250, 89, 187, 1) 0%,
            rgba(250, 89, 187, 1) 48%,
            rgba(237, 80, 176, 1) 51%,
            rgba(237, 80, 176, 1) 100%);
    background: linear-gradient(135deg,
            rgba(250, 89, 187, 1) 0%,
            rgba(250, 89, 187, 1) 48%,
            rgba(237, 80, 176, 1) 51%,
            rgba(237, 80, 176, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fa59bb", endColorstr="#ed50b0", GradientType=1);
}

.hizli-menu .owl-item:nth-child(4n + 4) .hizli-menu-box .hizli-back {
    background: rgb(156, 55, 118);
}

.clip-t-t {
    clip-path: polygon(50% 0px, 100% 40px, 100% 100%, 0 100%, 0 40px);
    padding-top: 40px;
    margin-top: -40px;
}

.clip-t-b {
    clip-path: polygon(50% 40px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 40px;
    margin-top: -40px;
}

.bize-ulasin-sidebar {
    padding: 20px;
    background-color: #7aab2b;
    text-align: left;
    color: white;
}

.bize-ulasin-sidebar p {
    color: white;
}

.bize-ulasin-sidebar h6 {
    font-weight: normal;
    font-size: 14px;
}

.bize-ulasin-sidebar h5 {
    font-size: 24px;
}

.bize-ulasin-sidebar a {
    color: white;
    border: 1px solid white;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.bize-ulasin-sidebar a:hover {
    background-color: white;
    color: #7aab2b;
}

.baskan-kosesi .image-box {
    position: relative;
}

.baskan-kosesi .image-box img {
    width: 100%;
}

.baskan-kosesi .image-box ul {
    background: -webkit-linear-gradient(linear,
            left top,
            left bottom,
            from(transparent),
            to(rgba(23, 53, 86, 0.9)));
    background: linear-gradient(transparent, rgba(23, 53, 86, 0.9));
    padding: 0;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.baskan-kosesi .image-box ul li {
    display: inline-block;
    margin: 0px 5px 15px 5px;
}

.baskan-kosesi .image-box ul li a {
    color: white;
}

.baskan-kosesi .image-box ul li a i {
    border: 1px solid white;
    border-radius: 2px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s;
}

.baskan-kosesi .image-box ul li a i:hover {
    background-color: white;
    color: #008000;
    border-radius: 50%;
}

.baskan-kosesi>h5 {
    color: #7aab2b;
    margin-bottom: 10px;
}

.baskan-kosesi .link-box ul {
    list-style: none;
    padding: 0 20px;
}

.baskan-kosesi .link-box {
    -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);
    -webkit-transition: .3s;
    transition: .3s;
}

.baskan-kosesi .link-box ul li {
    padding: 20px 0px;
    border-bottom: 1px solid #e9e9e9;
}

.baskan-kosesi .link-box ul li:last-child {
    border-bottom: unset;
}

.baskan-kosesi .link-box ul li a {
    width: 100%;
    display: block;
    text-decoration: none !important;
}

.baskan-kosesi .link-box ul li a span {
    vertical-align: middle;
    display: inline-flex;
    color: #8d8b8e;
    transition: all 0.3s;
}

.baskan-kosesi .link-box ul li a:hover span {
    color: #7aab2b;
}

.baskan-kosesi .link-box ul li a span:first-child {
    width: calc(100% - 20px);
}

.baskan-kosesi .link-box ul li a span:last-child {
    width: 15px;
    text-align: right;
}

/* Mobile Device */
@media only screen and (max-width: 992px) {
    .baskan-section .sag {
        align-items: flex-start;
    }

    .baskan-section .sag .text-side h3 {
        font-size: 41px;
    }

    .baskan-section .sag .text-side p {
        font-size: 22px;
    }

    .ilk-personel img,
    .diger-personeller img {
        padding: 0px 50px;
    }

    .e-tarih {
        width: 100%;
        height: 70px;
        background: #71d103;
        color: white;
        text-align: center;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .e-tarih p {
        display: inline;
        font-size: 20px !important;
        line-height: 70px;
    }


    .slide-menu.container {
        max-width: 100%;
    }

    .slide-menu {
        height: auto;
        position: static;
        left: 0;
        transform: translateX(0);
    }

    .slide-menu>div {
        height: auto !important;
    }

    .slide-menu>div>div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 140px;
    }


   


    .diger-haberler a .content p {
        font-size: 14px;
    }

    .diger-haberler a .content h3 {
        font-size: 18px;
    }

    .slide-menu .row {
        height: min-content;
    }
}

@media only screen and (max-width: 768px) {
    .owl-carousel-etkinlik .row {
        height: 350px;
    }

 
    .owl-carousel-etkinlik img {
        height: 350px;
    }

    .festival-image {
        height: 200px;
    }

    .baskan-section {
        padding-bottom: 0px;
    }

    .haber-nav {
        display: none;
    }


    .slide-menu.container {
        max-width: 100%;
    }

    .slide-menu {
        height: auto;
        position: static;
        left: 0;
        transform: translateX(0);
    }

    .slide-menu>div {
        height: auto !important;
    }

    .slide-menu>div>div {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .diger-haberler a .content p {
        font-size: 12px;
    }

    .diger-haberler a .content h3 {
        font-size: 14px;
    }

    .etkinlik-image {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .etkinlik-content {
        background: white;
        padding: 30px 100px 30px 50px;
        position: static;
        left: 0;
        bottom: 0;
        widows: 100%;
    }

    #haberSlide {
        height: 420px;
    }

    #haberSlide .carousel-indicators {
        display: none;
    }

    .haber-section>div {
        height: 420px;
    }



    .festival-nav {
        bottom: 85px;
        top: auto;
        width: 100px;
        margin: 0px auto;
        transform: translateY(-50%);
        z-index: 9;
    }

    .festival-nav button {
        background: #71d103;
        width: 36px;
        height: 36px;
        font-size: 30px;
    }

    .festival-nav button:hover {
        background: #008000;
        width: 36px;
        height: 36px;
        font-size: 30px;
    }
}

@media only screen and (max-width: 1400px) {
    .bagis-box button{
		font-size:12px !important;
	}
}
@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

@media only screen and (max-width: 1200px) {

    .projeler-section .custom-owl-nav {
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        transform: translateY(-50%);
        width: auto;
        z-index: 9;
        height: 85px;
    }

    .projeler-section .custom-owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .projeler-section .custom-owl-nav button span {
        line-height: 30px;
    }
}

#haberSlide .carousel-control-next,
#haberSlide .carousel-control-prev {
    width: 100px;
    z-index: 9;
}

#carouselExampleControls .carousel-control-next,
#carouselExampleControls .carousel-control-prev {
    width: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.z-index-9 {
    z-index: 9;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

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

@-moz-keyframes scroll {
    0% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}








section.bg-cover:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
}

section.cover-1:before {
    background-image: url(../../assets/images/cover-1.jpg);
}

.ordered-list {
    display: inline-block;
    width: 100%;
}

.ordered-list>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ordered-list>ul>li:not(.more) {
    margin-bottom: 10px;
    background: #f7f7f7;
}

.ordered-list>ul>li:not(.more):last-child {
    margin-bottom: 0;
}

.ordered-list>ul>li:not(.more):hover>a {
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
    text-decoration: none;
}

.ordered-list>ul>li:not(.more):hover>a:after {
    width: 100%;
    opacity: 1;
}

.ordered-list>ul>li:not(.more)>a {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    color: #008000;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .ordered-list>ul>li:not(.more)>a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.ordered-list>ul>li:not(.more)>a:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: white;
    width: 30%;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.ordered-list>ul>li:not(.more)>a .icon {
    margin-right: 15px;
    font-size: 14px;
    height: auto;
}

.ordered-list>ul>li:not(.more)>a .text {
    font-size: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.3;
    margin-bottom: 0;
}

.ordered-list>ul>li:not(.more)>a .date {
    font-size: 13px;
    color: #999;
}

@media (max-width: 767px) {
    .ordered-list>ul>li:not(.more)>a .date {
        padding-left: 28px;
        padding-top: 10px;
    }
}

.ordered-list .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #f7f7f7;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    text-transform: uppercase;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.ordered-list .more a:hover {
    color: #6f6f6f;
    text-decoration: none;
}

.ordered-list .more .icon {
    margin-right: 10px;
    font-size: 16px;
    margin: 0px;
    height: auto;
}

.ordered-list .loading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    text-transform: uppercase;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.ordered-list__sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}

.ordered-list__sub-content {
    width: 100%;
}

.ordered-list__sub-content .page-content-description,
.ordered-list__sub-content .page-content-gallery,
.ordered-list__sub-content .documents-files,
.ordered-list__sub-content .ordered-links {
    padding: 30px;
}

.ordered-list__sub-content .page-content-gallery {
    margin-top: 0;
}

.ordered-list__sub-content>img {
    width: 250px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.ordered-list__dropdown>ul>li.is-open>a {
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}

.ordered-list__dropdown>ul>li.is-open>a:before {
    content: "_";
    margin-top: -10px;
}

.ordered-list__dropdown>ul>li.is-open>a:after {
    width: 100%;
    opacity: 1;
}

.ordered-list__dropdown>ul>li>a {
    padding-right: 40px;
}

.ordered-list__dropdown>ul>li>a:before {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 200;
}

.ordered-list__dropdown>ul>li>a .date {
    margin-right: 30px;
}

.ordered-list__dropdown .ordered-list__sub {
    display: none;
}

.ordered-links ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s;
    transition: .3s;
}

.ordered-links ul li:last-child {
    border-bottom: 0 none;
}

.ordered-links ul li:hover {
    background: #fff;
    -webkit-box-shadow: 3px 3px 10px rgba(23, 53, 86, 0.1);
    box-shadow: 3px 3px 10px rgba(23, 53, 86, 0.1);
    padding-left: 15px;
}

.ordered-links ul li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 300;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .ordered-links ul li a:after {
        display: none;
    }
}

.ordered-links ul li a:after {
    content: "";
    position: absolute;
    z-index: 12;
    top: 50%;
    right: 20px;
    width: 9px;
    height: 9px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    -webkit-transition: .3s;
    transition: .3s;
}

.haberfoto {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery.small .gallery-cover {
    height: 175px;
}

.gallery.small .gallery-body {
    padding: 20px;
}

.gallery.small .gallery-body .title {
    font-size: 16px;
}

.gallery.small .gallery-body .title:before {
    left: -20px;
}

.gallery.small .gallery-body .date {
    font-size: 12px;
}

.gallery.small .gallery-body>.icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.gallery.list .gallery-card {
    margin-bottom: 20px;
}

@media (max-width: 479px) {
    .gallery.list .gallery-card:last-child {
        margin-bottom: 0;
    }
}

.gallery ul {
    list-style: none;
    padding: 0;
}

.gallery-card a {
    position: relative;
    display: block;
}

.gallery-card a:hover .gallery-cover img {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
}

.gallery-card a:hover .gallery-cover-kapak img {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
}

.gallery-card a:hover .gallery-photo img {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
}

.gallery-card a:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}


.gallery-photo {
    overflow: hidden;
    height: 150px;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
}



.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s;
    transition: .3s;
}

.gallery-overlay .icon {
    font-size: 18px;
    color: #fff;
    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;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
}

.gallery-body {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gallery-body .title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
}

.gallery-body .title:before {
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    background: #7aab2b;
    width: 4px;
    height: 30px;
}

.gallery-body .date {
    color: #fff;
    font-size: 13px;
    margin-top: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: .8;
    font-weight: 300;
}

.gallery-body .date .icon {
    font-size: 13px;
    margin-right: 7px;
    margin: 0;
    height: auto;
}

.gallery-body>.icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 45px;
    height: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
}

@media (max-width: 479px) {
    .gallery-body>.icon {
        display: none;
    }
}

.gallery-cover {
    overflow: hidden;
    height: 170px;
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}

.gallery-cover-kapak {
    overflow: hidden;
    height: 220px;
}

.gallery-cover-kapak img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-50 {
    margin-top: 50px;
}

.page-content-gallery {
    display: inline-block;
    width: 100%;
}

.inner-page-back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.contact-us {
    z-index: 1;
    height: 100%;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact-us:before {
    content: "";
    position: absolute;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
    background: linear-gradient(#fff, transparent);
}

.contact-us .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-us-bg {
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    float: left;
    width: 100%;
}

.contact-us-content {
    max-width: 100%;
}

.contact-us-content>.title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: #222;
}

.contact-us-content>.text {
    font-size: 16px;
    font-weight: 300;
}

.contact-us-content.left {
    float: right;
    width: 590px;
}

@media (min-width: 1824px) {
    .contact-us-content.left {
        width: 665px;
    }
}

@media (min-width: 1280px) {
    .contact-us-content.left {
        padding-right: 60px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .contact-us-content.left {
        width: 486px;
        padding-right: 40px;
    }
}

.contact-us-content.right {
    float: left;
    width: calc(1200px - 590px - 20px);
    padding: 35px 0 35px 50px;
    height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 1824px) {
    .contact-us-content.right {
        width: calc(1350px - 665px - 20px);
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .contact-us-content.right {
        width: calc(992px - 486px - 20px);
    }
}

.contact-us-list {
    margin-top: 30px;
}

.contact-us-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us-list ul li:not(:last-child) {
    margin-bottom: 10px;
}

.contact-us-list ul li a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    -webkit-transition: .3s;
    transition: .3s;
}

.contact-us-list ul li a:hover {
    background: #fff;
    text-decoration: none;
}

.contact-us-list .icon {
    margin: 0;
    font-size: 24px;
    color: #222;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 60px;
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    margin-right: 20px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-us-list .text {
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 300;
}

.l-relative {
    position: relative;
}

.form-custom ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.form-custom ul li {
    margin-bottom: 20px;
}

.form-custom ul li.is-error input,
.form-custom ul li.is-error textarea,
.form-custom ul li.is-error .current,
.form-custom ul li.is-error label {
    border: 1px solid red;
}

.form-custom ul li input,
.form-custom ul li textarea {
    width: 100%;
    height: 60px;
    padding-right: 20px;
    padding-left: 20px;
    font-family: inherit;
    color: #222;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: .3s;
    transition: .3s;
}

.form-custom ul li input:focus,
.form-custom ul li textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.form-custom ul li input {
    padding-left: 80px;
}

.form-custom ul li textarea {
    padding-top: 20px;
    height: 150px;
}

.form-custom ul li .icon {
    margin: 0;
    display: flex;
    width: 65px;
    height: 60px;
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #6f6f6f;
    font-size: 18px;
    left: 10px;
    z-index: 1;
}

.form-custom ul li .icon:before {
    position: absolute;
    right: 0;
    content: "";
    background: rgba(0, 0, 0, 0.15);
    width: 1px;
    height: 20px;
}

.form-custom .send {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
}

.form-custom.form-contact-us .send {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.section.cover-2 {
    height: 630px;
}

.section.cover-2:before {
    background-image: url("../../assets/images/section-cover.jpg");
    opacity: .5;
}

.section.bg-cover {
    position: relative;
    z-index: 1;
}

.gallery-description {
    background: #33c3dc;
    height: 220px;
    padding-left: 35px;
    padding-right: 35px;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallery-description .title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 5px;
}

.gallery-description .text {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.button-border .icon {
    margin-left: 10px;
    font-size: 14px;
    height: auto;
}

.button-border.light {
    border: 2px solid #fff;
    color: #fff;
}

.button-border:last-child {
    margin-right: 0;
}

.button-border {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 170px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: .5px;
    margin-right: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    border: 2px solid #e1e1e1;
    color: #6f6f6f;
}

.button-border.light:hover {
    background: #fff;
    color: #6f6f6f;
    text-decoration: none;
}

.etkinlikdetay {
    margin-top: 13px;
}

.etkinlikdetay.single .etkinlikdetay-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.etkinlikdetay.large {
    margin-bottom: 50px;
}

.etkinlikdetay.large .etkinlikdetay-photo {
    width: 30%;
    height: auto;
}

@media (max-width: 991px) {
    .etkinlikdetay.large .etkinlikdetay-photo {
        width: 100%;
    }
}

.etkinlikdetay.large .etkinlikdetay-description {
    width: calc(100% - 30%);
    padding: 35px;
    background: #fff;
    -webkit-box-shadow: 5px 5px 50px rgba(23, 53, 86, 0.15);
    box-shadow: 5px 5px 50px rgba(23, 53, 86, 0.15);
}

@media (max-width: 991px) {
    .etkinlikdetay.large .etkinlikdetay-description {
        width: 100%;
        padding: 25px;
    }
}

.etkinlikdetay.large .etkinlikdetay-description .page-content__spot {
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1279px) {
    .etkinlikdetay.large .etkinlikdetay-description .page-content__spot {
        font-size: 14px;
    }
}

.etkinlikdetay.large .etkinlikdetay-info .icon,
.etkinlikdetay.large .etkinlikdetay-info .text {
    height: 60px;
}

@media (min-width: 992px) and (max-width: 1279px) {

    .etkinlikdetay.large .etkinlikdetay-info .icon,
    .etkinlikdetay.large .etkinlikdetay-info .text {
        height: 35px;
    }
}

.etkinlikdetay.large .etkinlikdetay-info .icon {
    width: 60px;
    font-size: 18px;
}

@media (min-width: 992px) and (max-width: 1279px) {
    .etkinlikdetay.large .etkinlikdetay-info .icon {
        font-size: 14px;
    }
}

.etkinlikdetay.large .etkinlikdetay-info .text {
    width: calc(100% - 60px - 3px);
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 992px) and (max-width: 1279px) {
    .etkinlikdetay.large .etkinlikdetay-info .text {
        font-size: 13px;
    }
}

.etkinlikdetay.frame a {
    background: #fff;
    -webkit-box-shadow: 5px 5px 20px rgba(23, 53, 86, 0.1);
    box-shadow: 5px 5px 20px rgba(23, 53, 86, 0.1);
    padding: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}

.etkinlikdetay.frame a:hover {
    -webkit-box-shadow: 5px 5px 40px rgba(23, 53, 86, 0.2);
    box-shadow: 5px 5px 40px rgba(23, 53, 86, 0.2);
}

.etkinlikdetay.list>ul {
    margin-left: -15px;
    margin-right: -15px;
}

.etkinlikdetay.list>ul>li {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.etkinlikdetay-photo {
    overflow: hidden;
    width: 180px;
    height: 245px;
}

@media (max-width: 479px) {
    .etkinlikdetay-photo {
        width: 100%;
        height: auto;
    }
}

.etkinlikdetay-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.etkinlikdetay-description {
    width: calc(100% - 180px);
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
}

@media (max-width: 479px) {
    .etkinlikdetay-description {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

.etkinlikdetay-description .title {
    color: #173556;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    max-height: 71px;
}

.etkinlikdetay-info {
    margin-top: 20px;
    margin-bottom: 20px;
}

.etkinlikdetay-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.etkinlikdetay-info ul li {
    margin-bottom: 3px;
}

.etkinlikdetay-info ul li:last-child {
    margin-bottom: 0;
}

.etkinlikdetay-info ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #173556;
    position: relative;
}

.etkinlikdetay-info ul li a:hover .text {
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(24, 76, 124, 0.2);
    box-shadow: 0 0 30px rgba(24, 76, 124, 0.2);
}

.etkinlikdetay-info .icon,
.etkinlikdetay-info .text {
    height: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #dce4eb;
}

.etkinlikdetay-info .icon {
    width: 40px;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
}

.etkinlikdetay-info .text {
    width: calc(100% - 40px - 3px);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.1;
    font-family: "Roboto", sans-serif;
    margin-left: 3px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 0 5px 5px 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.etkinlikdetay-card__content {
    position: relative;
}

.etkinlikdetay-card__content:hover .etkinlikdetay-body {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.etkinlikdetay-card__content:hover .etkinlikdetay-cover img {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
}


.etkinlikdetay-cover {
    overflow: hidden;
    height: 400px;
}

@media (max-width: 1279px) {
    .etkinlikdetay-cover {
        height: auto;
    }
}

.etkinlikdetay-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
}



.etkinlikdetay-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(23, 155, 216, 0.95);
    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;
    padding: 30px;
    opacity: 0;
    visibility: visible;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s;
    transition: .3s;
}

.etkinlikdetay-body .title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    overflow: hidden;
    max-height: 75px;
}

.etkinlikdetay-body ul li {
    margin-bottom: 7px;
}

.etkinlikdetay-body ul li:last-child {
    margin-bottom: 0;
}

.etkinlikdetay-body ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    border-radius: 5px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 5px;
    min-width: 160px;
    -webkit-transition: .3s;
    transition: .3s;
}

.etkinlikdetay-body ul li a:hover {
    background: #fff;
    color: #179bd8;
}

.etkinlikdetay-body ul li a .icon {
    width: 45px;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-content__spot {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.page-content__spot p {
    margin: 0;
    padding: 0;
}

.boxes ul {
    list-style: none;
    padding: 0;
}

.boxes.no-center ul li a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    padding: 0 30px;
}

.boxes ul li:not(.boxes-card) a {
    background: #fff;
    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: left;
    height: 105px;
    position: relative;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
    padding: 0 20px;
    color: #6f6f6f;
    font-size: 16px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: left;
    -webkit-transition: .3s;
    transition: .3s;
}

.boxes ul li:not(.boxes-card) {
    margin-bottom: 20px;
}

.boxes ul li:not(.boxes-card) a:not(.all):hover {
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
    color: #ff420b;
    text-decoration: none;
}

.documents {
    display: inline-block;
    width: 100%;
}

.documents>ul {
    list-style: none;
    padding: 0;
}

.documents>ul>li:not(.more) {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.documents>ul>li:not(.more):hover a:after {
    width: 100%;
    opacity: 1;
}

.documents>ul>li:not(.more)>a {
    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: 20px;
    color: #008000;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

@media (max-width: 767px) {
    .documents>ul>li:not(.more)>a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.documents>ul>li:not(.more)>a:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f7f7f7;
    width: 30%;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.documents>ul>li:not(.more)>a .icon {
    margin-right: 10px;
    font-size: 14px;
    margin: 0;
    height: auto;
}

.documents>ul>li:not(.more)>a .text {
    font-size: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.documents>ul>li:not(.more)>a .date {
    font-size: 13px;
    color: #999;
}

@media (max-width: 767px) {
    .documents>ul>li:not(.more)>a .date {
        padding-left: 20px;
    }

    .contact-us-content.left {
        width: 100%;
    }

    .section.cover-2 {
        height: auto;
    }

    .no-gutters {
        margin: 15px;
    }

    .contact-us-list {
        margin-bottom: 30px;
    }

    .contact-us-content.right {
        padding: 0;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .contact-us {
        height: auto;
    }
}

.documents-sub {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.documents-sub-content {
    width: 100%;
}

.documents-sub-content .page-content-description,
.documents-sub-content .documents-files,
.documents-sub-content .page-content__gallery {
    padding: 20px;
    font-weight: 300;
}

.documents-sub-content img {
    width: 250px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.documents-dropdown ul li.is-open a:before {
    content: "_";
    margin-top: -10px;
}

.documents-dropdown ul li.is-open a:after {
    width: 100%;
    opacity: 1;
}

.documents-dropdown ul li a {
    padding-right: 40px;
}

.documents-dropdown ul li a:before {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 200;
}

.documents-dropdown .documents-sub {
    display: none;
}

.documents-files {
    display: inline-block;
    width: 100%;
}

.documents-files ul {
    list-style: none;
    padding: 0;
}

.documents-files ul li {
    margin-bottom: 10px;
}

.documents-files ul li:last-child {
    margin-bottom: 0;
}

.documents-files ul li a {
    background: #f7f7f7;
    padding: 20px 30px 20px 20px;
    border-left: 5px solid #7aab2b;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}

.documents-files ul li a:hover {
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    background: #fff;
    text-decoration: none;
}

.documents-files ul li a .text {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.documents-files ul li a .date {
    font-size: 13px;
    color: #999;
}

.documents-files ul li a .icon {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    color: #000;
    opacity: .2;
}

.documents-icon {
    font-size: 24px;
    color: #7aab2b;
    margin-right: 20px;
}

.primary-table th {
    background: #008000;
    color: #fff;
}

.table {
    width: 100%;
    margin: .5rem 0;
    table-layout: fixed;
    border-collapse: collapse;
}

.table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.table td,
.table th {
    text-align: left;
    font-size: 14px;
    font-size: .875rem;
    vertical-align: middle;
}

.primary-table,
.primary-table a {
    color: #78909c;
}

.primary-table tbody tr:nth-child(odd) {
    background: #f9f8fb;
}

.primary-table tbody tr {
    background: #fff;
}

.label-status {
    display: inline-block;
    line-height: 1;
}

.label-status i {
    margin-right: 10px;
}

.icon-status-waiting {
    background-position: 0 -382px;
    width: 15px;
    height: 21px;
}

.row-large {
    width: 35%;
}

.inline-table tr {
    border-top: none;
    border-bottom: none;
}

.inline-table td.table-title {
    background: #008000;
    color: #fff;
}

.inline-table td {
    padding: 10px !important;
}

.inline-table td.table-content {
    border: 1px solid #e4e4e5;
}

.file-list-table .table-column.column-name {
    margin-bottom: 10px;
}

.file-list-table .table-column {
    color: #203a8e;
}

.file-list-table .table-column.column-action a {
    color: #203a8e;
}

.link-file {
    display: inline-block;
    height: 34px;
    padding: 7px 50px 0 0;
}

@media (min-width: 1024px) {
    .inline-table td {
        padding: 20px 40px !important;
    }
}

@media (min-width: 480px) {
    .primary-table th {
        border: 2px solid #fff;
    }

    .table td,
    .table th {
        display: table-cell;
        padding: 1rem;
    }

    .table tr {
        border-top: none;
        border-bottom: none;
    }

    .primary-table tbody:before {
        content: "";
        display: block;
        height: 3px;
    }

    .primary-table td {
        border: 1px solid #e4e4e5;
    }

    .inline-table td.table-title {
        width: 30%;
        border: 1px solid #008000;
        border-bottom-color: #fff;
    }

    .inline-table td.table-content {
        width: 70%;
    }

    .file-list-table .table-column.column-name {
        width: 70%;
        float: left;
        margin-bottom: 0;
        padding-top: 10px;
    }

    .file-list-table .table-column.column-action {
        width: 20%;
        float: right;
        text-align: right;
    }
}

@media (min-width: 480px) {
    .container {
        width: 100%;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .container {
        width: 768px;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 992px;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1250px;
        max-width: 100%;
    }
}

@media (min-width: 1824px) {
    .container {
        width: 1400px;
    }
}



    .col-kolaymenu {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .kolay-menu>ul {
        display: none;
    }

    .bize-ulasin-sidebar {
        display: none;
    }

    .baskan-kosesi {
        display: none;
    }

    .kolay-menu .social {
        display: none;
    }



    .page-title .tarih {
        float: none;
        display: block;
    }

    .slide-menu>div>div:last-child {
        width: 100% !important;
        flex: 100%;
        max-width: 100%;
    }

    .haber-detay-image {
        max-width: 100%;
        float: none;
    }

    .tab-component .tab-head .tab-link {
        font-size: 12px;
    }

  


    .button-border {
        min-width: 100px !important;
        height: 30px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 13px !important;
        border: 1px solid #e1e1e1 !important;
    }

    .baskan-section .sag .text-side p {
        font-size: 20px;
        letter-spacing: 0;
        text-align: center;
        font-weight: 400;
    }

    .baskan-section .social {
        width: 100%;
        position: relative;
    }
	
	.bagis-component .tab-head .tab-link {
		width: 33.333% !important;
	}
	.contact-us-bg {
		background: none !important;
	}

}



.col-kolaymenu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: none;
    border: none;
    float: right;
}

.col-kolaymenu:focus {
    outline: none;
}

.iletisim-adres ul {
    list-style: none;
    padding: 0;
}

.iletisim-adres .iletisim-adres-bilgi {
    background: #f7f7f7;
}

.iletisim-adres-bilgi {
    background: rgba(255, 255, 255, 0.7);
    height: 220px;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    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;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}

.iletisim-adres .icon {
    background: #008000;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
}

.iletisim-adres-bilgi .title {
    width: 100%;
    text-transform: uppercase;
    color: #008000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.iletisim-adres .iletisim-adres-bilgi .text {
    font-size: 14px;
    margin-top: 5px;
}

.iletisim-adres-bilgi .text {
    color: #999;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
}

.ortala {
    align-items: center;
}

.pagination {
    margin-top: 35px;
    display: block;
}

.pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -5px;
    margin-right: -5px;
    list-style: none;
    padding: 0;
}

.pagination ul li {
    padding-left: 5px;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .pagination ul li:not(.onceki_sayfa):not(.sonraki_sayfa) {
        display: none;
    }
}

.pagination ul li a {
    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;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #fff;
    color: #008000;
    -webkit-box-shadow: 5px 5px 20px rgba(23, 53, 86, 0.15);
    box-shadow: 5px 5px 20px rgba(23, 53, 86, 0.15);
    font-size: 16px;
    font-weight: 500;
}

.secili {
    background: #008000 !important;
    color: #fff !important;
}

.pagination ul li a.prev,
.pagination ul li a.next {
    font-size: 16px;
    padding-top: 2px;
}

.pagination ul li a:hover {
    background: #008000;
    color: #fff;
    text-decoration: none;
}


.modal-content {
    border-radius: 0;
}

.Oops {
    text-align: center;
    color: #79ac2b;
}

.Oops .title {
    line-height: 0.8;
    font-weight: 900;
    font-size: 224px;
}

@media (max-width: 479px) {
    .Oops .title {
        font-size: 164px;
    }
}

.Oops .text {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 42px;
    letter-spacing: 3px;
    line-height: 1.2;
}

@media (max-width: 479px) {
    .Oops .text {
        font-size: 28px;
    }
}

.yapimAsamasindaFontSize {
    font-size: 50px !important;
    font-weight: 700 !important;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-70 {
    margin-top: 70px;
}

.bagis-component .tab-head .tab-link {
    width: 20%;
    display: inline-block;
    padding: 10px 0;
    background: #F8F8F6;
    color: #008000;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: -5px;
    border-right: 1px solid #e3e3e2;
}

.bagis-component .tab-head .tab-link:hover,
.bagis-component .tab-head .tab-link.active {
    border-top: 5px solid #008000;
    background-color: #fff;
}

.bagis-component .tab-head .row {
    display: flex;
}

.bagis-component .tab-body .tab-panel {
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
}

.bagis-box {
    border: 2px solid #f8f8f6;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 30px;
}

.category-title {
    width: 100%;
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #5e5c59;
}

.tab-tum-buton {
    color: #008000;
    text-decoration: none;
    display: inline-block;
    float: right;
    padding-bottom: 10px;
    margin: 20px 30px;
    font-weight: 700;
    position: relative;
}

.tab-tum-buton::before {
    content: "";
    height: 1px;
    width: 0%;
    position: absolute;
    background: #008000;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}

.tab-tum-buton:hover {
    color: #008000;
    text-decoration: none;
}

.tab-tum-buton:hover::before {
    width: 100%;
}

.bagis-component .tab-body .tab-panel.active {
    display: block;
}

.bagis-component .tab-body .tab-panel .do-nicescroll3.active {
    display: block;
}

.bagis-ortala {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.bagis-ortala p {
    margin: 0;
    font-size: 18px;
}

.bagis-title {
    min-height: auto !important;
    font-weight: 300;
    color: #008000;
}

.sepetdiv {
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    background-color: #FFF;
    padding: 15px;
}

.sepetdiv h4 {
    color: #c1c1c1;
}

.sepetdiv li {
    color: #c1c1c1;
    font-weight: 300;
}

.basket-card {
    background-color: #f8f8f6;
    padding: 10px 13px 15px 15px;
    overflow: hidden;
}

.basket-card .basket-line {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 10px;
    padding-right: 5px;
    padding-left: 2px;
}

.basket-card .basket-line:last-child {
    border-bottom: none;
}

.basket-card .basket-line .product-name {
    font-size: 13px;
    font-weight: 400;
}

.basket-card .basket-line .delete.nameless {
    margin-top: 0px;
    font-size: 18px;
}

.basket-card .basket-line .delete {
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.basket-card .basket-line .product-price {
    color: #2a9972;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
}

.beyazbg {
    background-color: white;
    box-shadow: 0px 0px 30px 4px rgb(247, 247, 247);
}

.bs-wizard {
    border-bottom: 1px dashed #BBB;
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    background-color: #FBBD19;
    padding-top: 20px;
    background: #ffffff;
    background: -moz-linear-gradient(45deg, #ffffff 0%, #e1e1e1 98%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ffffff), color-stop(98%, #e1e1e1));
    background: -webkit-linear-gradient(45deg, #ffffff 0%, #e1e1e1 98%);
    background: -o-linear-gradient(45deg, #ffffff 0%, #e1e1e1 98%);
    background: -ms-linear-gradient(45deg, #ffffff 0%, #e1e1e1 98%);
    background: linear-gradient(45deg, #ffffff 0%, #e1e1e1 98%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e1e1e1', GradientType=1);
}

.bs-wizard>.bs-wizard-step:first-child>.progress {
    left: 50%;
    width: 50%;
}

.progress {
    border-radius: 25px;
    height: 20px;
    background: #FAFAFA;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    overflow: visible;
}

.alert.alert-default {
    background-color: #f2f2f266;
    border-color: #eaeaea;
    color: #737373;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #fafafa;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.toplam_tutar {
    color: #8E0000;
    font-weight: bold;
    padding-left: 5px;
}

.bagis_toplam {
    color: #068f06;
    font-weight: bold;
    padding-left: 5px;
}

.bs-wizard>.bs-wizard-step {
    padding: 0;
    position: relative;
}

.bs-wizard>.bs-wizard-step+.bs-wizard-step {}

.bs-wizard>.bs-wizard-step .bs-wizard-stepnum {
    color: #595959;
    font-size: 16px;
    margin-bottom: 5px;
}

.bs-wizard>.bs-wizard-step .bs-wizard-info {
    color: #999;
    font-size: 14px;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: #B30000;
    top: 45px;
    left: 50%;
    margin-top: -12px;
    margin-left: -15px;
    border-radius: 50%;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot:after {
    content: ' ';
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border-radius: 50px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.bs-wizard>.bs-wizard-step>.progress {
    position: relative;
    border-radius: 0px;
    height: 8px;
    box-shadow: none;
    margin: 20px 0;
}

.bs-wizard>.bs-wizard-step>.progress>.progress-bar {
    /* width:0px; */
    /* box-shadow: none; */
    background: #FF0000;
}

.bs-wizard>.bs-wizard-step.complete>.progress>.progress-bar {
    width: 100%;
}

.bs-wizard>.bs-wizard-step.active>.progress>.progress-bar {
    width: 50%;
}

.bs-wizard>.bs-wizard-step:first-child.active>.progress>.progress-bar {
    width: 0%;
}

.bs-wizard>.bs-wizard-step:last-child.active>.progress>.progress-bar {
    width: 100%;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot {
    background-color: #FFFFFF;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot:after {
    opacity: 0;
}

.bs-wizard>.bs-wizard-step:first-child>.progress {
    left: 50%;
    width: 50%;
}

.bs-wizard>.bs-wizard-step:last-child>.progress {
    width: 50%;
}

.bs-wizard>.bs-wizard-step.disabled a.bs-wizard-dot {
    pointer-events: none;
}

.bs-wizard>.bs-wizard-step.active>.bs-wizard-stepnum {
    color: #b30000;
}

.d-orta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-xs {
    color: #fff !important;
}
.loader {
    background: #008000 !important;
}




.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);}
.lang h4 {float:left;width:100%;padding-bottom:10px;margin-bottom:15px;    font-size: 24px;    font-weight: 600;}ba
.lang a {
    display: inline-block;
    vertical-align: top;
    /* width: 32%; */
    margin: 5px;
    font-size: 16px;
    color: #9d9d9d;
    padding: 10px;
    border: 1px solid #0000004d;
    border-radius: 50px;
}
.lang a:hover {
    border: 1px solid #000;
	color: #000;
	text-decoration:none;
}
.trigger-link {
    color: #fff;
    opacity: .7;
    font-size: 13px;
    text-decoration: none;
    font-weight: 400;
}
.trigger-link:hover{
	text-decoration:none;
}