@import url("https://fonts.googleapis.com/css?family=Ubuntu+Condensed");


html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	
	font: inherit;
	text-align: justify;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}


	@-ms-viewport {
		width: device-width;
	}

	body {
		font-size: 13.5pt;
		background-color: #ececec;
		font-family: 'Ubuntu Condensed', sans-serif;
		color: #555753;
		letter-spacing: -1px;
	}
	
	h1, h2, h3, h4 {
		color: #1a7712;
		font-weight: normal;
	}
	
	h1 {
		text-transform: lowercase;
	}
	
	h2 {
		text-transform: lowercase;
		font-size: 1.6em;
		letter-spacing: -1px;
		margin-bottom: 0.3em;
		padding-left: 1.5em; /* İçeri almak için padding eklendi */
	}
	
	h3, h4 {
		color: #283121;
		margin-bottom: 0.5em;
	}
	
	h3 {
		font-size: 1.2em;
		margin-bottom: 0.8em;
	}
	
	h4 {
		font-size: 1em;
	}
	
	p, ul {
		margin-bottom: 1em;
	}
	
	p {
		line-height: 1.2em;
	}
	
	strong {
		color: #474e43;
	}
	
	img.left {
		float: left;
		margin: 2px 1.25em 0 0;
	}
	
	img.top {
		margin: 4px 0 1.25em 0;
	}
	
	ul {
		padding: 0.25em 0 0 0;
	}
	
	a {
		color: #1a7712;
		text-decoration: underline;
	}
	
	a:hover {
		text-decoration: none;
	}
	
	* > p:last-child {
		margin-bottom: 0 !important;
	}
	
	section, article {
		margin: 0 0 60px 0;
	}
	
	section:last-child, article:last-child {
		margin-bottom: 0;
	}
	
/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 1200px;
		
	}

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

			.container {
				width: 1200px;
			}

		}

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

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

		}

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

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

		}

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

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

		}

/* Row */

.row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
	padding: 0; /* Varsayılan padding'i kaldır */
    margin: 0;  /* Varsayılan margin'i kaldır */
}

.row > * {
    box-sizing: border-box;
    padding: 15px; /* Padding eklendi */
}

.row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
}

.row.aln-left {
    justify-content: flex-start;
}

.row.aln-center {
    justify-content: center;
}

.row.aln-right {
    justify-content: flex-end;
}

.row.aln-top {
    align-items: flex-start;
}

.row.aln-middle {
    align-items: center;
}

.row.aln-bottom {
    align-items: flex-end;
}

.row > .imp {
    order: -1;
}

.row > .col-1 {
    width: 8.33333%;
}

.row > .off-1 {
    margin-left: 8.33333%;
}

.row > .col-2 {
    width: 16.66667%;
}

.row > .off-2 {
    margin-left: 16.66667%;
}

.row > .col-3 {
    width: 25%;
}

.row > .off-3 {
    margin-left: 25%;
}

.row > .col-4 {
    width: 33.33333%;
}

.row > .off-4 {
    margin-left: 33.33333%;
}

.row > .col-5 {
    width: 41.66667%;
}

.row > .off-5 {
    margin-left: 41.66667%;
}

.row > .col-6 {
    width: 50%;
}

.row > .off-6 {
    margin-left: 50%;
}

.row > .col-7 {
    width: 58.33333%;
}

.row > .off-7 {
    margin-left: 58.33333%;
}

.row > .col-8 {
    width: 66.66667%;
}

.row > .off-8 {
    margin-left: 66.66667%;
}

.row > .col-9 {
    width: 75%;
}

.row > .off-9 {
    margin-left: 75%;
}

.row > .col-10 {
    width: 83.33333%;
}

.row > .off-10 {
    margin-left: 83.33333%;
}

.row > .col-11 {
    width: 91.66667%;
}

.row > .off-11 {
    margin-left: 91.66667%;
}

.row > .col-12 {
    width: 100%;
}

.row > .off-12 {
    margin-left: 100%;
}

.row.gtr-0 {
    margin-top: 0px;
    margin-left: 0px;
}

.row.gtr-0 > * {
    padding: 0px 0 0 0px;
}

.row.gtr-0.gtr-uniform {
    margin-top: 0px;
}

.row.gtr-0.gtr-uniform > * {
    padding-top: 0px;
}

.row.gtr-25 {
    margin-top: -12.5px;
    margin-left: -12.5px;
}

.row.gtr-25 > * {
    padding: 12.5px 0 0 12.5px;
}

.row.gtr-25.gtr-uniform {
    margin-top: -12.5px;
}

