.container{
	max-width:1400px;
}

.container-large{
	max-width:1920px;
}

.container-medium{
	max-width:1300px;
}

.container-smallest{
	max-width:900px;
}

.bg-default{
	background-color: #000000;
}

.bg-blue{
	background-color: #2c73c8;
}

.bg-lightblue{
	background-color: #e8f0fb;
}

.bg-white{
	background-color: #ffffff;	
}

.bg-grey{
	background-color:#707070;	
}

.bg-lightgrey{
	background-color: #f6f6f6;	
}


.bg-gradient{
	  background-image: linear-gradient(to right, #ffaec3 , #458aff);
}

.bg-yellow{
	  background-color:#f9af33;
}


.color-white{
	color:#ffffff;
}

.color-default{
	color:#a51e15;
}

.color-blue{
	color:#214f86;
}

.color-black{
	color:#000000;
}

.color-grey{
	color:#444444;
}

.color-violet{
	color:#6c5391;
}

.btn-action{
	margin-top:40px;
}

.center-div{
	margin: 0 auto;
}

.m-0{
	margin-left: 0;
	margin-right: 0;	
}


.header-top {  
    text-align: center; 
}

.top-label{
	font-size: 11px;
    color:#ffffff;  
    padding-top: 10px;
    padding-bottom:10px;  
}


.top-menu{
	font-size:0;
	text-align:left;
}

.top-menu li{
	display: inline-block;
}

.top-menu li a{
	padding: 10px;
	color:#000000;
	font-size:12px;
	display: block;
	height:100%;
	text-transform:lowercase;
	
}

.menu-lang{
	position: absolute;
	left:0;
	top:0;
	bottom:0;
}

.menu-lang li a{
	opacity: 0.5;
	position: relative;
}

.menu-lang li a:after{
	content: "";
	position: absolute;
	top:5px;
	bottom:5px;
	right:0;
	width:1px;
	background-color: #000000;
}

.menu-lang li:last-child a:after{
	content: none;
}

.menu-lang li.active a{
	opacity: 1;
}

.btn {
    padding: 15px 25px;  
    box-sizing:border-box;
    cursor: pointer;    
    min-width:200px;  
	 -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease; 
	position:relative;
	display: inline-block;
	text-align: center;
	font-size:18px;		
	  /*display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;*/
	letter-spacing:3px;
	text-transform:lowercase;

}


.btn.border-black{
	border:solid 1px #000000;
}


.btn.border-white{
	border:solid 1px #ffffff;
}

.btn.border-white:hover{
	background-color:#a51e15;
}


.btn.border-default{
	border:solid 1px #6f6f6f;
}

.imgLiquidFill .btn{
	width:auto !important;
	height:auto !important;
	display: inline-block !important;
}

.btn.w-full {
    display: block;
    width: 100%;
}

.imgLiquidFill{
	height:100%;
}

.imgLiquidFill .show-image{
	width:auto !important;
	height:auto !important;
	display: inline-block !important;
}

input.btn{
	border:none;
	width:auto;
	/*min-width:auto;*/
	height: auto;

}


.align-middle {
    display: flex;
    align-items: center;
    height:100%;
}

iframe{
	width:100%;
}

.row-no-pad{
	margin-left:0;
	margin-right:0;
}

.row-no-pad>[class*=" col-"],
.row-no-pad>[class^=col-],
.p-0 {
 padding-left:0;
 padding-right:0;
}

.row-pad-5{
	margin-left:-5px;
	margin-right:-5px;
}

.row-pad-5>[class*=" col-"],
.row-pad-5>[class^=col-] {
 padding-left:5px;
 padding-right:5px;
}


.full-width {
     width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}


.section{
	padding-top:40px;
	padding-bottom:40px;
	position: relative;
}

.section-header{
	margin-bottom:40px;
}

.center-box {
    max-width:600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    height:45px;   
    color:#282828;
    border: none;
     font-size:16px;  
    background: none;
    padding:10px 10px;
    box-sizing: border-box;
   font-weight:500;   
   border:solid 1px #898989;
   text-transform:lowercase;   
   font-family:'Conv_Anisette Light Regular',Sans-Serif;
}
   
.input-btn input{
	line-height:0 !important;	
	border-radius:0;
	border:none;
	cursor: pointer;
	z-index: 20;
	position: relative;
}

.input-btn{
	padding: 0;
}
  
input.btn:focus{
  	outline:none;
  }
   
::placeholder {
  color: #b7b6b6;
  opacity: 1; /* Firefox */
 font-size:0.813em;
 
}
   
   :-ms-input-placeholder { /* Internet Explorer 10-11 */
 color:#b7b6b6;
  font-size:0.813em;
 
}

::-ms-input-placeholder { /* Microsoft Edge */
 color:#b7b6b6;
  font-size:0.813em;
}

.styled-input{
	position: relative;
}
.styled-input .required{
	text-transform:uppercase;	
	display: block;
	font-size:16px;
	font-weight:500;
	position: absolute;
	top:12px;
	left:10px;
	color:#282828;
	-webkit-transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
	transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
	pointer-events: none;
	text-transform:lowercase;
	
}

.required.autofill{
	 top:-20px;
}

.styled-input input:focus ~ label.required, 
.styled-input textarea:focus ~ label.required, 
.styled-input input:valid ~ label.required, 
.styled-input textarea:valid ~ label.required {
  font-size:14px;
  top:-20px;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}


.styled-input input ~ span.active-border, 
.styled-input textarea ~ span.active-border {
  display: block;
  width: 0;
  height: 2px;
  background: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}
.styled-input input:focus, 
.styled-input textarea:focus {
  outline: 0;
}
.styled-input input:focus ~ span.active-border, 
.styled-input textarea:focus ~ span.active-border {
  width: 100%;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
  transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}
 
 input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;  
   
}


