@charset "utf-8";

/*	MAIN ELEMENTS

================================================================================================================================== */

* {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html,
body {
  font-size: 1rem;
  height: 100%;
}

body {
  min-height: 100%;
  color: #414141;
  font-family: "Boston";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  clear: both;
  font-weight: bold;
}

h1 {
  margin: 1.4rem 0;
  font-size: 2rem;
}

h2 {
  margin: 1.2rem 0;
  font-size: 1.8rem;
}

h3 {
  margin: 1rem 0;
  font-size: 1.6rem;
}

h4 {
  margin: 0.8rem 0;
  font-size: 1.4rem;
}

h5 {
  margin: 0.6rem 0;
  font-size: 1.2rem;
}

h6 {
  margin: 0.6rem 0;
  font-size: 1rem;
}

a {
  color: inherit;
  transition: all linear 0.3s;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 1.2rem;
}

span#q {
  display: none !important;
}

/*	GENERAL STYLES

================================================================================================================================== */

.list-inline {
  margin: 0;
}

.list-inline li {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.list-inline li:nth-child(n + 2) {
  padding-left: 15px;
}

.list-inline li:nth-child(n + 2):before {
  content: "|";
  float: left;
  margin: 6px 0 0 -10px;
  pointer-events: none;
}

.box-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.box-image img {
  position: absolute !important;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  z-index: 0 !important;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  margin: auto;
  transition: 200ms;
}

.box-image-fit img {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
}

.box-image-zoom:hover img {
  transform: scale(1.05);
}

.box-image-icon {
}

.box-image-icon:hover:before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4);
}

.box-image-icon:hover:after {
  content: "\f00e";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  line-height: 1;
  margin: -15px 0 0 -15px;
  color: #fff;
  font-family: "FontAwesome";
  font-size: 30px;
}

.color-fff {
  color: #fff;
}

.color-000 {
  color: #000;
}

.bg-fff {
  background-color: #fff;
}

.bg-000 {
  background-color: #000;
}

.link-phone-number {
  cursor: default;
}

label.form-label {
  line-height: 1;
  padding-left: 20px;
  cursor: pointer;
  font-weight: normal;
}

label.form-label input {
  display: none;
}

label.form-label input + span {
  float: left;
  width: 16px;
  height: 16px;
  margin: 0 0 0 -15px;
}

label.form-label input + span:before {
  font-family: "FontAwesome";
}

label.form-checkbox input[type="checkbox"] + span:before {
  content: "\f096";
}

label.form-checkbox input[type="checkbox"]:checked + span:before {
  content: "\f046";
}

label.form-radio input[type="radio"] + span:before {
  content: "\f10c";
}

label.form-radio input[type="radio"]:checked + span:before {
  content: "\f192";
}

ul.list-custom {
  margin-bottom: 30px;
}

ul.list-custom li {
  padding: 0 0 5px 23px;
}

ul.list-custom li:before {
  content: "\f00c";
  float: left;
  margin: 2px 0 0 -23px;
  font-family: "FontAwesome";
}

/*	HEADER 

================================================================================================================================== */

header {
  border-bottom: 10px solid #000;
  height: 80px;
  position: relative;
  z-index: 999;
}

header .logo {
  padding-top: 30px;
  position: relative;
  z-index: 999;
  display: inline-block;
}

header #main-menu,
header .menu {
  padding-top: 50px;
}

header .menu a {
  color: #fff;
  font-size: 30px;
  display: inline-block;
  background-color: #2cbbb1;
  width: 46px;
  height: 46px;
  line-height: 48px;
  text-align: center;
}

header .fixed-logo {
  display: none;
}

header.header-fixed .fixed-logo {
  position: fixed;
  top: 5%;
  z-index: 999;
  left: 10%;
  display: inline-block;
}

header.header-fixed .menu {
  position: fixed;
  top: 0%;
  z-index: 999;
  right: 17.4%;
  display: inline-block;
}

header .social a {
  color: #000;
  font-size: 24px;
  margin: 14px 5px 0;
  display: inline-block;
}

header .social a:hover {
  color: #2cbbb1;
}

header .lang a {
  color: #000;
  margin-top: 5px;
  display: inline-block;
  padding: 5px 5px 4px 3px;
  font-size: 14px;
  font-weight: 700;
}

header .lang a:hover,
header .lang a.active {
  color: #2cbbb1;
}

/*Menu*/

