/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
.copy-font {
  font-family: 'Lato', sans-serif;
}
.display-font {
  font-family: 'Rokkitt', sans-serif;
}
.background-gradient, .iscroll body {
  background: #000000 url('../img/background.png') repeat-y top center;
  /* Image gradient fallback for IE 9- */

  background: -moz-radial-gradient(center, circle cover, #2E0101 36%, #000000 100%);
  /* FF3.6+ */

  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(36%, #555), color-stop(100%, #000000));
  /* Chrome,Safari4+ */

  background: -webkit-radial-gradient(center, circle cover, #2E0101  36%, #000000 100%);
  /* Chrome10+,Safari5.1+ */

  background: -o-radial-gradient(center, ellipse cover, #2E0101 36%, #000000 100%);
  /* Opera 12+ */

  background: -ms-radial-gradient(center, ellipse cover, #2E0101 36%, #000000 100%);
  /* IE10+ */

  background: radial-gradient(center, ellipse cover, #2E0101 36%, #000000 100%);
  /* W3C */

  background-attachment: fixed;
}
/* ==========================================================================
 * @font-faces
 * ======================================================================= */
@font-face {
  font-weight: normal;
  font-style: normal;
}
/* =============================================================================
HTML5 display definitions
========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
/* =============================================================================
Base
========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  font-size: 0.875em;
  line-height: 1.5;
  background: #2a2a2a url('../img/iphone_background.jpg') repeat-y top center;
}
body,
button,
input,
select,
textarea {
	font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
	color: #333;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * ( customize the background color to match your design)
 */
::-moz-selection {
  background: #000;
  color: #cccc00;
  text-shadow: none;
}
::selection {
  background: #000;
  color: #cccc00;
  text-shadow: none;
}
/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #cccc00;
  text-decoration: none;
    border-bottom:1px dotted #000;

}
a:visited {
  color: #91912a;
}
a:hover {
  color: #ffd429;
  border-bottom:1px dotted #000;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active {
  outline: 0;
}
img {
  border: none;
}
/* =============================================================================
   Other elements
   ========================================================================== */
h1 {
  font-family: 'Rokkitt', sans-serif;
  font-size: 2em;
 
  font-weight: normal;
  
  margin: 0;
  padding: 0;
  color: #cccc00;
}
p {
  margin: 0 auto 1.5em;
}
ul {
  padding-left: 1em;
}
section h1 {
  font-size: 1.6em;
  color: #cccc00;
}
h2 {
	font-family: "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
	color: #990000;
	font-size: 1.8em;
	margin-bottom: 5px;
}

.pborder {margin-top:22px;border:5px solid #000;}
.rightm {margin-right:12px;}


/*
 * Navigation
 */
nav {
  background: #fff;
  font-family: arial;
  color: #3d3d3d;
  text-align: center;

  font-size: 1.6em;
 z-index:20;
  letter-spacing: 0px;
  line-height: 1.75;
  margin-bottom: 0.6em;
}
nav a, nav a:visited {
  display: none;
  font-weight: normal;
   border-bottom:none;
  text-decoration: none;
  color: #F1EDED;
}
nav a:hover {
  color: #ccc;
  border-bottom:none;
}
nav a.active {
  color: #FD7A00;
}
nav .tel {
  display: inline;
  color: #3d3d3d;
}
nav.mobile {
  text-align: right;
  padding: 0 .85em;
}
/* JS-enabled mobile navigation */
.mobile-menu-toggle {
  display: block;
  float: left;
  color: #3d3d3d;
}
.mobile-menu {
  background: #FFF;
  font-family: 'Rokkitt', sans-serif;
  font-size: 1.5em;
  position: absolute;
  top: 3em;
  left: 5%;
  right: 5%;
  z-index: 10;
  min-height: 9em;
  padding-bottom: 1.3em;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
}
.mobile-menu a, .mobile-menu a:visited {
  display: block;
  color: #999;
  padding: 0.1em 0.4em 0.1em 0.5em;
  letter-spacing: 0px;
  font-weight: normal;
}
.mobile-menu:after {
  content: "";
  height: 193px;
  width: 160px;
  background: url('../img/mobile-menu-background.png') no-repeat;
  position: absolute;
  bottom: -43px;
  right: -45px;
}
article {
	max-width: 900px;
	margin: auto;
	overflow: hidden;
}
article > * {
  padding: 0 1.5em;
}
article > h1 {
  height: 63px;
  margin-left: 0.35714285714285715em;
  line-height: 3em;
  text-indent: 2.2em;
  padding: 0;
}
/* Home */
.home h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  
  height: 10px; 
  margin: 0 auto 0.6071428571428571em;
}
.home h1 br {
  display: none;
}

.home p {
  font-family: 'Rokkitt', sans-serif;
  font-size: 1.2em;
  line-height:1.3em;
  text-align: left;

}
.home span {
  display: block;
}
.home .intro  {  margin-top:-15px;}

.return_to_top {
margin:4px  0 33px 0;
}
.return_to_top span a {
background-color:#cccc00;
color:#000;
padding:4px 8px 6px 8px;
border:none;
}

.iscroll .return_to_top  {display:none;}

.s2 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 0 no-repeat;
  color: #f70094;
}
.s2 section {
  margin-bottom: 1.5em;
}
.s2 section h1 {
  margin: 0 auto 0;
}
.s2 img {
  float: right;
}
.s3 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 -63px no-repeat;
  color: #3194c5;
}
.s4 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 -126px no-repeat;
  color: #ef8f1d;
}
.s5 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 -189px no-repeat;
  color: #85be41;
}


.s6 {
  position: relative;
}
.s6 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 -252px no-repeat;
  color: #e51b22;
}
.s8 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 -63px no-repeat;
  color: #3194c5;
}
.s9 > h1 {
  background: url('../img/mobile-heading-bullets.png') 0 -63px no-repeat;
  color: #3194c5;
}



