/*-------------------------------------------------------------------------------------
Theme Name: Alex Zane
Theme URI:  http://themes.madsparrow.xyz/alex_zane/index.html
Version:    1.0
Author:     madsparrow
-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------
[TABLE OF CONTENTS]

    01. GENERAL
    02. BUTTON
    03. HEADER
    04. MOBILE MENU NAVIGATION
    05. PARALLAX
    06. HOME PAGE
    07. GALLERY AND BLOG ITEM
    08. BLOG POST PAGE
    09. SOCIAL ICONS
    10. FORMS
    11. FOOTER
    12. RESPONSIVE
    
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    text: #666
    hover: #0b5192
    
-------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*  01. GENERAL
/*-----------------------------------------------------------------------------------*/
body {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    color: #333;
    letter-spacing: .1rem;
    opacity: 0;
}
h1,
h2,
h3,
h4 {
    font-weight: 900;
	color:#083a81;
}
h1 {
    font-size: 6rem;
}
h2 {
    font-size: 3rem;
}
h3 {
    font-size: 26px;
}
p {
    font-weight: 400;
    line-height: 1.5;
    margin: 1rem 0;
}
a {
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
a:visited,
a:active,
a:link {
    text-decoration: none;
}
ul {
    list-style: none;
}
blockquote {
    padding: 0.75rem 1.25rem;
    color: #777;
    font-weight: 200;
    margin: 0 0 2rem;
    font-size: 1.8rem;
    border-left: .3rem solid #eee;
}
.fa{
    margin:0 .5rem;
}
.fa-heart{
    color: #666;
    margin-right: .5rem;
    -webkit-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out;
}
.fa-heart:hover{
    color: #0b5192;
}
.container {
    width: 100%;
    padding: 0;
}
.content{
    background-image: url(../images/bg.png);
    min-height: 100%;
}
.darker{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
}
.section .darker{
    background: #000;
    opacity: 1;
}
.tag{
    border-top: solid 1px #eee;
    padding: 1rem 0;
    margin-top: 5rem;
}
.tag a:hover{
    color: #666;
}

/* TOOLTIP */
#tt {
	position:absolute; 
	display:block; 
	background-color:#06C; 
	font-family: 'Ubuntu', sans-serif;
	color:#FFF;
	font-size:12px;
	padding:8px;
	border-radius:10px;
	 }
.oval { border-radius:10px; }
/* TOOLTIP */
/*-----------------------------------------------------------------------------------*/
/*  02. BUTTON
/*-----------------------------------------------------------------------------------*/
.btn {
    padding: 1rem 2rem;
    position: relative;
    border:none;
    opacity: 0;
    z-index: 1;
    background: none;
    border: none;
    border-radius: 5rem !important;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: color 0.3s;
            transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
            transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn > span {
    padding-left: 0.35em;
}
.btn::before,
.btn::after {
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
            transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
            transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn::before {
    border: .2rem solid #083a81;
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
}
.btn::after {
    background: #083a81;
}
.btn:hover {
    color: #083a81;
}
.btn:hover::before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
}
.btn:hover::after {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
            transform: scale3d(0.8, 0.8, 1);
}
/*Load more*/
.load-more {
    text-align: center;
    width: 100%;
    display: inline-block;
    padding-top: 5rem;
}
/* Top buttone */
.back-top {
    display: inline-block;
    height: 4rem;
    width: 4rem !important;
    position: fixed;
    bottom: 5rem;
    right: 4rem;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    padding: .5rem 0 0 0;
    text-align: center;
    border-radius: 4rem;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
       -moz-transition: opacity .3s 0s, visibility 0s .3s;
         -o-transition: opacity .3s 0s, visibility 0s .3s;
            transition: opacity .3s 0s, visibility 0s .3s;
}
.back-top.back-top-is-visible,
.back-top.back-top-fade-out,
.no-touch .back-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
       -moz-transition: opacity .3s 0s, visibility 0s 0s;
            transition: opacity .3s 0s, visibility 0s 0s;
}
.back-top.back-top-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.back-top.back-top-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.back-top:hover {
    opacity: 1;
}
button {
    width: 17rem;
}
.pager a{
    min-width: 13rem;
    padding: 1rem 2rem !important;
}
.pager li > a:hover,
.pager li > a:focus{
    background: transparent;
    border: none;
}
.like{
    text-align: center;
    color: #aaa;
}
.like i{
font-size: 3.4rem;
vertical-align: middle;
cursor: pointer;
color: #aaa;
}


