@charset "UTF-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0
}
:focus {
  outline: 0
}
* {
  list-style: none;
  text-decoration: none;
}
body {
  line-height: 1;
  transition: all 0.8s;
  overflow-x: hidden;
  font-family: "HelveticaNeue-Regular";
}
/*ol, ul {
		list-style: none
	}*/
table {
  border-collapse: separate;
  border-spacing: 0
}
caption, th, td {
  font-weight: 400;
  text-align: left
}
blockquote:before, blockquote:after, q:before, q:after {
  content: ""
}
blockquote, q {
  quotes: """"
}
header, nav, article, section, footer, figure, aside {
  display: block;
}
input, select, textarea {
  -webkit-border-radius: 0;
  border-radius: 0
}
img {
  width: 100%;
}
@font-face {
  font-family: 'HelveticaNeue-Bold';
  src: url('../fonts/HelveticaNeue-Bold.eot');
  src: url('../fonts/HelveticaNeue-Bold.eot') format('embedded-opentype'), url('../fonts/HelveticaNeue-Bold.otf') format('otf'), url('../fonts/HelveticaNeue-Bold.svg') format('svg'), url('../fonts/HelveticaNeue-Bold.woff') format('woff'), url('../fonts/HelveticaNeue-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeue-Light';
  src: url('../fonts/HelveticaNeue-Light.eot');
  src: url('../fonts/HelveticaNeue-Light.eot') format('embedded-opentype'), url('../fonts/HelveticaNeue-Light.otf') format('otf'), url('../fonts/HelveticaNeue-Light.svg') format('svg'), url('../fonts/HelveticaNeue-Light.woff') format('woff'), url('../fonts/HelveticaNeue-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeue-Medium';
  src: url('../fonts/HelveticaNeue-Medium.eot');
  src: url('../fonts/HelveticaNeue-Medium.eot') format('embedded-opentype'), url('../fonts/HelveticaNeue-Medium.otf') format('otf'), url('../fonts/HelveticaNeue-Medium.svg') format('svg'), url('../fonts/HelveticaNeue-Medium.woff') format('woff'), url('../fonts/HelveticaNeue-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeue-Regular';
  src: url('../fonts/HelveticaNeue-Regular.eot');
  src: url('../fonts/HelveticaNeue-Regular.eot') format('embedded-opentype'), url('../fonts/HelveticaNeue-Regular.otf') format('otf'), url('../fonts/HelveticaNeue-Regular.svg') format('svg'), url('../fonts/HelveticaNeue-Regular.woff') format('woff'), url('../fonts/HelveticaNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeue-Thin';
  src: url('../fonts/HelveticaNeue-Thin.eot');
  src: url('../fonts/HelveticaNeue-Thin.eot') format('embedded-opentype'), url('../fonts/HelveticaNeue-Thin.otf') format('otf'), url('../fonts/HelveticaNeue-Thin.svg') format('svg'), url('../fonts/HelveticaNeue-Thin.woff') format('woff'), url('../fonts/HelveticaNeue-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.clear {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  clear: both
}
.w-100{
	width: 100%;
}
/*-----*/
#burger-toggle {
  position: absolute;
  appearance: none;
  opacity: 0;
}
#burger-toggle:checked ~ .menu {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
#burger-toggle:checked ~ .menu .menu-nav-link span div, #burger-toggle:checked ~ .menu img, #burger-toggle:checked ~ .menu .title p {
  transform: translateY(0);
  transition: 1.2s 0.1s cubic-bezier(0.35, 0, 0.07, 1);
}
#burger-toggle:checked ~ .menu .image-link:nth-child(1) img {
  transition-delay: 0.18s;
}
#burger-toggle:checked ~ .menu .image-link:nth-child(2) img {
  transition-delay: 0.26s;
}
#burger-toggle:checked ~ .menu .image-link:nth-child(3) img {
  transition-delay: 0.34s;
}
#burger-toggle:checked ~ .menu .image-link:nth-child(4) img {
  transition-delay: 0.42s;
}
#burger-toggle:checked ~ .burger-menu .line::after {
  transform: translateX(0);
}
#burger-toggle:checked ~ .burger-menu .line:nth-child(1) {
  transform: translateY(calc(var(--burger-menu-radius) / 5)) rotate(45deg);
}
#burger-toggle:checked ~ .burger-menu .line:nth-child(2) {
  transform: scaleX(0);
}
#burger-toggle:checked ~ .burger-menu .line:nth-child(3) {
  transform: translateY(calc(var(--burger-menu-radius) / -5)) rotate(-45deg);
}
.burger-menu {
  --burger-menu-radius: 4em;
  position: fixed;
  top: 1vh;
  right: 2vw;
  z-index: 100;
  display: block;
  width: var(--burger-menu-radius);
  height: var(--burger-menu-radius);
  outline: none;
  cursor: pointer;
}
.burger-menu .line {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 3px;
  background: rgb(0 91 49);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
}
.burger-menu .line:nth-child(1) {
  top: 30%;
}
.burger-menu .line:nth-child(2) {
  top: 50%;
}
.burger-menu .line:nth-child(3) {
  top: 70%;
}
.burger-menu .line::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color-darker);
  transform: translateX(-100%);
  transition: 0.25s;
}
.burger-menu .line:nth-child(2)::after {
  transition-delay: 0.1s;
}
.burger-menu .line:nth-child(3)::after {
  transition-delay: 0.2s;
}
.burger-menu:hover .line::after {
  transform: translateX(0);
}
.menu {
  position: fixed;
  top: 81px;
  right: 0;
  width: 320px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffffeb;
  opacity: 0;
  overflow-x: hidden;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 750px) {
  .menu {
   /* display: block;*/
  }
}
.menu-nav {
  display: inline-block;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  text-align: right;
  list-style-type: none;
  height: 95vh;
  top: 0;
  position: relative;
  width: 100%;
  left: 0;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .menu-nav {
    flex-direction: column;
  }
}
.menu-nav-item {
  flex: 1;
  padding: 10px 0;
}
.menu-nav-link {
  position: relative;
  display: inline-flex;
  font-size: 1.5rem;
  color: #3d3d3d;
  text-decoration: none;
  transition: all 1s;
}
/*.menu-nav-link:checked ~ .menu {
	opacity: 0;
}*/
.menu-nav-link span {
  overflow: hidden;
	height: 26px;
}
.menu-nav-link span div {
  transform: translateY(102%);
}
.menu-nav-link::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.menu-nav-link:hover {
  transform: scaleX(1.1);
  transform-origin: right;
	transition: all 1s;
}

.menu-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.menu .gallery {
  margin-top: 0;
  text-align: center;
  display: inline-block;
  width: 50%;
  height: 100vh;
  position: relative;
  vertical-align: top;
}
.menu .title {
  font-size: 24px;
  color: white;
  overflow: hidden;
}
.menu .title p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(102%);
}
.menu .images {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  width: 115%;
}
.menu-inner .gallery .images .image {
    width: 50%;
    height: auto;
    margin-top: -3px;
}
@media screen and (max-width: 750px) {
  .menu .images {
    justify-content: center;
  }
}
.menu .images .image-link {
  width: 15vw;
  margin: 0 12px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .menu .images .image-link {
    width: 40vw;
    margin: 0 12px 12px 0;
  }
}
.menu .images .image-link .image {
  position: relative;
  transition: 0.6s;
}
.menu .images .image-link .image::before {
  position: absolute;
  content: attr(data-label);
  top: 0;
  left: 0;
  z-index: 98;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.4s;
}
.menu .images .image-link:hover .image {
  transform: scale(1.2);
}
.menu .images .image-link:hover .image::before {
  opacity: 1;
}
.menu .images img {
  /* height: 250px; */
  transform: translateY(102%);
}
/*-----*/
.fancybox-content {
  width: 100%;
  max-width: 100%;
  height: 87vh !important;
}

.logo {
  width: 150px;
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  top: -8px;
  left: 50px;
}
.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 8px 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.50);
}
.page-header nav {
  display: inline-block;
  align-items: center;
  width: 97%;
  margin: 13px auto 0 auto;
}
.page-header .telefon {
  display: block;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 30px;
  color: white;
  background: #87a83f;
  transition: background 0.3s;
  font-family: "HelveticaNeue-Bold";
  letter-spacing: 1px;
  width: 205px;
  float: inline-end;
  margin: 0 10px;
}
.page-header .dil {
  display: block;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 30px;
  color: white;
  
  transition: background 0.3s;
  font-family: "HelveticaNeue-Bold";
  letter-spacing: 1px;
  width: 40px;
  float: inline-end;
  margin: 0 10px;
}
.page-header .telefon svg {
  flex-shrink: 0;
  margin: 0 10px;
  fill: currentColor;
}
.page-header .telefon:hover {
  background: #0ab8f6;
}
.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}
.page-header.is-sticky img {
  max-width: 80%;
}
.page-header.is-sticky button {
  font-size: 14px;
  padding: 7px 10px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

#footer{
	background: #87a83f;
	height: 20px;
}

/* Anasayfa*/
.anagorsel {
  position: relative;
  top: 0;
}
.slider {
    overflow: hidden;
    position: relative;
}
.owl-stage-outer {
    max-height: 100vh;
}
.mobilslide{
	display: none !important; 
}
.desktopslide{
	display: block; 
}
.sliderContent {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1;
}
.sliderContent h1{
	color:#678348;
	font-size: 60px;
	font-family: "HelveticaNeue-Bold";
	top: 20%;
	position: relative;
	left: 20%;
}
.scikon{
	position: absolute;
	left: 20%;
	top: 42%;
}
.scpatlak1{
	position: absolute;
	left: 85%;
	top: 35%;
	display: block;
	width: 90%;
	z-index: 1;
}
.scpatlak2{
	position: absolute;
	left: 30%;
	top: 60%;
	width: 100%;
}

.item .sczemin{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	height: auto;
	width: auto !important;
}


.projegorsel{
	position: relative;
	background: url("../images/projegorsel.jpg");
	min-height: 1600px;
}
.projegorselic {
	width: 90%;
	padding-top: 100px;
	margin: 0 auto;
	left: 0;
	right: 0;
	
}
.projegorselparca {
	width: 33%;
	display: inline-block;
	vertical-align: top;
}
.projegorsel h1 {
    color: #434639;
    font-size: 40px;
    font-family: "HelveticaNeue-Medium";
}
.projegorselparca h2 {
    color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Regular";
}
.projegorselparca h3 {
    color: #6a884c;
    font-size: 30px;
    font-family: "HelveticaNeue-Regular";
}
.projegorselparca p {
    padding: 0 20px 0 0;
    line-height: 22px;
    color: #58595b;
}
.altcizgi{
	border-bottom: 1px solid #58595b;
}
.fsize{
	font-size: 50px !important;
}

.lokasyonic{
	width: 90%;
	padding-top: 50px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.lokasyonsol{
	width: 40%;
	display: inline-block;
	vertical-align: top;
}
.lokasyonbaslik .yrenk {
    background: #87a83f;
    height: 10px;
    width: 150px;
    margin-top: -43px;
}
.lokasyonsag{
	width: 59%;
	display: inline-block;
	position: relative;
}
.lokasyonsol h1 {
	color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Medium";
	padding-bottom: 50px;
}
.lokasyonsol p {
    padding: 40px 0 0 0;
    line-height: 22px;
    color: #58595b;
}
.playikon {
    width: 80px;
    position: absolute;
    top: 45%;
    left: 45%;
	visibility: visible;
	transition: all 0.5s;
	opacity: 0.5;
}
.lokasyonsag a:hover + .playikon{
	visibility: visible;
	transition: all 1s;
}

.depremizolatoric{
	width: 90%;
	padding-top: 50px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.depremizolatorsol{
	width: 40%;
	display: inline-block;
	vertical-align: top;
}
.depremizolatorbaslik .yrenk {
    background: #87a83f;
    height: 10px;
    width: 150px;
    margin-top: -43px;
}
.depremizolatorsag{
	width: 59%;
	display: inline-block;
	position: relative;
}
.depremizolatorsol h1 {
	color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Medium";
	padding-bottom: 50px;
}
.depremizolatorsol p {
    padding: 40px 0 0 0;
    line-height: 22px;
    color: #58595b;
}
.pleft-50{
	margin-left: 50px;
}
.w37{
	width: 37%;
}
.depremizofaydametin li{
	display: block;
	position: relative;
	padding-bottom: 20px;
	line-height: 22px;
}
.depremizofaydametin li::before {
	content: "";
	margin-right: 5px;
	font-size: 80%;
	background-color: rgb(136 168 63);
	color: white;
	font-weight: bold;
	padding: 2px 9px;
	border-radius: 50%;
}
.sehirdeadahayatiic{
	width: 90%;
	padding-top: 50px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.sehirdeadahayatiic h1 {
	color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Medium";
	padding-bottom: 50px;
}
.sehirdeadahayatimetin{
	margin-bottom: 100px;
}
.sehirdeadahayatimetin p{
	padding: 0px 40px 0 0;
    line-height: 22px;
    color: #58595b;
}

.olanaklaric{
	width: 90%;
	padding-top: 50px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.olanaklarust{
	text-align: right;
}
.olanaklarust h1 {
	color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Medium";
	padding-bottom: 50px;
}
.olanaklarustbaslik {
    text-align: end;
    position: relative;
}
.olanaklarustbaslik .yrenk {
    background: #87a83f;
    height: 10px;
    width: 150px;
    margin-top: -43px;
    position: absolute;
    right: 0;
}

.olanaklaralt .slider p {
    text-align: center;
    padding: 20px;
    font-size: 20px;
}
.olanaklaralt{
	padding-bottom: 50px;
} 
.komumgorsel{
	
}
.komumgorselic{
	width: 90%;
	padding-top: 30px;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.israholding{
	position: relative;
	background: url("../images/isra-holding-zemin.jpg") bottom center;
	min-height: 800px;	
}
.israholdingic{
	width: 90%;
	padding-top: 30px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.israholdingsol {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    text-align: center;
    padding-top: 100px;
}
.israholdingsol img{
	max-width:700px; 
}
.israholdingsag{
	display: inline-block;
	width: 50%;
	vertical-align: top;
	padding-top: 150px;
}
.israholdingsagbaslik{
	text-align: left;
    position: relative;
	padding-bottom: 50px;
}
.israholdingsagbaslik h1 {
	color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Medium";
	padding-bottom: 50px;
}
.israholdingsagbaslik .yrenk {
    background: #87a83f;
    height: 10px;
    width: 150px;
    margin-top: -43px;
}
.israholdingsagparca{
	width: 49%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 50px;
}
.israholdingsagparca h1 {
    color: #434639;
    font-size: 40px;
    font-family: "HelveticaNeue-Medium";
}
.israholdingsagparca h2 {
    color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Regular";
}
.israholdingsagparca h3 {
    color: #696d6d;
    font-size: 30px;
    font-family: "HelveticaNeue-Regular";
}
.israholdingsagparca p {
    padding: 0 20px 0 0;
    line-height: 22px;
    color: #58595b;
}

.iletisim{
	position: relative;
	width: 100%;
}
.iletisimic{
	width: 90%;
	padding-top: 30px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.iletisimicsol {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    text-align: left;
    padding-top: 100px;
}

.iletisimicsag{
	display: inline-block;
	width: 50%;
	vertical-align: top;
	padding-top: 100px;
}
.iletisimicsolbaslik h1 {
	color: #434639;
    font-size: 60px;
    font-family: "HelveticaNeue-Medium";
	padding-bottom: 50px;
}
.iletisimicsolbaslik .yrenk {
    background: #87a83f;
    height: 10px;
    width: 150px;
    margin-top: -43px;
}
.iletisimmetin h2 {
    color: #434639;
    font-size: 50px;
    font-family: "HelveticaNeue-Regular";
	padding: 50px 0;
}
.iletisimmetin p {
    padding: 0 20px 0 0;
    line-height: 50px;
    color: #58595b;
	font-size: 30px;
}
.iletisimmetin p svg {
    width: 35px;
    border: 2px solid #AAA;
    border-radius: 50%;
    margin: 5px 5px 0 0;
}
.iletisimmetin p a{
	vertical-align: top;
	color: #58595b;
}

/*Form*/


.formContent{
	padding: 20px;
}	


.ilgilendiginizofis {
	margin-top: 10px;
	color: #FFF;
}
.radioButtons {
	margin-top: 10px;
	color: #000;
}
.radioDiv {
	display: inline-block;
	vertical-align: top;
	margin: 0px 10px;
}
.radioDiv label{
	color: #FFF;
}
.radioDiv input{
	color: #000;
}
radio {
	background: unset;
}

.gonderbutton {
	background: #018749;
	color: #FFF;
	width: 100%;
	padding: 10px 0px 10px 0;
	border: unset;
	margin-top: 10px;
	font-weight: bold;
	width: 100%;
	border-radius: 10px;
	font-size: 20px;
}

.formContent h2{color:#fff; font-size: 17px; font-weight: normal; font-family: 'GothamNarrow-Light'; margin-bottom: 15px; text-align: center; margin-top: 15px;}
.formContent h2 strong{font-family: 'GothamNarrow-Bold';color:#b38e3e; display: block; fobnt-weight: normal;}
.form-control {
	display: block;
	width: 100%;
	height: auto;
	font-size: 16px;
	padding: 0 4px;
	color: #696d6d;
	border: unset;
	border: 1px solid #282828;
	margin: 16px 0 3px 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: left;
	padding: 6px 0px 6px;
	background: #f8fbf2;
	border-radius: 10px;
}
textarea.form-control {
	padding-top: 10px;
	height: 30px;
	min-height: 80px;
	margin-top: 0;
	width: 100%;
	padding: 5px;
	font-family: 'HelveticaNeue-Regular';
	font-size: 17px;
}

.disclaimer {
	font-size: 12px;
	color: #FFF;
	margin: 10px 0px;
	display: block;
	line-height: normal;
	width: 100%;
}								
.disclaimer label {
	color: #ffffff;
	display: block;
	margin-top: -20px;
}
.disclaimer label input {
	margin-right: 5px;
	display: block;
}
.formContent input[type="radio"]+label, .formContent input[type="checkbox"]+label {
	position: relative;
	margin-left: 1.75em;
	line-height: 1.5em;
}

.dikLine { width: 1px; background: none; margin: 0 auto; margin-bottom: 5px;}
.formContent > h1 {
	font-size: 23px;
	color: #ffffff;
	text-align: left;
	margin-bottom: 10px;
	font-size: 20px;
	text-align: center;
}
#countryCode {
    width: 101.4%;
}
textarea.form-control {
	height: 30px;
}

.formContent > p {
	font-size: 17px;
	margin-bottom: 15px;
	text-align: center;
	color: #FFF;
}
.form-text {
	padding: 5px;
	height: 40px;
	margin: 10px 0;
	line-height: normal;
}			

.aydinlatma-metni {text-decoration: underline;color: #ffffff;font-weight: bold;}
.int .text {width: 67.49%;margin:0 auto;display:block;position: absolute;z-index: 1;top: 10.7%;left: 16.25%;}

.accordion {
    background-color: #88a83f;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
    border-radius: 10px;
}

.acik, .accordion:hover {
  background-color: #AAA;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.acik:after {
  content: "\2212";
}

.panel {
    padding: 0px 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin: 10px 0 20px 0;
}
.video-item{
	width: 100vw;
}
/*--------------------------------------------------------------
## Side Panel
--------------------------------------------------------------*/
	/*
  	Flaticon icon font: Flaticon
  	Creation date: 21/03/2020 07:56
  	*/

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("../fonts/Flaticon.woff2") format("woff2"),
       url("../fonts/Flaticon.woff") format("woff"),
       url("../fonts/Flaticon.ttf") format("truetype"),
       url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("./Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="ot-flaticon-"]:before, [class*=" ot-flaticon-"]:before,
[class^="ot-flaticon-"]:after, [class*=" ot-flaticon-"]:after {   
  font-family: Flaticon;
  font-size: 21px;
  font-style: normal;
}

.ot-flaticon-support:before { content: "\f100"; }
.ot-flaticon-document:before { content: "\f101"; }
.ot-flaticon-video:before { content: "\f102"; }
.ot-flaticon-file:before { content: "\f103"; }
.ot-flaticon-next:before { content: "\f104"; }
.ot-flaticon-menu:before { content: "\f105"; }
.ot-flaticon-left-arrow:before { content: "\f106"; }
.ot-flaticon-button:before { content: "\f107"; }
.ot-flaticon-play-button:before { content: "\f108"; }
.ot-flaticon-search:before { content: "\f109"; }
.ot-flaticon-search-1:before { content: "\f10a"; }
.ot-flaticon-shopping-bag:before { content: "\f10b"; }
.ot-flaticon-place:before { content: "\f10c"; }
.ot-flaticon-phone-call:before { content: "\f10d"; }
.ot-flaticon-3d:before { content: "\f10e"; }
.ot-flaticon-pantone:before { content: "\f10f"; }
.ot-flaticon-sphere:before { content: "\f110"; }
.ot-flaticon-measure:before { content: "\f111"; }
.ot-flaticon-title:before { content: "\f112"; }
.ot-flaticon-home:before { content: "\f113"; }
.ot-flaticon-house:before { content: "\f114"; }
.ot-flaticon-mail:before { content: "\f115"; }
.ot-flaticon-add:before { content: "\f116"; }
.ot-flaticon-quote:before { content: "\f117"; }
.ot-flaticon-send:before { content: "\f118"; }
.ot-flaticon-blueprint:before { content: "\f119"; }
.ot-flaticon-tip:before { content: "\f11a"; }
.ot-flaticon-money-back:before { content: "\f11b"; }
.ot-flaticon-vector:before { content: "\f11c"; }
.ot-flaticon-tools:before { content: "\f11d"; }
.ot-flaticon-3d-1:before { content: "\f11e"; }
.ot-flaticon-heart:before { content: "\f11f"; }
.ot-flaticon-link:before { content: "\f120"; }
.ot-flaticon-pin:before { content: "\f121"; }
.ot-flaticon-cube:before { content: "\f122"; }
.ot-flaticon-blueprint-1:before { content: "\f123"; }
.ot-flaticon-brickwall:before { content: "\f124"; }
.ot-flaticon-paint:before { content: "\f125"; }
.ot-flaticon-diamond:before { content: "\f126"; }
.ot-flaticon-box:before { content: "\f127"; }
.ot-flaticon-cactus:before { content: "\f128"; }
.ot-flaticon-house-1:before { content: "\f129"; }
.ot-flaticon-paint-1:before { content: "\f12a"; }
.ot-flaticon-type:before { content: "\f12b"; }
.ot-flaticon-type-1:before { content: "\f12c"; }
.ot-flaticon-3d-2:before { content: "\f12d"; }
.ot-flaticon-close:before { content: "\f12e"; }
.ot-flaticon-favorite:before { content: "\f12f"; }
.ot-flaticon-close-1:before { content: "\f130"; }
.ot-flaticon-warning-sign:before { content: "\f131"; }
.ot-flaticon-info:before { content: "\f132"; }
.ot-flaticon-check-mark-black-outline:before { content: "\f133"; }
.ot-flaticon-right-arrow:before { content: "\f134"; }
.ot-flaticon-quote-1:before { content: "\f135"; }
.ot-flaticon-quote-2:before { content: "\f136"; }

.panel-btn {
    line-height: 1;
    cursor: pointer;
    width: 160px;
    position: absolute;
    right: -72px;
    transform: rotate(270deg);
    top: 200px;
    background: #005b31;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}
.panel-btn i {
  color: #fff;
  cursor: pointer;
}
.panel-btn i:before {
  font-size: 22px;
}

.admin-bar .side-panel {
  top: 32px;
}

.side-panel {
  width: 380px;
  position: fixed;
  top: 0px;
  bottom: 0;
  right: 0px;
  background: #005b31;
  overflow-x: hidden;
  z-index: 9999;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  padding-top: 50px;
}
.side-panel .side-panel-block {
  padding: 90px 42px 90px 25px;
  height: 100%;
  width: calc(100% + 17px);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.side-panel .side-panel-close {
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  color: #fff;
  font-size: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  background: #005b31;
  text-align: center;
}
.side-panel.on-left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.side-panel.on-left.mmenu-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.side-panel.side-panel-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.side-panel-active .panel-overlay {
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 9998;
}


.side-panel input[type=text],
.side-panel input[type=email],
.side-panel input[type=url],
.side-panel input[type=password],
.side-panel input[type=search],
.side-panel input[type=number],
.side-panel input[type=tel],
.side-panel input[type=range],
.side-panel input[type=date],
.side-panel input[type=month],
.side-panel input[type=week],
.side-panel input[type=time],
.side-panel input[type=datetime],
.side-panel input[type=datetime-local],
.side-panel input[type=color],
.side-panel textarea {
  color: #555555;
  border: none;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  font-weight: 500;
}
.side-panel input[type=text]:focus,
.side-panel input[type=email]:focus,
.side-panel input[type=url]:focus,
.side-panel input[type=password]:focus,
.side-panel input[type=search]:focus,
.side-panel input[type=number]:focus,
.side-panel input[type=tel]:focus,
.side-panel input[type=range]:focus,
.side-panel input[type=date]:focus,
.side-panel input[type=month]:focus,
.side-panel input[type=week]:focus,
.side-panel input[type=time]:focus,
.side-panel input[type=datetime]:focus,
.side-panel input[type=datetime-local]:focus,
.side-panel input[type=color]:focus,
.side-panel textarea:focus {
  color: #555555;
}

.side-panel select {
  border: none;
  background: #fff;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.side-panel textarea {
  width: 100%;
  height: 130px;
  vertical-align: top;
}

.side-panel ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #555555;
}

.side-panel ::-moz-placeholder {
  /* Firefox 19+ */
  color: #555555;
}

.side-panel :-ms-input-placeholder {
  /* IE 10+ */
  color: #555555;
}

.side-panel :-moz-placeholder {
  /* Firefox 18- */
  color: #555555;
}

.site-overlay {
    /*cursor: url(images/close.png) 16 16, default;*/
    background: transparent;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    z-index: -1;
}
.octf-sidepanel {
    padding: 0 34px 0 33px;
    border-style: solid;
    border-width: 0 0 0 1px;
    border-color: rgba(255,255,255,.2);
    background: #47882b;
}
.iletisimicsag .disclaimer label, .iletisimicsag .disclaimer .aydinlatma-metni{
    color: #222;
}
.iletisimicsag .formContent > h1 {
    font-size: 23px;
    color: #696d6d;
    text-align: left;
    margin-bottom: 10px;
    font-size: 40px;
}
.depremizor5{
	position: absolute;
    right: 240px;
    z-index: 5;
}
.depremizor5 img{
	width: 150px;
}
.galeri .olanaklarustbaslik {
    text-align: left;
}
.galeri .yrenk {
    background: #87a83f;
    height: 10px;
    width: 150px;
    margin-top: -43px;
    position: absolute;
    left: 0;
}
.galeri video{
	width: 100%;
}
.galeri video{
	width: 100%;
}

.gallery{
	background: url(../images/isra-holding-zemin.jpg) top no-repeat;
	background-size: cover;
	min-height: 600px;
	position: relative;
	margin-top: -2px;
}
.galleryin{
	width: 90%;
	margin: 0 auto;
	padding:0;
	background-size:100%; 
}

.ow-prev, .ow-next {
    background: unset;
    border: unset;
}
.ow-next img {
    width: 58px;
    margin-left: -4px;
    margin-top: 2px;
}
.ow-prev img {
    width: 58px;
    margin-left: -1px;
    margin-top: 2px;
}
.owl-prev {
    background: none !important;
    position: absolute;
    left: 20%;
    top: 46%;
    transition: all 0.3s;
}
.owl-prev:hover {
	left: 19.5%;
	transition: all 0.3s;
}
.owl-next {
    background: none !important;
    position: absolute;
    right: 20%;
    top: 46%;
    transition: all 0.3s;
}
.owl-next:hover {
	right: 19.8%;
	transition: all 0.3s;
}