/*  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: url('../img/bg-cover.jpg') no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;*/

/*NAVIGATOIN*/
/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

.no-touch #cd-vertical-nav {
  display: none;
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.no-touch #cd-vertical-nav li {
  text-align: right;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}

.no-touch #cd-vertical-nav a.is-selected span,
.no-touch #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: #ff285b;
}

.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 20px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #ff285b;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  /*padding: .4em .5em;*/
  padding: 5px 7px;
  font-family: 'FuturaCondensedNormal', sans-serif;
  color: #ff285b;
  font-size: 28px;
  /*font-size: 0.875rem;*/
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #ff285b;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger, .touch #cd-vertical-nav {
    bottom: 40px;
  }
}


/*COVER*/
.cover{
  height: 100%;
  background-color: #fff;
  background: url('../img/bg-cover.jpg') no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.cover .container{
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  display: none;
  width: 40px;
  height: 70px;
  margin-left: -20px;
  /*top: 50%;
  margin-top: -35px;*/
  bottom: 35px;
  box-shadow: inset 0 0 0 1px #3f51b5;
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #3f51b5;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}

.cover .logo{
  position: relative;
  max-width: 100%;
  height: auto;
  margin-top: 40px;
}

.cover .contact-us{
  position: relative;
  display: block;
  width: 280px;
  height: 65px;
  line-height: 59px;
  border: 3px solid #ff285b;
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 36px;
  color: #ff285b;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.cover .servicii{
  position: relative;
  float: left;
  margin-top: 50px;
  margin-bottom: 50px;
}

.cover .servicii p{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 19px;
  line-height: 19px;
  color: #3f51b5;
  text-align: left;
}

.cover .servicii a{
  position: relative;
  float: left;
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 36px;
  line-height: 36px;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: 15px;
  background-color: #3f51b5;
  color: #fff;
}


/*INFO*/
.info{
  background-color: #3f51b5;
  padding-top: 40px;
  padding-bottom: 40px;
}

.info .left,
.info .right{
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.info .left table,
.info .right table,
.info .left td,
.info .right td{
  width: 100%;
  height: 100%;
}

.info .left td{
  vertical-align: middle;
}

.info .right td{
  vertical-align: middle;
  text-align: center;
}

.info .right .bubbles{
  margin-top: 40px;
  max-width: 100%;
  height: auto;
}

.info .left .head,
.info .left .head2{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 48px;
}

.info .left .head2{
  margin-top: 100px;
}

.info .left .text{
  margin-top: 25px;
  font-family: 'FuturaStd-Medium', sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 24px;
}

/*SKILLS*/
.skills{
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.skills .left,
.skills .right{
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.skills .left table,
.skills .right table,
.skills .left td,
.skills .right td{
  width: 100%;
  height: 100%;
}

.skills .left td{
  vertical-align: middle;
}

.skills .right td{
  vertical-align: middle;
  text-align: center;
}

.skills .right .workers{
  margin-top: 40px;
  max-width: 100%;
  height: auto;
}

.skills .left .head{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 48px;
  color: #2a2a2a;
  line-height: 48px;
  margin-top: 0px;
}

.skills .left .text{
  margin-top: 25px;
  font-family: 'FuturaStd-Medium', sans-serif;
  font-size: 18px;
  color: #2a2a2a;
  line-height: 24px;
}

/*TEAM*/
.team-review{
  background-color: #fff;
}

.team{
  background-color: #f0f1f9;
  padding-top: 40px;
  text-align: center;
}

.team .container{
  padding-left: 15px;
  padding-right: 15px;
}

.team .head{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 48px;
  text-align: left;
  margin-bottom: 60px;
}


.team .box-list{
  display: inline-block;
  height: 310px;
  width: 1080px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 60px;
  margin-bottom: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.team .box{
  display: inline-block;
  position: relative;
  margin-bottom: 60px;
  /*float: left;*/
  background-color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  width: 240px;
  height: 300px;
  box-shadow: 0px 0px 5px #c2c2c2;
  overflow: hidden;
}

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

/*REVIEW*/
.review{
  background-color: #fff;
  text-align: center;
  padding-top: 60px;
}

.review .container{
  padding-left: 15px;
  padding-right: 15px;
}

.review .head{
  width: 100%;
  margin-bottom: 60px;
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 48px;
  color: #3f51b5;
  line-height: 48px;
  text-align: left;
}

.review .box-list{
  display: inline-block;
  height: 270px;
  width: 1080px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 60px;
  margin-bottom: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.review .box,
.review .box-right{
  position: relative;
  display: inline-block;
  background-color: #fff;
  margin-bottom: 60px;
  margin-left: 0px;
  margin-right: 0px;
  width: 100%;
  text-align: center;
  padding-left: 20px;
  padding-top: 45px;
  padding-right: 20px;
  padding-bottom: 45px;
  box-shadow: 0px 0px 5px #c2c2c2;
}



.review .left,
.review .right{
  position: relative;
  float: left;
  height: 100%;
  width: 100%;
}

.review .right{
  width: 100%;
  padding-left: 0px;
}

.review .right .nume,
.review .right .comentariu,
.review .right .functia{
  font-family: 'Futura2-Italic', sans-serif;
  color: #3f51b5;
  font-size: 18px;
  margin-top: 20px;
}

.review .right .nume{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 24px;
}

.review .right .functia{
  font-family: 'FuturaStd-Medium', sans-serif;
  margin-top: 10px;
}

.review .box img,
.review .box-right img{
  width: 128px;
  height: 128px;
  border-radius: 50%;
}

/*PORTOFOLIO*/
.portofolio{
  background-color: #fff;
}

.portofolio .container{
  padding-left: 15px;
  padding-right: 15px;
}

.portofolio .head{
  width: 100%;
  margin-top: 35px;
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 48px;
  color: #3f51b5;
  line-height: 48px;
}

.portofolio .servicii{
  width: 100%;
  position: relative;
  float: left;
  margin-top: 50px;
  /*margin-left: 30px;*/
}

.portofolio .servicii span{
  position: relative;
  float: left;
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 28px;
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  margin-top: 10px;
  background-color: #3f51b5;
  color: #fff;
  cursor: pointer;
}

.portofolio .servicii span:first-child{
  width: 80px;
}

.portofolio #album{
  position: relative;
  float: left;
  width: 100%;
  /*max-width: 1200px;*/
/*  margin-left: 29px;
  margin-right: 30px;*/
  margin-top: 15px;
  margin-bottom: 60px;
  overflow: hidden;
  z-index: 1;

    /* Prevent vertical gaps */
  line-height: 0;
   
  -webkit-column-count: 1;
  -webkit-column-gap:   0px;
  -moz-column-count:    1;
  -moz-column-gap:      0px;
  column-count:         1;
  column-gap:           0px;  
}

.portofolio #album .photo {
  position: relative;
  float: left;
  /*background-color: #00ffff;*/
  margin-left: 1px;
  margin-top: 1px;
  cursor: pointer;

  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
}

.portofolio #album .photo img{
  width: 100% !important;
  height: auto !important;
}

@media (min-width: 400px) {
  .portofolio #album {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}

@media (min-width: 800px) {
  .portofolio #album {
  -moz-column-count:    3;
  -webkit-column-count: 3;
  column-count:         3;
  }
}

@media (min-width: 1000px) {
  .portofolio #album {
  -moz-column-count:    4;
  -webkit-column-count: 4;
  column-count:         4;
  }
}

@media (min-width: 1200px) {
  .portofolio #album {
  -moz-column-count:    5;
  -webkit-column-count: 5;
  column-count:         5;
  }
}




/*CONTACT*/
.contact{
  background-color: #3f51b5;
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact .left,
.contact .right{
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.contact .left table,
.contact .right table,
.contact .left td,
.contact .right td{
  width: 100%;
  height: 100%;
}

.contact .left td{
  vertical-align: middle;
}

.contact .right td{
  text-align: left;
}

.contact .left .head{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 48px;
  text-align: left;
}

.contact .left .denumire,
.contact .left .adresa,
.contact .left .email,
.contact .left .nume,
.contact .left .tel{
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-left: 5px;
}

.contact .left .denumire,
.contact .left .nume{
  margin-top: 30px;
}

.contact .mesaj-box{
  margin-left: 0px;
  margin-top: 30px;
  width: 100%;
  height: 265px;
  background-color: #fff;
  padding-left: 20px;
  padding-top: 25px;
  padding-right: 20px;
}

.contact .mesaj-box .email-label,
.contact .mesaj-box .mesaj-label{
  position: relative;
  font-family: 'FuturaCondensedNormal', sans-serif;
  font-size: 24px;
  line-height: 24px;
  color: #3f51b5;
}

.contact .mesaj-box .mesaj-label{
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact .mesaj-box #email,
.contact .mesaj-box #mesaj{
  position: relative;
  float: none;
  width: 100%;
  height: 75px;
  border: 1px solid #3f51b5;
  resize:none;
}

.contact .mesaj-box #email{
  border: none;
  border-bottom: 1px solid #3f51b5;
  height: 24px;
}

.contact .mesaj-box .send-box{
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
}

.contact .mesaj-box #send{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 30px;
  margin-top: 10px;
  background-color: #3f51b5;
  font-family: 'FuturaStd-Medium', sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
  border: 1px solid transparent;
}

/*.contact .mesaj-box #send:hover{
  border: 1px solid #3f51b5;
  background-color: #fff;
  color: #3f51b5;
}*/

.contact .right{
  text-align: center;
}

.contact .workers{
  margin-top: 40px;
  max-width: 100%;
  height: auto;
}

.contact .right .google-map{
  margin-top: 40px;
  max-width: 100%;
  height: auto;
}


/*LIGHTBOX*/
#lbMesaj {
  position: relative;
  max-width: 550px;
  background-color: #fff;
  color: #000;
  padding-left: 25px;
  padding-top: 45px;
  padding-right: 25px;
  padding-bottom: 45px;
  margin: 0 auto;
}

#lbMesaj .head{
    font-family: 'FuturaCondensedNormal', sans-serif;
    font-size: 48px;
    color: #3f51b5;
    line-height: 48px;
    text-align: left;
    margin-bottom: 10px;
}

