@import url(https://fonts.googleapis.com/css?family=Lato:100,400,300,700);
@import url(https://fonts.googleapis.com/css?family=Lato:100,400,300,700);
@import url(https://fonts.googleapis.com/css?family=Lato:100,400,300,700);

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,100);
@import url(https://fonts.googleapis.com/css?family=Lora:400italic);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
/* ==================
 *
 *google fonts 
 *
 *===================*/

/* ==================
 *
 *var section 
 *
 *===================*/
/*****  font size  ******/
/*****  Colors  ******/
/* ==================
 *
 *	Reset Class Css
 *
 *===================*/
body {
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #444;
	font-family: 'Roboto', sans-serif;
}

h1 {
  font-size: 46px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
  line-height:22px;
}
p {
  line-height:1.7em;
  color: #888;
  font-size: 15px;
  font-weight: 300;
  margin: 0px 0px 20px 0px;
}
h1,h2,h3,h4,h5,h6,p {
  font-family: 'Roboto', sans-serif;
  margin:10px 0;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
a,
a:active,
a:focus,
a:active {
  text-decoration: none !important;
}



/* ==================
 *
 *  Global Class 
 *
 *===================*/
.btn {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 12px 25px;
  border-radius: 0;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background: transparent;
}
.title {
  text-align: center;
  padding-bottom: 70px;
}
.title h2, .title h1 {
    margin-top: 0;
    text-align: center;
    font-size: 48px;
    font-weight: 100;
}


.title p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #817C7C;
}
#mixed-items .mix {
  display: none;
}
/* animation keyfrem */
@-webkit-keyframes wiggle {
  from {
    top: 10px;
  }
  to {
    top: 20px;
  }
}
@-moz-keyframes wiggle {
  from {
    top: 10px;
  }
  to {
    top: 20px;
  }
}
@-o-keyframes wiggle {
  from {
    top: 10px;
  }
  to {
    top: 20px;
  }
}
@keyframes wiggle {
  from {
    top: 10px;
  }
  to {
    top: 20px;
  }
}
/* ==================
 *
 *  section Class 
 *
 *===================*/
/* header style */



header {
  padding:0;
  background: #fff;
}
header .navbar {
  height: auto;
  margin-bottom: 0;
}
.is-sticky #navigation {
  background: #fff;
  z-index: 1000;
  transition: 0.3s;
  width: 100%;
  padding: 0;
}
.navbar-brand {
  padding: 0;
  height: auto;
}
.navbar-toggle {
  transition: 0.3s;
}
.navbar-toggle .icon-bar {
  transition: 0.3s;
}


.menu a {
    text-transform: uppercase;
    font-weight:500;
    padding: 0;
	font-size:15px;
}
.menu a:before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 12px;
  width: 0;
  height: 1px;
  transition: 0.3s;
}
.menu a:hover {
  background: transparent;
}

.navbar-nav>li>a:active {
  background: transparent;
}



.menu .active a:before{
  width: 25px;
}

.menu a:hover:before {
  width: 25px;
}

nav.collapse.navbar-collapse.navbar-right {
    margin-top: 25px;
}



.top-position{
	top:89px;
}



.lang-menu{
	min-width: 68px;
	text-align: left;
}

.lang-menu>li>a {
	padding: 3px 10px;
}




/* =================
   Home page style
   ================= */
#banner {
  background: url('../img/banner.jpg');
  background-size: cover;
  padding: 250px 0;
  position: relative;
}
#banner:before {
  position: absolute;
  z-index: 99;
  background: rgba(0, 0, 0, 0.73);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
}
#banner .block {
  position: relative;
  z-index: 999;
  color: #fff;
}
#banner .block h1 {
  padding-bottom: 25px;
  font-size: 55px;
  font-weight: 100;
}
#banner .block h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
#banner .block .btn-learn {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 25px;
  margin: 0 7px;
  padding: 10px 22px;
  font-size: 14px;
  transition: 0.3s;
}

#banner .block .buttons {
  margin-top: 40px;
}
#banner .block .buttons a:first-child {
  margin-left: 0;
}
#banner .scrolldown {
  position: absolute;
  left: 50%;
  bottom: 18%;
}
#banner .scrolldown .scroll {
  border-radius: 100px;
  width: 25px;
  height: 45px;
  position: absolute;
  left: 50%;
  margin: 0 0 0 -15px;
  display: inline-block;
  border: 1px solid #fff;
  z-index: 99;
}
#banner .scrolldown .scroll:after {
  background: #fff;
  border-radius: 300px;
  width: 4px;
  height: 9px;
  position: absolute;
  top: 10px;
  left: 50%;
  margin: 0 0 0 -2px;
  display: block;
  content: " ";
  -webkit-animation: wiggle 0.5s linear 0s infinite alternate;
  -moz-animation: wiggle 0.5s linear 0s infinite alternate;
  -o-animation: wiggle 0.5s linear 0s infinite alternate;
  animation: wiggle 0.5s linear 0s infinite alternate;
}
#features {
  padding: 60px 0;
}
#features .feature-block {
  padding-top: 15px;
  padding-bottom:15px;
  min-height: 203px;
}
#features .feature-block .icon-box {
  margin-bottom: 24px;
}
#features .feature-block .icon-box i {
  display: inline-block;
  line-height: 1;
  font-size: 60px;
  transition: 0.3s;
}
#features .feature-block h4 {
  font-size: 20px;
  color: #333;
  position: relative;
  text-transform: none;
  margin-bottom: 10px;
  font-weight: 400;
}
#features .feature-block p {
  font-size: 15px;
  color: #888;
  line-height: 24px;
  font-weight: 300;
  margin-top: 20px;
  
}
#features .showcase-img {
  margin-top: 40px;
}
#counter {
  background: url(../img/counter-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  padding: 100px 0;
}
#counter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
}
#counter .title {
  position: relative;
}
#counter .title h2 ,#counter .title p {
  color: #fff;
}
#counter .block {
  margin-bottom: 20px;
}
#counter .block i {
  display: block;
  font-size: 40px;
  line-height: 1;
  padding-bottom: 20px;
}
#counter .block span {
  line-height: 1;
  display: inline-block;
  color: #fff;
}
#counter .block .count-text {
  font-size: 36px;
}
#counter .block p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  padding-top: 20px;
}
#portfolio {
  padding: 0px 0 100px;
}
#portfolio .block .recent-work-mixMenu {
  padding-bottom: 40px;
  text-align: center;
}
#portfolio .block .recent-work-mixMenu ul li {
  display: inline-block;
  padding: 0;
}
#portfolio .block .recent-work-mixMenu ul li button {
  background: none;
  border: 0;
  font-size: 15px;
  color: #474747;
  margin: 0 20px;
  transition: 0.2s;
  text-transform: uppercase;
}