/* JS Scrolling navigation */
.iscroll {


}


/*
 * Logo
 */
 
  #logo { 
 width: 267px;
 margin-left: 9px;
 z-index: 5;

}
#logo img {width:267px;}
.iscroll #logo img {width:237px;}

#logo a {border:none;}

.iscroll #logo {  position: absolute;
  top: 75px;
  left: 46%;
  width: 267px;
  margin-top: 5px;
    margin-left: -356px;
  z-index: 25;

}




.iscroll article {
  max-width: none;
  clear: both;
  position: absolute;
  overflow: visible;
}
.iscroll nav {
  position: absolute;

  left: 50%;
  font-size: 14px;
  width: auto;
  margin-left: -11em;
  margin-top:90px;
  z-index: 4;
  line-height: 3.6;
  text-align: right;
  background: url('../img/nav-background.png') repeat-x left center;
}
.iscroll nav .round-left {
  display: block;
  height: 50px;
  width: 40px;
  position: absolute;
  top: 0;
  left: -40px;
  background: url('../img/nav-sprites.png') no-repeat 0 -50px;
}
.iscroll nav .round-right {
  display: block;
  height: 50px;
  width: 40px;
  position: absolute;
  right: -40px;
  top: 0;
  background: url('../img/nav-sprites.png') no-repeat 0 0px;
}
.iscroll nav a {
  display: block;
  float: left;
  margin-left: 1em;
  position: relative;

}
.iscroll nav a.first {
  margin-left: 0;
}
.iscroll nav a.active:after {
  content: "";
  display: block;
  height: 20px;
  width: 40px;
  background: url('../img/nav-sprites.png') no-repeat 0 -100px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -20px;
}
.iscroll nav .tel {
  display: inline;
  float: none;
  margin-left: 0;
}
.iscroll #wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.iscroll #scroller {
  position: relative;
}
.iscroll .content {
  overflow: auto;
  position: relative;
  margin-bottom:14px;
}
.iscroll .home {
  width: 1200px;
  margin-top: -300px;
  margin-left: -960px;
  overflow: visible;
}


.iscroll .home > h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  width: 1220px;
  height: 1050px;
  float: left;
  margin: 0 34px 0 0;

}

.iscroll .home .intro {
  text-align: left;
    margin-top:0px;
  line-height:1.2em;
  font-size: 1.8em;
  color: #cccc00;
}
.iscroll .home .para {
  text-align: left;
  margin-top:-16px;
   font-family: 'Lato', sans-serif;
   font-size: 1.1em;
     line-height:1.6;
}

.iscroll .home > h1 br {
  display: none;
}
.iscroll .home .content {
  width: 908px;
 position: absolute;
  margin-top: 450px;
  margin-left: 780px;
}
.iscroll .home .content.js-scroll {
  width: 490px;
}


.iscroll .s2 {
  width: 1826px;
  margin-top: -340px;
  margin-left: -678px;
  overflow: visible;
}
.iscroll .s2 > h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  width: 866px;
  height: 1050px;
  background: url('../img/s2-bg.png') no-repeat;
  float: left;
  margin: 0 34px 0 0;
}
.iscroll .s2 > h1 br {
  display: none;
}
.iscroll .s2 .content {
  width: 480px;
  margin-top: 497px;
}
.iscroll .s2 .content.js-scroll {
  width: 480px;
  
}
.iscroll .s2 section {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
  width: 199px;
  /* Leave some space for the picture */

  position: relative;
  padding: 0;

}
.iscroll .s2 section h1 {
  margin: 0 auto 3px;
}

