@import url("https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700;800&display=swap");
html {
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  padding: 0;
  background: #000;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  font-family: "Sarabun", sans-serif;
}
a {
  text-decoration: none;
  color: unset;
}
.hidden-bot {
  display: none;
}
.space {
  padding: 150px;
}
.space.blog-page {
  padding: 300px;
}
#header {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100px;
}
#header .header-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  height: 100%;
}
.header-container .logo {
  width: fit-content;
  line-height: 0;
}
.header-container .logo {
  z-index: 99999;
}
.header-container .logo a img {
  width: 185px;
  margin-top: 5px;
}
#menu-button {
  width: 60px;
  height: 45px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 99999;
}
#menu-button.desktop {
  display: block;
}
#menu-button.mobile {
  display: none;
}
#menu-button span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#menu-button span:nth-child(1) {
  top: 0px;
}

#menu-button span:nth-child(2) {
  top: 18px;
}

#menu-button span:nth-child(3) {
  top: 36px;
}

#menu-button.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#menu-button.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#menu-button.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.fixed-objects.left img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.fixed-objects.right img {
  position: absolute;
  right: -300px;
  bottom: 0;
  top: 0;
  z-index: 1;
  height: 100%;
}
/* .fixed-objects.left img.scrolling, .fixed-objects.right img.scrolling {
  z-index: -1;
} */
#menu {
  position: absolute;
  right: -634px;
  top: 0;
  bottom: 0;
  height: 938px;
  width: 634px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: url("img/menu-bg.png");
  display: flex;
  justify-content: flex-start;
  padding-top: 120px;
  z-index: 2;
  flex-direction: column;
}
#menu.desktop {
  display: flex;
}
#menu.mobile {
  display: none;
}
#menu.open {
  right: -170px;
}
#menu .menu-container {
  width: 100%;
  height: fit-content;
  padding: 0 10px;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
