/*============================================================================
  >> 01. RESET
  ============================================================================
*/

html {
	margin: 0;
	padding: 0;
	height: 100%;
	min-height:100%;
}

body {
	padding: 0;
	margin: 0 auto;
	height: 100%;
	min-height: 100%;
	color:#111;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	max-width: 2600px;
	overflow-x: hidden;
}

img {
	display:block;
	max-width:100%;
	height:auto;
}

a {
	text-decoration:none;
}

ul, ol {
	padding:0;
	margin:0;
	list-style: none;
}

.align-right {
	text-align: right;
}

.gray-bg {
	background-color: #efefef;
}

/*============================================================================
  >> 02. HEADER
  ============================================================================
*/
header {
	position: relative;
	z-index: 9;
}

header .container > * {
	display: inline-block;
	float: left;
}

header .container .header-right {
	float: right;
}

.brand-logo {
	margin-top: 30px;
}

.topbar {
	height: 50px;
	line-height: 50px;
}

.topbar > * {
	display: inline-block;
	font-size: 1.2rem;
}

.topbar > * i {
	font-size: 1.4rem;
}

.contact-link {
	position: relative;
	background-color: #e51b1f;
	padding-left: 30px;
    margin-left: 20px;
    -webkit-border-radius: 55px;
	-moz-border-radius: 55px;
	border-radius: 55px;
}

.contact-link:before {
	position: absolute;
	content: '';
	width: 500%;
	height: 50px;
	background-color: #e51b1f;
	z-index: -1;
}

.contact-link a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.main-menu {
	position: relative;
	background-color: #1b6197;
    -webkit-border-radius: 55px;
	-moz-border-radius: 55px;
	border-radius: 55px;
	margin-top: 30px;
}

.main-menu:before {
	position: absolute;
	content: '';
	width: 500%;
	height: 50px;
	background-color: #1b6197;
	z-index: -1;
	left: 90%;
}

.main-menu ul li {
	position: relative;
	display: inline-block;
}

.main-menu ul li > ul {
	position: absolute;
    width: 270px;
    text-align: left;
    background-color: #185280;
    padding-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-bottomright: 15px;
	-moz-border-radius-bottomleft: 15px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
}

.main-menu ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.main-menu ul li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	height: 50px;
	line-height: 50px;
	padding: 0 35px;
	color: #fff;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.main-menu ul li.menu-child > a:before {
	position: relative;
	display: inline-block;
	float: right;
	font-family:'FontAwesome';
	content: "\f107";
	margin-left: 10px;
}

.main-menu ul li:last-child a {
	padding-right: 0;
}

.contact-link a:hover, .main-menu ul li a:hover {
	opacity: 0.6;
}

header .container .mobile-menu {
	position: relative;
	display: none;
	float: right;
	margin: 35px 15px 0 0;
}

header .container .mobile-menu a {
	font-size: 2.4rem;
	color: #111;
}

.mobile-sidebar {
	position: fixed;
    height: 100%;
    z-index: 10001;
    width: 360px;
    background: #fff;
    top: 0;
    left: 0;
    overflow: hidden;
    transform: translate(-100%, 0px);
    -webkit-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    -moz-transition: all 0.45s cubic-bezier(0.25, 0.35, 0.5, 1);
    -o-transition: all 0.45s cubic-bezier(0.25, 0.35, 0.5, 1);
    -webkit-transition: all 0.45s cubic-bezier(0.25, 0.35, 0.5, 1);
    transition: all 0.45s cubic-bezier(0.25, 0.35, 0.5, 1);
}

.mobile-sidebar.open {
	visibility: visible;
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
}

.evo-modal {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #bbb;
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: .15s opacity linear, .15s visibility linear;
    -moz-transition: .15s opacity linear, .15s visibility linear;
    -ms-transition: .15s opacity linear, .15s visibility linear;
    -o-transition: .15s opacity linear, .15s visibility linear;
    transition: .15s opacity linear, .15s visibility linear;
}

.evo-modal.fade {
	filter: alpha(opacity=50);
    opacity: 0.5;
    visibility: visible;
}

.close-sidebar {
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: right;
}

.close-sidebar a {
	font-size: 1.8rem;
	color: #111;
}

.mobile-sidebar-inner {
	position: relative;
	padding:30px;
}

.mobile-menu-nav ul li {
	display: inline-block;
	width: 100%;
}

.mobile-menu-nav ul li~li {
	border-top:1px solid #eee;
}

