:root {
	--bg-dark0:  #000000;
	--bg-dark1:  #111111;
	--bg-dark2:  #222222;
	--bg-white:  #FFFFFF;
	--bg-color:  #F2AA00;

	--color-text:  #777777;
	--color-link:  #F2AA00;
	--color-dark:  #000000;
	--color-white:  #FFFFFF;

	--color-border: #555555 ;


}


html,
body{
	font-family: "Teko", sans-serif;
	font-style: normal;
	background-color: var(--bg-dark1);
	color: var(--color-text);
	-webkit-text-size-adjust: 100%;
	font-size: 24px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

div.pp_default .pp_description {
    font-size: 16px !important;
    font-weight: normal !important;
    font-family: "Poppins", sans-serif;
}

a{
	color: var(--color-text);
	text-decoration: none;
	cursor: pointer;
	transition: all .2s ease;
}
a:hover{
	color: var(--color-link);
	text-decoration: none;
}
a.link{
	color: var(--color-link);
}
a.link:hover{
	text-decoration: underline;
}

ul{
	list-style: none;
	margin: 0;
	padding: 0;
}


.notif {
    background-color: #ddd;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

.notif.r {
    background-color: #ffaaaa;
    color: #e42313;
}
.notif.g {
    background-color: #d7ebce;
    color: #0f723a;
}


.social a{
	display: inline-flex;
	width: 42px;
	height: 42px;
	border-radius: 4px;
	background-color: var(--bg-dark1);
	color: var(--color-white);
	align-items: center;
    justify-content: center;
}
.social a.facebook{
	background-color: #1877f2;
}
.social a.instagram{
	background-color: #c13584;
}
.social a.youtube{
	background-color: #ff0000;
}
.social a.tiktok{
	background-color: #FE2858;
}
.social a.x{
	background-color: #14171a;
}
.social a:not(.nothover):hover{
	background-color: var(--bg-white);
	color: var(--color-dark);
}


#mobilemenu {
    position: absolute;
    right: 20px;
    top: 50%;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#mobilemenubox {
    display: none;
    position: fixed;
    z-index: 20;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
}
#mobilemenubox ul {
    width: 100%;
}
#mobilemenubox a {
    display: block;
    text-align: center;
    font-size: 2rem;
    color: #FFF;
}
#mobilemenubox.active{
    display: flex;
}



#header{
	background-color: var(--bg-dark0);
}
#header_top{
	background-color: var(--bg-dark0);
	position: relative;
}
#header_bottom{
	background-color: var(--bg-dark2);
}

#header_top a.logo{
	display: inline-block;
	margin: 30px;
}
#header_top a.logo > img{
	height: 64px;
}


#mainmenu {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
#mainmenu > li {
	display: inline-block;
	position: relative;
}
#mainmenu > li > a{
	color: var(--color-white);
	text-transform: uppercase;
	padding: 10px 0px;
	display: block;
}
#mainmenu > li.active > a{
	color: var(--color-link);
}
#mainmenu > li > a:hover{
	opacity: .75;
}
#mainmenu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark0);
    border-top: 5px solid var(--bg-color);
    padding: 0px 15px;
    z-index: 5;
    display: none;
}
#mainmenu > li:hover ul{
	display: block;
}
#mainmenu > li > ul a{
	display: block;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 15px;
}



#footer{
	background-color: var(--bg-dark0);
	padding: 100px 0px;
}
#footer a.logo{
	display: inline-block;
	margin: 15px;
}
#footer a.logo > img{
	height: 48px;
}
ul.social {
    display: flex;
    gap: 7.5px;
    align-items: center;
    justify-content: center;
}



ul.pages {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.pages a {
    padding: 0px 15px;
    text-transform: uppercase;
    font-weight: 100;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}
.copyright{
    font-weight: 100;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.row > .center {
	text-align: center; 
    align-items: center;
    justify-content: center;
}


/*PAGE*/
#content {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}
#content.split #body{
	background-color: #f5f5f5;
}
#head {
    padding-top: 100px;
    padding-bottom: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -2;
}

#head.bg_custom {
    position: relative;
    z-index: 0;
}
#head.bg_custom:after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .75);
	content: '';
	z-index: 1;
	backdrop-filter: blur(10px);
}
#head.bg_custom > .container{
	z-index: 2;
	position: relative;
}
#head.bg_custom h2 {
    color: var(--color-white);
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 400;
    line-height:1.1;
}
#head.bg_custom .info {
    font-size: 0.8rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
