@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,700;1,200&display=swap");
:root {
  --color-black: hsl(0, 0%, 10%);
  --color-white: hsl(0, 0%, 100%);
  --color-darken: hsl(0, 0%, 20%);
  --color-pink-100: hsl(336, 95%, 94%);
  --color-pink-200: hsl(338, 91%, 87%);
  --color-pink-300: hsl(339, 90%, 81%);
  --color-pink-400: hsl(339, 88%, 74%);
  --color-pink-500: hsl(339, 82%, 67%);
  --color-pink-600: hsl(339, 76%, 59%);
  --color-pink-700: hsl(339, 67%, 52%);
  --color-pink-800: hsl(339, 68%, 45%);
  --color-pink-900: hsl(339, 69%, 38%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--color-black);
  background:#f9f9f9;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
u{text-decoration: underline;}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  font-family: "Poppins", sans-serif;
font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--color-pink-600);
  text-transform: uppercase;
}

.header {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  padding: 0.75rem 0;
  z-index: 100;
  background: var(--color-white);
  border-left:#61afce 1px solid;
border-right:#61afce 1px solid;
border-bottom:#61afce 1px solid;
border-bottom-left-radius:5px; /* Standart */
border-bottom-right-radius:5px; /* Standart */
-moz-border-bottom-left-radius:5px; /* Firefox */
-moz-border-bottom-right-radius:5px; /* Firefox */
-webkit-border-bottom-left-radius:5px; /* Safari ve Chrome */
-webkit-border-bottom-right-radius:5px; /* Safari ve Chrome */
}
.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14%; /*17*/
          flex: 0 0 14%; /*17*/
}
.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14%; /*17*/
          flex: 0 0 14%; /*17*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-item-right .menu-icon {
  font-size: 0.80rem; /* font-size: 1.35rem; */
  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;
  gap: 0.50rem;
  margin-left: 0.50rem;
  color: var(--color-black);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 1.1rem; /* 1.5rem*/
}
.header .menu > ul > li > a {
  position: relative;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  outline: none;
  color: var(--color-black);
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 109;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 3px solid var(--color-pink-600);
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-medium);
          box-shadow: var(--shadow-medium);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .menu > ul > li .menu-subs > ul > li {
  line-height: 1;
}
.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}
.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
  display: block;
  line-height: 1;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 68rem;
  width: 100%;
  padding: 1.25rem 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  color: var(--color-pink-700);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
  text-align: center;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  color: var(--color-pink-700);
}
.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: var(--color-pink-700);
}
.header .menu-mobile-header,
.header .menu-mobile-toggle {
  display: none;
}

@media screen and (min-width: 1090px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1089px) {
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }

  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding: 0.5rem 0;
  }

  .header .menu-mobile-toggle {
    position: relative;
    display: block;
    cursor: pointer;
    width: 3.75rem; /* 1.75rem */
    height: 1.5rem; /* 1rem*/
    border: none;
    outline: none;
    margin-left: 1.25rem;
    margin-top: -0.25rem;
    background: none;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu-mobile-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: var(--color-black);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-toggle span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-toggle span:nth-child(2), .header .menu-mobile-toggle span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-toggle span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%; /* mobil menu ekranin yuzde kacini kaplasin */
    height: 100%;
    z-index: 111;
    overflow: hidden;
    background: var(--color-white);
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }
  .header .menu > ul > li > a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header .menu .menu-mobile-header {
    position: relative;
    position: sticky;
    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;
    top: 0;
    height: 3.125rem;
    z-index: 110;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--color-white);
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
  }
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: var(--color-black);
    text-transform: capitalize;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* ##### menu kodlari bitti ################################################################################ */
