@charset "utf-8";
/* SH Tasarım - www.shtasarim.com */	

/*Mobil*/
@media (min-width: 200px) and (max-width: 1201px) {

#ustblok {
	display:none;
}

/**Mobil Menü Başlar**/
#mp-menu {
	display:block;
}

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sayfa {
	height: 100%;
}

.sayfa,
.sayfa-inner {
	position: relative;
}

.menu-trigger {
	width:40px;
	height:40px;
	display:block;
	position: relative;
	margin-left:10px;
	margin-top:-50px;
	font-weight:300;
	color:#FFF;
	font-size:34px;
}

a#trigger.menu-trigger:hover {
	color:#FC3;
}

a#trigger.menu-trigger.active {
	color:#FC3;
}

a#trigger.menu-trigger.selected {
	color:#FC3;
}

.mp-pusher {
	position: relative;
	left: 0;
	height: 100%;
}

.mp-menu {
	position: absolute; /* we can't use fixed here :( */
	top: 0;
	left: 0;
	z-index: 1;
	width: 250px;
	height: 100%;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.mp-level {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#333;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	opacity: 0;
}

.mp-pusher::after,
.mp-level::after {
	background: rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	-moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
	transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.mp-level::after {
	z-index: -1;
}

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.mp-level.mp-level-overlay {
	cursor: pointer;
}

.mp-level.mp-level-overlay.mp-level::before {
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 1;
}

.mp-pusher,
.mp-level {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/* overlap */
.mp-overlap .mp-level.mp-level-open {
	box-shadow: 1px 0 2px rgba(0,0,0,0.2);
	-webkit-transform: translate3d(-40px, 0, 0);
	-moz-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
	box-shadow: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* cover */
.mp-cover .mp-level.mp-level-open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

/* content style */
.mp-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mp-menu h2 {
	margin: 0;
	padding: 1em;
	text-shadow: 0 0 1px #000;
	font-weight: 300;
	font-size: 2em;
	color:#FFF;
}

.mp-menu.mp-overlap h2::before {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 8px;
	font-size: 75%;
	line-height: 1.8;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.1s 0.3s;
	transition: opacity 0.3s, transform 0.1s 0.3s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.mp-menu.mp-cover h2 {
	font-weight: 100;
	letter-spacing: 1px;
	font-size: 14px;
}

.mp-overlap .mp-level.mp-level-overlay > h2::before {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.mp-menu ul li > a {
	display: block;
	padding: 17px 20px 17px 22px;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	font-size: 14px;
	font-weight:300;
	color:#FFF;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.mp-menu ul li::before {
	position: absolute;
	left: 10px;
	z-index: -1;
	color:#FFF;
	line-height: 3.5;
}

.mp-level > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
	text-decoration:none;
}

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0);
}

.mp-level > ul > li:first-child > a:hover,
.mp-level.mp-level-overlay > ul > li:first-child > a {
	box-shadow: inset 0 -1px rgba(0,0,0,0), inset 0 1px rgba(0,0,0,0);
} /* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */

.mp-back {
	background: rgba(0,0,0,0.1);
	outline: none;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 700;
	display: block;
	font-size: 0.8em;
	padding: 1em;
	position: relative;
	box-shadow: inset 0 1px rgba(0,0,0,0.1);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

.mp-back:hover {
	text-decoration:none;
	color:#FC3;
}

.mp-back::after {
	content: "\f053";
    font-family: FontAwesome;
	position: absolute;
	right: 10px;
	color:#FFF !important;
	font-size: 1.3em;
}

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
	background: transparent;
	box-shadow: none;
	color: transparent;
}

.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
	padding-left: 300px;
}

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
	display: none;
}

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
	display: block;
}
/**Mobil Menü Biter**/


#mobilustblok {
	width:100%;
	height:100px;
	display:block;
	position:relative;
	background-color: #BB131A;
	z-index:9999;
	-webkit-box-shadow: 0px 5px 9px 0px rgba(50, 50, 50, 1);
	-moz-box-shadow:    0px 5px 9px 0px rgba(50, 50, 50, 1);
	box-shadow:         0px 5px 9px 0px rgba(50, 50, 50, 1);

}

#mobilustblok a.mobillogo{
	width:137px;
	height:90px;
	display:block;
	position:relative;
	margin-right:auto;
	margin-left:auto;
	margin-top:5px;
}
#sliderblok  {
	width:100%;
	min-width: 100%;
	height:100%;
	display:block;
	position:relative;
	margin-top:0px;
	border-bottom: 12px solid #024284;

}