.row.gtr-25.gtr-uniform > * {
    padding-top: 12.5px;
}

.row.gtr-50 {
    margin-top: -25px;
    margin-left: -25px;
}

.row.gtr-50 > * {
    padding: 25px 0 0 25px;
}

.row.gtr-50.gtr-uniform {
    margin-top: -25px;
}

.row.gtr-50.gtr-uniform > * {
    padding-top: 25px;
}

.row.gtr-100 {
    margin-top: -50px;
    margin-left: -50px;
}

.row.gtr-100 > * {
    padding: 50px 0 0 50px;
}

.row.gtr-100.gtr-uniform {
    margin-top: -50px;
}

.row.gtr-100.gtr-uniform > * {
    padding-top: 50px;
}

.row.gtr-150 {
    margin-top: -75px;
    margin-left: -75px;
}

.row.gtr-150 > * {
    padding: 75px 0 0 75px;
}

.row.gtr-150.gtr-uniform {
    margin-top: -75px;
}

.row.gtr-150.gtr-uniform > * {
    padding-top: 75px;
}

.row.gtr-200 {
    margin-top: -100px;
    margin-left: -100px;
}

.row.gtr-200 > * {
    padding: 100px 0 0 100px;
}

.row.gtr-200.gtr-uniform {
    margin-top: -100px;
}