.overlay {
  z-index: 9999;
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(44, 187, 177, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.overlay .closebtn {
  padding: 0;
  position: absolute;
  top: 50px;
  right: 17.7%;
  font-size: 40px;
  color: #2cbbb1;
  background-color: #fff;
  width: 46px;
  height: 46px;
  line-height: 48px;
  text-align: center;
}

.at-resp-share-element .at-share-btn {
  background-color: #000 !important;
}
.at-resp-share-element .at-share-btn:hover {
  background-color: #2cbbb1 !important;
}
.at-resp-share-element .at-share-btn .at-icon-wrapper,
.at-resp-share-element .at-share-btn .at-icon-wrapper .at-icon {
  width: 24px !important;
  height: 24px !important;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.section-menu {
  background-color: #333;
}

.section-menu .container {
}

.section-slider {
  height: 850px;
  position: relative;
}

.section-slider .slider-item {
  font-size: 44px;
  line-height: 44px;
  color: #000;
  font-weight: 300;
}

.section-slider .slider-item span {
  display: block;
  font-size: 30px;
}

.section-slider .scroll-down {
  z-index: 999;
  position: absolute;
  bottom: -7px;
  width: 100%;
  text-align: center;
}

.section-slider .scroll-down a {
  overflow: hidden;
  width: 160px;
  height: 95px;
  line-height: 95px;
  display: inline-block;
  color: #2db5ae;
  padding: 0rem 1rem;
  font-size: 130px;
}

.section-slider .scroll-down a .icofont {
  font-size: 100px;
  line-height: 95px;
}

/*	PAGE-CLASSES

================================================================================================================================== */

/* Genel section wrapper stilleri */

section {
  padding: 0 0 0px;
}

section .container {
}

/* home */

.section-home {
}

/*Content*/

section.content {
}

section.content.us .details h2 {
  font-size: 30px;
}

section.content.us .details p {
  font-size: 24px;
  line-height: normal;
  font-weight: 300;
}
section.content.blog .details h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 15px;
}
section.content.blog .details h3 {
  color: #2cbbb1;
}

section.content.blog .details p {
  font-size: 24px;
  font-weight: 300;
  color: #000;
  line-height: normal;
}

section.content.blog .sidebar .item {
  border-bottom: 2px solid #000;
}

section.content.blog .sidebar .item p {
  line-height: normal;
  margin-bottom: 0;
  font-size: 18px;
}

#wrapper {
  -moz-transition: -moz-filter 0.35s ease, -webkit-filter 0.35s ease, opacity 0.375s ease-out;
  -webkit-transition: -webkit-filter 0.35s ease, -webkit-filter 0.35s ease, opacity 0.375s ease-out;
  -ms-transition: -ms-filter 0.35s ease, -webkit-filter 0.35s ease, opacity 0.375s ease-out;
  transition: filter 0.35s ease, -webkit-filter 0.35s ease, opacity 0.375s ease-out;
  position: relative;
}

#wrapper.is-transitioning {
  opacity: 0;
}

#wrapper > * > .inner {
  padding: 4em 0 2em 0;
  margin: 0 auto;
  max-width: 65em;
  width: calc(100% - 6em);
}

/*Contact*/

.section-contact {
  height: 550px;
}

.section-contact .details {
  font-size: 30px;
  line-height: 60px;
  color: #000;
  font-weight: 300;
}

section.contact .title h1 {
  font-size: 36px;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  display: inline-block;
}

section.contact .title {
  border-bottom: 5px solid #000;
}

section.contact .form {
  background-color: #2dbbb1;
  color: #fff;
}

section.contact .form label {
  font-size: 26px;
  font-weight: 300;
}

section.contact .form .form-control {
  border-radius: 0;
  border: 0;
  font-size: 18px;
}

.google-maps {
  display: block;
  position: relative;
}