.bx-controls {
	width: 125px;
	height: 50px;
	display: block;
	position: absolute;
	right: 5px;
	z-index: 999;
	bottom: -20px;
}


#ortablok  {
	display: none;
}

.haberblok{
	display: none;
}


.kisahakkimizda {
	display: none;
} 


#altblok  {
	height: 100px;
	display: block;
	position: relative;
	margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.arizaformu {
	box-shadow: 3px 3px 0px #F2F2F2;
    border: 2px solid #e2e2e2;
    background: url(../images/formbg.png) no-repeat left bottom #fff;
    background-size: contain;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
}
.arizaformuicerik {
	position: relative;
    padding-left:0px !important;
    color: #383534;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    padding-bottom: 160px;
}

.formbuton {
	width:90%;
	height:40px;
	display:block;
	position:relative;
	font-size:16px !important;
	font-weight:300 !important;
	color:#FFF;
	font-family: 'Open Sans', sans-serif;
    font-size: 15px;
	padding-top: 8px;
	text-align: center;
	text-decoration: none;
	background-color:#d40000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-bottom:5px solid #ac0000 !important;
	text-shadow: 1px 0 0 #000;
	
}

.formbuton:hover,.formbuton.active{
	color:#FFF;
	text-decoration: none;
	background-color:#959595;
	border-bottom:5px solid #333 !important;
}

.kalitelogo {
	height: 100px;
	box-shadow: 3px 3px 0px #F2F2F2;
    border: 2px solid #e2e2e2;
    background: url(../images/kalite.png) no-repeat center 45px #fff;
    background-size: contain;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.kalitelogo .kalitebaslik{
	width:auto;
	height:30px;
	display:block;
	position:absolute;
	left:35px;
	top:10px;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	font-weight:100;
	font-style:normal;
	color:#C50003;
}


#footerblok {
	width: 100%;
	height: auto;
	min-height: 220px;
	display: block;
	position: relative;
	margin-top: 30px;
	background:url(../images/footerbg.png) repeat;
}

#footerblok h3 {
	display: none;
}

#footerblok li {
    display: none;
}

.altiletisim
{
	width: 100%;
	min-height: 220px;
	display: block;
	position: relative;
	float:right;
	color: #FFF;
	font-family: 'Open Sans', sans-serif;
	background:url(../images/altiletisimbg.png) #8c0304 top center repeat;
	padding-top: 20px;
	padding-right: 10px;
	padding-left: 10px;
    box-shadow: 0px 0px 10px rgba(255,255,255,0.2);
    -webkit-box-shadow: 0px 0px 10px rgba(255,255,255,0.2);
    -moz-box-shadow: 0px 0px 10px rgba(255,255,255,0.2);
}

.altiletisim .altadressatir {
	width: 100%;
	height: auto;
	display: inline-block;
	padding:5px;
	margin-bottom: 5px;
}

.altiletisim .altadressatir .altadresikon{
	width: 30px;
	height: auto;
	position: relative;
    font-family: 'Open Sans', sans-serif;
    float: left;
}
.altiletisim .altadressatir .altadresikon i.fa{
	width: 25px;
	height: 25px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding-top:4px;
    -moz-border-radius:75px;
 	-webkit-border-radius: 75px;
	border: 1px dotted #FFF;
}

.altiletisim .altadressatir .altadresbilgi{
	width: 150px;
	height: auto;
	display: block;
	position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 8px;
    float: left;
    margin-left: 5px;
}

.footeralt {
    clear: both;
    width: 100%;
    height: 60px;
}

.footeralt .copy {
	text-align: center !important;
    line-height:50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #231f20;
}

.footeralt a.imza {
	display: none;
}

/**İç sayfa**/

#bannerblok {
    width: 100%;
    height: 128px;
    position: relative;
    margin: -52px 0 0 0;
    background-position:center right;
    background-repeat: repeat-x;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

#icerikblok {
	height: auto;
	display: block;
	position: relative;
	margin-right: auto;
	margin-left: auto;
}


#icerikblok .icerik{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	font-size:14px;
	font-family: 'Open Sans', sans-serif;
	font-weight:100;
	font-style:normal;
	color: #333;
	text-align: justify;
	line-height: 26px;
	background-color: #FFF;
	margin-bottom: 20px;
	margin-top: 10px;
	box-shadow: 3px 3px 0px #F2F2F2;
    border: 2px solid #e2e2e2;
    padding:20px;
    overflow: hidden;
    -moz-border-radius-bottomright: 20px;
	-webkit-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

