/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16-gen-2016, 15.05.18
    Author     : Dn
*/

body{
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 12pt;
}

body.modal-open {
    overflow: hidden;
    /* position: fixed; */
}
h2 span {
    font-weight: bold;
}

header .top{
    padding: 20px 0;
    margin: 0;
}

header .top-info{
    font-weight: bold;
    margin-top: 10px;
}
ul.social-network{
    margin: 0;
    margin-top: 10px;
    padding: 0;
}
ul.social-network li{
    display: inline;
    margin: 0 5px;
}

.page-header{
    margin-top: 0px!important;
}


.modal-header{
    min-height: 50px;
}
button.close 
{
    font-size: 2em;
}

/*********
 * NAVBAR
 *********/

.navbar {
    /*min-height: 100px;*/
}

.navbar-brand {
    height: 92px;
    padding: 20px 20px;
}
.nav-header {
    margin-top: 30px;
}

.navbar-toggle{
    margin-top: 25px;
}

.navbar-default .navbar-nav>li>a {
    line-height: 62px;
    text-transform: uppercase;
    font-weight: bolder;
}

/**********
 * CAROUSEL
 **********/
#carousel {
    margin-bottom: 35px;
}

#carousel-home h3{
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#carousel-home .carousel-caption{
    padding: 30px;
    left: 0px;
    right: 0px;
    bottom: 1px;
}
#carousel-home .carousel-indicators {
  bottom:-50px;
}


/*FADE*/
#carousel-home .item {
    transition-property: opacity;
}
        
#carousel-home .item,
#carousel-home .active.left,
#carousel-home .active.right {
    opacity: 0;
}

#carousel-home .active,
#carousel-home .next.left,
#carousel-home .prev.right {
    opacity: 1;
}

#carousel-home .next,
#carousel-home .prev,
#carousel-home .active.left,
#carousel-home .active.right {
    left: 0;
    -webkit-transform:  translate3d(0, 0, 0);
    -moz-transform:  translate3d(0, 0, 0);
    -o-transform:  translate3d(0, 0, 0);
    -ms-transform:  translate3d(0, 0, 0);
    transform:  translate3d(0, 0, 0);

}
/*END FADE*/


/**************
 * SEARCH FORM
 **************/
.search-form .form-group{
    margin-bottom: 0px;
    float: right !important;
    transition: all 0.35s, border-radius 0s;
    width: 32px;
    height: 32px;
}

.search-form .form-control-feedback{
    line-height: 34px;
}

.search-form .form-group input.form-control {
  padding-right: 20px;
  display:block;
}
.search-form .form-group input.form-control::-webkit-input-placeholder {
  display: none;
}
.search-form .form-group input.form-control:-moz-placeholder {
  /* Firefox 18- */
  display: none;
}
.search-form .form-group input.form-control::-moz-placeholder {
  /* Firefox 19+ */
  display: none;
}
.search-form .form-group input.form-control:-ms-input-placeholder {
  display: none;
}
.search-form .form-group:hover,
.search-form .form-group.hover {
  width: 100%;
  /*border-radius: 4px 25px 25px 4px;*/
}
.search-form .form-group span.form-control-feedback {
  position: absolute;
  top: -1px;
  right: -2px;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  left: initial;
  font-size: 14px;
}


/**********************
* CALL ACTION SECTION
***********************/
section.callaction {
    padding: 60px 0;
    margin-top: 60px;
}

section.callaction div{
     padding: 0 20px;
}
section.callaction a{
     font-size: 1.8em;
     margin-top: 10px
         
}


/**********************
* PORTFOLIO SECTION
***********************/

.portfolio-section{
    padding: 30px 0;
}

.portfolio-section h2{
    padding: 10px 20px;
}
.portfolio-section .carousel-control{
    width: 30px;
    height: 30px;
    background: #333333;
    top: 40px;
}
.portfolio-section .carousel-control.left {left: 90%}
.portfolio-section .carousel-control.right {right: 10%}

.controls-wrapper{
    float: right;
}

.portfolio-item-container{
    height: 200px;
    line-height: 200px;
    position: relative;
    overflow: hidden;
}
.portfolio-item-container img{
   position: absolute;
   left: 50%;
   top: 50%;
    -webkit-transform:  translateY(-50%) translateX(-50%);
    -moz-transform:  translateY(-50%) translateX(-50%);
    -o-transform:  translateY(-50%) translateX(-50%);
    -ms-transform:  translateY(-50%) translateX(-50%);
    transform:  translateY(-50%) translateX(-50%);
    
}