.row.gtr-200.gtr-uniform > * {
    padding-top: 100px;
}

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

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

    .row > * {
        box-sizing: border-box;
    }

    .row.gtr-uniform > * > :last-child {
        margin-bottom: 0;
    }

    .row.aln-left {
        justify-content: flex-start;
    }

    .row.aln-center {
        justify-content: center;
    }

    .row.aln-right {
        justify-content: flex-end;
    }

    .row.aln-top {
        align-items: flex-start;
    }

    .row.aln-middle {
        align-items: center;
    }

    .row.aln-bottom {
        align-items: flex-end;
    }

    .row > .imp-large {
        order: -1;
    }

    .row > .col-1-large {
        width: 8.33333%;
    }

    .row > .off-1-large {
        margin-left: 8.33333%;
    }

    .row > .col-2-large {
        width: 16.66667%;
    }

    .row > .off-2-large {
        margin-left: 16.66667%;
    }

    .row > .col-3-large {
        width: 25%;
    }

    .row > .off-3-large {
        margin-left: 25%;
    }

    .row > .col-4-large {
        width: 33.33333%;
    }

    .row > .off-4-large {
        margin-left: 33.33333%;
    }

    .row > .col-5-large {
        width: 41.66667%;
    }

    .row > .off-5-large {
        margin-left: 41.66667%;
    }

    .row > .col-6-large {
        width: 50%;
    }

    .row > .off-6-large {
        margin-left: 50%;
    }

    .row > .col-7-large {
        width: 58.33333%;
    }

    .row > .off-7-large {
        margin-left: 58.33333%;
    }

    .row > .col-8-large {
        width: 66.66667%;
    }

    .row > .off-8-large {
        margin-left: 66.66667%;
    }

    .row > .col-9-large {
        width: 75%;
    }

    .row > .off-9-large {
        margin-left: 75%;
    }

    .row > .col-10-large {
        width: 83.33333%;
    }

    .row > .off-10-large {
        margin-left: 83.33333%;
    }

    .row > .col-11-large {
        width: 91.66667%;
    }

    .row > .off-11-large {
        margin-left: 91.66667%;
    }

    .row > .col-12-large {
        width: 100%;
    }

    .row > .off-12-large {
        margin-left: 100%;
    }

    .row.gtr-0 {
        margin-top: 0px;
        margin-left: 0px;
    }

    .row.gtr-0 > * {
        padding: 0px 0 0 0px;
    }

    .row.gtr-0.gtr-uniform {
        margin-top: 0px;
    }

    .row.gtr-0.gtr-uniform > * {
        padding-top: 0px;
    }

    .row.gtr-25 {
        margin-top: -8.75px;
        margin-left: -8.75px;
    }

    .row.gtr-25 > * {
        padding: 8.75px 0 0 8.75px;
    }

    .row.gtr-25.gtr-uniform {
        margin-top: -8.75px;
    }

    .row.gtr-25.gtr-uniform > * {
        padding-top: 8.75px;
    }

    .row.gtr-50 {
        margin-top: -17.5px;
        margin-left: -17.5px;
    }

    .row.gtr-50 > * {
        padding: 17.5px 0 0 17.5px;
    }

    .row.gtr-50.gtr-uniform {
        margin-top: -17.5px;
    }

    .row.gtr-50.gtr-uniform > * {
        padding-top: 17.5px;
    }

    .row.gtr-100 {
        margin-top: -35px;
        margin-left: -35px;
    }

    .row.gtr-100 > * {
        padding: 35px 0 0 35px;
    }

    .row.gtr-100.gtr-uniform {
        margin-top: -35px;
    }

    .row.gtr-100.gtr-uniform > * {
        padding-top: 35px;
    }

    .row.gtr-150 {
        margin-top: -52.5px;
        margin-left: -52.5px;
    }

    .row.gtr-150 > * {
        padding: 52.5px 0 0 52.5px;
    }

    .row.gtr-150.gtr-uniform {
        margin-top: -52.5px;
    }

    .row.gtr-150.gtr-uniform > * {
        padding-top: 52.5px;
    }

    .row.gtr-200 {
        margin-top: -70px;
        margin-left: -70px;
    }

    .row.gtr-200 > * {
        padding: 70px 0 0 70px;
    }

    .row.gtr-200.gtr-uniform {
        margin-top: -70px;
    }

    .row.gtr-200.gtr-uniform > * {
        padding-top: 70px;
    }
}


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

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

    .row > * {
        box-sizing: border-box;
    }

    .row.gtr-uniform > * > :last-child {
        margin-bottom: 0;
    }

    .row.aln-left {
        justify-content: flex-start;
    }

    .row.aln-center {
        justify-content: center;
    }

    .row.aln-right {
        justify-content: flex-end;
    }

    .row.aln-top {
        align-items: flex-start;
    }

    .row.aln-middle {
        align-items: center;
    }

    .row.aln-bottom {
        align-items: flex-end;
    }

    .row > .imp-medium {
        order: -1;
    }

    .row > .col-1-medium {
        width: 8.33333%;
    }

    .row > .off-1-medium {
        margin-left: 8.33333%;
    }

    .row > .col-2-medium {
        width: 16.66667%;
    }

    .row > .off-2-medium {
        margin-left: 16.66667%;
    }

    .row > .col-3-medium {
        width: 25%;
    }

    .row > .off-3-medium {
        margin-left: 25%;
    }

    .row > .col-4-medium {
        width: 33.33333%;
    }

    .row > .off-4-medium {
        margin-left: 33.33333%;
    }

    .row > .col-5-medium {
        width: 41.66667%;
    }

    .row > .off-5-medium {
        margin-left: 41.66667%;
    }

    .row > .col-6-medium {
        width: 50%;
    }

    .row > .off-6-medium {
        margin-left: 50%;
    }

    .row > .col-7-medium {
        width: 58.33333%;
    }

    .row > .off-7-medium {
        margin-left: 58.33333%;
    }

    .row > .col-8-medium {
        width: 66.66667%;
    }

    .row > .off-8-medium {
        margin-left: 66.66667%;
    }

    .row > .col-9-medium {
        width: 75%;
    }

    .row > .off-9-medium {
        margin-left: 75%;
    }

    .row > .col-10-medium {
        width: 83.33333%;
    }

    .row > .off-10-medium {
        margin-left: 83.33333%;
    }

    .row > .col-11-medium {
        width: 91.66667%;
    }

    .row > .off-11-medium {
        margin-left: 91.66667%;
    }

    .row > .col-12-medium {
        width: 100%;
    }

    .row > .off-12-medium {
        margin-left: 100%;
    }

    .row.gtr-0 {
        margin-top: 0px;
        margin-left: 0px;
    }

    .row.gtr-0 > * {
        padding: 0px 0 0 0px;
    }

    .row.gtr-0.gtr-uniform {
        margin-top: 0px;
    }

    .row.gtr-0.gtr-uniform > * {
        padding-top: 0px;
    }

    .row.gtr-25 {
        margin-top: -12.5px;
        margin-left: -12.5px;
    }

    .row.gtr-25 > * {
        padding: 12.5px 0 0 12.5px;
    }

    .row.gtr-25.gtr-uniform {
        margin-top: -12.5px;
    }

    .row.gtr-25.gtr-uniform > * {
        padding-top: 12.5px;
    }

    .row.gtr-50 {
        margin-top: -25px;
        margin-left: -25px;
    }

    .row.gtr-50 > * {
        padding: 25px 0 0 25px;
    }

    .row.gtr-50.gtr-uniform {
        margin-top: -25px;
    }

    .row.gtr-50.gtr-uniform > * {
        padding-top: 25px;
    }

    .row.gtr-100 {
        margin-top: -50px;
        margin-left: -50px;
    }

    .row.gtr-100 > * {
        padding: 50px 0 0 50px;
    }

    .row.gtr-100.gtr-uniform {
        margin-top: -50px;
    }

    .row.gtr-100.gtr-uniform > * {
        padding-top: 50px;
    }

    .row.gtr-150 {
        margin-top: -75px;
        margin-left: -75px;
    }

    .row.gtr-150 > * {
        padding: 75px 0 0 75px;
    }

    .row.gtr-150.gtr-uniform {
        margin-top: -75px;
    }

    .row.gtr-150.gtr-uniform > * {
        padding-top: 75px;
    }

    .row.gtr-200 {
        margin-top: -100px;
        margin-left: -100px;
    }

    .row.gtr-200 > * {
        padding: 100px 0 0 100px;
    }

    .row.gtr-200.gtr-uniform {
        margin-top: -100px;
    }

    .row.gtr-200.gtr-uniform > * {
        padding-top: 100px;
    }
}

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

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

    .row > * {
        box-sizing: border-box;
    }

    .row.gtr-uniform > * > :last-child {
        margin-bottom: 0;
    }

    .row.aln-left {
        justify-content: flex-start;
    }

    .row.aln-center {
        justify-content: center;
    }

    .row.aln-right {
        justify-content: flex-end;
    }

    .row.aln-top {
        align-items: flex-start;
    }

    .row.aln-middle {
        align-items: center;
    }

    .row.aln-bottom {
        align-items: flex-end;
    }

    .row > .imp-small {
        order: -1;
    }

    .row > .col-1-small {
        width: 8.33333%;
    }

    .row > .off-1-small {
        margin-left: 8.33333%;
    }

    .row > .col-2-small {
        width: 16.66667%;
    }

    .row > .off-2-small {
        margin-left: 16.66667%;
    }

    .row > .col-3-small {
        width: 25%;
    }

    .row > .off-3-small {
        margin-left: 25%;
    }

    .row > .col-4-small {
        width: 33.33333%;
    }

    .row > .off-4-small {
        margin-left: 33.33333%;
    }

    .row > .col-5-small {
        width: 41.66667%;
    }

    .row > .off-5-small {
        margin-left: 41.66667%;
    }

    .row > .col-6-small {
        width: 50%;
    }

    .row > .off-6-small {
        margin-left: 50%;
    }

    .row > .col-7-small {
        width: 58.33333%;
    }

    .row > .off-7-small {
        margin-left: 58.33333%;
    }

    .row > .col-8-small {
        width: 66.66667%;
    }

    .row > .off-8-small {
        margin-left: 66.66667%;
    }

    .row > .col-9-small {
        width: 75%;
    }

    .row > .off-9-small {
        margin-left: 75%;
    }

    .row > .col-10-small {
        width: 83.33333%;
    }

    .row > .off-10-small {
        margin-left: 83.33333%;
    }

    .row > .col-11-small {
        width: 91.66667%;
    }

    .row > .off-11-small {
        margin-left: 91.66667%;
    }

    .row > .col-12-small {
        width: 100%;
    }

    .row > .off-12-small {
        margin-left: 100%;
    }

    .row.gtr-0 {
        margin-top: 0px;
        margin-left: 0px;
    }

    .row.gtr-0 > * {
        padding: 0px 0 0 0px;
    }

    .row.gtr-0.gtr-uniform {
        margin-top: 0px;
    }

    .row.gtr-0.gtr-uniform > * {
        padding-top: 0px;
    }

    .row.gtr-25 {
        margin-top: -5px;
        margin-left: -5px;
    }

    .row.gtr-25 > * {
        padding: 5px 0 0 5px;
    }

    .row.gtr-25.gtr-uniform {
        margin-top: -5px;
    }

    .row.gtr-25.gtr-uniform > * {
        padding-top: 5px;
    }

    .row.gtr-50 {
        margin-top: -10px;
        margin-left: -10px;
    }

    .row.gtr-50 > * {
        padding: 10px 0 0 10px;
    }

    .row.gtr-50.gtr-uniform {
        margin-top: -10px;
    }

    .row.gtr-50.gtr-uniform > * {
        padding-top: 10px;
    }

    .row.gtr-100 {
        margin-top: -20px;
        margin-left: -20px;
    }

    .row.gtr-100 > * {
        padding: 20px 0 0 20px;
    }

    .row.gtr-100.gtr-uniform {
        margin-top: -20px;
    }

    .row.gtr-100.gtr-uniform > * {
        padding-top: 20px;
    }

    .row.gtr-150 {
        margin-top: -30px;
        margin-left: -30px;
    }

    .row.gtr-150 > * {
        padding: 30px 0 0 30px;
    }

    .row.gtr-150.gtr-uniform {
        margin-top: -30px;
    }

    .row.gtr-150.gtr-uniform > * {
        padding-top: 30px;
    }

    .row.gtr-200 {
        margin-top: -40px;
        margin-left: -40px;
    }

    .row.gtr-200 > * {
        padding: 40px 0 0 40px;
    }

    .row.gtr-200.gtr-uniform {
        margin-top: -40px;
    }

    .row.gtr-200.gtr-uniform > * {
        padding-top: 40px;
    }
}


