﻿@charset "utf-8";
/* CSS Document */

/******************************

COLOR PALETTE

#FFFFFF - BACKGROUND LIGHT
#F7F7F7 - BACKGROUND "DARK"
#313131 - TEXT COLOR DARK
#717a85 - PARAGRAPH COLOR
#00bcd5 - BLUE
#db5246 - RED

GRADIENTS

#00bcd5 - #0dd1ec - HOME PANEL


[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Logo
5. Home Navigation
6. Hamburger menu
7. Fullscreen Menu
8. Work
9. Contact
10. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Playfair+Display:400,400i,700,900|Raleway:300,300i,400,400i,500,600,700,800,900');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
}
body
{
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	background: #fff;
	color: #313131;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none !important;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p
{
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	color: #717a85;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	position: relative;
	color: inherit;
}
p a::after
{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #00bcd5;
	opacity: 0.2;
	content: '';
}
p a:hover::after
{
	opacity: 0.3;
}
::selection
{
	background: #e3f8fa;
}
p::selection
{
	background: #e3f8fa;
}
h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 28px;}
h4{font-size: 24px;}
h5{font-size: 16px;}
h6{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	color: #313131;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.dark
{
	background: #F7F7F7;
}
.light
{
	background: #FFFFFF;
}
.super_container
{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.hvr span
{
	display: inline-block;
}

.lightblue {
    color:#254886;
    font-weight:300;
   
}

.lightseablue {
     color:#00afdc;
    font-weight:lighter;
    letter-spacing:1px;

}

.ImageGrid p {
    font-weight:bold;
    padding:25px 0px;
        font-family: 'Open Sans';
}

/*********************************
3. Header
*********************************/