#portfolio .block .recent-work-mixMenu ul li button:focus {
  outline: 0;
}

#portfolio .block .recent-work-pic ul li {
  /*margin-bottom: 30px;*/
  position: relative;
}
#portfolio .block .recent-work-pic ul li:hover .overlay {
  opacity: 1;
}
#portfolio .block .recent-work-pic ul li:hover .overlay i {
  top: 40%;
  opacity: 1;
}
#portfolio .block .recent-work-pic ul li:hover .overlay h3 {
  bottom: 50%;
  opacity: 1;
}
#portfolio .block .recent-work-pic ul li .overlay {
  position: absolute;
  top: 15px;
  left: 16px;
  bottom: 15px;
  right: 16px;
  transition: 0.3s;
  text-align: center;
  opacity: 0;
}
#portfolio .block .recent-work-pic ul li .overlay h3,
#portfolio .block .recent-work-pic ul li .overlay i {
  color: #3c3c3b;
  
}
#portfolio .block .recent-work-pic ul li .overlay h3 {
  bottom: 30%;
  left: 50%;
  opacity: 0;
  text-transform: uppercase;
  font-weight: 400;
  width: 100%;
  transition: 0.3s;
  position: absolute;
  transition-delay: 0.1s;
  transform: translateX(-50%);
}
#portfolio .block .recent-work-pic ul li .overlay i {
  top: 30%;
  opacity: 0;
  left: 50%;
  font-size: 50px;
  transition: 0.3s;
  transition-delay: 0s;
  position: absolute;
  transform: translate(-50%, 50%);
}
#portfolio .block .recent-work-pic ul li .overlay .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#play-video {
  padding: 105px 0;
  background: url("../img/new-latter.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#play-video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 35, 34, 0.7);
}
#play-video .block {
  text-align: center;
}
#play-video .block h2 {
  color: #fff;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
#play-video .block p {
  text-align: center;
  color: #dfdfdf;
  padding-bottom: 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-top: 10px;
}
#play-video .block .button {
  position: relative;
  width: 100px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 4px;
  transition: all 300ms linear;
  font-size: 30px;
  margin-top: 10px;
}
#play-video .block .button:hover {
  color: #424242;
  border-color: red;
}
#html5-watermark {
  display: none !important;
}
#testimonial {
  padding: 77px 0;
}
#testimonial .col {
  position: relative;
  padding: 47px 60px;
  overflow: hidden;
}
#testimonial .col-md-6 {
    border: solid #dedede;
    border-width: 0 1px 1px 0;
    padding-bottom: 42px;
}
#testimonial .col-md-6:nth-child(3n) {
      border-right: 0;
}
#testimonial .col-md-6:nth-child(5n) {
      border-right: 0;
      border-bottom: 0;
}
#testimonial .col-md-6:nth-child(4n) {
  border-bottom: 0;
}
#testimonial .media .media-left {
  padding-right: 20px;
}
#testimonial .media .media-left a {
  position: relative;
  display: block;
}
#testimonial .media .media-left a:before {
  content: "\f347";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  font-family: "Ionicons";
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding-top: 2px;
}
#testimonial .media .media-body {
  padding-top: 5px;
}
#testimonial .media .media-body h4 {
  color: #444;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#testimonial .media .media-body p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: #787878;
}
#team {
  padding: 80px 0 180px;
}
#team .block {
  position: relative;
  overflow: hidden;
  border:3px solid transparent;
  -webkit-transition: .4s all;
  -o-transition: .4s all;
  transition: .4s all;
}
#team .block img {
  width: 100%;
  position: relative;
}


#team .block:hover .team-overlay {
  bottom: 0;
  opacity: 1;
}
#team .team-overlay {
  background: rgba(255, 255, 255, 0.95);
  color: #fff;
  text-align: center;
  padding: 48px 62px;
  position: absolute;
  bottom: -150px;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  
  transition: 0.3s;
}
#team .team-overlay h3,
#team .team-overlay span {
  color: #333;
}
#team .team-overlay span {
  display: block;
  font-size: 13px;
  padding-top: 10px;
}
#team .team-overlay .icon {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  padding: 10px;
  line-height: 1;
  margin-top: 36px;
  margin-bottom: 25px;
  border-radius: 100%;
  display: inline-block;
}

#team .team-overlay .icon i {
  font-size: 18px;
  color: #fff;
}
#team .team-overlay p {
  font-size: 14px;
  line-height: 23px;
  color: #707a8a;
  
}
#team .team-overlay .media {
  margin-top: 10px;
}
#team .team-overlay .media a {
  font-size: 12px;
  color: #fff;
  transition: 0.3s;
  margin: 0 10px;
}