/* Reusable */

	article.blog-post {
		position: relative;
	}

		article.blog-post .comments {
			position: absolute;
			top: 0;
			right: 0;
			height: 32px;
			line-height: 24px;
			padding-left: 40px;
			background: url("images/icon-bubble.png") no-repeat;
		}

		article.blog-post .blog-post-image {
			width: 100%;
		}

	ul.small-image-list li {
		overflow: hidden;
		margin-bottom: 1em;
	}

		ul.small-image-list li img {
			width: 78px;
		}

	ul.big-image-list li {
		overflow: hidden;
		margin-bottom: 1em;
	}

		ul.big-image-list li img {
			width: 150px;
		}

	ul.link-list li {
		border-top: solid 1px #ced0b7;
		padding: 0.50em 0 0 0;
		margin: 0.50em 0 0 0;
	}

		ul.link-list li:first-child {
			padding-top: 0;
			margin-top: 0;
			border-top: 0;
		}



/* Header */



header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #000;
	padding: 20px 0;
	align-items: left;
	box-shadow: 0px 0px 20px 5px #0f0;
	
}

#header-wrapper {
	background-image: -moz-linear-gradient(top, #997d03, #fdc200);
	background-image: -webkit-linear-gradient(top, #997d03, #fdc200);
	background-image: -ms-linear-gradient(top, #997d03, #fdc200);
	background-image: linear-gradient(top, #997d03, #fdc200);
	background-color: #fdc200;
}

nav {
	display: flex;
	gap: 20px;
}

nav a {
	text-decoration: none;
	font-size: 1.3em;
	color: #fff;
	padding: 12px 30px;
	border: 1.6px solid transparent;
	border-radius: 10px;
	transition: all 0.2s ease-in-out;
}

nav a.active {

	border-color: var(--active-color);

	}

nav a:hover {
	box-shadow: 0 0 15px 5px;
	border-color: currentColor;
	}


	nav a:nth-child(1):hover {
		color: #0f0;
		box-shadow: 0 0 15px 5px #0f0;
	}
	nav a:nth-child(1).active {
		--active-color: #0f0;
	}

	nav a:nth-child(2):hover {
		color: #ffd700;
		box-shadow: 0 0 15px 5px #ffd700;
	}
	nav a:nth-child(2).active {
		--active-color: #ffd700;
	}

	nav a:nth-child(3):hover {
		color: #ff4500;
		box-shadow: 0 0 15px 5px #ff4500;
	}
	nav a:nth-child(3).active {
		--active-color: #ff4500;
	}

	nav a:nth-child(4):hover {
		color: #1e90ff;
		box-shadow: 0 0 15px 5px #1e90ff;
	}
	nav a:nth-child(4).active {
		--active-color: #1e90ff;
	}

	nav a:nth-child(5):hover {
		color: #8a2be2;
		box-shadow: 0 0 15px 5px #8a2be2;
	}
	nav a:nth-child(5).active {
		--active-color: #8a2be2;
	}

	footer {
		text-align: center;
		padding: 20px 0;
		background-color: #000;
		box-shadow: 0px -5px 20px 5px #0f0;
		margin-top: 50px;
	}

	#header {

		-moz-box-sizing: content-box;
		-webkit-box-sizing: content-box;
		-ms-box-sizing: content-box;
		box-sizing: content-box;
		position: relative;
		margin: 2.5% 0 2.5% 0;
		padding: 0 10px 0 450px;
		border-radius: 10px;
		border: solid 1px #898b00;
		box-shadow: inset 0px 0px 0px 1px #e0e0e0, 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
		background-color: #000000;
		height: 86px;
	}

		#header h1 {
			position: absolute;
			left: 40px;
			top: 0;
			color: #fff;
			font-size: 2.4em;
			letter-spacing: -2px;
			line-height: 86px;
		}


/* Banner */

	#banner-wrapper {
		background: #323332;
		padding: 1.5em 0;
	}