.lang {
	position:fixed;
	width:90px;
	height:34px;
	right:10px;
	top:10px;
	z-index:999;
	
}
.ingiliz {
	position:absolute;
	left:0px;
	top:0px;
	width:38px;
	height:34px;
	background-image:url(../images/lang/en_01.png);
}
.dik {
	position:absolute;
	left:40px;
	top:0px;	
	width:3px;
	height:34px;
	
}
.alman {
	position:absolute;
	left:44px;
	top:0px;
	width:38px;
	height:34px;
	background-image:url(../images/lang/de_01.png);
}
/*-----------------------------------------------------------------------------------*/
/*  03. NAVIGATION
/*-----------------------------------------------------------------------------------*/
/*Nav*/
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    text-align: left;
}
nav ul li {
    display: inline-block;
    text-align: left;
    margin-left: 2em;
	
}
nav a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    padding: .7em 0 .7em 0;
    color: #fff;
    text-shadow: 0 .1rem .1rem rgba(0, 0, 0, 0.5);
}
nav a:hover {
    color: #b7eff7;
    text-shadow: none;
}
/* Hide Dropdowns by Default */
nav ul ul {
    z-index: 4;
    position: absolute;
    margin-left: 0em;
    display: none;
    text-align: center;
}

nav ul ul li{
    z-index: 5;
    position: absolute;
    margin-left: 0px;
    display: none;
    text-align: left;
}
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 20rem;
    float: none;
    display: list-item;
    position: relative;
    background: #0b5192;
	color:#FFF;
    border-bottom: solid .1rem rgba(255, 255, 255, .1);
}
nav ul ul li:last-child {
    border-bottom: none;
}
nav ul ul li a {
    font-size: 1.2rem;
    color: #FFF !important;
    text-shadow: none;
    padding-left: 2rem;
}
nav ul ul li a:hover {
    color: #000 !important;
}
nav ul ul li:hover {
	background-color:#b7eff7;
    color:#b7eff7;
}
/* Second, Third and more Tiers */
nav ul ul ul li {
    top: -32px;
    left: -200px;
	background-color:#0b5192;
	border-left:1px solid #0b5192;
}
nav ul ul ul li:hover  {
    display: inherit;
}






















.header {
    position: relative;
    height: 12rem;
    width: 100%;
    color: #fff;

}
#logo{
    display: inline-block;
	padding:8px;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	margin-left:50px;
	
}
#logo  {
    box-shadow: none;
    width: auto;
}
#menu{
    display: inline-block;
    float: right;
	width:600px;
	margin-top:16px;
	background-image:url(../images/black_trans.png);
	text-align:left;
	border-bottom-left-radius:20px;
	border-top-left-radius:20px;
}
.main-menu {
   
    margin: 4rem auto;
	
}
/*Fixed header class*/
.fixed {
    position: fixed;
    height: auto;
    left: 0;
    right: 0;
    z-index: 2;
    color: #FFF;
    background: transparent;
}
.fixed p{color:#FFF; }

.menu-active {
    color: #b7eff7;
}





/*-----------------------------------------------------------------------------------*/
/*  4. MOBILE MENU NAVIGATION
/*-----------------------------------------------------------------------------------*/
.mobile-menu{
    cursor: pointer;
    color: #fff;
	z-index: 9995;
	
}
.mobile-menu-overlay{
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9995;
    text-align: right;
    background: #0b5192;
    overflow: auto;
    padding: 2.4rem 2.6rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.5s;
            transition: all ease-in-out 0.5s;
}
.mobile-menu-content{
    position: absolute;
    right: 2.6rem;
    top: 10rem;
    overflow-y: auto; 
}
.mobile-menu-item a{
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
}
.mobile-submenu{
    display: none;
}
.mobile-submenu a{
    font-size: 1.8rem;
    opacity: .8;
}
.visible{
    opacity: 1;
    visibility: visible;
}





/*-----------------------------------------------------------------------------------*/
/*  05. PARALLAX
/*-----------------------------------------------------------------------------------*/
.parallax {
    background-image: url(../images/parallax2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    position: fixed;
    min-height: 35rem;
    padding-top: 4rem;
    width: 100%;
    top: 0;
    left: 0;
}
.item-category {
    text-align: center;
    z-index: 1;
    opacity: 1;
    display: inline-block;
    width: 100%;
    margin: -20px 0 0 0;
}
/*Border bottom parallax*/
.item-category .border div {
    height: 20px;
    bottom: 0;
    left: 0;
    top: auto;
    background: url(../images/border.svg) 100% 100%;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
/*-----------------------------------------------------------------------------------*/
/*  06. HOME PAGE
/*-----------------------------------------------------------------------------------*/
/*Home page border*/
.border div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.border .frames div {
    position: absolute;
    width: 100%;
    height: 2rem;
    top: 0;
    background: url(../images/border.svg) 50% 65%
}
.border .frames div:nth-child(3) {
    bottom: 0;
    top: auto;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.border .frames div:nth-child(4) {
    right: 0;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.border .frames div:nth-child(2),
.border .frames div:nth-child(4) {
    width: 2rem;
    height: 100%;
    background: url(../images/border-vert.svg) 65% 50%;
}
.border .corners div::before,
.border .corners div::after {
    content: "";
    background: url("../images/corner.svg") no-repeat center center;
    width: 5rem;
    height: 5rem;
    position: absolute;
    left: 1rem;
    top: 1.1rem;
}
.border .corners div:nth-child(1)::after {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    left: auto;
    right: 1rem;
    top: 1.1rem;
}
.border .corners div:nth-child(2)::before {
    left: auto;
    right: 1rem;
    top: auto;
    bottom: 1.1rem;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.border .corners div:nth-child(2)::after {
    top: auto;
    bottom: 1.1rem;
    -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
         -o-transform: rotate(270deg);
            transform: rotate(270deg);
}
.section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    width:0%;
    min-height: 80%;
    color: #fff;
    animation-delay: .9s;
}
#section1 {
    background-image: url(../images/integral_slider_01.jpg);
}
#section2 {
    background-image: url(../images/integral_slider_02.jpg);
}
#section3 {
    background-image: url(../images/integral_slider_03.jpg);
}
#section4 {
    background-image: url(../images/integral_slider_04.jpg);
}
#section5 {
    background-image: url(../images/integral_slider_05.jpg);
}
.cover-titles {
    position: relative;
    margin-top: 5rem;
    width: 100%;
    padding: 0;
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(.2,.1,.3,1.0);
    -webkit-transition-delay: opacity .2s;
            transition: all 1s cubic-bezier(.2,.1,.3,1.0);
            transition-delay: opacity .2s;
}
.cover-titles a{
    margin-left: .8rem;
}
.section .darker{
    opacity: 1;
    -webkit-transition: opacity ease-in-out .7s .1s;
            transition: opacity ease-in-out .7s .1s;
}
.active.section .darker{
    opacity: .1;
}
.active .cover-titles{
    opacity: 1;
    padding: 0 6.5rem;
}
 .align-left p:first-child {
    text-transform: uppercase;
    font-weight: 600;
    margin-left:6px;
    width: 15rem;
    text-align: right;
    border-bottom: solid 4px #0b5192;
}
.align-left p:after{
    width: 100%;
    height: 2rem;
}
.align-left p {
    max-width: 28rem;
    padding: .8rem;
    margin: 0 0 2rem 0;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 1);
	
}
.align-left .title {
    font-size: 7.8rem;
    margin: 0;
    width: 100%;
    letter-spacing: -.5rem;
    overflow: hidden;
    -webkit-text-shadow: 0 .3rem .9rem rgba(0, 0, 0, 0.4);
            text-shadow: 0 .3rem .9rem rgba(0, 0, 0, 0.4);
}
.align-left .title h1 {
    margin: 0;
    position: relative;
    font-size: 26rem;
}
.align-left .enter-button-line {
    position: relative;
    width: 4.5rem;
    height: .3rem;
    float: left;
    margin: 1.6rem 1.5rem 0 1rem;
    background: #fff;
}
/*-----------------------------------------------------------------------------------*/
/*  07. GALLERY AND BLOG ITEM
/*-----------------------------------------------------------------------------------*/
/*Grid style*/