#pricing-table {
  padding: 100px 0 127px;
}
#pricing-table .title h2,
#pricing-table .title p {
  color: #fff;
}
#pricing-table .title h2:before, #pricing-table .title h2:after {
  background: #fff;
}
#pricing-table .block {
  color: #fff;
}
#pricing-table .block ul {
  border: 1px solid #fff;
  padding: 35px 0;
}
#pricing-table .block ul li {
  padding: 10px 0;
}
#pricing-table .block ul li p {
  text-transform: uppercase;
}
#pricing-table .block ul li:first-child {
  margin-bottom: 26px;
}
#pricing-table .block ul li:first-child h4 {
  padding-bottom: 29px;
  font-size: 20px;
}
#pricing-table .block ul li:first-child p {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
#pricing-table .block ul li:first-child p span {
  font-size: 16px;
  font-weight: 300;
}
#pricing-table .block ul li:last-child {
  color: #fff;
  margin-top: 25px;
}
#pricing-table .block .btn-buy {
  border-color: #fff;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  background: #fff;
}


#pricing-table .block .btn-buy {
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
}
#pricing-table .block:hover {
  background:rgba(255, 255, 255, 0.17);
}
#pricing-table .block:hover .btn-buy {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
}
#contact-form {
  padding: 100px 0;
  background:#f9f9f9;
}
#contact-form form input,
#contact-form form textarea {
  padding: 24px 20px 0;
  border-color: #009fe3;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: none;
}
#contact-form form input {
  margin-bottom: 15px;
  padding: 24px 27px;
}
#contact-form form textarea {
  margin-bottom: 28px;
  min-height: 172px;
  resize: none;
}
#contact-form form button {
  float: right;
  color: #fff;
  font-size: 16px;
  padding: 17px 43px;
  border-radius: 40px;
  font-weight: 600;
  border-color: transparent;
  transition: 0.3s;
}
#contact-form form button:hover {
  background: none;
  border-color: #009fe3;
}
#footer-top iframe {
  width: 100%;
  height: 385px;
  transform: translateZ(0px);
  background-color: #ffffff;
  border: 0;
}
/** Google Map**/
/* line 125, ../../scss/_contact.scss */
.map #googleMap {
  min-height: 345px;
  -webkit-filter: gray;
  filter: gray;
  filter: grayscale(100%);
  -webkit-filter: grayscale(1);
  -webkit-filter: grayscale(100%);
}
/* ================ Home end ========================= */
/* =====================
   contact page style
   ===================== */
#global-header {
  background: url(../img/contact-slider-img.jpg);
  background-size: cover;
  background-position: center;
  padding: 150px 0 90px;
  text-align: center;
  position: relative;
}
#global-header:before {
  position: absolute;
  z-index: 99;
  background: rgba(60, 59, 72, 0.69);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  z-index: 1;
}
#global-header .block {
  position: relative;
  z-index: 10;
  color: #fff;
}
#global-header .block h1 {
  font-size: 50px;
  margin-top: 20px;
}
#global-header .block p {
  font-size: 15px;
  padding-top: 10px;
  font-family: 'Roboto', sans-serif;
}

/* ================ Contact end ========================= */
/* =====================
   Service page style
   ===================== */
#client-logo {
  padding: 0 0 100px;
  text-align: center;
}
#client-logo a {
  padding: 14px 24px;
  display: block;
}
#client-logo a img {
  transition: 0.3s;
  margin: 0 auto;
}
#client-logo a:hover img {
  transform: scale(1.2);
}

/* =====================
   Blog Post
   ===================== */


#blog {
  padding:100px 0;
  background: #ffffff;
}
#blog-post .block {
  background: #f5f5f5;
  margin:0 5px;
}

#blog-post  .content {
  padding:10px 15px 30px; 
  text-align: center;
}
#blog-post .content h4 {
  /*text-transform: capitalize;*/
  position: relative;
  /*padding: 10px 0;*/
}
#blog-post .content h4 a {
  color: #333;
}

/*
#blog-post .content h4::before {
    content: '';
    position: absolute;
    left: 45%;
    top: -6px;
    width: 30px;
    height: 2px;
    background-color: #009fe3;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
*/
#blog-post .content small {
  color: #999;
}
#blog-post .content p {
  margin-top: 10px;
  color: #777;
}
.btn-read {
  color: #fff;
  padding:8px 12px;
  font-size: 13px;
  margin-top: 15px;
  font-weight:500;
}

/* =====================
   Blog Page
   ===================== */



#blog-left{
  padding: 130px 0;
}

#blog-left .blog-img .col-md-12{
  margin-bottom: 4% ;
}

#blog-left .block{
      margin: 5.5% 0 ;
}

#blog-left .block span{
  display: block;
  margin: 3% 0 ;
  color: #333 ;
  font-size: 15px ;
  line-height: 22px ;
  /*font-family: 'Roboto', sans-serif;*/
}

#blog-left .block .first-child{
    margin: 5.5% 0 ;
}

#blog-left .block p{
    font-size: 13px;
    color: #888;
    line-height: 23px;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    /*font-family: 'Roboto', sans-serif;*/
}

#blog-left .block blockquote{
    border-left: 0 none;
    margin-bottom: 30px;
    padding: 46px;
    background-color: #f6f6f6 ;
}

#blog-left .block blockquote p{
  margin: 0 0 5.5% ;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #626262;
}

#blog-left .block blockquote p:before{
    color: #333;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 50px;
    margin-right: 10px;
}

#blog-left .block blockquote .footer{
  color: #000 ;
}