.google-maps iframe {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.google-maps a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

/* Main */

section.main {
  line-height: normal;
  display: block;
  width: 100%;
  height: 100%;
}

section.main .items {
  display: inline-block;
  width: 100%;
  height: 100%;
}

section.main .items .item {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-size: cover;
  width: 100%;
  padding: 5rem 0;
  display: inline-block;
  background-position: center;
}

section.main .items a {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
}

section.main .items a:hover .item {
  -ms-transform: scale(1.1s);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

section.main .items .item:hover h2 {
  opacity: 1;
  position: relative;
  top: -28px;
}

section.main .items .item:hover .icofont {
  opacity: 1;
}

section.main .items .item h2 {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #000;
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 0px;
  opacity: 0;
  transition: all linear 0.3s;
}

section.main .items .item.color-fff h2 {
  color: #fff;
}

section.main .items .item h2 > span {
  font-weight: 700;
  display: block;
}

section.main .items .icofont {
  color: #fff;
  font-size: 48px;
  display: inline-block;
  opacity: 0;
}

section.main .items .icofont:hover {
  color: #000;
}

section.main a.read-more {
  width: auto;
  font-size: 16px;
  padding: 12px 20px 10px;
  border: 2px solid #000;
  color: #000;
  line-height: normal;
  font-weight: 600;
}

section.main a.read-more:hover {
  border-color: #2cbbb1;
  color: #2cbbb1;
}

/* icerik */

section.content {
  min-height: 500px;
}
section.content .details .works h4 {
  font-weight: 300;
}
section.content .details .works h3,
section.content .details .works h4 {
  font-size: 48px;
  color: #000;
  margin: 0;
}
section.content .details .works h3 {
  margin-bottom: 20px;
}
section.content .details .works a {
  position: relative;
  display: inline-block;
}
section.content .details .works a:hover:before {
  opacity: 1;
}
section.content .details .works a:before {
  transition: all linear 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: "FontAwesome";
  content: "\f01d";
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 60px;
  left: 0;
  right: 0;
  padding-top: 24%;
  color: #fff;
}

section.content .details-us .row img {
  transition: all linear 0.5s;
}

section.content .details-us .row:hover img {
  transform: scale(1.1);
}

section.content.works .item {
  position: relative;
  cursor: pointer;
  transition: all linear 0.3s;
}

section.content.works .item:after {
  opacity: 0;
  z-index: 98;
  transition: all linear 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
}

section.content.works .item:hover:after {
  opacity: 1;
}

section.content.works .item .desc {
  z-index: 99;
  position: absolute;
  width: 100%;
  top: 12%;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-size: 60px;
}

section.content.works .item:hover:before {
  opacity: 0;
  transition: all linear 0.3s;
}

section.content.works .item:hover .desc h2 {
  opacity: 1;
}

section.content.works .item:hover .desc a {
  opacity: 1;
}

section.content.works .item .desc h2 {
  opacity: 0;
  margin-bottom: 0;
  font-size: 44px;
  line-height: 40px;
  color: #000;
  font-weight: 300;
}

section.content.works .item .desc h2 span {
  display: block;
  font-size: 30px;
  font-weight: 700;
}

section.content.works .item .desc .icofont {
  opacity: 0;
}

section.content.works .item:hover .icofont {
  opacity: 0.7;
}

section.content.works .grid .grid-item {
  float: left;
  text-align: center;
  width: 50%;
  border: 0px;
}

section.content.works .grid .grid-item.grid-item--width2 {
  width: 100%;
}

section.content.works .grid .grid-item.grid-item--width2 .box-image {
  height: 634px;
}

section.content.works .grid .grid-item.grid-item--height3 .desc,
section.content.works .grid .grid-item.grid-item--width2 .desc {
  top: 35%;
}

section.content.works .grid .grid-item.grid-item--height2 .box-image {
  height: 317px;
}

section.content.works .grid .grid-item.grid-item--height3 .box-image {
  height: 634px;
}

/* iletisim */

section.contact .main:before {
  display: none;
}

section.contact .address {
  border-bottom: 1px solid #eaeaea;
}

section.contact .form-control {
  padding: 0.7rem 0.8rem 0.6rem;
  border-radius: 0.5rem;
}

section.contact .btn {
  animation: none;
  opacity: 1;
  text-transform: uppercase;
  background-color: #000;
  border-radius: 0.5rem;
  color: #fff;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 0.8rem 0.6rem;
}

section.contact .btn:hover {
  background-color: #fff;
  color: #000;
}

section.contact .custom-control {
  display: inline-block;
  margin: 0 1rem 1rem 0;
  color: #fff;
}

section.contact .custom-control .custom-control-label {
  line-height: 28px;
  font-size: 24px;
}

section.contact .custom-checkbox .custom-control-label::before,
section.contact .custom-checkbox .custom-control-label::after {
  border-radius: 0;
  top: 0.33rem;
}

section.contact .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #000;
}

section.contact .custom-file-label {
  font-size: 24px !important;
  height: auto;
  border-radius: 0;
  padding: 0.3rem 0.8rem 0.3rem;
  border: 0;
}

section.contact .custom-file-label:after {
  display: none;
}

section.contact .custom-file-input:focus ~ .custom-file-label {
  border: 0;
  box-shadow: none;
}

.captcha-wrapper {
  position: absolute;
  top: 1px;
  right: 5px;
  bottom: 1px;
}

.contact-info {
  margin-bottom: 20px;
  padding-left: 30px;
}

.contact-info i {
  float: left;
  width: 30px;
  margin: 2px 0 0 -30px;
  text-align: center;
}

.google-map {
  height: 600px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.gm-style-cc,
.gm-style a img {
  display: none;
}

/* ik */

.section-career {
}

/* sss */

.section-faq {
}

/* urunler */

.section-products {
}

/* haberler */

.section-news {
}

/* 404 */

.section-404 {
  text-align: center;
}

.section-404 h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.section-404 p {
  margin-bottom: 20px;
}

.section-404 img {
  margin-bottom: 80px;
}

/*	FOOTER

================================================================================================================================== */

footer {
  background-color: #000;
  color: #fff;
}

footer .container {
}

footer .title {
  margin-bottom: 1.5rem;
}

footer .menu li {
  line-height: 1.8rem;
}

footer .menu li a:hover {
  color: #fff;
}

footer .border-right {
  border-right: 1px solid #363636 !important;
}

footer .social .list-inline li:nth-child(n + 2):before {
  display: none;
}

footer .social .list-inline li a {
  font-size: 20px;
}

footer .social .list-inline li a:hover {
  opacity: 0.5;
}

footer .footer-post {
  color: #000;
  background-color: #fff;
  font-size: 1rem;
}

.egegen {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 40px;
  overflow: hidden;
}

.egegen .before,
.egegen .after {
  position: absolute;
  left: 0px;
  right: 0px;
  height: 100%;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  display: block;
}

.egegen .before {
  top: 0%;
}

.egegen .after {
  top: 100%;
}

.egegen:hover .before {
  top: -100%;
}

.egegen:hover .after {
  top: 0%;
}

.egegen .after svg {
  width: 100%;
  height: 100%;
} /* egegen logosu boyutları */

.egegen .egegen-logo path {
  fill: #3c3c3b !important;
} /* egegen logosu rengi */

.egegen .before svg {
  width: 100%;
  height: 100%;
} /* oscar logosu boyutları */

.egegen .oscar-logo path {
  fill: #fff !important;
} /* oscar logosu rengi */

.back-to-top {
  position: fixed;
  bottom: 3%;
  right: 5%;
  z-index: 999;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 32px;
  opacity: 0;
  color: #fff !important;
  background-color: #666;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  pointer-events: none;
  transition: 150ms;
}

.back-to-top.active {
  opacity: 0.6;
  pointer-events: inherit;
}

.back-to-top.active:hover {
  opacity: 1;
  background-color: rgba(44, 187, 177, 0.5);
}

/*  MEDIA QUERIES (ENABLE WHEN RESPONSIVE)

================================================================================================================================== */

/* XLG Desktop */

@media (min-width: 1440px) {
}

/* XLG Desktop */

@media (max-width: 1539px) {
  .section-slider {
    height: auto;
  }

  section.content.works .item .desc h2 {
    font-size: 40px;
  }

  section.content.works .grid .grid-item.grid-item--width2 .box-image {
    height: 470px;
  }

  section.content.works .grid .grid-item.grid-item--height2 .box-image {
    height: 235px;
  }

  section.content.works .grid .grid-item.grid-item--height3 .box-image {
    height: 475px;
  }
}

/* LG Desktop */

@media (min-width: 1200px) and (max-width: 1439px) {
  .section-slider {
    height: auto;
  }

  section.contact .custom-control .custom-control-label {
    font-size: 22px;
  }

  section.content.works .grid .grid-item.grid-item--width2 .box-image,
  section.content.works .grid .grid-item.grid-item--height3 .box-image {
    height: 420px;
  }

  section.content.works .grid .grid-item.grid-item--height2 .box-image {
    height: 210px;
  }

  section.content.works .item .desc {
    top: 8%;
  }
  section.content.works .item .desc h2 {
    line-height: 36px;
  }
  section.content.works .item .desc {
    font-size: 40px;
  }
}

/* Desktop */

@media (min-width: 992px) and (max-width: 1199px) {
  .overlay .closebtn {
    right: 18%;
  }

  section.content.works .grid .grid-item.grid-item--width2 {
    width: 100%;
  }

  section.content.works .grid .grid-item {
    width: 50%;
  }

  section.content.works .grid .grid-item.grid-item--width2 .box-image,
  section.content.works .grid .grid-item.grid-item--height3 .box-image {
    height: 340px;
  }

  section.content.works .grid .grid-item.grid-item--height2 .box-image {
    height: 170px;
  }

  section.content.works .item .desc {
    top: 5%;
  }
  section.content.works .item .desc h2 {
    line-height: 32px;
    font-size: 30px;
  }
  section.content.works .item .desc {
    font-size: 36px;
  }
}

/* Tablet and below */

@media (max-width: 991px) {
  .section-slider {
    height: auto;
  }

  .overlay .closebtn {
    right: 18%;
  }

  section.content.works .item .desc h2 span {
    font-size: 22px;
  }

  section.content.works .grid .grid-item.grid-item--width2 {
    width: 100%;
  }

  section.content.works .grid .grid-item {
    width: 50%;
  }

  section.content.works .grid .grid-item.grid-item--width2 .box-image,
  section.content.works .grid .grid-item.grid-item--height3 .box-image {
    height: 250px;
  }

  section.content.works .grid .grid-item.grid-item--height2 .box-image {
    height: 125px;
  }

  section.content.works .item .desc {
    top: 3%;
  }
  section.content.works .item .desc h2 {
    line-height: 22px;
    font-size: 22px;
  }
  section.content.works .item .desc {
    font-size: 26px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
}

/* All Mobile */

@media (max-width: 767px) {
  .overlay-content {
    top: 15%;
  }

  .overlay .closebtn {
    right: 18%;
  }

  section.main .items .item {
    background-position: center;
    padding: 3rem;
  }

  .section-slider .slider-item {
    font-size: 48px;
  }

  section.main .items .item h2 {
    font-size: 36px;
  }

  .section-contact .details {
    font-size: 24px;
  }

  .section-contact {
    height: 450px;
  }

  .section-slider {
    height: 600px;
  }

  section.content.works .item .desc h2 {
    font-size: 24px;
    line-height: 32px;
  }

  section.content.works .item .desc h2 span {
    font-size: 22px;
  }

  section.content.works .grid .grid-item.grid-item--width2 {
    width: 100%;
  }

  section.content.works .grid .grid-item {
    width: 50%;
  }

  section.content.works .grid .grid-item.grid-item--width2 .box-image,
  section.content.works .grid .grid-item.grid-item--height3 .box-image {
    height: 370px;
  }
  section.content.works .grid .grid-item.grid-item--height2 .box-image {
    height: 185px;
  }
  section.content .details .works br {
    display: none;
  }
  section.content.works .item .desc,
  section.content.works .grid .grid-item.grid-item--height3 .desc,
  section.content.works .grid .grid-item.grid-item--width2 .desc {
    top: 20%;
  }
  section.content.works .item:after {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
  }
  section.main .items .item h2,
  section.main .items .icofont,
  section.content.works .item .desc h2,
  section.content.works .item .desc .icofont {
    opacity: 1;
  }
}

/* XS Mobile */

@media (min-width: 540px) and (max-width: 767px) {
}

/* XXS Mobile */

@media (max-width: 539px) {
  .overlay .closebtn {
    right: 27%;
  }
  section.content.works .grid .grid-item {
    width: 100%;
  }
  section.content.works .grid .grid-item.grid-item--width2 .box-image,
  section.content.works .grid .grid-item.grid-item--height3 .box-image {
    height: 240px;
  }
  section.content.works .grid .grid-item.grid-item--height2 .box-image {
    height: 240px;
  }
  .section-slider {
    height: 600px;
  }
  header .logo {
    padding-top: 42px;
  }
}

/* Retina */

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2/1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
}

/*	MODERNIZR FIXES (CROSS-BROWSER)

================================================================================================================================== */

.lt-ie9 .container {
} /* ie less than 9 */

.chrome .container {
} /* chrome tarayıcı */

/*  TEXT SELECTION COLOR

================================================================================================================================== */

::selection {
  background: #bebebe;
  color: #fff;
}

::-moz-selection {
  background: #bebebe;
  color: #fff;
}

::-webkit-selection {
  background: #bebebe;
  color: #fff;
}

::-ms-selection {
  background: #bebebe;
  color: #fff;
}

::-o-selection {
  background: #bebebe;
  color: #fff;
}

/*  PLACEHOLDER COLOR

================================================================================================================================== */

::-webkit-input-placeholder {
  color: #ababab !important;
  opacity: 1;
}

::-moz-placeholder {
  color: #ababab !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ababab !important;
  opacity: 1;
}

input:-moz-placeholder {
  color: #ababab !important;
  opacity: 1;
}

:disabled::-webkit-input-placeholder {
  opacity: 0.5;
}

:disabled::-moz-placeholder {
  opacity: 0.5;
}

:disabled:-ms-input-placeholder {
  opacity: 0.5;
}

:disabled:-moz-placeholder {
  opacity: 0.5;
}