#banner-slide {position:relative; width:100%; height:auto; margin-left:auto; margin-right:auto; margin-top:98px; z-index:10}
ul.bjqs{position:relative; list-style:none;padding:0;margin:0;overflow:hidden; display:none;}
li.bjqs-slide{position:absolute; display:none;}
ul.bjqs-controls{list-style:none;margin:0;padding:0;z-index:9999;}
ul.bjqs-controls.v-centered li a{position:absolute;}
ul.bjqs-controls.v-centered li.bjqs-next a{width:26px; height:57px; background-image:url(../images/right_slide_arrow.png); right:-26px;}
ul.bjqs-controls.v-centered li.bjqs-prev a{width:26px; height:57px; background-image:url(../images/left_slide_arrow.png); left:-26px;}
ol.bjqs-markers{list-style: none; padding: 0; margin: 0; width:100%;}
ol.bjqs-markers.h-centered{text-align: center;}
ol.bjqs-markers li{display:none;}
ol.bjqs-markers li a{display:inline-block;}
p.bjqs-caption{display:none;width:96%;margin:0;padding:2%;position:absolute;bottom:0; color:#fff;  font-family: 'Hind', sans-serif; font-size:20px; font-weight:700; text-shadow: #000 0px 0px 20px;}


.row {
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 120rem;
}
.row div{

}
.row a {
    color: rgba(119,119,121, .5);
}
.row img {
 width:auto;
	border:1px;
-webkit-box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
-moz-box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
			
			border-radius:10px;
		
}
.masonry  {
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.grid-item {
    margin-top: 3rem;
    cursor: pointer;
}
.grid-item figcaption {
    display: none;
}
/*Blog style*/
.blog-item {
    margin-bottom: 6rem;
}
.blog-item.timeline:nth-child(2) {
    margin-top: 31rem;
}
.blog-item a {
    color: #0b5192;
}
.blog-description {
    height: 26.4rem;
}
.post-info {
    min-height: 30rem;
    padding-bottom: 1rem;
    overflow: hidden;
    opacity: 0;
    animation-delay: .1s !important;
    border-bottom: solid 1px #eee;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.post-info h3{
    margin-top: 0;
}
.date {
    position: relative;
    font-size: 6em;
    font-weight: 900;
    text-align: left;
    opacity: .6;
    margin-top: 1rem;
}
.date span {
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    bottom: 2.6rem;
    left: 10rem;
    width: 3rem;
}
.post-info .text-left{
    padding: 0
}
/*Hover item*/
.grid-item:hover,
.blog-item:hover{
    z-index: 3;
}
.grid-item:hover ,
.blog-item:hover  {
    -webkit-box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
       -moz-box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
            box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
}
.text-right i{
    margin-right: -4.6rem;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.timeline .text-right i{
    margin-right: -3.2rem;
}
.blog-item:hover .text-right i{
    margin-right: -2.5rem;
}
.timeline:hover .text-right i{
    margin-right: -1rem;
}
.blog-item:hover .post-info{
    border-color: #0b5192;
}
/*-----------------------------------------------------------------------------------*/
/*  08. BLOG POST PAGE
/*-----------------------------------------------------------------------------------*/
.blog-post-meta{
    color: #0b5192;
}
.caption {
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem;
    font-style: italic;
    margin: 1.5rem;
    display: block;
}
.post-comments .comments-title {
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: solid .1rem #eee;
}
.post-comments .user-avatar {
    max-width: 7rem;
    float: left;
}
.post-comments .comment-content {
    margin-left: 10rem;
}
.post-comments .comment-meta{
    font-size: 1.2rem;
}
.comment-meta span:first-child{
    margin-left: 0;
}
.comment-meta span{
    margin-left: 1rem;
    margin-right: 1rem;
}
.comment-list li{
    margin-bottom: 5rem;
}
.comment-list ul{
    margin-top: 5rem;
    margin-left: 10rem;
}
ul.comment-list{
    padding-left: 0;
}
.user-avatar{
    width: 7rem;
}
.post-comments .comment-meta a{
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #0b5192;
}
.post-comments .name{
    margin-bottom: 1rem;
}
.comment-form textarea{
    min-height: 20rem;
}
.post-comment-respond .comment-form .column{
    float: left;
}
.post-author, 
.post-comments,
.post-comment-respond{
    border-color: #eee;
}
.post-comment-respond .reply-title {
    margin-bottom: 3rem;
}

.column > *:first-child {
    margin-top: 0;
}

.pagination-3 ul {
    border-top: 1 solid #eee;
}

.pagination-3 li:first-child {
    float: left;
}
.pagination-3 ul li {
    display: inline-block;
}
.pagination-3 li {
    margin-top: -.1rem;
    margin-left: -0.4rem;
}
/*-----------------------------------------------------------------------------------*/
/*  09. SOCIAL ICONS
/*-----------------------------------------------------------------------------------*/
/*socials links*/
.social-icons{
    margin-top: 2rem;
}
.social-icons a {
    text-align: center;
    width: 4.2rem;
    height: 4.2rem;
    padding:0;
    margin:2rem 1rem 1rem 0;
}
.social-icons i{
    padding: .8rem 0;
    color: #fff;
}
.btn.facebook:hover i{
    color: #3b5998;
}
.btn.youtube:hover i{
    color: #CD201F;
}
.btn.px:hover i{
    color: #252525;
}
.btn.flickr:hover i{
    color: #f00084;
}
.btn.pinterest:hover i{
    color: #cb2027;
}
.btn.twitter:hover i{
    color: #00aced;
}
.btn.instagram:hover i{
    color: #125688;
}
.btn.google:hover i{
    color: #dd4b39;
}
.clients {
    box-shadow: none;
    position:relative;
    width: 10rem;
    margin:2rem 2rem 2rem 0;
    opacity: 1;
}
/*-----------------------------------------------------------------------------------*/
/*  10. FORMS
/*-----------------------------------------------------------------------------------*/
.contact_form{
    margin-top: 3rem;
}
.post-comment-respond input,
.post-comment-respond textarea,
.contact_form input,
.contact_form textarea{
    background: transparent;
    padding-left: 3rem;
}
.form-group span{
    position: absolute;
    left:2rem;
    top: .7rem;
    opacity: .7;
}
.form-group label.error{
    color: #0b5192;
    font-size: 85%;
}
.contact_form h3,
.contact_form p {
    text-align: center;
}
.form-control {
    box-shadow: none;
    border-radius: 0;
    border: solid .1rem #d9d9d9;
    -webkit-transition: all ease-in-out .2s;
       -moz-transition: all ease-in-out .2s;
        -ms-transition: all ease-in-out .2s;
         -o-transition: all ease-in-out .2s;
            transition: all ease-in-out .2s;
    -webkit-box-shadow: none;
      -moz--box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}
.form-control:focus {
    border: solid .1rem #666;
    -webkit-box-shadow: none;
            box-shadow: none;
}
textarea.form-control {
    min-height: 15rem;
}



.hyalo {
	position:relative;
	width:100%;
	height:auto;
	border:none;
	margin-right:1px;
	
	
}
.hyalo :hover{
	 -webkit-box-shadow: none;
            box-shadow: none;
	
}

.hylao-left {
	width:350px;
	margin-top:20px;
	display:inline-table;
	
}
.hylao-right {
	width:350px;
	margin-top:20px;
	margin-left:30px;	
	display:inline-table;
	
}
.hylao-left2 {
	width:250px;
	margin-top:20px;
	display:inline-block;

	
}
.hylao-right2 {
	width:350px;
	margin-top:20px;
	display:inline-block;

	
}
.hylao-left3 {
	position:relative;
	left:0px;
	top:0px;
	width:250px;
	display:inline-block;
	margin-top:20px;

	

	
}
.hylao-right3 {
	position:relative;
	left:10px;
	top:20px;
	width:350px;
	display:inline-block;
	margin-top:20px;


}

.hylao-left4 {
	position:relative;
	left:0px;
	top:0px;
	width:250px;
	display:inline-table;

	

}
.hylao-right4 {
	position:relative;
	left:10px;
	top:-70px;
	width:350px;
	display:inline-table;

	

}
.hylao-right4 tr td {
	padding:4px;
}
.nexo { width:300px; height:auto; display:inline-table; margin-right:20px; margin-top:20px; }
.nexo-baslik { padding:6px; background-color:#666; color:#FF0; }
/*-----------------------------------------------------------------------------------*/
/*  11. FOOTER
/*-----------------------------------------------------------------------------------*/

#footer {
    display: block;
    width: 100%;
    height: 8rem;
    padding-top: 1px;
    z-index: 2;
    color: #FFF;
    text-align: center;
    bottom: 2px;
	background-color:#333;
	-webkit-box-shadow: 0px -6px 22px 1px rgba(0,0,0,0.41);
-moz-box-shadow: 0px -6px 22px 1px rgba(0,0,0,0.41);
box-shadow: 0px -6px 22px 1px rgba(0,0,0,0.41);
}
#footer p{color: #FFF; }


.product1 {
	background-color:#666;
	color:#FFF;
	padding:4px;
	margin-right:6px;
	margin-bottom:6px;
	display:inline-table;
}

.topla {position:relative; width:100%; height:auto; min-height:290px; margin-bottom:40px; border-bottom:1px dashed #312783; }
.toplaresim { position:absolute; top:34px; width:250px; height:auto; display:inline-table; }
.toplaicerik {position:relative; left:270px; top:0px; width:70%; height:auto; margin-left:10px; display:inline-table;}


.kutu { position:relative; width:275px; height:300px; margin:20px; display:inline-block; background-color:#d3e1ec; border-radius:10px;}
.kutu:hover { background-color:#aeaacd; }
.kuturesim { position:absolute; top:5px; left:5px; width:250px; height:auto;  }
.kutubaslik { position:absolute; top:240px; left:5px; width:250px; height:65px; font-size:15px; font-weight:bold; text-align:center; color:#333 }

.box-container { position:relative; width:900px; height:auto; }

.box1 {position:relative; width:280px; height:245px; display:inline-block;  }
.box1-a {position:absolute; width:180px; height:245px; top:0px; left:0px; border:1px solid #0b79be; background-image:url(../images/white_transparancy_60.png); text-align:center; -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); z-index:990;}
.box1-a:hover {border:1px solid #999; background-color:#ededed;}
.box1-a p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:20px; }
.box1-a img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}
.box1-b {position:absolute; width:105px; height:114px; background-color:#5061bb; top:5px; left:180px; z-index:980;}
.box1-b:hover {background-color:#333; }
.box1-b p{width:90px; color:#FFF; margin-top:40px; margin-left:5px; font-size:16px; font-weight:bold; }
.box1-c {position:absolute; width:105px; height:114px; background-color:#40b12b; top:125px; left:180px; z-index:980;}
.box1-c:hover {background-color:#333; }
.box1-c p{width:90px; color:#FFF; margin-top:40px; margin-left:5px; font-size:16px; font-weight:bold;}
.box1-d {position:absolute; width:105px; height:75px; padding-top:0px; background-color:#5061bb; top:5px; left:180px; z-index:980; color:#FFF; font-weight:bold; font-size:12px;}
.box1-d:hover {background-color:#333; }
.box1-e {position:absolute; width:105px; height:75px; padding-top:0px; background-color:#40b12b; top:85px; left:180px; z-index:980; color:#FFF; font-weight:bold; font-size:12px;}
.box1-e:hover {background-color:#333; }
.box1-f {position:absolute; width:105px; height:70px; padding-top:10px; background-color:#06F; top:165px; left:180px; z-index:980; color:#FFF; font-weight:bold;}
.box1-f:hover {background-color:#333; }

.mesafe { margin-top:0px;  }


.box2 {position:relative; width:310px; height:245px; display:inline-block; margin-left:10px; margin-right:10px;}
.box2-a {position:absolute; width:180px; height:245px; top:0px; left:0px; border:1px solid #0b79be; background-image:url(../images/white_transparancy_60.png); text-align:center; -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); z-index:990;}
.box2-a:hover {border:1px solid #999; background-color:#ededed;}
.box2-a p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:20px; }
.box2-a img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}

.box2-b {position:absolute; width:130px; height:40px; background-color:#9cc3f7; top:10px; left:180px; z-index:980;}
.box2-b p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold; }
.box2-b:hover {background-color:#333; }

.box2-c {position:absolute; width:130px; height:40px; background-color:#7ea9eb; top:55px; left:180px; z-index:980;}
.box2-c p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-c:hover {background-color:#333; }

.box2-d {position:absolute; width:130px; height:40px; background-color:#5482db; top:100px; left:180px; z-index:980;}
.box2-d p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-d:hover {background-color:#333; }

.box2-e {position:absolute; width:130px; height:40px; background-color:#3266cd; top:145px; left:180px; z-index:980;}
.box2-e p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-e:hover {background-color:#333; }

.box2-f {position:absolute; width:130px; height:40px; background-color:#204285; top:190px; left:180px; z-index:980;}
.box2-f p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-f:hover {background-color:#333; }




.box3 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #00a950; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box3:hover {border:1px solid #999;  background-color:#ededed;}
.box3 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box3 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box4 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #773795; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box4:hover {border:1px solid #999; background-color:#ededed;}
.box4 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px;  }
.box4 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box5 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #003; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box5:hover {border:1px solid #999; background-color:#ededed;}
.box5 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box5 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box6 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #666; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box6:hover {border:1px solid #999; background-color:#ededed;}
.box6 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box6 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box7 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #CC0; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box7:hover {border:1px solid #999; background-color:#ededed;}
.box7 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box7 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box8 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #F00; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box8:hover {border:1px solid #999; background-color:#ededed;}
.box8 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box8 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}


.box9 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #690; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box9:hover {border:1px solid #999; background-color:#ededed;}
.box9 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box9 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}






.dentabox { position:relative; width:200px; height:50px; padding-bottom:5px;  margin:0 10px 0 0; display:inline-table; text-align:left; }
.dentabox a { color:#000; font-size:18px; font-weight:300;}
.dentabox a:hover { color:#CCC; font-size:18px; }
.blogo { position:absolute; right:10px; top:14px; }
/*-----------------------------------------------------------------------------------*/
/*  12. RESPONSIVE
/*-----------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
	
#logo { width:170px; height:auto; top:40px; }
    .row{
        margin: 0 50px;
    }
    .blog-item.timeline:nth-child(2) {
        margin-top: 33%;
    }
    .title {
        font-size: 86;
    }

.topla {position:relative; width:106%; height:auto; min-height:280px; margin-bottom:40px; border-bottom:1px dashed #CCC; }
.toplaresim { position:absolute; top:34px; width:200px; height:auto; display:inline-table; }
.toplaicerik {position:relative; left:270px; top:0px; width:60%; height:auto; margin-left:10px; display:inline-table;}

.box-container { position:relative; width:700px; height:auto; }

.box1 {position:relative; width:280px; height:245px; }
.box1-a {position:absolute; width:180px; height:245px; top:0px; left:0px; border:1px solid #0b79be; background-image:url(../images/white_transparancy_60.png); text-align:center; -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); z-index:990;}
.box1-a:hover {border:1px solid #999; background-color:#ededed;}
.box1-a p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:20px; }
.box1-a img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}
.box1-b {position:absolute; width:105px; height:114px; background-color:#5061bb; top:5px; left:180px; z-index:980;}
.box1-b:hover {background-color:#333; }
.box1-b p{width:90px; color:#FFF; margin-top:40px; margin-left:5px; font-size:16px; font-weight:bold; }
.box1-c {position:absolute; width:105px; height:114px; background-color:#40b12b; top:125px; left:180px; z-index:980;}
.box1-c:hover {background-color:#333; }
.box1-c p{width:90px; color:#FFF; margin-top:40px; margin-left:5px; font-size:16px; font-weight:bold;}
.mesafe { margin-top:20px;  }

.box2 {position:relative; width:310px; height:245px;  margin-top:30px;}
.box2-a {position:absolute; width:180px; height:245px; top:0px; left:0px; border:1px solid #0b79be; background-image:url(../images/white_transparancy_60.png); text-align:center; -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); z-index:990;}
.box2-a:hover {border:1px solid #999; background-color:#ededed;}
.box2-a p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:20px; }
.box2-a img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}

.box2-b {position:absolute; width:130px; height:40px; background-color:#9cc3f7; top:10px; left:180px; z-index:980;}
.box2-b p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold; }
.box2-b:hover {background-color:#333; }

.box2-c {position:absolute; width:130px; height:40px; background-color:#7ea9eb; top:55px; left:180px; z-index:980;}
.box2-c p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-c:hover {background-color:#333; }

.box2-d {position:absolute; width:130px; height:40px; background-color:#5482db; top:100px; left:180px; z-index:980;}
.box2-d p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-d:hover {background-color:#333; }

.box2-e {position:absolute; width:130px; height:40px; background-color:#3266cd; top:145px; left:180px; z-index:980;}
.box2-e p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-e:hover {background-color:#333; }

.box2-f {position:absolute; width:130px; height:40px; background-color:#204285; top:190px; left:180px; z-index:980;}
.box2-f p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-f:hover {background-color:#333; }



.box3 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #00a950; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box3:hover {border:1px solid #999;  background-color:#ededed;}
.box3 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box3 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}




.box4 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #773795; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box4:hover {border:1px solid #999; background-color:#ededed;}
.box4 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px;  }
.box4 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box5 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #003; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box5:hover {border:1px solid #999; background-color:#ededed;}
.box5 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box5 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box6 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #666; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box6:hover {border:1px solid #999; background-color:#ededed;}
.box6 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box6 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box7 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #CC0; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box7:hover {border:1px solid #999; background-color:#ededed;}
.box7 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box7 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box8 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #F00; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box8:hover {border:1px solid #999; background-color:#ededed;}
.box8 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box8 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}


.box9 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #690; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box9:hover {border:1px solid #999; background-color:#ededed;}
.box9 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box9 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}
.hylao-left4 {
	position:relative;
	left:0px;
	top:0px;
	width:250px;
	display:inline-table;
	

	

}
.hylao-right4 {
	position:relative;
	left:10px;
	top:-70px;
	left:10px;
	width:350px;
	display:inline-table;

	

}
}

@media (max-width: 968px) {

	#logo  { width:170px; height:auto; }
	.parallax {
    background-image: url(../images/parallax3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    position: fixed;
    min-height: 35rem;
    padding-top: 6.5rem;
    width: 100%;
    top: 0;
    left: 0;
}
	#menu{
    display: inline-block;
    float: right;
	width:50px;
	margin-top:40px;
	background: none;
	text-align:left;
	border-bottom-left-radius:0px;
	border-top-left-radius:0px;
}
    .row{
        max-width: 100%;
        padding: 30px 0;
        margin: 0 15px;
    }
    .content{
        background-image: none;
        background-color: #fcfcfc;
    }
    .section{
        opacity: 1;
    }
    .header{
        height: 8rem;
    }
    .main-menu {
        padding: 0 3rem;
        margin: 2.5rem auto;
    }
    .border .frames div {
        height: 15px;
    }
    .border .frames div:nth-child(2),
    .border .frames div:nth-child(4) {
        width: 15px;
    }
    .border .corners div::before,
    .border .corners div::after {
        display: none;
    }
    .item-category{
        padding: 0 1rem;
        margin: 1rem 0px;
    }
    .item-category h1{
        font-size: 3rem !important;
    }
    .section{
        opacity: 1;
    }
    .cover-titles{
        padding: 0 5%;
    }
    .active .cover-titles{
        padding: 0;
    }
    .blog-item:nth-child(2),
    .blog-item.timeline:nth-child(2) {
        margin-top: 0;
    }
    .align-left p:first-child {
        margin: 0 auto;
        padding-bottom: 0;
        text-align: center;
    }
    .align-left .title {
        font-size: 5rem;
        letter-spacing: 0;
        text-align: center;
    }
    .align-left p {
        margin: 0 auto 1.2rem auto;
        text-align: center;
    }
    .align-left .enter-button-line {
        display: none;
    }
    .cover-titles{
        text-align: center;
    }
    .cover-titles-text {
        margin: 0 auto;
    }
    .post-info {
        min-height: 25rem;
    }
    .date {
        position: relative;
        font-size: 4em;
        font-weight: 900;
        text-align: left;
        opacity: .8;
    }
    .date span {
        font-size: 1.2rem;
        font-weight: 400;
        left: 7rem;
        position: absolute;
        bottom: 1.6rem;
        width: 3rem;
    }
    .date span i{
        display: none;
    }
    .post-comments .user-avatar {
        width: 3.5em;
        margin-right: 1rem;
    }
    .post-comments .comment-content {
        margin-left: 0;
    }
    .comment-list ul {
        margin: 0;
    }
    .comment-list div p{
        margin-top: 2rem;
    }
    .contact_form h3,
    .contact_form p {
        text-align: left;
    }
    .grid-item:hover ,
    .blog-item:hover  {
        -webkit-box-shadow: 0 1.2rem 1.8rem 0 rgba(0, 0, 0, 0.24), 0 1.7rem 5rem 0 rgba(0, 0, 0, 0.19);
                box-shadow: 0 1.2rem 1.8rem 0 rgba(0, 0, 0, 0.24), 0 1.7rem 5rem 0 rgba(0, 0, 0, 0.19);
    }
    .blog-item {
        margin-bottom: 3rem;
    }
    .back-top {
        right: 3rem;
        box-shadow: 0 .1rem .3rem rgba(0,0,0,.7);
    }
    .text-right i, .timeline .text-right i {
        margin-right: -1.2rem;
    }
	#footer{
        height: 100px;
    }
.topla {position:relative; width:100%; height:auto; min-height:280px; margin-bottom:40px; border-bottom:1px dashed #CCC; }
.toplaresim { position:absolute; top:34px; width:200px; height:auto; display:inline-table; }
.toplaicerik {position:relative; left:210px; top:0px; width:90%; height:auto; margin-left:10px; display:inline-table;}

.kutu { position:relative; width:260px; height:300px; margin:20px; display:inline-block; background-color:#d3e1ec; border-radius:10px;}
.hylao-left4 {
	position:relative;
	left:0px;
	top:0px;
	width:250px;
	display:inline-table;
	

	

}
.hylao-right4 {
	position:relative;
	left:10px;
	top:-70px;
	left:10px;
	width:350px;
	display:inline-table;

	

}
} 





@media (max-width: 768px) {
.topla {position:relative; width:100%; height:auto;  padding-bottom:40px; border-bottom:1px dashed #CCC;}
.toplaresim { position:relative; top:34px; width:100%; height:auto; display:block; }
.toplaicerik {position:relative; left:0px; top:30px; width:100%; height:auto; margin-left:10px; display:block;}	

.row img {
 width:100%;
	border:1px;
-webkit-box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
-moz-box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
			
			border-radius:10px;
		
}

.box-container { position:relative; width:310px; height:auto; margin-left:auto; margin-right:auto; z-index:0;}

.box1 {position:relative; width:280px; height:245px; margin-left:auto; margin-right:auto;}
.box1-a {position:absolute; width:180px; height:245px; top:0px; left:0px; border:1px solid #0b79be; background-image:url(../images/white_transparancy_60.png); text-align:center; -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); }
.box1-a:hover {border:1px solid #999; background-color:#ededed;}
.box1-a p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:20px; }
.box1-a img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}
.box1-b {position:absolute; width:105px; height:114px; background-color:#5061bb; top:5px; left:180px; z-index:980;}
.box1-b:hover {background-color:#333; }
.box1-b p{width:90px; color:#FFF; margin-top:40px; margin-left:5px; font-size:16px; font-weight:bold; }
.box1-c {position:absolute; width:105px; height:114px; background-color:#40b12b; top:125px; left:180px; z-index:980;}
.box1-c:hover {background-color:#333; }
.box1-c p{width:90px; color:#FFF; margin-top:40px; margin-left:5px; font-size:16px; font-weight:bold;}


.box2 {position:relative; width:310px; height:245px; margin-left:auto; margin-right:auto;}
.box2-a {position:absolute; width:180px; height:245px; top:0px; left:0px; border:1px solid #0b79be; background-image:url(../images/white_transparancy_60.png); text-align:center; -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); }
.box2-a:hover {border:1px solid #999; background-color:#ededed;}
.box2-a p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:20px; }
.box2-a img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}

.box2-b {position:absolute; width:130px; height:40px; background-color:#9cc3f7; top:10px; left:180px; z-index:980;}
.box2-b p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold; }
.box2-b:hover {background-color:#333; }

.box2-c {position:absolute; width:130px; height:40px; background-color:#7ea9eb; top:55px; left:180px; z-index:980;}
.box2-c p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-c:hover {background-color:#333; }

.box2-d {position:absolute; width:130px; height:40px; background-color:#5482db; top:100px; left:180px; z-index:980;}
.box2-d p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-d:hover {background-color:#333; }

.box2-e {position:absolute; width:130px; height:40px; background-color:#3266cd; top:145px; left:180px; z-index:980;}
.box2-e p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-e:hover {background-color:#333; }

.box2-f {position:absolute; width:130px; height:40px; background-color:#204285; top:190px; left:180px; z-index:980;}
.box2-f p{width:90px; color:#FFF; margin-top:8px; margin-left:10px; font-size:16px; font-weight:bold;}
.box2-f:hover {background-color:#333; }




.box3 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #00a950; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box3:hover {border:1px solid #999;  background-color:#ededed;}
.box3 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box3 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}




.box4 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #773795; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box4:hover {border:1px solid #999; background-color:#ededed;}
.box4 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px;  }
.box4 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box5 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #003; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box5:hover {border:1px solid #999; background-color:#ededed;}
.box5 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box5 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box6 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #666; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box6:hover {border:1px solid #999; background-color:#ededed;}
.box6 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box6 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box7 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #CC0; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box7:hover {border:1px solid #999; background-color:#ededed;}
.box7 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box7 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}



.box8 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #F00; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box8:hover {border:1px solid #999; background-color:#ededed;}
.box8 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box8 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}


.box9 {position:relative; width:178px; height:186px; display:inline-table; border:1px solid #690; background-image:url(../images/white_transparancy_60.png);  -webkit-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); -moz-box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); box-shadow: 5px 0px 5px -2px rgba(105,105,105,0.68); margin:5px;}
.box9:hover {border:1px solid #999; background-color:#ededed;}
.box9 p {width:160px; margin-left:auto; margin-right:auto; line-height:12px; font-size:11px; margin-top:15px; }
.box9 img {width:auto; height:auto; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-top:20px;	}
.exmenu { display:none!important }	


.hylao-left4 {
	position:relative;
	left:0px;
	top:0px;
	width:250px;
	display:block;

	

}
.hylao-right4 {
	position:relative;
	left:10px;
	top:20px;
	left:0px;
	width:350px;
	display:block

	

}


}



 
@media (max-height: 360px) {
.row img {
 width:100%;
	border:1px;
-webkit-box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
-moz-box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
box-shadow: 1px 1px 0px 0px rgba(219,219,219,1);
			
			border-radius:10px;
		
}
	
    .cover-titles{
        margin-top: 0;
    }
   .align-left p {
        margin: 0 auto .2rem auto;
        max-width: 85%;
    }
    .mobile-menu-content{
        top: 7rem;
    }
    #footer{
        height: 7rem;
    }
.exmenu { display:none!important }
}