#blog-left .block blockquote .footer:before{
  content: '\2014 \00A0';
}

#blog-left .block .tags{
  margin: 0 0 6.5% ;
}

#blog-left .block .tags h5{
    font-size: 18px ;
    line-height: 27px ;
    color: #333 ;
}

#blog-left .block .tags a{
  font-size: 11px ;
  line-height: 20px;
  display: inline-block ;
  color: #272727;
  text-decoration: none;
}

#blog-left .block .blog-comment{
  padding: 5.5% ;
  background-color: #f6f6f6;
}

#blog-left .block .blog-comment .comment-img{
    float: left;
    margin-right: 35px;
    max-width: 100px;
}


#blog-left .block .blog-comment .comment-text a{
  color: #333;
  margin: 0 0 10px;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}

#blog-left .block .blog-comment .comment-text span{
  font-size: 11px;
  line-height: 20px;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  color: #626262;
  margin: 0 0 10px;
}


#blog-left .block .media-link{
  text-align: center;
  padding: 5.5% 0;
}

#blog-left .block .media-link a i{
    font-size: 24px;
    line-height: 28px;
    color: #373737;
    margin: 0 0 0 5.5%;
}

#blog-left .blog-comment-main{
  padding-bottom: 7%;
  margin-bottom: 7%;
}

#blog-left .blog-comment-main .blog-comment .comment-img{
    float: left;
    margin-right: 35px;
    margin-top: 10px;
    max-width: 100px;
}

#blog-left .blog-comment-main .comment-text{
  overflow: hidden;
}

#blog-left .blog-comment-main .comment-text .title,
#blog-left .blog-comment-main .comment-text span{
  color: #333;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
}

#blog-left .blog-comment-main .comment-text .title:after{
    content: "/";
    padding: 0 10px;
    font-weight: 500;
}

#blog-left .blog-comment-main .comment-text p{
  margin: 2% 0;
  font-size: 13px;
  color: #626262;
  line-height: 23px;
}

#blog-left .blog-comment-main .comment-text .btn{
  font-size: 9px;
  padding: 4px 12px 3px;
  color: #fff;
  display: inline-block;
  width: auto;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: ease-in-out;
  text-transform: uppercase;
 font-family: 'Roboto', sans-serif !important;
  font-weight: 600;
  letter-spacing: 1px;
}

#blog-left .blog-comment-main .comment-text .btn:hover{
  border: 2px solid #373737;
  color: #373737;
  background-color: transparent;
}

#blog-left .blog-comment-main .sub-blog-comment{
  margin: 30px 0 30px 40px;
  padding: 4% 0;
}

#blog-left .blog-comment-main .sub-blog-comment .comment-img{
    float: left;
    margin-right: 35px;
    margin-top: 10px;
    max-width: 100px;
}

#blog-left .addcomment span{
  margin: 0 0 5.5%;
  display: block;
  font-size: 18px;
  line-height: 27px;
  color: #333;
}

#blog-left .addcomment .blog-comment-form form input, textarea{
  padding: 18px 25px;
  border: 2px solid rgba(0,0,0,.1);
  font-size: 14px;
  height: auto;
  margin: 0 0 20px 0;
  border-radius: 0;
  transition: 0.8s;
}

#blog-left .addcomment .blog-comment-form form input:focus{
  box-shadow: none;
}

#blog-left .addcomment .blog-comment-form form textarea{
  border-radius: 0;
  padding: 18px 25px;
  min-height: 100px;
  border: 2px solid rgba(0,0,0,.1);
}

#blog-left .addcomment .blog-comment-form form textarea:focus{
  box-shadow: none;
}

#blog-left .addcomment .blog-comment-form form button{
  font-size: 14px;
  padding: 10px 22px;
  letter-spacing: 1px;
  background-color: #009fe3;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: ease-in-out;
}

#blog-left .addcomment .blog-comment-form form button:hover{
  background-color: transparent;
  border: 2px solid #009fe3;
  color: #009fe3;
}

#blog-left .widget{
  margin: 0 0 10.5%;
}

#blog-left .widget form i{
    cursor: pointer;
    position: absolute;
    right: 19px;
    top: 12px;
    z-index: 998;
}

#blog-left .widget form input{
    color: #949494;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 8px 15px;
    padding-left: 0;
    width: 100%;
    margin: 0 0 20px 0;
    max-width: 100%;
    resize: none;
    transition: 0.8s;
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 1px;
    font-size: 11px;
}

#blog-left .widget form input:focus{
  outline: none;
  border: none;
  border-bottom: 1px solid #000;
}

#blog-left .widget span{
  font-size: 15px;
  line-height: 22px;
  color: #333;
  display: block;
  margin-bottom: 7%;
  padding-bottom: 7%;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
#blog-left .widget span:before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 4px;
}

#blog-left .widget .widget-body ul li{
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 12px;
  margin-bottom: 10px;
  color: #ababab;
}

#blog-left .widget .widget-body ul li a{
  letter-spacing: 1px;
  display: block;
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
  color: #333;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
}

#blog-left .widget .widget-body ul li .items{
  text-transform: none;
  font-weight: 600;
  font-size: 12px;
}

#blog-left .widget .widget-body ul li:last-child{
  border: 0;
}

#blog-left .widget .widget-body .title{
  margin: 0;
  margin-top: 11.5%;
  padding: 0;
  text-align: left;
}

#blog-left .widget .widget-body .title:before{
  display: none;
}

#blog-left .widget .widget-body p{
  font-size: 13px;
  color: #626262;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: #626262;
}

#blog-left .sidebar-tags a{
  padding: 2px 10px;
  display: inline-block;
  color: #373737;
  margin: 0 8px 10px 0;
  background-color: #f6f6f6;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 20px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.02em;
}