/* Main */

	#main {
		background: #fffffe;
		padding: 1em 0;
	}

/* Footer */

	#footer-wrapper {
		padding: 1em 0;
	}

/* Copyright */

	#copyright {
		text-align: center;
		color: #494949;
		border-top: solid 1px #ced0b7;
		padding: 1em 0 0 0;
		margin: 1em 0 0 0;
        
	}

		#copyright a {
			color: #A6A88F;
		}

/* Large */

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

		/* Reusable */

			ul.small-image-list img {
				width: 50px;
			}

			ul.big-image-list img {
				width: 75px;
			}

		/* Header */

			#header {
				height: 80px;
			}

				#header h1 {
					font-size: 2em;
					line-height: 80px;
				}

				#header nav {
					line-height: 60px;
					font-size: 1.1em;
				}

					#header nav a {
						padding: 0 20px 0 20px;
					}

		/* Banner */

			

		/* Footer */

			#footer-wrapper {
				padding: 4em 0;
			}

		/* Copyright */

			#copyright {
				padding: 1em 0 0 0;
				margin: 2em 0 0 0;
			}

	}

/* Small */

	#navPanel, #titleBar {
		display: none;
	}

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

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

		/* Page Wrapper */

			#page-wrapper {
				padding-top: 44px;
			}

		/* Header */

			#header-wrapper {
				background-image: -moz-linear-gradient(top, #997d03, #fdc200);
				background-image: -webkit-linear-gradient(top, #997d03, #fdc200);
				background-image: -ms-linear-gradient(top, #997d03, #fdc200);
				background-image: linear-gradient(top, #997d03, #fdc200);
				background-color: #fdc200;
			}

			#header {
				display: none;
			}

		/* Nav */

			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
			}

			#titleBar {
				background-image: -moz-linear-gradient(top, #997d03, #fdc200);
				background-image: -webkit-linear-gradient(top, #997d03, #fdc200);
				background-image: -ms-linear-gradient(top, #997d03, #fdc200);
				background-image: linear-gradient(top, #997d03, #fdc200);
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 44px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
				text-align: center;
				color: #fff;
				font-size: 1.25em;
				background-color: #fdc200;
			}

				#titleBar .title {
					line-height: 44px;
				}

				#titleBar .toggle {
					position: absolute;
					top: 0;
					left: 0;
					width: 80px;
					height: 60px;
				}

					#titleBar .toggle:after {
						content: '';
						position: absolute;
						left: 4px;
						top: 4px;
						color: #fff;
						text-align: center;
						line-height: 31px;
						font-size: 0.8em;
						width: 50px;
						height: 35px;
						border-radius: 5px;
						box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.25), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), inset 0px 6px 13px 0px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.1);
					}

					#titleBar .toggle:before {
						content: '';
						position: absolute;
						width: 20px;
						height: 30px;
						background: url("images/mobileUI-site-nav-opener-bg.svg");
						top: 16px;
						left: 19px;
					}

					#titleBar .toggle:active:after {
						background: rgba(0, 0, 0, 0.2);
					}

			#navPanel {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transform: translateX(-275px);
				-webkit-transform: translateX(-275px);
				-ms-transform: translateX(-275px);
				transform: translateX(-275px);
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 100%;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 275px;
				z-index: 10002;
				background: #2b2b2b;
				color: #fff;
				box-shadow: inset -10px 0px 40px 0px rgba(0, 0, 0, 0.5);
			}

				#navPanel .link {
					display: block;
					color: #fff;
					border-top: solid 1px rgba(255, 255, 255, 0.1);
					border-bottom: solid 1px rgba(0, 0, 0, 0.2);
					height: 55px;
					line-height: 55px;
					padding: 0 15px 0 15px;
					text-decoration: none;
				}

					#navPanel .link:first-child {
						border-top: 0;
					}

					#navPanel .link:last-child {
						border-bottom: 0;
					}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #titleBar {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateX(0);
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
			}

	}