#head.bg_custom .info a{
    text-transform: uppercase;
}
#head.min{
	padding-bottom: 100px;
}
#head.bg_custom.min:after{
	background-color: transparent;
}
#head.bg_custom.error{
	padding-top: 360px;
	padding-bottom: 360px;
}
#head.bg_custom.error:after{
	background-color: transparent;
}

#head h1 {
    margin: 0;
    position: relative;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}
#head h1:before {
    position: absolute;
    inset-block-start: -31px;
    inset-inline-start: -78px;
    z-index: -1;
    width: 260px;
    height: 194px;
    background: url('../img/titlebg.png') 50% / cover no-repeat;
    content: '';
}
#head ul.per {
    display: flex;
    align-items: center;
    justify-content: center;
}
#head ul.per > li{
	background-color: #383633;
	background-image: url('../img/menu_bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	flex: 1;
}
#head ul.per li:not(:first-child){
	border-left: 1px solid rgba(255, 255, 255, .2);
}
#head ul.per > li > a{
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	text-transform: uppercase;
}
#head ul.per > li.active > a,
#head ul.per > li > a:hover{
	background-color: var(--bg-color);
	color: var(--color-dark);
}


.paylas {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 15px 0px;
}
.paylas > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.paylas > ul > li {
    color: var(--color-white);
    text-transform: uppercase;
}
.paylas > ul > li a {
    color: var(--color-white);
    width: 40px;
    height: 40px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.paylas > ul > li a:hover {
	background-color: var(--bg-white);
	color: var(--color-dark);
}


#pagecontent:not(.nomargin){
	margin-top: -100px;
}
#pagecontent.nomargin{
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	color: var(--color-dark);
}

ul.post{

}
ul.post > li {
    background-color: var(--bg-white);
    position: relative;
    display: inline-flex;
    flex-direction: column;
    transition: all .25s ease;
}
ul.post > li img{
	width: 100%;
	transition: all .25s ease;
}
ul.post > li a{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
}
ul.post > li .img{
	overflow: hidden;
	position: relative;
}
ul.post > li .img > span {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;
    padding: 5px 15px;
    background-color: var(--bg-color);
    color: var(--color-dark);
    text-transform: uppercase;
    font-weight: 100;
}
ul.post > li .inner{
	flex: 1;
	padding: 15px;
	background: url('../img/postbg.png') 50% / cover no-repeat;
	display: flex;
    flex-direction: column;
}
ul.post > li .inner > strong {
    color: var(--color-dark);
    font-size: 1.8rem;
    font-weight: 400;
}
ul.post > li .inner > span {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}
ul.post > li .inner > small {
    font-size: 16px;
}
ul.post > li:hover{
	transform: translateY(-12px);
	filter: drop-shadow(0 20px 10px rgba(0, 0, 0, .15));
}
ul.post > li:hover img{
	transform: scale(1.1);
}



ul.medya{

}
ul.medya > li {
    position: relative;
    cursor: pointer;
	transition: all .25s ease;
}
ul.medya > li:after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .25);
	content: '';
	transition: all .25s ease;
}
ul.medya > li:before{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, transparent 57.29%, rgba(0, 0, 0, .75));
	content: '';
	z-index: 2;
}
ul.medya > li img{
	width: 100%;
	transition: all .25s ease;
}
ul.medya > li .img{
	overflow: hidden;
	position: relative;
}
ul.medya > li .img > span {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 100;
    opacity: .5;
    transition: all .25s ease;
}
ul.medya > li .img > i{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    color: var(--color-white);
    opacity: .5;
    font-size: 80px;
    transition: all .25s ease;
}
ul.medya > li .img > small{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	display: block;
}


ul.medya > li:hover{
	transform: translateY(-12px);
	filter: drop-shadow(0 20px 10px rgba(0, 0, 0, .15));
}
ul.medya > li:hover .img > span{
	opacity: 1;
	bottom: 30px;
}
ul.medya > li:hover .img > i{
	opacity: 1;
	font-size: 100px;
}
ul.medya > li:hover:after{
	background-color: rgba(242, 170, 0, .25);
}