#blog-left .sidebar-tags a:hover{
  background-color: #000;
  color: #fff;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: ease-in-out;
}


/*******************************************   rgweb *********************************************************/



.bg-white{
	background-color:#ffffff;
	padding:60px 0px;
}

.bg-grey{
	background-color:#f5f5f5;
	padding:60px 0px;
}


/* 5. SLIDER */

	#slider{
		margin-top: 80px;
	}

	#home-carousel  .item {
		background-position: center top;
		background-repeat: no-repeat;
		background-size:cover;
		width:100%;
		height: 700px;
	}
	
	/*******/

	#home-carousel .item:before{
		/*background-image: url("../img/slider/bg3.png");*/
		/*background-repeat:no-repaet;*/
		/*background-color: #ffffff7a;*/
		content: "";
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0.4;
		position: absolute;
		width: 100%;
	}

	.carousel-caption {
		left: 15px;
		right: 15px;
		top: 50%;
		font-size: 15px;
		text-align: left;
		color: #fff;
		text-shadow: none;
		margin-top: -130px;	
	}

	.carousel-caption h1 {
		font-size:46px;
		margin-bottom:0;
		line-height:27px;
		letter-spacing:2px;
		font-weight:100;
	}

	.carousel-caption h2 {
		font-size:81px;
		font-weight:600;
		margin-top:0px;
		text-transform:lowercase;
		letter-spacing:2px;
		margin-bottom:20px;
	}

	.home-carousel-left, 
	.home-carousel-right {	
		color:#ffffff;
		font-size: 32px;
		height: 40px;
		line-height: 40px;
		margin-top: -20px;
		position: absolute;
		text-align: center;
		top: 50%;
		width: 32px;
		z-index: 999;
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		-o-transition: 300ms;
		-ms-transition: 300ms;
		transition: 300ms;
	}
	

	.home-carousel-left {
		left:0px;
	}

	.home-carousel-right {
		right:0px;
	}

	#home-carousel:hover .home-carousel-left {
		left:0;
	}

	#home-carousel:hover .home-carousel-right {
		right:0;
	}
	/* Carousel animation */

	#home-carousel .item h1, 
	#home-carousel .item h2, 
	#home-carousel .item p,
	#home-carousel .item a 	{
		opacity:0;
		-moz-transform: scale(0.5);
		-webkit-transform: scale(0.5);
		-o-transform: scale(0.5);
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}

	#home-carousel .item h1 {
		-webkit-transition: all 0.5s ease-in-out 0.15s;
		-moz-transition: all 0.5s ease-in-out 0.15s;
		-ms-transition: all 0.5s ease-in-out 0.15s;
		-o-transition: all 0.5s ease-in-out 0.15s;
		transition: all 0.5s ease-in-out 0.15s;
	}

	#home-carousel .item.active h1, 
	#home-carousel .item.active h2, 
	#home-carousel .item.active p,
	#home-carousel .item.active a {
		opacity:1;
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	#home-carousel .item h2 {
		-webkit-transition: all 0.5s ease-in-out 0.30s;
		-moz-transition: all 0.5s ease-in-out 0.30s;
		-ms-transition: all 0.5s ease-in-out 0.30s;
		-o-transition: all 0.5s ease-in-out 0.30s;
		transition: all 0.5s ease-in-out 0.30s;
	}

	#home-carousel .item p {
		-webkit-transition: all 0.5s ease-in-out 0.45s;
		-moz-transition: all 0.5s ease-in-out 0.45s;
		-ms-transition: all 0.5s ease-in-out 0.45s;
		-o-transition: all 0.5s ease-in-out 0.45s;
		transition: all 0.5s ease-in-out 0.45s;
	}
	
	#home-carousel .item a {
		-webkit-transition: all 0.5s ease-in-out 0.45s;
		-moz-transition: all 0.5s ease-in-out 0.45s;
		-ms-transition: all 0.5s ease-in-out 0.45s;
		-o-transition: all 0.5s ease-in-out 0.45s;
		transition: all 0.5s ease-in-out 0.45s;
	}
	
	
	
	
	
	/* 15. FOOTER */



	.footer-social-icons{
		text-align: right;
	}

	.footer-social-icons a{
		margin: 0 5px;
		font-size: 16px;
	}

	.footer-social-icons span{
		margin-right: 10px;
	}
	

	
	#footer ul{
		list-style:none;
		padding:0px;
	}
	
	#footer ul li{
		padding: 3px 0;
		border-bottom:1px solid #dedede;
	}
	
	
	
	
	#bottom-footer p{
		color:#f5f5f5;
		font-size:13px;
		margin:0px;
	}
	
	#bottom-footer a{
		color:#ffffff;
	}
	
	#bottom-footer a:hover{
		color:#f5f5f5;
	}
	
	
	
/* 16. SCROLL TO TOP */

	.scroll-up {
		position: fixed;
		display: none;
		z-index: 999;
		bottom: 1.8em;
		right: 1.8em;
	}

	.scroll-up ul{
		margin: 0;
		padding: 0;
	}

	.scroll-up li{
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.scroll-up a {
		background-color: #fff;
		display: block;
		width: 40px;
		height: 40px;
		text-align: center;
		color: #000;
		font-size: 20px;
		line-height: 38px;
		box-shadow: 0px 0px 6px #ccc;
	}

	.scroll-up a:hover,
	.scroll-up a:active {
		background-color: #f5f5f5;
		color: #000;
	}

	
	
	
	
/* MOVIMENTI */




	#movimenti{
		padding-top: 8px;
		padding-bottom: 0px;
	}

	.section-title{
		margin-bottom: 50px;
	}

	.section-title h1{
		margin-top: 0;
	}

	.st-movimenti{
		margin-top: 10px;
	}

	#movimenti h2{
		color:#333333;
		text-transform:uppercase;
		font-size: 14px;
		margin-top: 10px;
		margin-bottom: 10px;
		font-weight:600;
	}

	.st-movimenti h2 i{
		margin-right: 10px;
	}

	.st-movimenti p{}	
	
	
	
	.img-mov-home{
		width:80px;
		margin:auto;
	}
	
	
	