#icerikblok .icerik h2 {
	width:auto;
	height:auto;
	display:block;
	position:relative;
	text-decoration:none;
	font-size:20px;
	font-family: 'Open Sans', sans-serif;
	font-weight:600;
	font-style:normal;
	color:#FFF;
	margin-top:0px;
	margin-left:-20px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 20px;
	padding-right: 50px;
	text-shadow: 1px 0 0 #333;
	background:url(../images/baslikbg.png) no-repeat left top;
}

#icerikblok .icerik p{
	font-size:14px;
	font-family: 'Open Sans', sans-serif;
	font-weight:100;
	font-style:normal;
	color: #333;
}

#icerikblok .icerikmenu{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}


#icerikblok .icerikmenu ul{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	margin-top: 5px;
}

#icerikblok .icerikmenu ul li
{
	width: 100%;
	height: 40px;
	background:url(../images/footerbg.png);
	border: 1px solid #bcbec0;
	line-height: 40px;
	margin: 0 0 5px 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	overflow: hidden;
}

#icerikblok .icerikmenu ul li a
{
	display: block;
	padding: 0 0 0 15px;
	color: #FFF;
	overflow: hidden;
}

#icerikblok .icerikmenu ul li a:hover{
	background-color: #eaeaeb;
	color: #333;
	text-decoration: none;
	overflow: hidden;
}


a.hizmetbtn {
	width: 100%;
	height: 220px;
	display: block;
	position: relative;
	border: 1px solid #333;
	margin-top: 20px;
	margin-bottom: 20px;
	background-size: cover;
	background-position: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 3px 3px 0px #F2F2F2;
    border: 2px solid #e2e2e2;
    overflow: hidden;
    color: #ce0000;
    text-decoration: none;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
	font-weight:700;
	font-style:normal;
	color: #FFF;
	text-shadow: 1px 0 0 #000;
	line-height: normal;
}

a.hizmetbtn:hover {
    color: #ce0000;
    text-decoration: none;
}

.analistetablo {
	border:1px solid #f5f5f5;
}

.referanslistebaslik {
	height:50px;
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	font-weight:400;
}

.referanslistesatir {
	height:45px;
}

tr th {
	border-right:1px solid #f5f5f5;
}

tr td {
	border-right:1px solid #f5f5f5;
}

.uygulamalar {
	width:100%;
	height:250px;
	display:block;
	position:relative;
	float:left;
	margin:10px;
	border:3px #AD0E13 solid;
	background-size:cover;
	background-repeat:no-repeat;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.uygulamalar:hover {
	width:100%;
	height:250px;
	display:block;
	position:relative;
	float:left;
	margin:10px;
	border:3px #333 solid;
	transform:scale(1.01);
	-webkit-transform:scale(1.01);
	-moz-transform:scale(1.01);
	-o-transform:scale(1.01);
	-ms-transform:scale(1.01);
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}

.adresblok {
	float: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #636466;
}

.adresblokbalik {
	clear: both;
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    color: #15274a;
    margin: 0 0 15px 0;
}

.adresblok .adressatir {
    margin: 15px 0 0 0;
}

.adresblok label {
    float: left;
    width: 60px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #17294d;
}

.adresblok .ikinokta {
    float: left;
    width: 20px;
    text-align: center;
}


.adresblok .adresbilgi {
    float: left;
}

.iletisimformbuton {
	width:40%;
	height:45px;
	display:block;
	position:relative;
	font-size:16px !important;
	font-weight:300 !important;
	color:#FFF;
	font-family: 'Open Sans', sans-serif;
    font-size: 15px;
	padding-top: 8px;
	margin-top: 5px;
	margin-right: auto;
	margin-left: auto;
	text-decoration: none;
	text-align: center;
	background-color:#d40000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-bottom:5px solid #ac0000 !important;
	text-shadow: 1px 0 0 #000;
	
}

.iletisimformbuton:hover,.iletisimformbuton.active{
	color:#FFF;
	text-decoration: none;
	background-color:#959595;
	border-bottom:5px solid #333 !important;
}

.googleharita {
	display: block;
    width: 100%;
    height: 350px;
    box-shadow: 0 0 3px rgba(99,100,102,0.50);
    -webkit-box-shadow: 0 0 3px rgba(99,100,102,0.50);
    -moz-box-shadow: 0 0 3px rgba(99,100,102,0.50);
    margin: 0 0 30px 0;
}


}