
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100italic,100,300,300italic,400italic,500,500italic,700,700italic,900,900italic&subset=latin,latin-ext);
@import 'https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700&subset=greek-ext';

*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}

*:focus{
    outline: none;
}

html {
    position: relative;
    min-height: 100%;
}

body{
    font-family: 'Roboto', sans-serif;
    background-image: url("../img/pattern.png");
    background-repeat:repeat;
    margin: 0 0 60px; /* bottom = footer height */
}

.clear{
    clear: both;
}

.header-inner{
    width:100%;
    height:90px;
    position: fixed;
    top:0;
    left:0;
    z-index: 9999;
    background-color: #67ded7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.header{
    width:960px;
    height:90px;
    margin:0 auto;
}

.header-left, .header-right{
    float: left;
    height:90px;
}

.header-left{
    width:150px;
    transition: 300ms all;
    overflow: hidden;
}

.header-left > a{
    background-position:center left;
    display: block;
    width:100%;
    height:90px;
    background-repeat: no-repeat;
    transition: 300ms all;
}

.header-right{
    width:810px;
}

.header-right ul{
    list-style: none;
}

.header-right > ul > li{
    float: left;
}

.header-right > ul > li > a{
    display: block;
    line-height:90px;
    border-right:1px solid #e5e5e5;
    padding: 0 20px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-right > ul > li:first-child > a{
    border-left:1px solid #e5e5e5;
}

.header-right > ul > li > a:hover, .header-right > ul > li.active > a{
    background-color: #4686EC;
    border-color: #4686EC;
    color: #fff;
}

.header-right > ul > li:hover, .header-right > ul > li:hover a{
    background-color: #4686EC;
    color:#fff;
}

.header-right > ul > li > ul > li:hover{
    background-color: #104d87;
    color:#fff;
}

.header-right > ul > li > ul > li > ul > li:hover{
    background-color: #104d87;
    color:#fff;
}

.header-right > ul > li{
    position: relative;
}

/* Menu Level 1 */
.header-right > ul > li ul{
    position: absolute;
    top:100px;
    left:0;
    background-color: #4686EC;
    width:250px;
    z-index: 99999;
    opacity:0;
    visibility: hidden;
    -webkit-transition: 150ms all;
    -moz-transition: 150ms all;
    -o-transition: 150ms all;
    -ms-transition: 150ms all;
    transition: 150ms all;
}

.header-right > ul > li:hover > ul{
    top:90px;
    opacity:1;
    visibility: visible;
}

/* Menu Level 2 */
.header-right > ul > li > ul > li > ul{
    top:0;
    left:230px;
}

.header-right > ul > li > ul > li{
    position: relative;
}

.header-right > ul > li > ul > li:hover > ul{
    opacity:1;
    visibility: visible;
    left:250px;
}

/* Menu Level 3 */
.header-right > ul > li > ul > li > ul > li > ul{
    top:0;
    left:230px;
}

.header-right > ul > li > ul > li > ul > li:hover > ul{
    opacity:1;
    visibility: visible;
    left:250px;
}

.header-right > ul > li ul li a{
    padding: 15px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: 300ms all;
    -moz-transition: 300ms all;
    -o-transition: 300ms all;
    -ms-transition: 300ms all;
    transition: 300ms all;
}

.header-right > ul > li ul li a:hover{
    background-color: #104d87;
    border-color: #104d87;
    color: #fff;
}

.header-right > ul > li ul li:last-child a{
    border-bottom:none;
}

.header-right > ul > li > ul > li > ul > li{
    position:relative;
}

.header-right > ul > li > ul > li:hover .header-right > ul > li{
    //background-color: red;
}

.header-right ul li i{ position:absolute; top:40%; right:10px; font-size:12px; }

/* Scrolled Header */
.scrolled{
    height:60px;
}

.scrolled > .header{
    height:60px;
}

.scrolled > .header > .header-left, .scrolled > .header > .header-right{
    height:60px;
}

.scrolled > .header > .header-left > a {
    height:60px;
    background-size:contain;
    background-position:center center;
}

.scrolled > .header > .header-right > ul > li > a{
    line-height:60px;
}

.scrolled > .header > .header-left > a > img{
    height:60px;
}

.scrolled > .header > .header-right > ul > li:hover > ul{
    top:60px;
}


.wrapper{
    width:960px;
    height:auto;
    margin: 30px auto 60px auto;
}

.slider{
    width:960px;
    height:400px;
    margin: 110px auto 0 auto;
}

.footer-inner{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 30px;
    width: 100%;
    background-color: #4686EC;
}

.footer{
    width:960px;
    height:30px;
    line-height:30px;
    margin:0 auto;
    color: #fff;
}

.footer-left, .footer-right{
    float: left;
    height:30px;
}

.footer-right a{
    display: block;
    height:30px;
    font-size:12px;
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:300;
}

.footer-right{
    width:160px;
    text-align:right;
}

.footer-left{
    font-size: 12px;
    font-weight: 400;
    width:800px;
}

.video{
    position:absolute;
    top:0;
    right:0;
    z-index: 999;
}

.video a{
    background-color: #4686EC;
    opacity:0.7;
    padding:15px;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.video a:hover{
    opacity:1;
}

.full-image{
    margin-top:90px;
    width: 100%;
    height: 10px;
    //background-image: url("../img/tanitim.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.content{
    background-color: #fff;
    padding:20px;
    line-height:27px;
    color: #555;
    font-size:15px;
    width:960px;
    height:auto;
}

.content img{
    max-width:100%;
    height:auto;
}

.content p{
    margin-top:15px;
}

.content p:first-child{
    margin-top:0;
}

.content > .content-header{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
    color: #555;
    margin-bottom:20px;
    font-family: 'Roboto Slab', serif;
}

.scroll-top{
    background-color: #ccc;
    background-color: rgba(0,0,0,.4);
    display: block;
    position: fixed;
    bottom: 15px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    text-align: center;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    right: -50px;
    opacity: 1;
    transition: all .2s ease-in-out;
    z-index: 99999;
}

.scroll-top:hover{
    background: rgba(0,0,0,.7);
}

.scroll-top-active{
    right: 15px;
}

.belge{
    float: left;
    width:210px;
    text-align: center;
    border:1px solid #e5e5e5;
    margin:0 10px 20px 10px;
}

.belge:first-child {margin-left: 0 !important; }
.belge:last-child { margin-right: 0 !important; }

.belge img{
    width:150px;
    padding:15px;
}

.belge a{
    display: block;
    text-decoration: none;
    color: #555;
    word-wrap:break-word;
    padding:5px;
    font-weight:normal;
    font-size:14px;
    text-transform: uppercase;
    border-top:1px solid #e5e5e5;
}

.belge a:hover{
    background-color: #4686EC;
    border-color: #4686EC;
    color: #fff;
}

.belge a i{
    display: block;
    font-size:20px;
}

.form-group{
    width: 100%;
    display: block;
    margin-top: 15px;
}

.form-control{
    padding: 15px;
    width: 100%;
    height: 45px;
    border: 1px solid #e5e5e5;
}

.form-control:hover, .form-control:focus{
    border-color: #999;
}

input, textarea{
    font-family: 'Roboto' !important;
    font-size: 13px;
    color: #555;
}

textarea{
    height: auto !important;
    max-width: 100%;
}

.text-right{
    float: right;
    margin: 0 !important;
}

.buton{
    width: 100px;
    height: 40px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14;
    border: none;
    background-color: #4686EC;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 300ms background-color;
    -moz-transition: 300ms background-color;
    -o-transition: 300ms background-color;
    -ms-transition: 300ms background-color;
    transition: 300ms background-color;
}

.buton:hover{
    background-color: #104d87;
    color: #fff;
}

.iletisim-alan {
    margin-top: 15px;
}

.iletisim-alan ul {
    list-style: none;
}

.iletisim-alan ul li {
    margin-bottom: 15px;
}

.iletisim-alan i {
    font-size: 25px;
    color: #333;
    display: inline-block;
    width:35px;
    text-align: center;
}

.prod-inner{
    width:100%;
    height:auto;
}

.prod-img, .prod-cont{
    float: left;
    height:auto;
}

.prod-cont{
    width: 920px;
    border:1px solid #e5e5e5;
    -ms-word-wrap: break-word;
    word-wrap:break-word;
}

.prod-header{
    text-align: center;
    padding:10px;
    font-weight:300;
    border-bottom: 1px solid #e5e5e5;
}

.prod-content{
    padding:20px;
}

.prod-img{
    width:240px;
}

.prod-img img{
    background: #e5e5e5;
    padding:15px;
}

.urun-tema{
    color: #4686EC;
}

.slides > li{
    position:relative;
}

.slider-content{
    position:absolute;
    top:45%;
    margin-top:-50px;
    left:5%;
    width:90%;
    height:100%;
    z-index:99999;
    color:#fff;
}

.slider-content h1{
    font-weight: 300;
    font-size: 25px;
    margin-bottom:10px;
    background-color: rgba(0,0,0,0.5);
    padding:10px;
    display: inline-block;
}

.slider-content h2{
    font-weight: 300;
    font-size: 17px;
    background-color: rgba(0,0,0,0.7);
    padding:10px;
    line-height:22px;
    display: inline-block;
}

.menu-buton{
    display: none;
}

body {
background-color: #272727;
padding: 0;
margin: 0;
box-sizing: border-box;
}

.loader{ position:fixed; top:0; left:0; background-color: #111; width:100%; height:100%; z-index:9999999999999; }

.wrapperloading {
position: absolute;
height: 200px;
width: 200px;
top: 50%;
margin-top: -100px;
left: 50%;
margin-left: -100px;
}

.wrapperloading .loading.up {
position: absolute;
height: 200px;
width: 200px;
z-index:99999999999999;
border-radius: 150px;
border: 3px solid #4686EC;
border-top-color: #4686EC;
border-left-color: #fff;
border-right-color: #fff;
border-bottom-color: #4686EC;
-webkit-animation: rotation 3s linear infinite;
-moz-animation: rotation 3s linear infinite;
-o-animation: rotation 3s linear infinite;
animation: rotation 3s linear infinite;
}

.wrapperloading .loading.down {
position: absolute;
height: 100px;
width: 100px;
top: 50%;
margin-top: -50px;
left: 50%;
margin-left: -50px;
border-radius: 150px;
border: 3px solid #4686EC;
border-left-color: #4686EC;
border-top-color: #fff;
border-bottom-color: #fff;
border-right-color: #4686EC;
-webkit-animation: rotation 1s linear infinite;
-moz-animation: rotation 1s linear infinite;
-o-animation: rotation 1s linear infinite;
animation: rotation 1s linear infinite;
}


@-webkit-keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}

50% {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}

@-moz-keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}

50% {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}

@-o-keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}