/***** APPLICAZIONI *****/

#features{
	/*background-image:url("../img/slider/bg4.png");*/
	background-repeat:no-repeat;
	background-size:cover;
	opacity:0.2px;	
}


#features .media {
  margin: 0px 0 20px 0;
}
#features .media .media-left {
  padding-right: 10px;
}
#features h4 {
  font-size: 18px;
  margin-bottom: 20px;
  margin: 0px 0px 15px;
  font-weight: 500;
}
#features p {
  line-height: 25px;
  font-size: 14px;
  color: #777777;
}
#features .icon {
  text-decoration: none;
  /*background-color: #f5f5f5;*/
  height: 100px;
  text-align: center;
  width: 100px;
  font-size: 50px;
  line-height: 100px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}	
	
	
	
/* 9. EVIDENZA */
	
	#evidenza{
		color:#ffffff
	}

	#evidenza .evidenza{
		padding:10%;
	}

	#evidenza .evidenza h4{
		margin-top: 0;
		margin-bottom: 30px;
		font-size:22px;
		font-weight: 300;
	}
	
	#evidenza .evidenza p{
		margin-bottom:40px;
		font-weight: 300;
	}

	#evidenza .evidenza .btn-send{
		margin-top: 30px;
	}

	#evidenza .our-office{
		padding-right: 0px;
	}


	.office-carousel-left, 
	.office-carousel-right  {	
		color:#ffffff;
		font-size: 32px;
		height: 40px;
		line-height: 40px;
		margin-top: -20px;
		position: absolute;
		text-align: center;
		top: 50%;
		width: 32px;
		z-index: 999;
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		-o-transition: 300ms;
		-ms-transition: 300ms;
		transition: 300ms;
	}
	
	.office-carousel-left:hover, 
	.office-carousel-right:hover{
		background-color: #3c3c3b;
	}
	
	.office-carousel-left {
		left:-32px;
	}

	.office-carousel-right {
		right:-32px;
	}

	#office-carousel:hover .office-carousel-left {
		left:0;
	}

	#office-carousel:hover .office-carousel-right {
		right:0;
	}

	#office-carousel .item img{
		width: 100%;
	}
	
	
	.btn-blu{
    border: 0;
	border-radius:0;
    color: #ffffff;
    padding: 8px 14px;
	font-weight:600;
	margin-bottom:5px;
	}
	
	
	
	
	
	
	
	
.btn-apllicazioni {
    font-weight: 500;
	font-size:12px;
}







/********************* PRODOTTI *************************/


.box-scelta-prod{
	background-color:#f5f5f5;
	padding:25px;
	text-align:left;
	text-transform:uppercase;
	font-size:20px;
	font-weight:600;
}

.box-scelta-prod:hover{
	color:#3c3c3b;
	font-weight:700;
}


.box-scelta-prod a{
	font-size:26px;
	color:#3c3c3b;
}

#cerca-prodotto .widget form input{
    color: #3c3c3b;
    border: none;
    border: 1px solid #e5e5e5;
    width: 100%;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 15px 15px;
    width: 100%;
    margin: 0 0 20px 0;
    max-width: 100%;
    resize: none;
    transition: 0.8s;
	font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
}


button.btn-cerca-prod {
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
	width:100%;
}
button.btn-cerca-prod:hover,
button.btn-cerca-prod:active {
    background-color:#3c3c3b;
	color:#ffffff;
}






/******************* PAG PRODOTTI **********************/

.prod-scelta{
	text-align:center;
	text-transform:uppercase;
	font-size:22px;
	font-weight:700;
	color:#3c3c3b;
}

.prod-scelta:hover,
.prod-scelta:active{
	font-weight:800 !important;
}


/*
.search-prod{
    font-size: 18px;
    font-weight: 700;
    color: #3c3c3b;
	width:78%;
	border:0px;
	border-bottom: 1px solid #dcdcdc !important;
    padding: 5px;
}*/



.search-prod{
    font-size: 18px;
    font-weight: 300;
    color: #3c3c3b;
	width:78%;
	border: 1px solid #dcdcdc !important;
    padding: 25px 10px;
}


#filtro-prodotti-1{
	background-color:#f5f5f5;
	padding:100px 0 0px;
	border-bottom: 1px solid #dcdcdc;
}


#filtro-prodotti-2{
	background-color:#f5f5f5;
	
}

.filtro-prodotto-list-2{
		padding:5px 7px; 
}

.filtro-prodotto-list-2 a{
	text-align:center;
	font-size:18px;
	line-height: 26px;
	text-transform:uppercase;
	color:#3c3c3b;
}

.filtro-prodotto-list-2 a:hover,
.filtro-prodotto-list-2 a:active,
.filtro-prodotto-list-2 a:focus{
	font-weight:600;;
}




#filtro-prodotti-3{
	padding:10px 0 0 0;
	background-color:#ffffff;
	
}

.filtro-prodotto-list-3{
	/*display:inline-table;*/
	margin-top:15px;
}

.filtro-prodotto-list-3 li{
	/*float:left;*/
	/*text-align:center;*/
	padding:0px 10px;
	/*display:inline;*/
}