#menu .menu-container a {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #1b1b1b;
}
/* #menu .menu-container a.active {
  border-bottom: 3px solid #fff;
}
#menu .menu-container a:hover {
  border-bottom: 3px solid #fff;
} */
.menu-container a:first-child {
  margin-left: 63px;
}
.menu-container a:first-child span {
  margin-left: 8px;
}
.menu-container a:nth-child(2) {
  margin-left: 73px;
}
.menu-container a:nth-child(3) {
  margin-left: 85px;
}
.menu-container a:nth-child(4) {
  margin-left: 98px;
}
.menu-container a:nth-child(5) {
  margin-left: 110px;
}
.menu-container .lang-selector {
  color: #fff;
  font-size: 48px;
  margin-top: 50px;
  margin-left: 150px;
  display: none;
}
.menu-container .lang-selector a {
  margin-left: 0;
}
.social-media-menu {
  display: flex;
  flex-direction: row;
  margin-left: 175px;
}
.social-media-menu a {
  margin: 10px;
}
.social-media-menu a:first-child {
  margin-left: 0;
}
.social-media-menu a i {
  font-size: 50px;
  color: #c5c5c5;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.social-media-menu a i:hover {
  color: #fff;
}
.css-typing {
  margin-left: 20px;
  margin-top: 30px;
}
.css-typing p {
  border-right: 10px solid #fff;
  font-family: "Sarabun", sans-serif;
  font-weight: 500;
  font-size: 40px;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  margin: 0;
}
.css-typing p:nth-child(1) {
  width: 17.5em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(2) {
  width: 11.5em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(3) {
  width: 14em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  margin-top: 30px;
}
.css-typing p:nth-child(4) {
  width: 11em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(5) {
  width: 11em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  margin-top: 30px;
}
.css-typing p:nth-child(6) {
  width: 22em;
  opacity: 0;
  -webkit-animation: type2 1.5s steps(40, end);
  animation: type2 1.5s steps(40, end);
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(7) {
  width: 21em;
  opacity: 0;
  -webkit-animation: type2 1.5s steps(40, end);
  animation: type2 1.5s steps(40, end);
  -webkit-animation-delay: 8.5s;
  animation-delay: 9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(8) {
  width: 19.5em;
  opacity: 0;
  -webkit-animation: type2 1.5s steps(40, end);
  animation: type2 1.5s steps(40, end);
  -webkit-animation-delay: 10.5s;
  animation-delay: 10.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(9) {
  width: 13.5em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(10) {
  width: 13.5em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 21s;
  animation-delay: 21s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(11) {
  width: 13.5em;
  opacity: 0;
  -webkit-animation: type2 1s steps(40, end);
  animation: type2 1s steps(40, end);
  -webkit-animation-delay: 23s;
  animation-delay: 23s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.css-typing p:nth-child(7) span {
  padding-bottom: 2px;
  border-bottom: 3px solid #fff;
  line-height: 1.5;
}
@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 2px solid #fff;
  }
  100% {
    opacity: 1;
    border: none;
  }
}
@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 2px solid #fff;
  }
  100% {
    opacity: 1;
    border: none;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}
.css-typing.desktop {
  display: block;
}
.css-typing.mobile {
  display: none;
}
.biz-kimiz-entry {
  color: #fff;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 45px;
  margin-top: 10px;
}
.biz-kimiz-entry.mobile {
  display: none;
}
.biz-kimiz-entry p {
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  border-right: 2px solid #fff;
}
.biz-kimiz-entry p:first-child {
  width: 12.8em;
  opacity: 0;
  -webkit-animation: type2 1.5s steps(100, end);
  animation: type2 1.5s steps(100, end);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.biz-kimiz-entry p:nth-child(2) {
  width: 27.5em;
  opacity: 0;
  -webkit-animation: type2 2.5s steps(100, end);
  animation: type2 2.5s steps(100, end);
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.biz-kimiz-entry p:last-child {
  width: 30.5em;
  opacity: 0;
  -webkit-animation: type2 2s steps(100, end);
  animation: type2 2s steps(100, end);
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.ne-yapiyoruz {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-top: 20px;
  max-height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 0;
}
.ne-yapiyoruz-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 5px;
  color: #f1f1f1;
  opacity: 0.5;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ne-yapiyoruz-title.opak {
  opacity: 1;
}
.ne-yapiyoruz-content {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #c5c5c5;
  opacity: 0.5;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ne-yapiyoruz-content.opak {
  opacity: 1;
}
.ne-yapiyoruz-content span {
  font-size: 20px;
}
.ne-yapiyoruz-content span strong {
  color: #f1f1f1;
}
.ne-yapiyoruz-title:last-child {
  --animate-delay: 5s;
}
.ne-yapiyoruz-content:last-child {
  margin-bottom: 100px;
  --animate-delay: 5s;
}
#section10 {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  width: fit-content;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
#section10.scrolled {
  display: none;
}
#section10 a {
  color: #fff;
}
#section10 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  cursor: pointer;
}
#section10 a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.ekiple-tanis-btn {
  color: #fff;
  font-size: 30px;
  display: block;
  width: fit-content;
  margin-top: 80px;
  font-weight: 500;
}
.ekip-all {
  width: 63%;
  z-index: 0;
}
.ekip-all .ekip {
  width: 22%;
  margin-top: 25px;
  min-height: 360px;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  float: left;
  margin-right: 20px;
}
a.aramiza-katil-btn {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-bottom: 1px;
  border-bottom: 2px solid #fff;
  width: fit-content;
}
.ekip img {
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.ekip .title {
  color: #000;
  padding: 5px;
}
.ekip .title .name {
  font-size: 18px;
  font-weight: 700;
}
.ekip .title .job {
  font-size: 16px;
  font-weight: 500;
}
.ekip .title .kimdir-btn {
  text-align: end;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.ekip i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px;
  display: none;
  color: #000;
  cursor: pointer;
}
.ekip .kimdir {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  display: none;
  margin-top: 10px;
}
.ekip.kimdir-acik .kimdir {
  display: block;
  padding: 5px;
}
.ekip.kimdir-acik img {
  display: none;
}
.ekip.kimdir-acik .kimdir-btn {
  display: none;
}
.ekip.kimdir-acik i {
  display: block;
}
.ekip.kimdir-acik {
  justify-content: unset;
}
.ne-yapiyoruz.z-index .ekip-all {
  z-index: 1;
}
.bizimle-calis-title {
  font-size: 30px;
  color: #fff;
  padding-left: 20px;
  font-weight: 500;
  margin-top: 40px;
}
.bizimle-calis-form {
  width: 70%;
  padding-left: 20px;
  margin-top: 30px;
}
.group {
  position: relative;
  margin-bottom: 35px;
}
.group.isim input {
  width: 575px;
}
.group.isim .bar {
  width: 575px;
}
.group.telefon input {
  width: 575px;
}
.group.telefon .bar {
  width: 575px;
}
.group.e-posta input {
  width: 575px;
}
.group.e-posta .bar {
  width: 575px;
}
.group.pozisyon input {
  width: 575px;
}
.group.konu input {
  width: 375px;
}
.group.konu .bar {
  width: 375px;
}
.group.pozisyon .bar {
  width: 575px;
}
.group.mesaj {
  margin-bottom: 0px;
}
input {
  font-size: 28px;
  padding: 10px 0px 10px 0px;
  display: block;
  width: 600px;
  border: none;
  border-bottom: 1px solid #757575;
  background: transparent;
  color: #fff;
  word-break: break-word;
}
.gonder-btn {
  width: 857px;
  display: flex;
  justify-content: flex-end;
}
input.gonder-input {
  width: fit-content;
  color: #757575;
  cursor: pointer;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
input.gonder-input:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #757575;
  color: #fff;
  font-size: 28px;
  font-family: "Sarabun", sans-serif;
  padding-left: 5px;
  width: 850px;
  resize: none;
}
textarea:focus {
  outline: none;
}
input:focus {
  outline: none;
}

/* LABEL ======================================= */
label {
  color: #999;
  font-size: 28px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
label.e-posta {
  top: -20px;
  font-size: 20px;
  color: #fff;
}

/* active state */
input:focus ~ label,
input:valid ~ label {
  top: -20px;
  font-size: 20px;
  color: #fff;
}

/* BOTTOM BARS ================================= */
.bar {
  position: relative;
  display: block;
  width: 600px;
}
.bar:before,
.bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.bar:before {
  left: 50%;
}
.bar:after {
  right: 50%;
}

/* active state */
input:focus ~ .bar:before,
input:focus ~ .bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
input:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from {
    background: #fff;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #fff;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #fff;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.maps-title {
  width: 80%;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.blog-title-general {
  width: 80%;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.maps-img {
  width: 80%;
  /* position: relative;
  z-index: 2; */
  padding-left: 20px;
}
.maps-img img {
  width: 100%;
  z-index: 2;
  border-radius: 5px;
}
.contact-address {
  font-size: 24px;
  color: #c5c5c5;
  padding-left: 20px;
  margin-top: 20px;
}
.social-media {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-left: 20px;
  margin-top: 25px;
}
.social-media a {
  margin: 10px;
}
.social-media a:first-child {
  margin-left: 0;
}
.social-media a i {
  color: #757575;
  font-size: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.social-media a i:hover {
  color: #fff;
}
.iletisim-form-title {
  font-size: 30px;
  color: #c5c5c5;
  font-weight: 500;
  width: 80%;
  padding-left: 20px;
  margin-top: 30px;
}
.iletisim-container {
  max-height: 100vh;
  overflow-y: scroll;
}
.iletisim-form {
  width: 70%;
  padding-left: 20px;
  margin-top: 30px;
}
[short] {
  grid-row: span 4;
}

[tall] {
  grid-row: span 5;
}

[taller] {
  grid-row: span 6;
}

[tallest] {
  grid-row: span 7;
}
.bg-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 155px;
  background: url("img/gradyan-bg.png");
  background-repeat: repeat;
  background-repeat-y: no-repeat;
  background-size: contain;
  z-index: 0;
}
.blog-title-general {
  width: 80%;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.blog-all {
  width: 67%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  grid-auto-rows: 50px;
  grid-gap: 10px;
  padding-left: 20px;
  max-height: 100vh;
  overflow-y: scroll;
  padding-top: 40px;
}
.blog-all::-webkit-scrollbar {
  display: none;
}
.blog-all .blog {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}
.blog .blog-title {
  font-weight: 700;
  font-size: 18px;
  margin-top: 5px;
}
.blog .blog-preview {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
.blog .blog-kunye {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.blog .blog-writer {
  font-weight: 700;
  font-size: 16px;
  margin-top: 15px;
}
.blog .blog-writer span {
  font-weight: 500;
}
.blog .blog-kunye .see-all {
  cursor: pointer;
  padding-bottom: 1px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #000;
}
.blog .blog-kunye .writing-day {
  font-size: 14px;
  font-style: italic;
  text-align: end;
}
.blog.pazarlama .blog-title {
  margin-top: 10px;
}
.blog .blog-fullscreen {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
  height: 80vh;
  padding: 15px;
  border-radius: 5px;
  width: 80vw;
  background: #fff;
}
.blog .blog-fullscreen.open {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog i {
  display: none;
  position: absolute;
  top: 120px;
  right: 210px;
  font-size: 35px;
  line-height: 0;
  color: #000;
  z-index: 999999;
  cursor: pointer;
}
.blog i.open {
  display: block;
}
.blog-fullscreen .fullscreen-kunye {
  width: 23%;
  display: flex;
  flex-direction: column;
  border-right: 2px solid #cccccc;
  height: 100%;
}
.fullscreen-kunye .writer-photo img {
  width: 96%;
  border-radius: 5px;
}
.fullscreen-kunye .writer-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 96%;
}
.fullscreen-kunye .writer-nameJob {
  font-size: 18px;
}
.fullscreen-kunye .writer-nameJob span {
  font-weight: 700;
}
.fullscreen-kunye .write-time {
  font-size: 14px;
  font-style: italic;
}
.fullscreen-kunye .blog-smallTitle {
  margin-top: 15px;
  font-weight: 700;
  font-size: 16px;
  width: 96%;
}
.fullscreen-kunye .share-buttons {
  margin-top: 15px;
  font-weight: 600;
}
.fullscreen-kunye .share-button-row {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}
.blog-fullscreen .fullscreen-content {
  width: 76%;
  height: 100%;
  overflow-y: scroll;
}
.blog-fullscreen .fullscreen-content::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 5px;
}
.blog-fullscreen .fullscreen-content::-webkit-scrollbar {
  background-color: #fff;
  border-radius: 5px;
  width: 7px;
}
.blog-fullscreen .fullscreen-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
.blog-fullscreen .fullscreen-content .fullscreen-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 0 15px;
  padding-right: 20px;
}
.blog-fullscreen .fullscreen-content .fullscreen-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 0 15px;
  padding-right: 20px;
}
.blog-fullscreen .fullscreen-content .fullscreen-text {
  font-weight: 400;
  font-size: 18px;
  padding: 0 15px;
  padding-right: 50px;
}
.blog-fullscreen .fullscreen-content .fullscreen-text img {
  width: 50%;
  display: block;
  margin: 15px 0;
  border-radius: 5px;
}
.blog-fullscreen .fullscreen-content .fullscreen-text a {
  text-decoration: underline;
}
.twitter-share-button {
  margin-right: 10px;
}
.bg-filter {
  display: none;
  position: absolute;
  background: #000;
  z-index: 999998;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
}
.bg-filter-iletisim {
  position: absolute;
  background: #000;
  z-index: 9999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
}
.bg-filter.open {
  display: block;
}
.tesekkur-mesaji {
  background: #fff;
  color: #000;
  padding: 20px;
  font-size: 35px;
  border-radius: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vh;
  width: 30vw;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}
.referanslar-container {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1170px;
  height: 100vh;
  overflow-y: scroll;
}
.referanslar-container::-webkit-scrollbar {
  display: none;
}
.referanslar-title {
  font-size: 26px;
  color: #fff;
}
.referanslar-all {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 3fr));
  grid-gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}
.referanslar-all .referans {
  min-height: 300px;
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
}
.referanslar-all .referans img {
  width: 70%;
  margin: 0 auto;
}
.referanslar-all .referans img.small {
  width: 40%;
}
.referanslar-all .referans .referans-info {
  margin-top: 15px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.referanslar-all .referans .referans-info .alinan-hizmet {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}
.referans-info span {
  font-weight: 700;
}

@media screen and (min-width: 1921px) {
  #menu {
    height: 100%;
    background-size: cover;
  }
  #menu.open {
    right: 0px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1580px) {
  #menu.open {
    right: -250px;
  }
  .ekip-all {
    width: 68%;
  }
  .ekip-all .ekip {
    min-height: 320px;
    max-height: 320px;
  }
  .ekip .title .name {
    font-size: 17px;
  }
  .ekip .title .job {
    font-size: 15px;
  }
  .ekip.kimdir-acik .title .name {
    font-size: 16px;
  }
  .ekip .title {
    padding: 0;
  }
  .ekip.kimdir-acik .kimdir {
    padding: 0;
    overflow-y: scroll;
  }
  .ekip i {
    top: 5px;
    right: 5px;
  }
  .blog-title-general {
    font-size: 22px;
  }
  .blog .blog-preview {
    margin-top: 2px;
  }
  .blog .blog-writer {
    margin-top: 5px;
  }
  .blog i {
    right: 160px;
  }
  .fullscreen-kunye .writer-nameJob {
    font-size: 16px;
  }
  .fullscreen-kunye .write-time {
    font-size: 12px;
  }
  .fullscreen-kunye .blog-smallTitle {
    font-size: 14px;
  }
  .fixed-objects.left img {
    bottom: -50px;
  }
  .bg-smoke {
    bottom: -50px;
  }
  .blog-all {
    padding-top: 0;
  }
  .bizimle-calis-title {
    font-size: 22px;
  }
  .bizimle-calis-container {
    height: 100%;
    overflow-y: scroll;
  }
  .maps-title {
    font-size: 22px;
  }
  .contact-address {
    font-size: 18px;
  }
  .social-media a i {
    font-size: 40px;
  }
  .iletisim-form-title {
    font-size: 22px;
  }
  .referanslar-container {
    max-width: 875px;
    height: 100vh;
    overflow-y: scroll;
  }
  .referanslar-container::-webkit-scrollbar {
    display: none;
  }
  .referanslar-all .referans {
    width: 45%;
    min-height: 295px;
  }
}
@media screen and (max-width: 991px) {
  .bg-filter {
    z-index: 9999999;
  }
  #menu.mobile {
    display: flex;
  }
  #menu.desktop {
    display: none;
  }
  #menu-button.mobile {
    display: block;
  }
  #menu-button.desktop {
    display: none;
  }
  .social-media-menu {
    margin-left: 83px;
  }
  .social-media-menu a {
    margin: 5px;
  }
  .social-media-menu a i {
    font-size: 30px;
  }
  .tesekkur-mesaji {
    width: 70vw;
    height: 20vh;
    font-size: 20px;
  }
  .fixed-objects.right img {
    content: url("img/mobile-fixed-object-right.png");
    height: 100%;
    z-index: -1;
    right: 0;
  }
  .fixed-objects.left img {
    content: url("img/mobile-fixed-object-left.png");
    z-index: -1;
  }
  .bg-smoke {
    height: 100px;
    z-index: 0;
  }
  .space,
  .space.blog-page {
    padding: 70px;
  }
  .space.referans {
    padding: 100px;
  }
  .maps-img img {
    content: url("img/harita-yeni-uskudar.png");
  }
  #header {
    height: 80px;
  }
  #header .header-container {
    padding: 0;
    width: 90%;
  }
  .header-container .logo img {
    max-width: 120px;
    margin-top: 0;
  }
  #menu {
    background: url("img/mobile-menu-shape.png");
    height: 100%;
    width: 255px;
    right: -255px;
    background-size: cover;
    z-index: 99999;
  }
  #menu.open {
    right: 0;
  }
  #menu .menu-container a {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
  .menu-container a:first-child {
    margin-left: 4px;
  }
  .menu-container a:first-child span {
    margin-left: 4px;
  }
  .menu-container a:nth-child(2) {
    margin-left: 13px;
  }
  .menu-container a:nth-child(3) {
    margin-left: 17px;
  }
  .menu-container a:nth-child(4) {
    margin-left: 21px;
  }
  .menu-container a:nth-child(5) {
    margin-left: 25px;
  }
  .menu-container .lang-selector {
    margin-left: 25px;
    font-size: 21px;
    margin-top: 30px;
  }
  .menu-container .lang-selector a:nth-child(2) {
    margin-left: 0;
  }
  #menu-button {
    width: 40px;
    z-index: 9999999;
    height: 32px;
  }
  #menu-button span {
    height: 7px;
  }
  #menu-button span:nth-child(2) {
    top: 12px;
  }
  #menu-button span:nth-child(3) {
    top: 24px;
  }
  .css-typing.desktop {
    display: none;
  }
  .css-typing.mobile {
    display: block;
  }
  .css-typing {
    margin-left: 15px;
    margin-top: 20px;
  }
  .css-typing p {
    font-size: 21px;
    border-right: 2px solid #fff;
  }
  .css-typing p:nth-child(1) {
    width: 14em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(2) {
    width: 15em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(3) {
    margin-top: 15px;
    width: 14em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(4) {
    width: 11em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(5) {
    width: 11em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(6) {
    width: 11.5em;
    margin-top: 0;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(7) {
    width: 10em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(8) {
    width: 12.8em;
    margin-top: 15px;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 11s;
    animation-delay: 11s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(9) {
    width: 8em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(10) {
    width: 10em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 13s;
    animation-delay: 13s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .css-typing p:nth-child(11) {
    width: 10.5em;
    -webkit-animation: type2 1s steps(40, end);
    animation: type2 1s steps(40, end);
    -webkit-animation-delay: 14s;
    animation-delay: 14s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  @keyframes type2 {
    0% {
      width: 0;
    }
    1% {
      opacity: 1;
    }
    99.9% {
      border-right: 2px solid #fff;
    }
    100% {
      opacity: 1;
      border: none;
    }
  }
  @-webkit-keyframes type2 {
    0% {
      width: 0;
    }
    1% {
      opacity: 1;
    }
    99.9% {
      border-right: 2px solid #fff;
    }
    100% {
      opacity: 1;
      border: none;
    }
  }
  .ne-yapiyoruz {
    padding: 0;
    width: 90%;
    margin: 10px auto 0 auto;
    height: 100vh;
    display: block;
  }
  .biz-kimiz-entry {
    display: none;
  }
  .biz-kimiz-entry.mobile {
    display: block;
    font-size: 18px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .biz-kimiz-entry.mobile p:first-child {
    width: 12.8em;
    opacity: 0;
    -webkit-animation: type2 1.5s steps(100, end);
    animation: type2 1.5s steps(100, end);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .biz-kimiz-entry.mobile p:nth-child(2) {
    width: 17em;
    opacity: 0;
    -webkit-animation: type2 1.5s steps(100, end);
    animation: type2 1.5s steps(100, end);
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .biz-kimiz-entry.mobile p:nth-child(3) {
    width: 17.2em;
    opacity: 0;
    -webkit-animation: type2 1.5s steps(100, end);
    animation: type2 1.5s steps(100, end);
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .biz-kimiz-entry.mobile p:nth-child(4) {
    width: 17.7em;
    opacity: 0;
    -webkit-animation: type2 1.5s steps(100, end);
    animation: type2 1.5s steps(100, end);
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .biz-kimiz-entry.mobile p:last-child {
    width: 6em;
    opacity: 0;
    -webkit-animation: type2 0.5s steps(100, end);
    animation: type2 0.5s steps(100, end);
    -webkit-animation-delay: 7.5s;
    animation-delay: 7.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .ne-yapiyoruz-title {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .ne-yapiyoruz-content {
    font-size: 18px;
    width: 100%;
    margin-bottom: 10px;
  }
  .ne-yapiyoruz-content span {
    font-size: 16px;
  }
  .ekiple-tanis-btn {
    font-size: 25px;
    margin-top: 0;
  }
  .ekip-all {
    width: 100%;
    margin-top: 0;
    z-index: 0;
  }
  .ekip-all .ekip {
    width: 100%;
    min-height: 140px;
    margin-top: 15px;
    justify-content: unset;
    flex-direction: row;
    align-items: flex-start;
  }
  .ekip img {
    width: 40%;
  }
  .ekip .title {
    text-align: left;
    margin-left: 10px;
    width: 100%;
    padding: 0;
  }
  .ekip .title .job {
    margin-top: 0;
    font-size: 15px;
  }
  .ekip .title div {
    margin-top: 5px;
  }
  .ekip .title .name {
    font-size: 16px;
  }
  .ekip .title .kimdir-btn {
    text-align: right;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  a.aramiza-katil-btn {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 100px;
    width: 70%;
    border-bottom: none;
    text-decoration: underline;
    display: block;
  }
  .ekip.kimdir-acik .title {
    text-align: left;
    margin-top: 0;
  }
  .ekip.kimdir-acik .title div {
    margin-top: 0;
  }
  .ekip.kimdir-acik {
    width: 100%;
    flex-direction: column;
  }
  .ekip.kimdir-acik .title {
    margin-left: 5px;
  }
  .bizimle-calis-title {
    font-size: 18px;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .bizimle-calis-form {
    width: 90%;
    margin: 30px auto 0 auto;
    padding-left: 0;
  }
  .group {
    position: relative;
    margin-bottom: 25px;
  }
  .group.isim input {
    width: 100%;
  }
  .group.isim .bar {
    width: 100%;
  }
  .group.telefon input {
    width: 100%;
  }
  .group.telefon .bar {
    width: 100%;
  }
  .group.e-posta input {
    width: 100%;
  }
  .group.e-posta .bar {
    width: 100%;
  }
  .group.pozisyon input {
    width: 100%;
  }
  .group.pozisyon .bar {
    width: 100%;
  }
  .group.konu input {
    width: 100%;
  }
  .group.konu .bar {
    width: 100%;
  }
  label {
    font-size: 20px;
  }
  input {
    font-size: 20px;
  }
  textarea {
    font-size: 20px;
    width: 100%;
  }
  .gonder-btn {
    width: 100%;
  }
  .group.mesaj {
    margin-bottom: 10px;
  }
  .maps-title {
    width: 90%;
    padding: 0;
    font-size: 18px;
    margin: 0 auto 15px auto;
  }
  .blog-title-general {
    width: 90%;
    padding: 0;
    font-size: 18px;
    margin: 0 auto 15px auto;
  }
  .maps-img {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .iletisim-form-title {
    font-size: 18px;
    width: 90%;
    padding: 0;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .iletisim-form {
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
    padding-bottom: 100px;
  }
  .blog-all {
    width: 90%;
    padding: 0;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    height: 85vh;
  }
  .blog-all .blog {
    padding: 15px;
  }
  .blog .blog-preview {
    overflow: hidden;
    margin-top: 5px;
  }
  .blog .blog-title {
    font-size: 16px;
  }
  .blog .blog-kunye {
    align-items: center;
    padding: 10px 0;
  }
  .blog .blog-writer {
    margin-top: 0;
  }
  .blog i {
    font-size: 45px;
    top: 35px;
    right: 12px;
    color: #000;
    z-index: 99999999;
  }
  .blog .blog-fullscreen {
    height: 80vh;
    width: 85vw;
    z-index: 99999998;
    padding: 10px;
  }
  .blog-fullscreen .fullscreen-kunye {
    width: 100%;
  }
  .blog-fullscreen .fullscreen-content {
    width: 100%;
    height: unset;
  }
  .fullscreen-kunye .writer-photo img {
    width: 100%;
  }
  .fullscreen-kunye .writer-photo {
    width: 30%;
  }
  .blog-fullscreen .fullscreen-kunye {
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    border-right: none;
    padding-left: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 15px;
  }
  .fullscreen-kunye .writer-info {
    flex-direction: column;
    width: fit-content;
    justify-content: space-between;
    margin-left: 10px;
    height: fit-content;
    align-items: baseline;
  }
  .writer-info .write-time {
    margin-top: 10px;
  }
  .fullscreen-kunye .writer-nameJob {
    font-size: 16px;
  }
  .fullscreen-kunye .blog-smallTitle {
    margin-top: 0px;
  }
  .fullscreen-kunye .share-buttons {
    margin-top: 5px;
  }
  .blog .blog-fullscreen.open {
    overflow-y: scroll;
    border-bottom: 15px solid #fff;
  }
  .blog-fullscreen .fullscreen-content .fullscreen-title {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .blog-fullscreen .fullscreen-content .fullscreen-subtitle {
    font-size: 18px;
    padding-left: 10px;
  }
  .blog-fullscreen .fullscreen-content .fullscreen-text {
    font-size: 16px;
    padding-left: 10px;
  }
  .blog-fullscreen .fullscreen-content .fullscreen-text img {
    width: 100%;
  }
  xmp {
    white-space: pre-line;
    width: 93%;
    margin: 0 auto;
  }
  .bizimle-calis-container {
    height: 100vh;
    overflow-y: scroll;
  }
  .space.bizimle-calis {
    padding: 100px;
  }
  .contact-address {
    font-size: 18px;
  }
  .social-media a {
    margin: 5px;
  }
  .social-media a i {
    font-size: 35px;
  }
  .iletisim-container {
    overflow-x: hidden;
  }
  .blog i.open {
    font-size: 30px;
    top: 100px;
    right: 25px;
  }
  .blog-fullscreen .fullscreen-content .fullscreen-text {
    padding-right: 20px;
  }
  .referanslar-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    height: 100vh;
    overflow-y: scroll;
    display: block;
  }
  .referanslar-title {
    font-size: 18px;
  }
  .referanslar-all {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    padding: 0;
  }
  .referanslar-all .referans {
    width: auto;
  }
  .referanslar-all .referans img {
    width: 70%;
  }
}