/*ul.sosyal {*/
/*    list-style: none;*/
/*    column-gap: 0;*/
/*    padding: 0;*/
/*    column-count: 3;*/
/*    gap: 15px;*/
/*}*/
ul.sosyal{
  width: 100%;
  position: relative;
}
ul.sosyal > li{
	background-color: var(--bg-white);
	border-radius: 5px;
	margin-bottom: 15px;
}
ul.sosyal > li {
  position: absolute;
}
ul.sosyal > li > .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
ul.sosyal > li > .head > a span {
    white-space: nowrap;
    overflow: hidden;
}
ul.sosyal > li > .head > a.per {
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    background: transparent;
    color: var(--color-text);
    align-items: baseline;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1;
}
ul.sosyal > li > .head > a.per span:first-child{
	font-weight: 500;
    color: var(--color-dark);
}
ul.sosyal > li > .head > a:not(.per){
	width: 32px;
	height: 32px;
	font-size: 16px;
}
ul.sosyal > li .img{
	position: relative;
}
ul.sosyal > li .img > a{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
ul.sosyal > li .img > i{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    color: var(--color-white);
    opacity: .5;
    font-size: 80px;
    transition: all .25s ease;
}
ul.sosyal > li:hover .img > i{
	opacity: 1;
	font-size: 100px;
}

ul.sosyal > li img{
	width: 100%;
}


ul.sosyal > li .inner{
	padding: 15px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
    color: var(--color-dark);
}
ul.sosyal > li .inner p{
	margin-bottom: 5px;
}
ul.sosyal > li .inner small{
	color: var(--color-text);
	font-size: 14px;
}

ul.main {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
ul.main > li{

}
ul.main > li > a {
    display: flex;
    color: var(--color-white);
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--color-white);
    backdrop-filter: blur(10px);
}
ul.main > li > a > i{
	font-size: 0.8rem;
}
ul.main > li > a:hover{
	color: var(--color-link);
    border: 1px solid var(--color-link);
}
#head.main h1 {
    color: var(--color-white);
    text-align: center;
}
#head.main h1:before {
    opacity: 0;
}





.bg_haber{
	background-image: url('../img/bg_haberler.jpg');
}
.bg_medya{
	background-image: url('../img/bg_medya.jpg');
}
.bg_topluluk{
	background-image: url('../img/bg_topluluk.jpg');
}


.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-group input, .form-group textarea {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 5px;
}
.form-group textarea{
	min-height: 140px;
}
.form-group input[type=submit]{
	border: none;
	background-color: var(--bg-dark1);
	color: var(--color-white);
	transition: all .25s ease;
}
.form-group input[type=submit]:hover{
	border: none;
	background-color: var(--bg-color);
}

#loadmore {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: space-around;
}
#loadmore i{
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, .75);
	color: rgba(0, 0, 0, .75);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .25s ease;
}
#loadmore i:hover{
	background-color: #000;
	color: #FFF;
	transform: rotate(90deg);
}
#loadmore:before,
#loadmore:after{
	content: '';
	height: 1px;
	flex: 1;
	display: block;
	border-bottom: 1px dashed rgba(0, 0, 0, .75);
}
#loadmore:before{
	margin-right: 15px;
}
#loadmore:after{
	margin-left: 15px;
}

#loadmore.light i{
	border: 1px solid rgba(255, 255, 255, .75);
	color: rgba(255, 255, 255, .75);
}
#loadmore.light i:hover{
	background-color: #FFF;
	color: #000;
}
#loadmore.light:before,
#loadmore.light:after{
	border-bottom: 1px dashed #FFF;
}

#loadmore.active i{
	animation-name: ianimation;
  	animation-duration: 1s;
}

@keyframes ianimation {
  from {opacity: 0;}
  to {opacity: 1;}
}


#yorumyap {
    padding: 15px;
    background-color: #FFF;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 20px 10px rgba(0, 0, 0, .15);
    margin-bottom: 30px;
}
#yorumyap h4{
	color: #000;
	font-weight: bold;
}
#yorumyap label{
	font-size: 16px;
}
#yorumyap input,
#yorumyap textarea{
	font-size: 16px;
	padding: 10px;
}

ul.yorumlar{
	font-family: "Poppins", sans-serif;
}
ul.yorumlar > li{
	display: flex;
	margin-bottom: 15px;
	background-color: #FFF;
	border-radius: 5px;
}
ul.yorumlar > li .image {
    padding: 15px;
    font-size: 36px;
    color: #DDD;
}
ul.yorumlar > li .comment {
    flex: 1;
    font-size: 16px;
    padding: 15px;
}
ul.yorumlar > li .comment > strong {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color: #000;
    margin-bottom: 15px;
}
ul.yorumlar > li .comment > strong > small {
    font-weight: 300;
}