.styled-input input:-webkit-autofill ~ label.required,
.styled-input input:-webkit-autofill:hover ~ label.required,
.styled-input input:-webkit-autofill:focus ~ label.required,
.styled-input input:-webkit-autofill:active ~ label.required{
	top:-20px;
	font-size:0.750em;
}

select:focus{
	outline: none;
}

select{	
    -webkit-appearance: none;
    position: relative; 
      font-family: 'Montserrat', sans-serif !important;
      font-weight:500;
   
}
.select-wrapper{
	position: relative;		
}
.select-wrapper:after{
	position: absolute;
	font-family: 'icomoon' !important;
	content: "\e90a";
	right:10px;
	top:16px;	
	pointer-events:none;
	font-size:0.750rem;
	color:#616161;
	
}


.select-wrapper select{
	 width: 100%;
    height:45px;
    box-sizing: border-box;
    padding-left:10px;
    padding-right:10px;
   color:#444444;
   font-size:0.813em;
    font-weight:500;
    border: none;   
    border:solid 1px #898989;
    background: none;
    text-transform:uppercase;
}
.field{
	margin-bottom:35px;
	position: relative;
}

.check{
	position: relative;
	display:block;	
	margin-left: 30px;	
}

.check.disply--block{
	display: block;
}

.check label {
  cursor: pointer;  
  position:relative;
  text-align:left;
  font-size:15px;
  color:#000000;
  text-transform:lowercase;  
 
}
.check label:before, .check label:after {
  content: '';
  position: absolute;
  top:0;
 
}
.check label:before {
  left:-30px;
  width: 16px;
  height: 16px;
  margin: -0px 0 0;
  /*background: #ccc;*/
 border: solid 1px #000000;
}
.check label:after {
  left:-29px;
  width: 16px;
  height: 16px;
  margin:1px 0px 0;
   /*font-family: 'icomoon';
  content:"\e91f";*/
  opacity:0;
  color:#000000;
  font-size:0.875rem;
  background:#282828;
  -webkit-transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.check input[type="radio"],
.check input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: -9999px;
  visibility: hidden;
}
.check input[type="radio"]:checked + label:after,
.check input[type="radio"]:checked + label.error + label:after,
.check input[type="checkbox"]:checked + label:after,
.check input[type="checkbox"]:checked + label.error + label:after  {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.check label.error:before, .check label.error:after{
	content: none;
}

.check label.error{
	position: absolute;
	width:200px;
	left:-30px;
	bottom:-15px;
}

.style-input--round label:before, .style-input--round label:after {
  border-radius:50%;
} 
.check label a{
	color:#616161;
	vertical-align:baseline;
} 


label.error {
    color: red;
    font-size:13px;   
    display: block;
    position: absolute; 
    text-transform:lowercase;
} 

.error-captcha.error,
.error.captcha {
	z-index: 2;
	position: relative;
	margin-bottom: 10px
}

.error-me{
	color: red;
	 font-size: 0.750rem; 
	 font-weight:600;
}

#captcha {
    width: 100%;
    height: 45px;
}