.mobile-menu-nav ul li ul {
	padding-left: 40px;
	display: none;
}

.mobile-menu-nav ul li a {
	position: relative;
	display: block;
	padding:10px 0;
	color: #111;
	text-decoration: none;
}

.mobile-menu-nav ul li.menu-child > a:before {
	position: relative;
    display: inline-block;
    float: right;
    font-family: 'FontAwesome';
    content: "\f107";
    margin-left: 10px;
}

/*============================================================================
  >> 03. MAIN
  ============================================================================
*/

.site-slider .slider-item {
	position: relative;
	height: 700px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

.site-slider .slider-item:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.site-featured .slider-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.site-featured .slider-inner .slider-text {
	-webkit-align-self: center;
    align-self: center;
    width: 100%;
}

.site-featured .subtitle {
	display: inline-block;
	width: 100%;
	font-size: 2.4rem;
	font-weight: 100;
	color: #fff;
}

.site-featured h3 {
	font-size: 3.6rem;
	font-weight: 700;
	color: #fff;
	margin:0;
}

.featured-dots {
	position: absolute;
	bottom: 200px;
	width: 100%;
}

.site-featured .slick-dots {
	position: absolute;
	bottom: 200px;
	max-width: 1635px;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
}

.site-featured .slick-dots li {
	display: inline-block;
	margin-right: 5px;
}

.site-featured .slick-dots li button {
	display: inline-block;
	width: 13px;
	height: 13px;
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	text-indent: -9999px;
	border:0;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    outline: none;
    border-color:none;
    -webkit-box-shadow: none;
}

.site-featured .slick-dots li.slick-active button {
	background-color: #ee272e;
}

.promo-half-top {
	margin-top: -112px;
}

.promo-box .box-item {
	position: relative;
}

.promo-box .box-item a {
	position: relative;
	display: block;
}

.promo-box .box-detail {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 10px 30px;
	font-size: 3.6rem;
	font-weight: 700;
	color: #fff;
}

.promo-box .box-detail span {
	opacity: .5;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.promo-box .box-detail i {
	float: right;
}

.promo-box .box-item a:hover .box-detail span {
	opacity: 1;
}

.light-bg:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #111;
	top: 0;
	left: 0;
	opacity: .55;
}

.light-bg.red-light:before {
	background-color: #ff0009;
}

.light-bg.blue-light:before {
	background-color: #1b6197;
}

.home-text {
	position: relative;
	display: inline-block;
	width: 100%;
}

.home-text-inner {
	padding: 100px 0 0;
}

.module-title {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 60px;
}

.module-title span {
	font-size: 2.4rem;
	font-weight: 100;
}

.module-title h3 {
	font-size: 3.6rem;
	font-weight: 700;
	margin:0;
}

.text-body {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 100px;
}

.text-body p {
	font-size: 1.6rem;
	font-weight: 300;
}

.text-body a {
	display: inline-block;
	width: 200px;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	background-color: #e51b1f;
	border-radius: 15px;
	color: #fff;
	margin-top: 35px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.text-body a:hover {
	background-color: #1b6197;
}

.flex-center .box-detail {
	position: absolute;
	width: 100%;
	height: 100%;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    padding:0;
}

.flex-center .box-detail span {
	-webkit-align-self: center;
    align-self: center;
    width: 100%;
    text-align: center;
}

.module-logos {
	padding-top: 70px;
}

.module-logos .site-slider li {
	text-align: center;
	padding:25px;
}

.module-logos .site-slider li img {
	display: inline-block;
}

.logo-carousel {
	padding:0 50px;
}

.logo-carousel .slick-arrow {
	position: absolute;
	top: 33px;
    left: -70px;
    width: 50px;
    height: 50px;
    font-size: 0px;
    background-color: transparent;
    border:0;
    outline: none;
    border-color:none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.logo-carousel .slick-arrow:before {
	position: absolute;
	font-family:'FontAwesome';
	content: "\f104";
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	font-size: 4.8rem;
    line-height: 49px;
}

.logo-carousel .slick-next {
	left: initial;
	right: -60px;
}

.logo-carousel .slick-next:before {
	content: "\f105";
}

.breadcrumps {
	position: relative;
	display: inline-block;
	width: 100%;
	background-color: #e51b1f;
	padding: 30px 0;
}

.breadcrumps h6 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
	margin:0;
}

.breadcrumps ul li {
	position: relative;
	display: inline-block;
	margin-right: 18px;
}

.breadcrumps ul li~li:before {
	position: absolute;
	font-family:'FontAwesome';
	content: "\f105";
	color: #fff;
	left: -12px;
}

.breadcrumps ul li a {
	display: inline-block;
	font-family: Arial;
	font-size: 1.2rem;
	color: #fff;
}

.page-content {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-top: 70px;
}

.about-text p {
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.8;
}

.about-image {
	position: relative;
	display: inline-block;
	float: right;
}

.about-image:before {
	position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 25px solid #e51b1f;
    z-index: -1;
    top: 5px;
    left: -55px;
    -ms-transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
}

.about-images {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-top: 80px;
}

.about-row {
	margin-left: -5px;
	margin-right: -5px;
}

.about-row .about-image-item {
	display: inline-block;
	float: left;
	width: 20%;
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 30px;
}

/*============================================================================
  >> 04. FOOTER
  ============================================================================
*/

footer {
	background-image: url(assets/images/map.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	background-color: #000;
	margin-top: 50px;
}

.footer-inner {
	position: relative;
	display: inline-block;
	width: 100%;
	padding-top: 50px;
}

.widget-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
}

.about-widget p {
	font-size: 1.4rem;
	font-weight: 300;
	color: #a8a8a8;
	padding-right: 100px;
}

.site-map ul {
	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.site-map ul li a {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 300;
	color: #fff;
	padding-bottom: 5px;
}

.company-info {
	margin-top: 10px;
	color: #fff;
	font-weight: 300;
}

.company-info > * {
	display: inline-block;
	width: 100%;
}

.company-adress {
	font-weight: 300;
	margin-top: 10px;
}

.copyright {
	margin-top: 100px;
	margin-bottom: 30px;
}

.copyright > * {
	display: inline-block;
}

.hizmetlerimiz-item {
	position: relative;
	display: inline-block;
	float: left;
	width: 20%;
}

.hizmet-image {
	position: relative;
}

.hizmet-image > img {
	width: 100%;
}

.hizmet-image:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	top: 0;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hizmet-detail {
	position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 0;
    top: 0;
}

.hizmet-content {
	-webkit-align-self: center;
    align-self: center;
    width: 100%;
    text-align: center;
}

.hizmet-content .hizmet-icon {
	width: 84px;
	height: 84px;
	display: inline-block;
	line-height: 84px;
	text-align: center;
}

.hizmet-content .hizmet-icon img {
	display: inline-block;
}

.hizmet-content h6 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
	margin-top: 60px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hizmetlerimiz-item a:hover .hizmet-image:before {
	background-color: rgba(0, 0, 0, 0.75);
}

.hizmetlerimiz-item a:hover .hizmet-content h6 {
	margin-top: 20px;
}

.urun-item {
	margin-bottom: 50px;
}

.urun-item img {
	width: 100%;
}

.urun-item .urun-adi h3 {
	font-family: Arial;
	font-size: 2.2rem;
	font-weight: 800;
}

.urunler-small .urun-adi h3 {
	font-size: 1.8rem;
}

.urun-item .urun-aciklama p {
	font-weight: 300;
}

.urun-row {
	position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.referanslar .referans-logo {
	display: inline-block;
	width: 100%;
	border:1px solid #e51b1f;
	padding:15px;
}

.referanslar .referans-logo img {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.referanslar .referans-logo:hover img {
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.cozum-ortagi {
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: center;
	background-color: #e51b1f;
	color: #fff;
	padding:100px 0;
	margin-bottom: -50px;
}

.cozum-ortagi span {
	display: inline-block;
	font-size: 3rem;
	font-weight: 700;
}

.cozum-ortagi a {
	display: inline-block;
    background-color: #fff;
    color: #111;
    padding: 13px 50px;
    font-size: 18px;
    font-weight: 700;
    margin-left: 25px;
    border-radius: 10px;
    text-decoration: none;
}

#map {
    width: 100%;
    height: 650px;
}

.iletisim-column {
	font-weight: 300;
}

.iletisim-column h3 {
	font-size: 3.6rem;
	font-weight: 900;
	color: #e51b1f;
}

.iletisim-column ul {
	margin-top: 30px;
}

.iletisim-column ul li {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}

.iletisim-column ul li span {
	display: inline-block;
	width: 100px;
}

.iletisim-column ul li div {
	display: inline-block;
}

.iletisim-column ul li p {
	display: inline;
	margin-bottom:0;
	margin-left: 20px;
}

#contact-form {
	margin-bottom: 50px;
}

#contact-form label {
	position: relative;
	display: inline-block;
	font-weight: 300;
	width: 100%;
}

#contact-form label span {
	display: inline-block;
	width: 150px;
}

#contact-form label .row div {
	display: inline-block;
}

#contact-form label .form-control {
	display: inline-block;
    height: 40px;
    border: 2px solid #eee;
    background-color: #eee;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#contact-form label .form-control:focus, #contact-form label .form-control:active {
	background-color: #fff;
	border-color: #e51b1f;
}