#lbMesaj .error{
  color: #ff285b;
}





@media (min-width: 600px){
  /*tableta*/
  .cover{
    background: url('../img/bg-cover@2x.jpg') no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  .review .box,
  .review .box-right{
    position: relative;
    display: inline-block;
    background-color: #fff;
    margin-bottom: 60px;
    margin-left: 15px;
    margin-right: 15px;
    height: 260px;
    width: 490px;
    text-align: left;
    padding-left: 30px;
    padding-top: 45px;
    padding-right: 20px;
    padding-bottom: 45px;
    box-shadow: 0px 0px 5px #c2c2c2;
  }

  .review .left{
    width: 128px;
  }

  .review .right{
    width: 312px;
    padding-left: 20px;
  }

  /*.contact .left{
    padding-left: 0px;
    padding-right: 0px;
  }*/

  .contact .left .denumire,
  .contact .left .adresa,
  .contact .left .email,
  .contact .left .nume,
  .contact .left .tel{
    margin-left: 30px;
  }

  .contact .mesaj-box{
    margin-left: 25px;
  }

  .contact .mesaj-box{
    margin-left: 0px;
    margin-top: 30px;
    width: 525px;
    height: 235px;
    background-color: #fff;
    padding-left: 20px;
    padding-top: 25px;
    padding-right: 40px;
  }

  .contact .mesaj-box #email,
  .contact .mesaj-box #mesaj{
    position: relative;
    float: right;
    width: 405px;
    height: 75px;
    border: 1px solid #3f51b5;
    resize:none;
  }

  .contact .mesaj-box #email{
    border: none;
    border-bottom: 1px solid #3f51b5;
    height: 24px;
  }

}