.fw-description{
	font-size:0.688em;
	color:#ffffff;
}

.contct-item{
	font-size:12px;
	color:#ffffff;
	margin-bottom: 10px;
	font-weight:500;
}

.contct-item a{
	color:#ffffff;
}

.col-icon {
    width:30px;
    margin-right:20px;
}

.col-info{
	width: calc(100% - 50px);
}

.coursel{
	padding-left:40px;
	padding-right:40px;
}

.coursel .slick-next{
	right:0;
}

.coursel .slick-prev{
	left:0;
}

.coursel .slick-prev::before, 
.coursel .slick-next::before {
	font-size:35px;
	color:#000000;
}

.coursel .product-item{
	padding-top: 0px;
	padding-bottom: 0;
}


.overflow-x{
	overflow-x: hidden;
	overflow-y: hidden;

}

.slider-nav {
    margin-top:2px;
}

/*.footer-bg{
	background-image: url(../images/footer-bg.jpg);
	background-repeat: repeat;
}*/



.fw-logo{
	text-align:center;
}

.fw-title{
	font-size:13px;
	text-transform:uppercase;
	color:#ffffff;
	font-weight:500;
	margin-bottom: 20px;
}

.fw .soc-icon .icon{
	color:#ffffff;
	font-size:1.5rem;
}


.fw-social{	
	font-size:0;	
}
.fw-social li{
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
}
.fw-social li a{
	color:#000000;	
	display:block;
	font-size:20px;		
	border-radius:50%;
	width:32px;
	height:32px;
	line-height:32px;
	text-align:center;
	
}

.fw-social li.title{
	font-size:12px;
	color:#ffffff;
}

.fw-menu.main-menu{	
	-webkit-column-count: 3;
	  -moz-column-count: 3;
	  column-count:3;
}

.fw-menu.main-menu li{	
 	box-sizing: border-box;
 	-webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  -o-column-break-inside: avoid;
  -ms-column-break-inside: avoid;
  /*column-break-inside: avoid;*/
}


.fw-menu li > a{
	padding-top:4px;
	padding-bottom:4px;
	display: block;
	font-size:14px;
	color:#000000;	
	text-transform:lowercase;
	
	
}

.fw-menu > li > ul > li > a{
	font-size:11px;
	color:#b2b2b2;
	font-weight:500;
}

.footer-bottom-continer{
	color:#ffffff;
	font-size:11px;		
	padding-top:5px;
	padding-bottom:5px;
	box-sizing: border-box;
	background-color:#383838; 
	text-transform:lowercase;	

	
}

.footer-bottom-continer a{
	padding: 5px;
	color:#ffffff;	
}

.footer-bottom-continer .fw-menu li{
	display: inline-block;
}

.contact-block{
	font-size:18px;
	line-height: 28px;
	color:#282828;
	font-weight:500;
	text-transform:lowercase;
}

.contact-block a{
	color:#282828;
}

.contact-block .col-icon {
    width:50px;
    margin-right:20px;
}

.contact-block .col-info{
	width: calc(100% - 70px);
}

.image-grayscale{
	-webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}

iframe {
    width: 100%;
    height: 100%;
}

.sitemap {
	font-size:0;
} 

.sitemap li{	
	padding:0px 20px;	
	box-sizing: border-box; 
	vertical-align:top;
	display:inline-block;
	font-size:0.875rem;
	text-align:left;
	width:33.33%;
}

.sitemap li ul{
	display: flex;
flex-wrap: wrap;
}

.sitemap li ul li{
	display:inline-block;
	padding-left:5px;
	padding-right:5px;
	width:50%;
}

.sitemap li a{
	color:#000000;
	padding-top:10px;
	padding-bottom:10px;
	display: block;	
	border-bottom:solid 1px #ececec;
	font-weight:500;
	text-transform:uppercase;
	font-size:12px;
}

.sitemap li ul li a{
	color:#666666;
}

.block-inner + .block-inner{
	margin-top:40px;
}

.breadcrumbs{
	margin-bottom: 30px;
}

.breadcrumbs ul{
	display: flex;
	flex-wrap:wrap;
}
.breadcrumbs_item{
	display: inline-block;	
	position:relative;
	padding-right: 20px;
	box-sizing:border-box;
	
}