/* Small */

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

		/* Basic */

			body {
				font-size: 13pt;
			}

			h2 {
				font-size: 1.4em;
			}

			h3 {
				font-size: 1.2em;
			}

			h4 {
				font-size: 1em;
			}

		/* Reusable */

			ul.small-image-list li img {
				width: 100px;
			}

			ul.big-image-list li img {
				width: 100px;
			}

			ul.link-list {
				margin: 0 0 1em 0;
			}

			article.blog-post .comments {
				display: block;
				position: relative;
				top: -0.5em;
				margin: 0 0 0.5em 0;
			}

			.button {
				font-size: 1em;
			}

			.blog-post-image {
				width: 100%;
			}

		/* Banner */

			#banner-wrapper {
				background: #c8d2bc url(images/bg1.png);
				padding: 20px 0;
			}

		/* Main */

			#main {
				padding: 10px 0;
			}

		/* Footer */

			#footer-wrapper {
				padding: 40px 0;
			}

		/* Copyright */

			#copyright {
				text-align: center;
				color: #A6A88F;
				padding: 20px 0 0 0;
				font-size: 0.8em;
				line-height: 1.1em;
			}

				#copyright a {
					color: #A6A88F;
				}

	}

/* 5 adet değişen banner */
.carousel {
    position: relative;
    width: 98.8%;
    max-width: 1186px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
	box-shadow: 0 0 10px #00ff00, 0 0 20px #00ffff;
   
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 375px; /* İstediğiniz yükseklik */
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-indicators {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px; /* Noktalar arasındaki boşluk */
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #0272a7;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #b40303;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .carousel-inner {
        height: 250px; /* Mobil cihazlar için yükseklik */
    }
    .dot {
        height: 10px;
        width: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-inner {
        height: 200px; /* Küçük mobil cihazlar için yükseklik */
    }
    .dot {
        height: 8px;
        width: 8px;
    }
}
/* Anasayfa daki küçük resimler  */
/* Anasayfa SOL daki küçük resimler  */
.gallerysol {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center; /* Ortalayarak değiştirildi */
}

.gallerysol-item {
    position: relative;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border: 1px solid #fff;
    transition: transform 0.3s ease;
}

.gallerysol-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallerysol-item:hover {
    transform: scale(1.1);
}

/* Anasayfa SAĞ daki küçük resimler  */
.gallerysag {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center; /* Ortalayarak değiştirildi */
}

.gallerysag-item {
    position: relative;
    width: 500px;
    height: 250px;
    overflow: hidden;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.gallerysag-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallerysag-item:hover {
    transform: scale(1.1);
}

/* Media Query'ler ile Telefon ve Tablet İçin Ayar */
@media (max-width: 768px) {
    .gallerysol-item {
        width: 200px;
        height: 200px;
    }

    .gallerysag-item {
        width: 350px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallerysol-item {
        width: 150px;
        height: 150px;
    }

    .gallerysag-item {
        width: 300px;
        height: 150px;
    }
}

		/* neon çizgi  */
		.neon-line {
			width: 100%;
			height: 3px;
			background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(0,255,0,1) 50%, rgb(0, 153, 255) 100%);
			box-shadow: 0 0 10px rgba(255,0,0,0.8), 0 0 20px rgba(0,255,0,0.8), 0 0 30px rgba(0, 153, 255);
			animation: neon-effect 2s infinite, move-gradient 5s linear infinite;
			background-size: 200% 100%;
		}
		
		@keyframes neon-effect {
			0%, 100% {
				box-shadow: 0 0 10px rgba(255,0,0,0.8), 0 0 20px rgba(0,255,0,0.8), 0 0 30px rgba(0, 153, 255);
			}
			50% {
				box-shadow: 0 0 20px rgba(255,0,0,1), 0 0 40px rgba(0,255,0,1), 0 0 60px rgba(0, 153, 255);
			}
		}
		

		@keyframes move-gradient {
			0% {
				background-position: 0% 0%;
			}
			50% {
				background-position: 100% 0%;
			}
			100% {
				background-position: 0% 0%;
			}
		}
		

/* dalgalanma çizgi  */
.hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--background-color);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    margin: 0;
}