.cloneditem-1,
.cloneditem-2,
.cloneditem-3
{
    display: none;
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .carousel-inner > .next { left: 50%; }
    .carousel-inner > .prev { left: -50%; }
    .carousel-inner > .active.left { left: -50%; }
    .carousel-inner > .active.right { left: 50%; }
    
    .cloneditem-1
    {
        display: block;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) and (-webkit-transform-3d){
    
    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        left: 0;
        -webkit-transform:  translate3d(50%, 0, 0);
        -moz-transform:  translate3d(50%, 0, 0);
        -o-transform:  translate3d(50%, 0, 0);
        -ms-transform:  translate3d(50%, 0, 0);
        transform:  translate3d(50%, 0, 0);
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        left: 0;
        -webkit-transform:  translate3d(-50%, 0, 0);
        -moz-transform:  translate3d(-50%, 0, 0);
        -o-transform:  translate3d(-50%, 0, 0);
        -ms-transform:  translate3d(-50%, 0, 0);
        transform:  translate3d(-50%, 0, 0);
    }
    
}
@media all and (min-width: 992px){
    .carousel-inner > .next { left: 33.3333%; }
    .carousel-inner > .prev { left: -33.3333%; }
    .carousel-inner > .active.left { left: -33.3333%; }
    .carousel-inner > .active.right { left: 33.3333%; }
    
    .cloneditem-1,
    .cloneditem-2
    {
        display: block;
    }
}
@media all and (min-width: 992px) and (-webkit-transform-3d){

    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        left: 0;
        -webkit-transform:  translate3d(33.3333%, 0, 0);
        -moz-transform:  translate3d(33.3333%, 0, 0);
        -o-transform:  translate3d(33.3333%, 0, 0);
        -ms-transform:  translate3d(33.3333%, 0, 0);
        transform:  translate3d(33.3333%, 0, 0);
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        left: 0;
        -webkit-transform:  translate3d(-33.3333%, 0, 0);
        -moz-transform:  translate3d(-33.3333%, 0, 0);
        -o-transform:  translate3d(-33.3333%, 0, 0);
        -ms-transform:  translate3d(-33.3333%, 0, 0);
        transform:  translate3d(-33.3333%, 0, 0);
    }   

}


/**********************
* SERVICES SECTION
***********************/
section.services {
    padding: 30px 0;
    margin-top: 60px;
}

section.services .service-info{
}
section.services a i {
    -webkit-transition: all 0.3s ease 0.3s;
    -moz-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
    display: inline-block;
}

section.services a i:hover {
    /* Rotate div */
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/**********************
* CONTACT SECTION
***********************/

section#contact-map .map  iframe{
    width: 100%;
    height: 450px;
    margin-top: 60px;
}

section#contact-content {
    
}

.margintop40{
    margin-top: 40px;
}

/*********
 * FOOTER
 *********/

footer{
    margin-top: 60px;
    padding-top: 50px;
}
footer li{
    padding: 5px 0;
    margin: 1px 0;
}
footer li a{
    padding: 5px 0;
}
footer .widget .vcard a{
    line-height: 32px;
    padding: 5px 0;
}
footer .widget .vcard .adr{
    padding-left: 30px; 
}
.widget i{
    text-align: center;
    width: 30px;
    font-size: 14pt;
}

#sub-footer{
    padding: 0;
    padding-top: 30px;
    margin: 20px 0 0 0;
        
}

#cookie-wrapper{
    position: fixed;
    top: 0;
    margin: 0;
    bottom: 0;
    left: 0;
    right:0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

#cookie-alert{
    position: fixed;
    bottom: 0;
    margin: 0;
    width: 100%;
    z-index: 100;
}
#cookie-alert div{
    margin-top:20px;
}
#cookie-decline{
    cursor: pointer;
    margin: 20px 0;
}


@media(max-width:767px){
    
    .navbar-nav > li {
        padding-bottom: 0; 
        padding-top: 0; 
    }
    .navbar-default .navbar-nav>li>a {
    line-height: 30px;
    }
    
/*    #carousel-home .carousel-indicators{
        position:relative;
        top: 50%;
    }*/
    #carousel-home .carousel-caption{ 
        position: relative;
        left: 0;
    } 
    
    .portfolio-section .carousel-control{
        top: 0;
    }
    
}