.breadcrumbs_item span{
	vertical-align:middle;
}

.breadcrumbs_item:after {
    content: "/";
    position: absolute;
    right: 8px;
    top: 5px;
    color: #6f6f6e;
    font-size: 12px;
}

.breadcrumbs_item:last-child
.breadcrumbs_line:after{
	content:none;	
}

.breadcrumbs_link{
	font-size:0.750em;
	color:#6f6f6e;
	text-transform:uppercase;
	vertical-align:middle;	
	padding-top: 5px;
	padding-bottom: 5px;
}
.breadcrumbs_link.active{
	font-weight:600;
	
}

.breadcrumbs_item:last-child:after{
	content: none;
}

/*popup*/

.popup {
	position: relative;
	background:#FFFFFF;
	padding:30px;
	width: auto;
	max-width:750px;
	margin: 0 auto;
	box-sizing:border-box;
	z-index:99999;
	border:solid 1px #636363;
}

.popup.small{
	max-width:650px;
}

.popup.smallest{
	max-width:400px;
}

.popup-action,
.popup-content{
	margin-top:30px;
}

.popup-title {
    font-size: 22px;
    font-weight:600;
    color:#000000;
    text-transform:lowercase;
}

.btn-group {
	margin: -5px;
}
.btn-col{
	padding: 5px;
	box-sizing: border-box;
}

.btn-group-large {
	margin: -10px;
}
.btn-col-large{
	padding:10px;
	box-sizing: border-box;
}

/*popup*/

.space-top {
    margin-top: 30px;
}

.btn-txt { 
    display: block;   
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight:500;
    color: #494849;
    font-size:14px;
    text-transform:lowercase;
}


.btn-txt.large-f{
	font-size:20px;
	font-weight:700;
}
.btn-wrap {
    display: inline-block;
}

.block-wrap {
    padding: 6%;
}

.contact-bg{
	background-color: #ececec;
}

.description {
    font-size: 16px;
    line-height: 22px;
    font-weight:500;
    text-align:justify;
    text-transform:lowercase;
}

.section-header .description{
	margin-top: 20px;
}

.imgLiquidFill a {
    display: inline-block !important;
    width: auto !important;
}

#rc-imageselect, .g-recaptcha {
	transform:scale(0.77);
	-webkit-transform:scale(0.77);
	transform-origin:0 0;
	-webkit-transform-origin:0 0;
}

#testo{
	font-size:14px;
	text-align:center;
	margin-bottom: 20px;
	text-transform:uppercase;
}


/*#newsletter{	
	position: relative;
}*/

#newsletter input {
    background:none;    
    border: none;
    border-bottom: solid 1px #ffffff;
    color:#ffffff;
    padding-right:150px;
}

#newsletter ::placeholder {
	color:#ffffff;
}

#newsletter .btn {
    position: absolute;
    top:10px;
    right: 0;
    border-radius: 0;
    border: none;
    min-width:auto;
    padding-right: 0;
  
}

#newsletter  .check label{
	color:#ffffff;
}

#newsletter  .check label a{
	color:#ffffff;
}

#newsletter  .check label.error{
	color:red;
}

#newsletter .check label:before{
	border:solid 1px #ffffff;
}

ul#tabs{
	margin-bottom:20px;
}

ul#tabs li{		
	/*width:33.33%;*/
	text-align:center;	
	box-sizing: border-box;
	cursor: pointer;	
	position: relative;
	font-size:18px;
	color:#6f6f6f;
	padding:20px 10px;
	z-index: 2;
	border:solid 1px #000000;
	margin-bottom: 10px;
	text-transform:lowercase;
}

ul#tabs li.active{
	background-color: #000000;
	
}

ul#tabs li.active a{ 
	color:#ffffff;	
}

ul#tab > li {
    display: none;
}

ul#tab > li.active{
	display:block;
}

.block-image img{
	width: 100%;
}


@media only screen and (max-width:992px) {	
	
.contact-block{
	margin-bottom: 30px;
	
}

/*.block + .block{
	margin-top: 40px;
}*/

.fw{
	margin-bottom: 30px;
}
.fw:last-child{
	margin-bottom:0;
}


.fw-menu li{
	display: inline-block;
	margin-right:25px;
}

.item-modelcontainer{
	margin-top: 40px;
}

}

@media only screen and (max-width:520px) {	

.fw-logo img{
	max-width:140px;
}

}