.hero .hero-waves {
    display: block;
    width: 100%;
    height: 45px;
    position: relative;
}

.hero .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: rgb(255, 0, 0);
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgb(255, 0, 0));
}

.hero .wave2 use {
    animation: move-forever2 6s linear infinite;
    animation-delay: -2s;
    fill: rgb(7, 236, 7);
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgb(7, 236, 7));
}

.hero .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -1s;
    fill: rgb(0, 174, 255);
    filter: drop-shadow(0 0 10px rgb(0, 174, 255));
}

		  @keyframes move-forever1 {
			0% {
			  transform: translate(85px, 0%);
			}
		  
			100% {
			  transform: translate(-90px, 0%);
			}
		  }
		  
		  @keyframes move-forever2 {
			0% {
			  transform: translate(-90px, 0%);
			}
		  
			100% {
			  transform: translate(85px, 0%);
			}
		  }
		  
		  @keyframes move-forever3 {
			0% {
			  transform: translate(-90px, 0%);
			}
		  
			100% {
			  transform: translate(75px, 0%);
			}
		  }
		  

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
            }

            nav a {
                font-size: 1.2em;
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-radius: 0;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
            }

            nav a:hover {
                border-left: 5px solid currentColor;
                border-right: 5px solid currentColor;
            }
        }

	