.header
{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: transparent;
	z-index: 10002;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.header_content
{
	width: 100%;
	height: 100%;
}

/*********************************
4. Logo
*********************************/

.logo_container
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 80px;
	z-index: 1000;
}
.logo
{
	text-transform: uppercase;
	color: #313131;
	font-size: 24px;
	font-weight: 700;
	line-height: 22px;
}
.logo_a
{
	letter-spacing: 8px;
}
.logo_b
{
	letter-spacing: 14px;
	color: #b22020;
}
.fs_menu_left_inner .logo_container
{
	top: 40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.button_a
{
	display: inline-block;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 12px;
	padding-bottom: 12px;
	border: solid 2px rgba(0, 0, 0, 0.1);
	border-radius: 30px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #313131;
	cursor: pointer;
	background: transparent;
}
.about_link_button
{
	margin-top: 35px;
}
.button_a:hover
{
	background: #313131;
	color: #FFFFFF;
	border-color: #313131;
}
.button_b
{
	display: inline-block;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: solid 1px #00bcd5;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #00bcd5;
	cursor: pointer;
	background: transparent;
}
.button_b:hover
{
	background: #00bcd5;
	color: #F7F7F7;
}
.button_line
{
	display: inline-block;
	margin-left: 10px;
}
.button_line a
{
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 900;
	color: #00bcd5;
	padding-top: 15px;
	padding-bottom: 15px;
	letter-spacing: 2px;
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	z-index: 100;
}
.button_line a i
{
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-size: 22px;
	margin-bottom: 3px;
	margin-left: 60px;
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.button_line a:after
{
	display: block;
	position: absolute;
	left: -10px;
	bottom: 2px;
	width: calc(100% + 12px);
	height: 2px;
	background: #00bcd5;
	content: '';
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	z-index: -1;
  	pointer-events: none;
}
.button_line a:before
{
	display: block;
	position: absolute;
	left: -10px;
	top: 5px;
	width: 0%;
	height: 41px;
	background: #00bcd5;
	opacity: 0.2;
	content: '';
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	z-index: -1;
  	pointer-events: none;
}
.button_line a:hover
{
	color: #FFFFFF;
	padding-left: 15px;
}
.button_line a:hover::before
{
	width: calc(100% + 12px);
}
.button_line a:hover::after
{
	bottom: 7px;
	/*opacity: 0;*/
	background: #FFFFFF;
}
.contact_button_1
{
	margin-top: 24px;
}
.projects_link
{
	display: inline-block;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #717a85;
	cursor: pointer;
	margin-left: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.projects_link:hover,
.projects_link:focus {    
	color: #717a85;
}
.projects_link span {
	display: inline-block;
}
.submit_btn
{
	position: relative;
	display: inline-block;
	margin-left: 10px;
	border: none;
	background: transparent;
	text-transform: uppercase;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 900;
	color: #00bcd5;
	padding-top: 15px;
	padding-bottom: 15px;
	letter-spacing: 2px;
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	z-index: 100;
}
.submit_btn i
{
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-size: 22px;
	margin-bottom: 3px;
	margin-left: 60px;
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.submit_btn:after
{
	display: block;
	position: absolute;
	left: -10px;
	bottom: 2px;
	width: calc(100% + 12px);
	height: 2px;
	background: #00bcd5;
	content: '';
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	z-index: -1;
  	pointer-events: none;
}
.submit_btn:before
{
	display: block;
	position: absolute;
	left: -10px;
	top: 5px;
	width: 0%;
	height: 41px;
	background: #00bcd5;
	opacity: 0.2;
	content: '';
	-webkit-transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	transition: all 200ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  	z-index: -1;
  	pointer-events: none;
}
.submit_btn:hover
{
	color: #FFFFFF;
	padding-left: 15px;
}
.submit_btn:hover::before
{
	width: calc(100% + 12px);
}
.submit_btn:hover::after
{
	bottom: 7px;
	background: #FFFFFF;
}

/*********************************
5. Home Navigation
*********************************/

.home_nav
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	z-index: 1000;
}
.home_nav ul
{
	display: block;
	width: auto;
	background: transparent;
	margin-bottom: 0px;

}
.home_nav ul li
{
	display: inline;
	margin-right: 5px;  

}
.home_nav ul li:last-child
{
	margin-right: 0px;
}
.home_nav ul li a
{
	position: relative;
	color: #02408d;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 900;
	padding-top: 10px;
	padding-bottom: 10px;

}
.home_nav ul li a:hover
{
	position: relative;
	color: #00afdc;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 900;
	padding-top: 10px;
	padding-bottom: 10px;

}
.link-braces a
{
	padding-left: 10px;
	padding-right: 10px;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.link-braces a::before,
.link-braces a::after
{
	position: absolute;
	top: 9px;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
}

.link-braces a::before
{
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.link-braces a::after
{
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}

.link-braces a:hover::before,
.link-braces a:hover::after
{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

/*********************************
6. Hamburger menu
*********************************/

.hamburger_container_outer
{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 150px;
	height: 100px;
	background: transparent;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	z-index: 10005;
}
.hamburger_container
{
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	width: 41px;
	height: 41px;
	z-index: 10004;
}
.hamburger
{
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.hamburger.active div:first-child
{
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active div:last-child
{
	transform: translateY(-8px) rotate(-45deg);
}
.hamburger div
{
	position: absolute;
	left: 5px;
	width: 30px;
	height: 3px;
	background: #313131;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	transform-origin: center;
}
.hamburger div:first-child
{
	top: 11px;
}
.hamburger div:last-child
{
	bottom: 11px;
}

/*********************************
7. Fullscreen Menu
*********************************/

.fs_menu_overlay
{
	display: none;
	position: fixed;
	width: 200%;
	height: 100%;
	top: 0;
	left: 200%;
	background: #FFFFFF;
	visibility: visible;
	opacity: 1;
	z-index: 10003;
	-webkit-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	-moz-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	-ms-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	-o-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
}
.fs_menu_overlay_inner
{
	width: 100%;
	height: 100%;
}
.fs_menu_left
{
	position: absolute;
	top: 0;
	left: 0;
	width: 90%;
	height: 100%;
	background: #00bcd5;
	-webkit-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	-moz-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	-ms-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	-o-transition: all 1000ms cubic-bezier(.21,.51,.43,.99);
	transition: all 1300ms cubic-bezier(.21,.51,.43,.99);
}
.fs_menu_left_inner
{
	width: 100%;
	height: 100%;
}
.fs_menu_right
{
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	background: #00bcd5;
}
.fs_menu_overlay.active
{
	visibility: visible;
	opacity: 1;
}
.fs_nav
{
	position: absolute;
	top: 200px;
	right: -90px;
}
.fs_nav ul li
{
	position: relative;
	text-align: right;
	opacity: 0;
}
.fs_nav ul li:last-child
{
	margin-bottom: 0px;
}
.fs_nav ul li a
{
	color: #313131;
	font-weight: 900;
	font-size: 40px;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 48px;
	letter-spacing: 2px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.fs_nav ul li a:hover
{
	color: #717a85;
	transform: translateX(-15px);
}
.fs_menu_social
{
	position: absolute;
	top: 208px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	list-style: none;
}
.fs_menu_social li
{
	margin-bottom: 30px;
	text-align: center;
}
.fs_menu_social li a i
{
	font-size: 22px;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.fs_menu_social li a i:hover
{
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	transform: scale(1.3);
}
.fs_menu_logo
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%) rotate(90deg);
	transform-origin: center;
	bottom: 150px;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 5px;
	text-transform: uppercase;
}
.fs_menu_line
{
	position: absolute;
	right: 70px;
	bottom: 120px;
	width: 50px;
	height: 5px;
	background: #db5246;
}

/*********************************
8. Work
*********************************/

#work
{
	width: 100%;
	padding-top: 120px;
}
.work_nav_container
{
padding-top:40px;
padding-bottom:40px;
}
.work_nav_container ul li
{
	position: relative;
	display: inline-block;
	margin-right: 60px;
}
.work_nav_container ul li:last-child
{
	margin-right: 0px;
}
.work_nav_container ul li a
{
	font-size: 36px;
	font-weight: 400;
	color: #717a85;
	margin-top: 0px;
	margin-bottom: 0px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.work_nav_container ul li a:hover
{
	color: #313131;
}
.work_nav_container ul li.active a
{
	color: #313131;
}
.work_nav_container ul li.active::after
{
	display: block;
	position: absolute;
	left: -5px;
	bottom: 7px;
	width: calc(100% + 10px);
	height: 20px;
	background: rgba(0, 187, 213, 0.2);
	content: '';
	z-index: -1;
}
.work_container
{
	padding-left: 0px;
	padding-right: 0px;
}

/*KAT PLANLARI*/

.grid
{
	/*margin-top: 166px;*/
	margin-bottom: 0px;
}
.grid-plan a::after
{
	display: block;
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 187, 213, 0.45);
	opacity: 0;
	-webkit-transition: opacity 500ms ease;
	-moz-transition: opacity 500ms ease;
	-ms-transition: opacity 500ms ease;
	-o-transition: opacity 500ms ease;
	transition: opacity 500ms ease;
}
.grid-plan a:hover::after
{
	opacity: 1;
}
.grid-plan a:hover h4
{
	opacity: 1;
}
.grid-plan
{
	width: 33%;
	height: calc(50vw / 1.777777777777778);
	overflow: hidden;
}
.grid-plan a
{
	display: block !important;
	width: 100%;
	height: 100%;
}
.grid-plan a span
{
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	-webkit-transition: all 2000ms ease;
	-moz-transition: all 2000ms ease;
	-ms-transition: all 2000ms ease;
	-o-transition: all 2000ms ease;
	transition: all 2000ms ease;
}
.grid-plan a:hover span
{
	transform: scale(1.1);
}
.grid-plan a h4
{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	font-weight: 400;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	opacity: 0;
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	z-index: 10;
}

/*GALERİ*/

.grid-item a::after
{
	display: block;
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 187, 213, 0.45);
	opacity: 0;
	-webkit-transition: opacity 500ms ease;
	-moz-transition: opacity 500ms ease;
	-ms-transition: opacity 500ms ease;
	-o-transition: opacity 500ms ease;
	transition: opacity 500ms ease;
}
.grid-item a:hover::after
{
	opacity: 1;
}
.grid-item a:hover h4
{
	opacity: 1;
}
.grid-item
{
	width: 50%;
	height: calc(50vw / 1.777777777777778);
	overflow: hidden;
}
.grid-item a
{
	display: block !important;
	width: 100%;
	height: 100%;
}
.grid-item a span
{
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	-webkit-transition: all 2000ms ease;
	-moz-transition: all 2000ms ease;
	-ms-transition: all 2000ms ease;
	-o-transition: all 2000ms ease;
	transition: all 2000ms ease;
}
.grid-item a:hover span
{
	transform: scale(1.1);
}
.grid-item a h4
{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	font-size:28px;
	font-weight: 400;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	opacity: 1;
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	z-index: 10;
}

/*********************************
9. Contact
*********************************/

#contact-form
{
	
}
#form_name,
#form_email
{
	position: relative;
	border: none;
	border-bottom: solid 2px #00bcd5;
	box-shadow: none;
	font-size: 18px;
	padding-left: 0px;
	border-radius: 0px;
}
#form_message
{
	height: 150px;
	margin-top: 4px;
	border: none;
	border-bottom: solid 2px #00bcd5;
	box-shadow: none;
	border-radius: 0px;
	padding-left: 0px;
	padding-right: 0px;
	font-size: 18px;
	background: transparent;
}
input[type="email"], input[type="password"], input[type="text"]
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 55px;
    padding: 0 20px;
    background: transparent;
}
.name_focus,
.email_focus
{
	position: absolute;
	top: -10px;
	left: 0;
	font-size: 12px;
	color: #00bcd5;
	z-index: 10000;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.message_focus
{
	top: -15px;
}
::-webkit-input-placeholder
{
	font-size: 18px;
	color: #717a85 !important;
	opacity: 1 !important;
}
:-moz-placeholder
{
	font-size: 18px;
	color: #717a85 !important;
	opacity: 1 !important;
}
::-moz-placeholder
{
	font-size: 18px;
	color: #717a85 !important;
	opacity: 1 !important;
} 
:-ms-input-placeholder
{ 
	font-size: 18px;
	color: #717a85 !important;
	opacity: 1 !important;
}
::input-placeholder
{
	font-size: 18px;
	color: #717a85 !important;
	opacity: 1 !important;
}
.button_line_4
{
	float: right;
	margin-right: 17px;
	margin-top: 15px;
}

/*********************************
5. Google map
*********************************/

#map_section
{
	
}
.google_map_container
{
	height: 568px;
	padding-left: 0px;
	padding-right: 0px;
}
#google_map
{
	width: 100%;
	height: 100%;
}
.map_container
{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#map
{
	width: 100%;
	height: calc(100% + 30px);
}
.address
{
	height: 528px;
}
.address ul
{
	position: absolute;
	top: 50%;
	left: 24%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.address ul li:first-child
{
	text-transform: uppercase;
	color: #00bcd5;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 14px;
}
.address ul li h4
{
	color: #717a85;
}

/*********************************
6. Contact Info Section
*********************************/

#contact_info_section
{
	padding-top: 200px;
	padding-bottom: 200px;
}
.get_in_touch
{
	display: inline-block;
	position: relative;
	list-style: none;
	width: auto;
}
.get_in_touch li
{
	display: block;
	position: relative;
	margin-bottom: 12px;
}
.get_in_touch li span a
{
	display: inline-block;
	position: relative;
	font-size: 24px;
	font-weight: 500;
	color: #717a85;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
.get_in_touch li span a::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 2px;
	background: #717a85;
	content: '';
}

/*********************************
10. Footer
*********************************/

#footer {
    margin-top: 80px;
    background-color: #002975;
    background-image: url(/content/images/footer-bg_deniz.jpg);
    color: #fff;
    padding-bottom: 40px;
    font-size: 13px;
    background-size: cover;
}


.footer_content p {
    font-weight: 400;
    color: #fff;
    font-size: 13px;
    color: #00418a;
}

.footer-content .adres strong {
    font-weight: 900;
}

.footer-copyright {
    margin-top: 20px;
}

    .footer-copyright p {
        color: #00418a;
        font-size: 13px;
        letter-spacing: 1px;
    }


.footer_content {
    padding-top: 180px;
    margin-bottom: 40px;
    color: #fff;
}

    .footer_content h3, h4 {
        color: #fff;
        font-weight: bold;
        padding: 0px;
        margin: 0px;
    }

.footer_content_left {
    text-align: left;
}

.footer_content_right {
    text-align: right;
}

.footer_copy {
    display: inline-block;
    width: 350px;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    margin-right: 20px;
}

    .footer_copy div:first-child {
        margin-bottom: 20px;
    }

        .footer_copy div:first-child::after {
            display: block;
            position: absolute;
            top: 10px;
            right: -43px;
            width: 100%;
            height: 2px;
            background: #FFFFFF;
            content: '';
        }

.footer_logo_container {
    display: inline-block;
}

    .footer_logo_container .logo_container {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        -o-transform: translateY(-2px);
        transform: translateY(-2px);
    }

        .footer_logo_container .logo_container .logo {
            text-transform: uppercase;
            color: #FFFFFF;
            font-size: 25px;
            font-weight: 700;
            line-height: 20px;
        }

        .footer_logo_container .logo_container .logo_a {
            letter-spacing: 8px;
            margin-bottom: 8px;
        }

        .footer_logo_container .logo_container .logo_b {
            letter-spacing: 12px;
            color: #00bbd5;
        }

.footer_social {
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

    .footer_social ul li {
        display: inline-block;
        margin-right: 15px;
    }

        .footer_social ul li:last-child {
            margin-right: 0px;
        }

        .footer_social ul li a {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100px;
            height: 100px;
            background: #01b7d4;
            color: #F7F7F7;
            border: solid 3px #F7F7F7;
            border-radius: 50%;
            font-size: 42px;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .footer_social ul li a:hover {
                transform: translateY(-10px);
            }