#contact-form label textarea.form-control {
	height: 150px;
}

#contact-form label button {
	width: 240px;
	height: 50px;
	border-radius: 15px;
	border:0;
	color: #fff;
	background-color: #e51b1f;
	font-weight: 700;
}

.uyarilar-center {
	text-align: center;
}

.uyarilar-center .urun-item {
	float: none;
	display: inline-block;
}

.yama-olcu-listesi .urun-item {
	width: 20%;
}

/*============================================================================
  >> 01. MOBILE
  ============================================================================
*/

@media (min-width:1665px){
    .container {
        width:1665px
    }
}

@media (max-width: 1664px) {
	.main-menu ul li a {
		padding: 0 20px;
	}
	.promo-box .box-detail {
		font-size: 2.8rem;
	}
	.promo-box .box-detail i {
		margin-top: 7px;
	}
	.about-image:before {
		left: 0;
	}
	.hizmet-content h6 {
		font-size: 1.8rem;
	}
	.hizmet-content .hizmet-icon {
		width: 64px;
		height: 64px;
		line-height: 64px;
	}
	.hizmet-content h6 {
		margin-top: 40px;
	}
	.hizmet-content:nth-child(2) .hizmet-icon {
		height: 50px;
	}
    .site-featured .slick-dots {
    	max-width: 1140px;
    }
}