/* Neon Kutuların Konteyneri */

.Ledrenk {
    font-size: 24px;
    margin-bottom: 3px;
    text-shadow: 0 0 15px white;
    text-align: top center;
}

/* Neon Kutuların Konteyneri */
.neon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Neon Kutuların Genel Stili */
.neon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.15s ease-in-out;
    transform-origin: center; /* Ortadan büyüt */
    position: relative; /* Neon kutularının ::before ile aynı pozisyonda olması için */
}

/* Mouse Üzerine Gelince Anında Büyüsün */
.neon-box:hover {
    box-shadow: 0 0 10px white;
    transform: scale(1.2);
}

/* Neon Kutuların Kenarlarına Değer Değmez Parlama Yap */
.neon-box::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

/* Neon Kutuların Kenarlarını Daha Hassas Yap */
.neon-box:hover::before {
    width: 70px;
    height: 70px;
}

/* Renklerin Neon Efektleri */
.neon-pink { background-color: #ff00ff; box-shadow: 0 0 15px #ff00ff; }
.neon-red { background-color: #ff0000; box-shadow: 0 0 15px #ff0000; }
.neon-yellow { background-color: #ffff00; box-shadow: 0 0 15px #ffff00; }
.neon-purple { background-color: #8000ff; box-shadow: 0 0 15px #8000ff; }
.neon-warmwhite { background-color: #ffcc99; box-shadow: 0 0 15px #ffcc99; }
.neon-white { background-color: #ffffff; box-shadow: 0 0 15px #ffffff; }
.neon-turquoise { background-color: #00ffff; box-shadow: 0 0 15px #00ffff; }
.neon-blue { background-color: #0000ff; box-shadow: 0 0 15px #0000ff; }
.neon-green { background-color: #00ff00; box-shadow: 0 0 15px #00ff00; }
.neon-orange { background-color: #ff6600; box-shadow: 0 0 15px #ff6600; }

/* Media Query'ler ile Telefon ve Tablet İçin Ayar */
@media (max-width: 768px) {
    .neon-box {
        width: 40px;
        height: 40px;
    }
    .neon-box::before {
        width: 40px;
        height: 40px;
    }
    .neon-box:hover::before {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .neon-box {
        width: 30px;
        height: 30px;
    }
    .neon-box::before {
        width: 30px;
        height: 30px;
    }
    .neon-box:hover::before {
        width: 40px;
        height: 40px;
    }
}

.LEDcontainer {
    background-color: rgb(37, 37, 37); /* Zemin rengini siyah yapar */
    border: 1px solid white; /* 2px beyaz çerçeve */
    width: 100%; /* Yatayda %100 genişlik */
    height: 75%; /* Dikeyde 30px yükseklik */
	box-shadow: 0 0 10px #08b2dd, 0 0 30px #068cda;
	
}


/* kayan yazı spot */
.neon-spot {
    width: 100%;
    background-color: black;
    overflow: hidden;
    position: relative;
  }

  .spot-container {
    max-width: 1198px;
    margin: 0 auto;
    height: 30px;
    overflow: hidden;
    position: relative;
  }

  .spot-text {
    position: absolute;
    white-space: nowrap;
    color: rgb(0, 255, 21);
    text-shadow: 
      0 0 3px #33ff00, 
      0 0 5px #33ff00, 
      0 0 10px #33ff00, 
      0 0 15px #33ff00;
    animation: neon-move 20s linear infinite;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px; /* Harf aralarını açtık */
  }

  @keyframes neon-move {
    from {
      left: 100%;
    }
    to {
      left: -100%;
    }
  }


/* whatsapp */

.popup {
    position: fixed;
    bottom: 20px;
    right: -300px;
    width: 60px; /* Genişlik */
    height: 60px; /* Yükseklik */
    transition: right 0.5s;
  }
  
  .popup-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Genişlik */
    height: 60px; /* Yükseklik */
  }
  
  .close {
    position: absolute;
    top: 1px;
    right: 2px;
    font-size: 20px;
    cursor: pointer;
  }
  