50% {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}

@keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}

50% {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}

.icerik ul { margin-left:20px; }

@media(max-width: 991px){

    .header-inner{
        position: static;
        height: auto;
    }

    .header{
        width: 100%;
        height: auto;
    }

    .header-left, .header-right{
        float: none;
    }

    .header-left{
        width: 100%;
    }

    .header-right{
        height: auto;
        width: 100%;
        display: none;
    }

    .menu-buton{
        position: absolute;
        top: 30px;
        right: 10px;
        display: block;
    }

    .menu-buton a{
        color: #4686EC;
        text-decoration: none;
        font-size: 24px;
        padding: 5px;
    }

    /* Scrolled Header */
    .scrolled{
        height:auto;
    }

    .scrolled > .header{
        height:auto;
    }

    .scrolled > .header > .header-left, .scrolled > .header > .header-right{
        height:auto;
    }

    .scrolled > .header > .header-left > a {
        height:90px;
        background-size:auto;
        background-position:center left;
    }

    .scrolled > .header > .header-right > ul > li > a{
        line-height:normal;
    }

    .scrolled > .header > .header-left > a > img{
        height:90px;
    }

    .scrolled > .header > .header-right > ul > li:hover > ul{
        top:0;
    }

    .header-right > ul{
        border-top: 1px solid #e5e5e5;
        margin-top: 10px;
    }

    .header-right > ul > li{
        float:none;
    }

    .header-right > ul > li > a{
        display: block;
        border-bottom: 1px solid #e5e5e5;
        line-height: normal;
        padding: 20px;
        text-align: center;
    }

    /* Menu Level 1 */
    .header-right > ul > li ul{
        position: static;
        top:0;
        left:0;
        background-color: #4686EC;
        width: 100%;
        min-width: 100%;
        z-index: 99999;
        opacity:0;
        visibility: hidden;
        display: none;
        -webkit-transition: 150ms all;
        -moz-transition: 150ms all;
        -o-transition: 150ms all;
        -ms-transition: 150ms all;
        transition: 150ms all;
        text-align: center;
    }

    .header-right > ul > li:hover > ul{
        display: block;
    }

    .header-right > ul > li > ul > li:hover > ul{
        display: block;
    }

    .header-right > ul > li > ul > li > ul > li:hover > ul{
        display: block;
    }

    .slider{
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

    .flexslider{
        height: auto !important;
    }

    .video > a {
        padding: 10px;
    }

    .footer{
        width: 90%;
    }

    .footer-left, .footer-right{
        float: none;
        width: 100%;
    }

    .footer-right{
        display: none;
    }

    .full-image {
        display:none;
    }

    .wrapper{
        width: 100%;
    }

    .content {
        margin: 0 auto;
        width: 90%;
    }

    .prod-img{
        width: 100%;
    }

    .prod-img > a > img{
        width: 100%;
        height: auto;
    }

    .prod-cont{
        width: 100%;
        margin-top: 20px;
    }

    .belge{
        width: 100%;
        float: none;
        margin: 0 0 20px 0 !important;
    }

    .header-left > a{
        width: 30%;
        margin-left:20px;
    }

    .slider-content{
        display:none;
    }

    .header-right > ul > li > ul > li:hover{
        background-color: #104d87;
        color:#fff;
    }

    .header-right > ul > li > ul > li > ul > li:hover, .header-right > ul > li > ul > li > ul > li:hover a{
        background-color: #104d87;
        color:#fff;
    }
}