@media screen and (min-width: 851px) { /* bilgisayar */
.headersablon{width:90%; height:auto; margin:0 auto;}
.anasablon{background-color:#fff; width:90%; margin:0 auto; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
}
@media screen and (max-width: 850px) { /* mobil */
.headersablon{width:98%; height:auto; margin:0 auto;}
.anasablon{background-color:#fff; width:98%; margin:0 auto; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
}

.headerindex{
width:100%;
background:#5ea5d7 url("../images/headerindex.png");
border-bottom:#48a9d0 2px solid;
}

.headerindextanitim{
background-image:url("../images/headerindexbg.png");
background-repeat: no-repeat;
background-position:right bottom;
background-attachment: scroll;
background-size: contain;
	color:#fff;
	padding-top:20px;
	box-sizing: border-box;
	text-shadow:-2px -1px 10px rgba(0,0,0,0.5);
}

@media only screen and (max-width: 470px) { /* mobil */
.headerindextanitim span{display:inline-block; color:#fff; font-size:2rem; font-weight:600;}
.headerindextanitim{width:100%; height:270px; margin:0 auto; text-align:center;}
}
@media only screen and (min-width: 471px) { /* bilgisayar */
.headerindextanitim span{display:inline-block; color:#fff; font-size:2.70rem; font-weight:600;}
.headerindextanitim{width:80%; height:300px; margin:0 auto;}
}

/* #### sayfa sablonu ###########################################################################################*/
@media only screen and (max-width: 850px) { /* mobil */
.sayfasablon{background-color:#fff; width:98%; margin:0 auto; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
.sayfasablon-sol{position: relative; width:100%; margin-bottom:50px; padding:0px 7px; box-sizing: border-box;}
.sayfasablon-sag{width:100%; padding:0px 7px 50px 7px; box-sizing: border-box;}
}
@media only screen and (min-width: 851px) { /* bilgisayar */
.sayfasablon{display:flex; flex-wrap: wrap; background-color:#fff; width:90%; margin:0 auto; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
.sayfasablon-sol{position: relative; width:62%; margin-bottom:50px; padding:0px 10px; box-sizing: border-box;}
.sayfasablon-sag{width:38%; margin-bottom:50px; padding:0px 10px; box-sizing: border-box;}
}
/* #### Profil sablon ###########################################################################################*/
@media only screen and (max-width: 850px) { /* mobil */
.profilsablon{background-color:#fff; width:98%; margin:0 auto; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
.profilsablon-sag{width:100%; padding:10px 7px; box-sizing: border-box;}
.profilsablon-sol{width:100%; padding:10px 7px; box-sizing: border-box;}
.profilyoksablon{background-color:#fff; width:98%; margin:0 auto; padding:20px 10px; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
}
@media only screen and (min-width: 851px) { /* bilgisayar */
.profilsablon{display:flex; flex-wrap: wrap; background-color:#fff; width:90%; margin:0 auto; box-sizing: border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
.profilsablon-sag{width:70%; border-left:1px dotted #eee; padding:10px 15px; box-sizing: border-box;}
.profilsablon-sol{width:30%; padding:10px 15px; box-sizing: border-box;}
.profilyoksablon{background-color:#fff; width:90%; margin:0 auto; padding:20px; box-sizing:border-box; border-left:#e9e9e9 1px solid; border-right:#e9e9e9 1px solid;}
}
.profilsablon-sol img{
margin:0 auto;
max-width:400px;
border-radius:5px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:5px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:5px; /* Safari ve Chrome iÃ§in ovalcerceve */
border:1px solid #eee;
vertical-align: middle;
}
.profilistatistik{background:#edf2f4; line-height:30px; padding:10px 7px; box-sizing: border-box; margin:20px 0; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}
.profilistatistik i{font-size:18px; color:#40a6ce; text-align:center; margin-right:5px; width:23px; height:23px;}
.profilpaylas{background:#edf2f4; padding:10px 7px; box-sizing: border-box; margin:20px 0; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}
.profilpaylas a[title="Facebook"]{color:#3b5998; font-size:30px; margin-right:15px;}
.profilpaylas a[title="Twitter"]{color:#00aced; font-size:30px; margin-right:15px;}
.profilpaylas a[title="Pinterest"]{color:#cb2027; font-size:30px; margin-right:15px;}
.profilpaylas a[title="Whatsapp"]{color:#4dc247; font-size:30px; margin-right:15px;}
.profilpaylas a[title="Messenger"]{color:#1e90ff; font-size:30px; margin-right:15px;}
.profilpaylas a[title="ilan linki"]{color:#ff7f00; font-size:30px;}

.profilanaliz{background:#edf2f4; padding:10px 7px; box-sizing: border-box; margin:20px 0; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}

.profiluyarilari{background:#fafad2; line-height:22px; font-size:14px; padding:10px 5px; box-sizing: border-box; margin:20px 0; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}

.profilbilgidiv:nth-child(-n+7){position:relative; padding:7px 0; box-sizing: border-box; border-bottom:1px dotted #ddd;}
.profilbilgidiv span{position: absolute; right:0;}
.mesajgondertitle{background:#40a6ce; color:#fff; padding:7px; margin-bottom:10px; box-sizing: border-box; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}
.mesajgondertitle a{color:#fff;}
.benzerilanlartitle{background:#40a6ce; color:#fff; padding:7px; margin:20px 0; box-sizing: border-box; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}
.profiltag{font-size:13px; padding:10px; margin-top:10px; box-sizing: border-box;}
/* #### Arama alani ###########################################################################################*/
.aramaalani{
width:100%;
background:rgba(72, 169, 208, 0.70);
padding:0.50rem;
box-sizing: border-box;
color:var(--color-white);
border-left:#61afce 1px solid;
border-right:#61afce 1px solid;
border-top:#61afce 1px solid;
border-top-left-radius:5px; /* Standart */
border-top-right-radius:5px; /* Standart */
-moz-border-top-left-radius:5px; /* Firefox */
-moz-border-top-right-radius:5px; /* Firefox */
-webkit-border-top-left-radius:5px; /* Safari ve Chrome */
-webkit-border-top-right-radius:5px; /* Safari ve Chrome */
}
@media only screen and (max-width: 470px) { /* mobil */
.aramakutusudetay {width:100%; max-width:300px; margin:5px auto; display:block;}
.aramakutusudetay b{display:inline-block; width:75px; text-align:right;}
}
@media only screen and (min-width: 471px) { /* bilgisayar */
.aramakutusudetay {margin:3px 7px; display:inline-block;}
.aramaalani{text-align:center;}
}
.aramainputlar {
background:#35a3ce;
color:var(--color-white);
padding: 7px 7px;
border: 1px solid #4fa1bc;
border-radius:4px; /* Standart icin oval cerceve */
-moz-border-radius:4px; /* Firefox icin oval cerceve */
-webkit-border-radius:4px; /* Safari ve Chrome icin ovalcerceve */
box-sizing: border-box;
}
formbaslik{
display:block;
font-size: 0.90rem;
font-weight: bold;
border-left:3px solid #40a6ce;
padding-left: 5px;
margin-bottom:7px;
box-sizing: bor1der-box;
border-radius:4px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:4px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:4px; /* Safari ve Chrome iÃ§in ovalcerceve */
}
/* #### iLANIMI BUL PANELi ###########################################################################################*/
.benimilanim {
	display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
 }
.ilanimibulpaneli{
	position: relative;
	background-color:#fff;
	padding:10px;
	box-sizing: border-box;
	text-align:center;
	border-radius:5px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:5px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:5px; /* Safari ve Chrome iÃ§in ovalcerceve */
}
@media only screen and (max-width: 449px) { /* mobil */
.ilanimibulpaneli{margin:150px auto; width:90%; height:300px;}
#pbulbt{margin-top:10px;}
}
@media only screen and (min-width: 450px) { /* bilgisayar */
.ilanimibulpaneli{margin:150px auto; width:100%; max-width:400px; height:250px;}
}
.ilanimibulpaneli span{
position: absolute;
top:-10px;
right:-10px;
padding:5px 12px;
box-sizing: border-box;
background-color:#48a9d0;
font-size:20px;
font-weight: 600;
border-radius:50px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:50px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:50px; /* Safari ve Chrome iÃ§in ovalcerceve */	
color:#fff;
}

.ilanimibulindex{
	width:100%;
	/* background-color:#40a6ce; */
	background: #40A6CE;
background: linear-gradient(162deg, rgba(64, 166, 206, 1) 42%, rgba(158, 237, 80, 1) 100%);
	padding:30px 10px;
	box-sizing: border-box;
	font-size: 1.50rem;
	font-weight: 600;
	color:#fff;
	text-align:center;
}
.ilanimibulindex span{
	display:block;
	width:200px;
	margin:10px auto;
	padding:15px 10px;
	box-sizing: border-box;
	background-color:#ed5075;
	font-size: 1rem;
	font-weight: 400;
	text-align:center;
	color:#fff;
	border-radius:25px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:25px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:25px; /* Safari ve Chrome iÃ§in ovalcerceve */
}
/* #### hucreler ###########################################################################################*/
@media only screen and (min-width: 670px) { /* bilgisayar */
.indexhucreler{display: flex;}
}
.indexhucreler div{
font-family: "Poppins", Tahoma, Verdana, sans-serif;
font-size: 0.80rem;
font-weight: 400;
padding:20px;
box-sizing: border-box;
}
.indexhucreler b{
font-size: 1.10rem;
font-weight: 600;
}
.indexhucreler i{
display: inline-block;
height: 2rem;
width: 2rem;
line-height: 2rem;
font-size: 0.80rem;
font-weight: 400;
background:#40a6ce;
color:#fff;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
margin-right:5px;
text-align:center;
vertical-align: bottom;
}

.indextitle{
	width:95%;
	margin:50px auto;
	text-align:center;
}
.indextitle span{
	display:inline-block;
	margin-bottom:10px;
	font-size: 1.70rem;
	font-weight: 600;
	border-bottom:5px solid #ed5075;
}
/* #### Ilan Goster ###########################################################################################*/
.ilangoster-anadiv{
background-color:#ffffff;
max-width:75rem;
height: auto;
margin: 0 auto;
padding:1rem;
box-sizing: border-box;
box-shadow: 1px 1px 9px #eee;
border-radius:5px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:5px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:5px; /* Safari ve Chrome iÃ§in ovalcerceve */
}

.ilangoster-anadiv a{color:#7d26cd;}
.ilangoster-anadiv a:hover{color:#e6477f;}

.ilangoster{
width:90px;
height:115px;
background:#faf8fb;
border:#ece3ee 1px solid;
float:left;
margin:0 10px 20px 10px;
font-size:12px;
box-sizing: border-box;
border-radius:3px; /* Standart iÃ§in oval cerceve */
-moz-border-radius:3px; /* Firefox iÃ§in oval cerceve */
-webkit-border-radius:3px; /* Safari ve Chrome iÃ§in ovalcerceve */
}
.ilangoster1{text-align:center; width:88px; height:65px; box-sizing: border-box;}
.ilangoster1 img{margin:7px auto 1px auto; border:#fff 2px solid; vertical-align: middle;}
.ilangoster2{text-align:center; width:88px; height:50px; box-sizing: border-box; border-top:#ece3ee 1px solid;}
/* #### Linkler ###########################################################################################*/
.link a:link {
color:#1098ce;
text-decoration:none;
}
.link a:visited {
color:#1098ce;
text-decoration:none;
}
.link a:hover {
color:#ed1547;
text-decoration:none;
}
/* #### Blog, Bu site nasıl çalışıyor, Mobil duyuru ###########################################################################################*/
@media only screen and (max-width: 651px) { /* mobil */
.blogvemobilduyuru div{display:block; width:100%; font-size: 0.80rem; font-weight: 400; padding:10px; box-sizing: border-box;}
}
@media only screen and (min-width: 650px) { /* bilgisayar */
.blogvemobilduyuru{display: flex;}
.blogvemobilduyuru div{width:50%; font-size: 0.80rem; font-weight: 400; padding:20px; box-sizing: border-box;}
}
.blogvemobilduyurutitle {
display:block;
position: relative;
border-bottom: 2px dotted #bbb;
width:100%;
margin-top:30px;
}
.blogvemobilduyurutitle span{
font-size: 1rem;
font-weight: 600;
font-family: 'Poppins', Arial, sans-serif;
border-bottom: 4px solid #ed5075;
position: absolute;
left:0;
bottom:-3px;
padding-right:20px;
box-sizing: border-box;
}
.blogvemobilduyuru i{
height: 2rem;
width: 2rem;
line-height: 2.10rem;
font-size: 0.80rem;
background:#40a6ce;
color:#fff;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
margin-right:5px;
margin-bottom:10px;
text-align:center;
vertical-align: bottom;
}
.blogvemobilduyuru b{
display: inline-block;
font-size: 0.90rem;
margin-bottom:15px;
}

/* #### Sehirler listesi ###########################################################################################*/
.sehirler-anadiv{
display: flex;
flex-wrap: wrap;
padding:10px;
box-sizing: border-box;
}

@media only screen and (min-width: 150px) and (max-width: 470px) { /* kucuk ekranlar */
.sehirdiv{width:50%; font-size: 0.75rem; font-weight: 300; margin-bottom:50px;}	
}
@media only screen and (min-width: 471px) and (max-width: 860px) { /* orta ekranlar */
.sehirdiv{width:50%; font-size: 1rem; font-weight: 300; margin-bottom:50px;}	
}
@media only screen and (min-width: 861px) and (max-width: 2500px) { /* Bilgisayar */
.sehirdiv{width:25%; font-size: 0.90rem; font-weight: 300;}	
}

.sehirdiv span{border-bottom:1px solid #ed5075; color:#ed5075; font-size:1rem; font-weight: 500;}

/* #### Butonlar ve Imputlar ###########################################################################################*/
.pembebuton {
background:#ed5075;
color:#fff;
padding:9px 5px 9px 5px;
box-sizing: border-box;
font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.0rem;
font-weight: 400;
-moz-box-shadow:inset 0px 1px 0px 0px #edb1bf; /* firefox icin kutu golge rengi */
-webkit-box-shadow:inset 0px 1px 0px 0px #edb1bf; /* Safari ve Chrome icin kutu golge rengi */
box-shadow:inset 0px 1px 0px 0px #edb1bf; /* standart icin kutu golge rengi */
border-radius:5px; /* Standart için cerceve rengi */
-moz-border-radius:5px; /* Firefox için cerceve rengi */
-webkit-border-radius:5px; /* Safari ve Chrome için cerceve rengi */
text-shadow:0 -1px 0 rgba(0,0,0,0.2); /* yazi golgelendirme */
text-decoration:none;
cursor:pointer;
border:1px solid rgba(0,0,0,0.05);
border-bottom-color:rgba(0,0,0,0.1);
border-bottom-width:2px;
}

.mavibuton {
background:#40a6ce;
color:#fff;
padding:9px 5px 9px 5px;
box-sizing: border-box;
font-size: 1.0rem;
font-weight: 400;
font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
-moz-box-shadow:inset 0px 1px 0px 0px #96bdcc; /* firefox icin kutu golge rengi */
-webkit-box-shadow:inset 0px 1px 0px 0px #96bdcc; /* Safari ve Chrome icin kutu golge rengi */
box-shadow:inset 0px 1px 0px 0px #96bdcc; /* standart icin kutu golge rengi */
border-radius:5px; /* Standart için oval cerceve */
-moz-border-radius:5px; /* Firefox için oval cerceve */
-webkit-border-radius:5px; /* Safari ve Chrome için ovalcerceve */
text-shadow:0 -1px 0 rgba(0,0,0,0.2); /* yazi golgelendirme */
text-decoration:none;
cursor:pointer;
border:1px solid rgba(0,0,0,0.05);
border-bottom-color:rgba(0,0,0,0.1);
border-bottom-width:2px;
}
.inputlar {
padding: 9px 7px;
border: 1px solid #ccc;
border-radius:4px; /* Standart icin oval cerceve */
-moz-border-radius:4px; /* Firefox icin oval cerceve */
-webkit-border-radius:4px; /* Safari ve Chrome icin ovalcerceve */
box-sizing: border-box;
}
.tag{
padding:10px;
box-sizing: border-box;	
font-size:0.80rem;
margin-top:20px;
}

.sayfatitle {
position: relative;
border-bottom: 2px dotted #ccc;
width:100%;
padding-top:50px;
margin-bottom:20px;
box-sizing: border-box;
}
.sayfatitle span{
font-size: 1.10rem;
font-weight: 600;
font-family: 'Poppins', Arial, sans-serif;
border-bottom: 2px solid #ed5075;
position: absolute;
left:0;
bottom:-2px;
padding-left:10px;
padding-right:20px;
padding-bottom:2px;
box-sizing: border-box;
}

/* ################# Yardim sayfasi için css kodlari ################### */
#sorucevap .ysoru{
background:#b2dfee;
padding:5px;
border-bottom:#FFFFFF 7px solid;
cursor:pointer;
font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
font-size:1rem;
font-weight: 400;
color:#023b7c;
border-radius:3px; /* Standart için oval cerceve */
-moz-border-radius:3px; /* Firefox için oval cerceve */
-webkit-border-radius:3px; /* Safari ve Chrome için ovalcerceve */
box-sizing: border-box;
}
#sorucevap .ycevap{
display:none;
padding-bottom:20px;
font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
font-size:1rem;
color:#1c1c1c;
word-wrap:break-word;
border-bottom: 1px solid #dddddd;
box-sizing: border-box;
}
/* ################# Sayfalama css kodlari ##################################################################################### */
.sayfalar a:link {
background:#40a6ce;
padding:3px 10px 3px 10px; /* Aciklama: padding: [Ã¼st] [sag] [alt] [sol] */
color:#FFFFFF;
font-size:15px;
text-decoration:none;
border-radius:3px; /* Standart */
-moz-border-radius:3px; /* Firefox */
-webkit-border-radius:3px; /* Safari ve Chrome */
}
.sayfalar a:visited {
background:#40a6ce;
padding:3px 10px 3px 10px; /* Aciklama: padding: [Ã¼st] [sag] [alt] [sol] */
color:#FFFFFF;
font-size:15px;
text-decoration:none;
border-radius:3px; /* Standart */
-moz-border-radius:3px; /* Firefox */
-webkit-border-radius:3px; /* Safari ve Chrome */
}
.sayfalar a:hover {
background:#e6477f;
padding:3px 10px 3px 10px; /* Aciklama: padding: [Ã¼st] [sag] [alt] [sol] */
color:#FFFFFF;
font-size:15px;
text-decoration:solid;
border-radius:3px; /* Standart */
-moz-border-radius:3px; /* Firefox */
-webkit-border-radius:3px; /* Safari ve Chrome */
}
.secilensayfa {
font-size:15px;
background:#ddd;
padding:3px 10px 3px 10px; /* Aciklama: padding: [Ã¼st] [sag] [alt] [sol] */
border-radius:3px; /* Standart */
-moz-border-radius:3px; /* Firefox */
-webkit-border-radius:3px; /* Safari ve Chrome */
}
/* #### Uyari Kutulari ###########################################################################################*/
.yesilkutu {
margin:0 auto;
background:#bcee68;
border:#a2cd5a 1px dotted;
text-align:center;
padding:10px;
font-size:1rem;
font-weight: 400;
box-sizing: border-box;
}

.sarikutu {
margin:0 auto;
background:#fff68f;
border:#cdbe70 1px dotted;
text-align:center;
padding:10px;
font-size:1rem;
font-weight: 400;
box-sizing: border-box;
}

.kirmizikutu {
margin:0 auto;
background:#f82456;
border:#b22222 1px dotted;
text-align:center;
padding:10px;
color:#FFFFFF;
font-size:1rem;
font-weight: 400;
box-sizing: border-box;
}

.mavikutu {
margin:0 auto;
background:#b0e2ff;
border:#8db6cd 1px dotted;
text-align:center;
padding:10px;
font-size:1rem;
font-weight: 400;
box-sizing: border-box;
}

.uyarikapat{
float:right;
font-size:15pt;
color: #fff;
text-shadow: 0 1px 1px #111111; /* 1.deger saga sola 2.deger yukari asagi 3.deger bulaniklik */
font-weight: bold;
cursor: pointer;
clear:both;
}
/* ################# Footer alani ################### */
@media screen and (min-width: 851px) { /* bilgisayar */
.footer{
margin:0 auto;
width:90%;
padding:30px 10px;
box-sizing: border-box;
background:rgba(72, 169, 208, 0.80);
border:#61afce 1px solid;
border-bottom-left-radius:5px; /* Standart */
border-bottom-right-radius:5px; /* Standart */
-moz-border-bottom-left-radius:5px; /* Firefox */
-moz-border-bottom-right-radius:5px; /* Firefox */
-webkit-border-bottom-left-radius:5px; /* Safari ve Chrome */
-webkit-border-bottom-right-radius:5px; /* Safari ve Chrome */
font-size:0.80rem;
color:#fff;
	}
}
@media screen and (max-width: 850px) { /* mobil */
.footer{
	margin:0 auto;
	width:98%;
	padding:15px;
box-sizing: border-box;
background:rgba(72, 169, 208, 0.80);
border:#61afce 1px solid;
border-bottom-left-radius:5px; /* Standart */
border-bottom-right-radius:5px; /* Standart */
-moz-border-bottom-left-radius:5px; /* Firefox */
-moz-border-bottom-right-radius:5px; /* Firefox */
-webkit-border-bottom-left-radius:5px; /* Safari ve Chrome */
-webkit-border-bottom-right-radius:5px; /* Safari ve Chrome */
font-size:0.80rem;
color:#fff;
	}
}
.footer a{color:#fff;}