.filtro-prodotto-list-3 li a{
	font-size:15px;
	text-transform:inherit;
	color:#777777;
	padding:5px 10px;
}

.filtro-prodotto-list-3 li a:hover,
.filtro-prodotto-list-3 li a:active{
	color:#3c3c3b;
}


.work-grid{
	padding:8px;
}



.border-li{
	background-color:#f5f5f5;
	border:1px solid #f5f5f5;
}



.item-prod-text {
    background-color: #f5f5f5;
    padding: 10px 15px;
}


.item-prod-container h3,
.item-prod-text h3{
	font-size:16px;
	color:#3c3c3b;
	font-weight:600;
	margin-bottom:2px;
	margin-left:10px;
}


.item-prod-container span,
.item-prod-text span{
	color:#666666;
	font-size:11px;
	margin-left:10px;
	margin-bottom:10px;
}


.ih-item, .ih-item * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.item-prod-container {
  position: relative;
  overflow: hidden;
  padding:15px 5px;
}
.item-prod-container .img-prodotto {
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item-prod-container:hover .img-prodotto {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.logo-prodotto{
	width:100px;
	float:right;
	margin-right:5px;
}




/*ADVANCED SEARCH */

.advanced-search-mobile {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    /*box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);*/
    display: none;
	padding-top:80px;
}


.advanced-search-mobile .single-search-wrap {
    display: table;
}


.advanced-search-mobile .single-search {
    width: 10000px;
}

.advanced-search-mobile .single-search-inner {
    display: table-cell;
    vertical-align: middle;
}



.advanced-search-mobile .single-search-wrap button {
    height: 40px;
    background: none;
    border: none;
    padding: 5px 2px;
    font-size: 38px;
    font-weight: 200;
}

.advanced-search-mobile .single-search-inner {
    display: table-cell;
    vertical-align: middle;
}

.table-cell {
    display: table-cell;
    vertical-align: top;
}


.advanced-search-mobile .advance-fields {
    position: relative;
    display: none;
    padding: 0px 10px;
	margin-top:10px;
    /*border-top: 1px solid #009fe3;*/
}




.advanced-search-mobile .search-prod{
	font-size: 16px;
    font-weight: 400;
	background-color: transparent;
}

.advanced-search-mobile .prod-scelta{
	font-size:12px;
	text-align:center;
}

.btn-filtri-mobile{
	color:#ffffff;
	font-size:20px;
	padding:10px 20px;
	width:100%;
}



@media (max-width: 767px){
	
	.advanced-download-mobile{
		padding-top:0px !important;
	}
	
	.advanced-search-mobile {
		display: block !important;
		padding-top:68px;
	}
	
}

@media (max-width: 481px){
	.advanced-search-mobile .container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	
}







/************ SCHEDA PRODOTTO ************/

@media (min-width: 768px){
	.menu-scheda-prodotto{
	float:right;
	}
	.menu-scheda-prodotto li{
		float:left;
		padding:12px 18px;
	}
}


.menu-scheda-prodotto  a{
    text-align:center;
	font-size:15px;
	text-transform:uppercase;
	color:#444444;
}



#menu-prod-fixed{
	position: fixed;
    width: 100%;
    z-index: 99;
    opacity: 0.9;
}


.scheda-menu-sx{
	padding-bottom:0px;
}

.scheda-menu-dx{
	padding-bottom:0px;
	padding-right:0px;
	padding-left:0px;
}




.scheda-prodotto h2{
	margin-top: 0;
    text-align: left;
    font-size: 48px;
    font-weight: 100;
	margin-bottom:20px;
}
.scheda-prodotto h3, .scheda-prodotto h1{
    color: #3c3c3b;
    text-align: left;
    font-size: 26px;
    font-weight: 400;
	text-transform:uppercase;
}
.scheda-prodotto p{
    color: #888;
    font-size: 15px;
    font-weight: 300;
	margin: 0px 0px 20px 0px;
	
}

.leggitutto{
    text-align: right;
}


.doc-download{
	padding:0px 10px 10px
}



.btn-scheda-prod{
	color:#ffffff;
	padding:5px 5px 3px;
	width:100%;
}

.btn-scheda-prod:hover,
.btn-scheda-prod:focus{
	background-color:#3c3c3b !important;
	color:#ffffff;
}


.btn-prod-download{
	background-color:#f5f5f5 !important;
	color:#444444;
	padding:15px 0px;
}

.icon-btn-download-prod{
	margin-right:10px;
}

.description-list{
	list-style-type: square;
    padding-left: 20px;
    color: #009fe3;;
}




.description-icon li{
	float:left;
	width:91px;
	text-align:center;
}
.description-icon li img{
    padding: 2px;
    width: 80px;
    margin: auto;
}



.specifiche-list li{
	padding:10px 0px;
	border-bottom:1px solid #c5c5c5;
	font-weight:500;
	width:95%;
}

.specifiche-list span{
	font-style:italic;
	font-weight:300;
}


.icon-detail{
	width:100px;
}



#caratteristiche h5{
	font-size:13px;
	text-transform:uppercase;
    font-weight: 400;
}


.feature-box{
	min-height:115px;
	background-color:#f5f5f5;
	padding: 20px 10px;
}
.feature-box h5{
	margin-top:0px;
}
.feature-box p{
	margin:10px 0px;
}

.file-icon{
	width:80px;
	margin-bottom:5px;
	margin-top:8px;
}
.file-icon-download{
	width:100px;
	margin-bottom:5px;
	margin-top:8px;
}

.iframe-video{
	height:450px
}




/******* DOWNLOAD *****/


#downloads{
	padding-bottom:0px;
	margin-bottom:0px;
}