@media (min-width: 780px){

  .no-touch #cd-vertical-nav {
    display: block;
  }

  .icon-scroll{
    display: block;
  }

  .cover .logo{
    position: absolute;
    top: 55px;
    left: 55px;
    margin-top: 0px;
  }

  .cover .contact-us{
    position: absolute;
    top: 95px;
    right: 130px;
    width: 300px;
    margin-top: 0px;
  }

  .cover .servicii{
    position: absolute;
    bottom: 30px;
    left: 70px;
  }

  .info .left,
  .info .right,
  .skills .left,
  .skills .right{
    padding-right: 70px;
  }

}

@media (min-width: 1230px){ 
  /*desktop*/

  .cover{
    background: url('../img/bg-cover@3x.jpg') no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  .cover .servicii{
    left: 15px;
  }

  .cover .servicii p{
    font-size: 38px;
    line-height: 38px;
  }

  .cover .servicii a{
    font-size: 72px;
    line-height: 72px;
  }

  .info .left,
  .info .right,
  .skills .left,
  .skills .right,
  .contact .left,
  .contact .right{
    width: 50%;
  }

  .info .right .bubbles{
    margin-top: 0px;
  }

  .skills .left .head{
    margin-top: -200px;
  }

  .skills .right .workers{
    margin-top: 200px;
  }

  .review .container{
    padding-left: 0px;
    padding-right: 0px;
  }

  .review .head{
    padding-left: 15px;
    padding-right: 15px;
  }


  .review .box{
    float: left;
    margin-left: 85px;
  }

  .review .box-right{
    float: right;
    margin-right: 85px;
  }

  .contact{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .contact .right td{
    text-align: center;
  }

  .contact .right .google-map{
    margin-top: 97px;
  }


}

