/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/



.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/* By Authot Post */

.bypostauthor {
    display: inline-block;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
    margin-right: -15px;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding-right: 15px;
}
.gallery-item {
  padding-bottom: 15px;
}
.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

.screen-reader-text {
    background: transparent;
    display: none;
}



/* Menü yazı fontunu mobilde küçült */
@media (max-width: 768px) {
  .nav-menu > li > a {
    font-size: 14px !important;
  }
}

/* Sivil Katılım mobilde logo görünsün */
.mobile-menu-logo {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-logo {
    display: block;
  }
}

/* Görünmez menü butonu çalışsın */
.open-btn {
  opacity: 0;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 9999;
}

/* Menü ortalansın */
#navbar {
  justify-content: center !important;
}

.open-btn {
  display: block;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 10001;
}

.open-btn .icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

@media (max-width: 991px) {
  #navbar.open {
    display: flex !important;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
  }
  .close-navbar {
    display: block !important;
  }
}

@media (min-width: 992px) {
  #navbar {
    display: flex !important;
  }
  .open-btn, .close-navbar {
    display: none !important;
  }
}