.blocco-vuoto{
    text-align: center;
    font-size: 34px;
	line-height:45px;
    color: #888;
    font-weight: 300;
    vertical-align: middle;
    margin-top: 10%;
	margin-left:-8%;
}


.blocco-icone{
	margin-top:15px;
	/*border-bottom:1px solid #e0e0e0;*/
	padding-bottom:8px;
}



.multiple-colums {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
    -webkit-column-width: 100px; /* Chrome, Safari, Opera */
    -moz-column-width: 100px; /* Firefox */
    column-width: 100px;
}


.rowmargin{
	margin-right:0px;
	margin-left:0px;
}


/******** PAG NEWS ******/

#news{
	padding-top:40px;
	padding-bottom:120px;
}

.scheda-news{
	padding-top:200px;
	min-height:800px;
}



.list-padding{
	padding:5px;
}

#news .content{
	padding: 10px 15px 30px;
	text-align: center;
	min-height:310px;
}

#news .content p{
	font-size:14px;
}



/***************** AZIENDA **************/



#azienda h4{
	font-weight: 300;
    font-size: 20px;
}

.citazione{
	background-color:#f5f5f5;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.citazione h3{
	font-weight: 300;
    font-size: 22px;
    font-style: italic;
    color: #9a9a9a;
}

.citazione p{
	font-weight: 400;
    font-size: 16px;
    font-style: italic;
    color: #565656;
    text-align: right;
}


.timeline  p{
	font-size:13px;
	line-height:19px;
}

.timeline h4 {
    font-size: 14px;
    line-height: 22px;
}


/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #f5f5f5;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.container-timeline {
    padding: 5px 20px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: #f5f5f5;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 25px;
    border: medium solid #f5f5f5;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f5f5f5;
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #f5f5f5;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f5f5f5 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -16px;
}

/* The actual content */
.content-timeline {
    padding: 20px 30px;
    background-color: #f5f5f5;
    position: relative;
    border-radius: 6px;
}



.date-timeline{
	font-weight: 300;
}


/* Media queries - Responsive timeline on screens less than 600px wide */
@media all and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }
  
  /* Full-width containers */
  .container-timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container-timeline::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}



.timeline figure.item-h1{
	height:160px;
}

.timeline figure.item-h2{
	height:320px;
}

.timeline figure.item-h3{
	height:260px;
}




/***************** CONTATTI *************/

.contatti-icon{
	margin-right:8px;
	color:#888888;
	font-size:11px;
}

.pad-form{
	padding:5px 15px;
}


#sede{
	padding-top:200px;
	padding-bottom:60px;
	margin-bottom:60px;
	border-bottom:1px solid #e0e0e0;
}



#filiali{
	padding-bottom:60px; margin-bottom:60px; border-bottom:1px solid #e0e0e0
}
#rivenditori {
	padding-bottom:60px; margin-bottom:60px; border-bottom:1px solid #e0e0e0
}

.box-agente{
	min-height:270px;
}



input[type=text],
input[type=email],
input[type=password],
textarea {
    -webkit-appearance: none;
}


input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}



/*mappa multipointer*/
#map_wrapper {
    height: 500px;
	margin-bottom:40px;
}

#map_rivenditori, #map_filiali{
    width: 100%;
    height: 100%;
}

.info-content p{
	font-size:12px;
	line-height:19px;
	margin-bottom:10px;
	
}
/*fine mappa multipointer*/






/****************** NEWSLETTER ****************/

#newlsetter{
	padding:20px 0px;
}

.btn-iscriviti{
	font-size:20px;
	color:#ffffff;
	font-weight:500;
}

.btn-iscriviti:hover{
	color:#ffffff;
}

.btn-newsletter{
	font-size:20px;
	color:#ffffff;
	font-weight:500;
}

.check-privacy label{
	font-size:16px;
	color:#ffffff;
	font-weight:300;
}


/***************** LOGIN ***********************/


.login-info{
	margin-top:50px;
}

.login-info p{
	
}

.login-info a{
	text-decoration: underline !important;
}




/******************* generali **************/
.row-justify{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}


.nopadding{
	padding:0px;
}

.section-title{
	padding-top:110px;
	padding-bottom:120px;
}


.checkbox-inline{
	color:#444444;
}






.testo-news ul{
	list-style: disc !important;
	margin-left: 20px;
}


.important-download-notice{
	font-size:12px;
	color:#888888;
}



.video-azienda{
	height:550px;
}


h4.title-h4 {
    font-size: 18px;
    text-transform: uppercase;
}

p.nome-prod-download {
    color: #333333;
    font-weight: 500;
    font-size: 23px;
	margin-bottom:5px;
}

button.btn.btn-download-file-white {
    background-color: #f6f6f6;
    padding: 5px;
    font-weight: 500;
	height:25px;
}

.box-scarica-file{
    width: 50%;
    margin: auto;
}
.box-scarica{
	background-color: #f6f6f6;
    padding: 20px;
    border-radius: 15px;
}


#codice_cliente{text-transform:uppercase;}

.file-da-scaricare .file-icon-download{width:60px;}

.file-da-scaricare {padding:0;}

#downloadform{padding-top:20px;}

.label-2{
	min-height:53px;
}





.col-pdf-privacy{
	padding:0px;
	text-align:center;
}



.check-privacy-registrazione label{
	color:#444444;
}


ul.footer-gdpr-menu li {
    display: inline;
    padding: 0 10px;
}

ul.footer-gdpr-menu li a{font-size:12px;}



/******* thankyou page *****/
.thankyou-title{padding-bottom:0px; padding-top:50px;}
.thankyou-title h2{font-size:70px;}
.thankyou-p{font-size:28px;}