.iscroll .s4 {
  width: 950px;
  margin-top: -210px;
  margin-left: -14px;
}
.iscroll .s4 h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  width: 564px;
  height: 684px;
  background: url('../img/sukriye-yoluc.jpg') no-repeat;

  float: right;
  margin-left: 13px;
}
.iscroll .s4 h1 br {
  display: none;
}
.iscroll .s4 .content {
  float: right;
  margin-top: 370px;
  padding: 0;
  width: 356px;
}
.iscroll .s4 ul {
  margin-top: -1em;
  line-height: 1.6em;
  padding-left: 1.4em;
  margin-top:-5px;
}
.iscroll .s3 {
  height: 900px;
  width: 1200px;
  margin-top: -100px;
  margin-left: -456px;
  background: url('../img/cami-hakkinda.jpg') no-repeat;
  background-position-x: 296px;
  background-position-y: 250px;
}
.iscroll .s3 h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  background: none;
  height: 1px;
}
.iscroll .s3 h1 br {
  display: none;
}
.iscroll .s3 .content {
  margin-top:290px;
  width: 480px;
  margin-left: 370px;
}
.iscroll .s5 {
  width: 966px;
  margin-top: -325px;
  margin-left: -177px;
  position: relative;
}
.iscroll .s5 h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  margin-left: 0;
  background: url('../img/s5-bg.png') no-repeat;
  height: 1970px;
  width: 966px;
}
.iscroll .s5 h1 br {
  display: none;
}
.iscroll .s5 .content {
  position: absolute;
  top: 457px;
  left: 177px;
  width: 600px;
  height: 1500px;
  font-size: 14px;
  
}
.iscroll .s5 ul {
  margin: 0 0 1.5em;
  padding: 0;
}
.iscroll .s6 {
  width: 930px;

  margin-top: -200px;
  margin-left: -206px;
  overflow-y: hidden;
  position: relative;

}
.iscroll .s6 h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  height: 908px;
  width: 503px;
  background: url('../img/s6-bg.png') no-repeat;
  position: absolute;
  top: 0;
  left: -40px;
}
.iscroll .s6 h1 br {
  display: none;
}
.iscroll .s6 .content {
  margin-top: 350px;
  width:300px;
  margin-left: 55px;
 
  margin-right:-10px;
  float:left;
}
.iscroll .s6 .sidebar {
    margin-top: 350px;
  width:400px;
  float:right;
}
.iscroll .s8 {
  height: auto;
  width: 1200px;
  margin-top: -100px;
  margin-left: -456px;
  background: url('../img/mimari-bilgi.jpg') no-repeat;
  background-position-x: 296px;
  background-position-y: 250px;
}
.iscroll .s8 h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  background: none;
  height: 1px;
}
.iscroll .s8 h1 br {
  display: none;
}
.iscroll .s8 .content {
  margin-top:250px;
  width: 520px;
  margin-left: 507px;
}
.iscroll .s9 {
  height: 900px;
  width: 1200px;
  margin-top: -100px;
  margin-left: -456px;
  background: url('../img/sukriye-yoluc.jpg') no-repeat;
  background-position-x: 296px;
  background-position-y: 250px;
}
.iscroll .s9 h1 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
  background: none;
  height: 1px;
}
.iscroll .s9 h1 br {
  display: none;
}
.iscroll .s9 .content {
  margin-top:300px;
  width: 380px;
  margin-left: 350px;

.bullets li {
	color: #000000
}




@media only screen and (min-width: 768px) {
  .iscroll .s6 .mail a:hover {
    color: #FCDE05;
  }
}
/* Custom scrollbar styling */
div.jspVerticalBar {
  width: 5px;
  background: transparent;

}
div.jspTrack {
  background: transparent;  
}
div.jspDrag {
  background: #6D6969;
  border: solid 0px #ccc;
  
}
.s2 div.jspVerticalBar {
  right: 43px;
}
.s3 div.jspVerticalBar {
  right: 13px;
}
.s8 div.jspVerticalBar {
  right: 13px;
}
.s9 div.jspVerticalBar {
  right: 13px;

/* ==|== non-semantic helper classes ========================================
========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}
.ir br {
  display: none;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* Contain floats: h5bp.com/q */
.clearfix {
  *zoom: 1;
}
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