@media (max-width: 1280px) {

}

@media (max-width: 1200px) {
	header .container {
		width: 100%;
	}
    .site-featured .slick-dots {
    	max-width: 940px;
    }
}

@media (max-width: 1198px) {
	.main-menu ul li a {
		padding: 0 10px;
	}
}

@media (max-width: 1024px) {

}

@media (min-width: 768px) and (max-width: 991px) {
	.main-menu, .topbar {
		display: none;
	}
	.brand-logo {
    	margin-top: 20px;
    	margin-bottom: 20px;
	}
	header .container .mobile-menu {
		display: inline-block;
	}
	.promo-box .box-item img {
		width: 100%;
	}
	.promo-box .box-detail {
		padding:30px;
	}
	.text-body img {
		margin-bottom: 30px;
	}
	footer .widget {
		margin-bottom: 30px;
	}
	.about-image {
		margin:50px 0;
	}
	.about-row .about-image-item, .hizmetlerimiz-item {
		width: 50%;
	}
	.about-row .about-image-item:last-child, .hizmetlerimiz-item:last-child, .yama-olcu-listesi .urun-item {
		width: 100%;
	}
    .site-featured .slick-dots {
    	max-width: 720px;
    }
}

@media (max-width: 767px) {
	.main-menu, .topbar {
		display: none;
	}
	.brand-logo {
    	margin-top: 20px;
    	margin-bottom: 20px;
	}
	header .container .mobile-menu {
		display: inline-block;
	}
	.promo-box .box-item img {
		width: 100%;
	}
	.promo-box .box-detail {
		padding:30px;
	}
	.text-body img {
		margin-bottom: 30px;
	}
	footer .widget {
		margin-bottom: 30px;
	}
	.module-title span {
		font-size: 1.8rem;
	}
	.module-title h3 {
		font-size: 2.4rem;
	}
	.site-slider .slider-item {
		height: 500px;
	}
	.featured-dots {
		bottom: 145px;
	}
	.about-image {
		margin:50px 0;
	}
	.about-row .about-image-item, .hizmetlerimiz-item {
		width: 50%;
	}
	.about-row .about-image-item:last-child, .hizmetlerimiz-item:last-child, .yama-olcu-listesi .urun-item {
		width: 100%;
	}
    .site-featured .slick-dots {
		max-width: 100%;
	    padding-left: 15px;
	    bottom: 150px;
    }
}

@media (max-width: 689px) {
	.about-row .about-image-item, .hizmetlerimiz-item {
		width: 100%;
	}
}

@media (max-width: 666px) {
	.hizmet-content h6 {
    	font-size: 2.8rem;
	}
}

@media (max-width: 480px) {

}

@media (max-width: 360px) {

}

@media (max-width: 320px) {

}