@charset "UTF-8";
/* CSS Document */

/*!
* Author: Palo Alto / Rosário Costa
* Author URI: http://www.paloalto.pt
* Last update: March 2017
*/


/*==========================================================

	CSS:

	1. IMPORTS / FONTS / BODY
	2. GENERIC & COMMONS
	3. STRUCTURAL
	4. TYPO & LINKS & NAV
	5. UI-BUTTONS
	6. UI-FORMS
	7. ELEMENTS
	8. COMPONENTS
	9. ANIMATIONS

============================================================*/


/*==========================================================
	1.IMPORTS / FONTS / BODY
============================================================*/

/*

@font-face {
    font-family: "Roboto";
    src: url("../font/roboto/Roboto-Medium_0.eot");
    src: url("../font/roboto/Roboto-Medium_0.eot?#iefix") format("embedded-opentype"), url("../font/roboto/Roboto-Medium.woff") format("woff"), url('../font/roboto/Roboto-Medium_0.ttf') format('truetype'), url('../font/roboto/Roboto-Medium_0.svg#typotheque_webfonts_service') format('svg');
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: "Roboto";
    src: url("../font/roboto/Roboto-Bold.eot");
    src: url("../font/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../font/roboto/roboto/Roboto-Bold.woff") format("woff"), url("../font/roboto/Roboto-Bold.svg#typotheque_webfonts_service") format("svg");
    font-style: normal;
    font-stretch: normal
}
*/

@font-face {
    font-family: "Amplitude-Bold";
    src: url("../font/amplitude/amplitude-bold.eot");
    src: url("../font/amplitude/amplitude-bold?#iefix") format("embedded-opentype"), url("../font/amplitude/amplitude-bold.woff") format("woff"), url("../font/amplitude/amplitude-bold.svg#typotheque_webfonts_service") format("svg");
    font-style: normal;
    font-stretch: normal;
}




html {
	-ms-text-size-adjust: 100%;
	/*-webkit-text-size-adjust: 100%;
	font-size: 1em;*/
	font-size: 100%;
	line-height: 1.4;
}


html,
body {
    height: 100%;
}


/*html::-webkit-scrollbar {
    width: 0 !important
}*/



body {
    /*height: 100%;
	min-height:100%;*/
	position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #fff;
	/*background-color: rgba(44,55,106,1.00);*/
	font-family: 'Roboto', sans-serif;

	color: rgba(44, 55, 106, 1.00);

	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga", "kern";
	-webkit-font-smoothing: antialiased;

    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;

	 overflow-x: hidden;

}


@media (max-width: 767px) {
	body, html {
	    /* font-size: 14px; */
	    font-size: 0.875em;
	    line-height: 1.42857143;
	}
}

body, html {
    /*font-size: 18px;*/
    font-size: 1em;
}

@media (max-width: 1400px), (max-height: 700px) {
	body, html {
	    font-size: 1em
	    ;
	}
}

/*==========================================================
	2.GENERIC & COMMONS
============================================================*/

/* HELPERS ######################################################## */

/*font-family: 'Roboto Slab', serif;*/



* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


::-moz-selection { background: rgba(44, 55, 106, 1.00); color: #fff; text-shadow: none; }
::selection { background: rgba(44, 55, 106, 1.00); color: #fff; text-shadow: none; }


a {
    text-decoration: none
}


:focus,
a:focus {
  outline: 0;
}
a {
  /*-webkit-transition: .3s ease;
		  transition: .3s ease;*/
	-webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
		  color: rgba(44,55,106, 1);
}

a:hover,
a:focus {
  text-decoration: none;
  color: #7b7e96;
}


button:focus {
    outline: 0!important;
}

.flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

}



/*FLEX*/
.flex-row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-column {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	 -webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}



.flex-end-center {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


.flex-justify-center {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


.flex-center-center {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
 }


 .flex-start-center {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }


  .flex-wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
  }



.flex-start-stretch {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}


.flex-center-stretch {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    }




.flex-justify-stretch{
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.flex-between-center {
	-webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}



.flex-row-reverse {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    }



.flex-v-center{
	-webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
	.flex-column-xs {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-align-content: center;
		-ms-flex-line-pack: center;
		align-content: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	  }


	.flex-column-xs .col1 {
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		-webkit-align-self: auto;
		-ms-flex-item-align: auto;
		align-self: auto;
	}

	.flex-column-xs .col2 {
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		-webkit-align-self: auto;
		-ms-flex-item-align: auto;
		align-self: auto;
	}
}


	.separator {
	  display: block;
	  height: 0;
	  margin: 20px 0;
	  /*opacity: 0.2;*/
	}

	.separator-small {
	  margin: 10px 0;
	}
	.separator-medium {
	   /*height: 45px;*/
	  margin: 45px 0;
	}


/* HELPERS ######################################################## */


/* PADDINGS */

.no-pad {padding-left:0 !important; padding-right:0 !important;}
.no-pad-left {padding-left:0 !important;}
.no-pad-right {padding-right:0 !important;}
.no-pad-top {padding-top:0 !important;}
.no-pad-bottom {padding-bottom:0 !important;}

.pad-top-10 {padding-top:10px;}
.pad-top-15 {padding-top:15px;}
.pad-top-20 {padding-top:20px;}
.pad-top-30 {padding-top:30px;}
.pad-top-40 {padding-top:40px;}
.pad-top-50 {padding-top:50px;}

.pad-left-10 {padding-left:10px;}
.pad-left-15 {padding-left:15px;}
.pad-left-20 {padding-left:20px;}
.pad-left-30 {padding-left:30px;}
.pad-left-40 {padding-left:40px;}
.pad-left-50 {padding-left:50px;}

.pad-right-10 {padding-right:10px;}
.pad-right-15 {padding-right:15px;}
.pad-right-20 {padding-right:20px;}
.pad-right-30 {padding-right:30px;}
.pad-right-40 {padding-right:40px;}
.pad-right-50 {padding-right:50px;}

.pad-15 {padding:15px;}


/* MARGINS */

.no-margin {margin:0;}

.margin-top-10 {margin-top:10px !important;}
.margin-top-20 {margin-top:20px !important;}
.margin-top-30 {margin-top:30px !important;}
.margin-top-40 {margin-top:40px !important;}
.margin-top-50 {margin-top:50px !important;}


@media (min-width: 992px) {
	.margin-top-lg-20 {margin-top:20px !important;}
	.margin-top-lg-40 {margin-top:40px !important;}
}


.margin-top-xs-20 {margin-top:20px !important;}
.margin-top-xs-40 {margin-top:40px !important;}


.margin-bottom-10 {margin-bottom:10px !important;}
.margin-bottom-20 {margin-bottom:20px !important;}
.margin-bottom-30 {margin-bottom:30px !important;}
.margin-bottom-40 {margin-bottom:40px !important;}
.margin-bottom-50 {margin-bottom:50px !important;}
.margin-bottom-100 {margin-bottom:100px !important;}


/*==========================================================
	3.STRUCTURAL
============================================================*/

body:after {
    display: none !important;
    content: "BASE"
}

@media (min-width: 500px) {
    body:after {
        content: "SM"
    }
}

@media (min-width: 769px) {
    body:after {
        content: "MD"
    }
}

@media (min-width: 1280px) {
    body:after {
        content: "LG"
    }
}


@media (max-width: 991px) {

	.container {
		width: 95.5%;
		max-width: 100%;
	}

}



#header {
	margin: inherit;
}

header {
	position: fixed;
	z-index: 99;
	width: 100%;
	/*margin-top: 0 !important;
	margin-bottom: 0 !important;
	position: fixed;
	*/
}



 /* Navigation*/
.navbar {
	background-color: transparent;
}

/*.navbar:not(.top-nav-collapse) {
	box-shadow:none;
}*/

/*box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);*/

.navbar .wrap {
	width: 100%;
}





.navbar {
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0),0 2px 10px 0 rgba(0,0,0,0);
}


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

	.navbar {
		box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
	}

}

.top-nav-collapse {
	background-color:rgba(255,255,255,0.95);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}



@media only screen and (min-width: 992px) {
	.scrolling-navbar {
		padding-top: 0;
		padding-left: 0;
   		padding-right: 0;
	}


	.scrolling-navbar {
		-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
		-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
		transition: background .5s ease-in-out,padding .5s ease-in-out;
		padding-top: 12px;
		padding-bottom: 12px;
	}

}


@media only screen and (max-width: 991px) {
	.navbar {
		background-color: white;
		padding-top: 0;
		padding-left: 0;
   		padding-right: 0;
	}
}


header .navbar-brand {
	height: auto;
	width: 180px;
	padding-left:0;

	/*-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;*/

	/*
	    -webkit-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);

	*/

	transition: opacity 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02), transform 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02);
    -o-transition: opacity 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02), -o-transform 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02);
	-ms-transition: opacity 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02), -ms-transform 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02);
	-moz-transition: opacity 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02), -moz-transform 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02);
	-webkit-transition: opacity 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02), -webkit-transform 0.6s cubic-bezier(0.64, 0.04, 0.45, 1.02);

	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;

	/*-webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;*/
}


header .navbar-brand  img {
	border-radius: 0;
}


header .navbar-brand {
	width: 140px;
	transform: scale(1, 1);
    transform-origin: 0% 75%;
}



/*@media only screen and (max-width: 991px) {
	header .navbar-brand {
		transform: scale(0.8, 0.8);
	}
}*/


@media only screen and (min-width: 992px) {
	header .navbar-brand {
		padding-top: 0;
	}
}

@media only screen and (min-width: 1200px) {
	header .navbar-brand {
		/*width: 260px;305*/
		opacity: 0;
	}

	header .top-nav-collapse .navbar-brand  {
		width:180px; /*200px;*/
		/*margin-top: 10px;*/
		transform: scale(1, 1);
		transform-origin: 0% 0%;
		opacity: 1;
	}
}




@media (min-width: 992px) {/*768*/
	header .navbar [class*='navbar-toggleable-'] {
		 display: -ms-flexbox !important;
		display: -webkit-flex !important;
		display: flex !important;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
		margin-bottom:6px;
	}

	header .navbar [class*='navbar-toggleable-']:after {

		display: inherit;
		content: none;
		clear: none;
	}



	header .navbar .content div:nth-child(1) {
		 -webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}

	header .navbar .content div:nth-child(2) {
		 -webkit-order: 0;
		-ms-flex-order: 0;
		order: 0;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
		position: relative;

	}


	header .navbar .content div.has-langs {
		margin-right: 5px;
	}


}


/*header .navbar .content div:nth-child(2) {
	margin-top: 10px;
}*/

@media (max-width: 991px) {/*767*/
	header .navbar .wrap.flex {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}
}

@media (min-width: 992px) {
	header .navbar .wrap.flex {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}


.navbar .navbar-toggler {
	position: absolute;
    right: 10px;
    top: 10px;
	border-width: 0;

}



.navbar-toggler .iconWrap {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
}

.navbar-toggler .iconWrap .icon {
    position: absolute;
    left: 0;
	top: 0;
    width: 100%;
    height: 4px;
    background:rgba(44, 55, 106, 1.00);
    -webkit-transition: background-color .35s,-webkit-transform .175s cubic-bezier(.215,.61,.355,1),opacity .175s cubic-bezier(.215,.61,.355,1);
    transition: background-color .35s,transform .175s cubic-bezier(.215,.61,.355,1),opacity .175s cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);



}


.navbar-toggler:not(.collapsed) .icon.line_1 {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
.navbar-toggler .icon.line_1 {
    top: 0;
}

.navbar-toggler:not(.collapsed) .icon.line_2 {
    opacity: 0!important;
}
.navbar-toggler .icon.line_2 {
    top: 8px;
}

.navbar-toggler:not(.collapsed) .icon.line_3 {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}
.navbar-toggler .icon.line_3 {
    top: 16px;
}



 /*.navbar-toggler:not(.collapsed), .navbar-toggler:hover .icon {
   background-color: rgba(38,86,1,1);
}*/

.navbar .breadcrumb, .navbar .navbar-toggler:focus {
    background-color:transparent;
}


/*

-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-tap-highlight-color: transparent;
*/

img {
	width: 100%;
	height: auto;
}


html, body {
    height: 100%;
}



@media (min-width: 768px) {

	.view.hm-white-strong .full-bg-img {
		background-color: transparent;

	}
}


@media (max-width: 991px) { /*767px*/
	.main-menu .navbar-nav .nav-item {
		display: block;
		margin-bottom: 15px;
	}

	.main-menu .navbar-nav .nav-item:last-child {
		margin-bottom: 0;
	}
}

@media (min-width: 992px) {
	.main-menu .navbar-nav .nav-item {
		display: inline-block;
		/*margin-right: 12px;*/
	}

	/*.main-menu .navbar-nav .nav-item:last-child {
		margin-right: 0;
	}*/
}

.hide {
  /*visibility: hidden;*/
}

@media (min-width: 992px) {
	nav.main-menu div:nth-child(2) {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;

		margin-top: -7px;
    	margin-bottom: 7px;

	}
}


/*Menus List*/


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

	.langs {

		border-top: 1px solid rgba(0, 0, 0, 0.1);
		padding-top: 10px;
	}


}


ul.menu,
ul.flags{
	margin: 0;
	padding: 0;
}

ul.menu li,
ul.flags li{
	list-style-image: none;
    display: inline-block;
}

div.langs #open-lang {
	position: absolute;
    right: -15px;
    font-size: 0.65em;
    top: -4px;
	display: none;
	/*width: 15px;
    height: 18px;
    padding-left: 3px;*/
}

div.langs {
	z-index:9999;
}



/*@media screen and (min-width: 768px) and (max-width:1199px){*/

@media screen and (min-width: 992px){

	div.langs {
		width: 36px;
	}
	ul.flags {
		position: absolute;
		top: -13px;
		height: 20px;
		overflow-y: hidden;
   		margin-left: 10px;
	}

	ul.flags.open {
		height: auto;
		height: 150px;
	}

	ul.flags li{
		display: block;
		margin-bottom: 5px;
	}
	div.langs #open-lang {
		display: block;
		cursor: pointer;
	}

}



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

	ul.flags {
		margin: 20px 20px;
	}
}


ul.flags li {
    /* margin-right: 0px; */
    width: 22px;
    height: 17px;
    background-size: contain;
    background-repeat: no-repeat;
	border: 1px solid rgba(255,243,220,0.5);/*#FFF3DC;*/
    border-radius: 2px;
	margin-right:5px !important;
	padding: 0;
}

ul.flags li:last-child {
	/*margin-right: 0;*/
}

ul.flags li a{
	display: block;
    width: 100%;
    height: 100%;
}

.main-menu ul.flags li a:before, .main-menu ul.flags li a:focus:before{
	content: "";
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    height: 0;
}

/*
ul.flags li:hover,
ul.flags li.active {
	opacity: .5;
}*/


header .langs #open-lang, header ul.flags {
    -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

header .langs #open-lang.open {
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}




/* =Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(44,55,106, 1.00);
  color: #ffffff;
}

#preloader .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#preloader .txt-perc {
  font-size: 35px;
  opacity: 1;
  margin: 0 0 6px 0;
  max-width: 400px;
  text-align: center;
}

#preloader .progress {
  width: 100px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto 15px auto;
}

#preloader .progress span {
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

#preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

#loader{
	display: none;
}

.is-loading {
  overflow: hidden;
}



#cover {
	/*
	 overflow: hidden;
    position: relative;
    cursor: default;

    background-size: cover !important;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #C6C3B5;
    z-index: 1;
    text-align: center;
   /* transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;*/
}



#cover .bcg {
  -webkit-transition: -webkit-transform 4s ease-out;
  transition: transform 4s ease-out;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

#cover.is-loaded .bcg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.bcg {
	background: no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 1;
}



/*isMobile*/


@media only screen and (min-width: 768px) {
	.bcg {
		opacity: 1;
	}
}





.fs {
    width: 100wh;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}


.fs-h {
    min-height: 100vh;

}

.half-box {
    width: 100%;
    position: relative;
    /*z-index: 10;
    font-size: 0; */
    background: #000;
    text-align: center;

}
@media screen and (min-width: 768px) {
	.half-box {
		height: 100vh;
		overflow: hidden;
   		max-height: 100vh;
	}
}



.cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/*.v-middle,
.cover-middle */


.v-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
/*
.isMobile .cover-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}*/





.v-middle.v-top,
.cover-middle.v-top {
    top:auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
}



/*@media screen and (max-width: 767px) {
	.half-box .content-half .v-middle {
		max-width: 85%;
		margin: auto;
	}
}

@media screen and (max-width: 768px){
	.half-box .content-half .v-middle {
		max-width: 100%;
	}
}*/




.cover-middle > div {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 768px) {

	.cover-middle > div {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

}



@media (min-width: 1200px){
	.hidden-xl-up {
	    height:0;
	    overflow: hidden;
	    visibility: hidden;
	}

}


.logo3Amate {
	width: 250px;
	margin-bottom: 6vh;
}

@media (max-width: 577px){
	.logo3Amate {
		width: 200px;
		margin-bottom: 5vh;
	}

}



.logo3Amate img {
	width: 100%;
	height:auto;
}

.opacity_layer {
	position:absolute;
	width:100%;
	height:100vh;
	top:0;
	left:0;
	background-color: rgba(255,255,255,.7);
}

@media (min-width: 1024px) {
	#cover .opacity_layer {
		background-color: transparent;
	}
}


section {
    width: 100%;
    position: relative;
    /*z-index: 10;
   padding-top: 50px;
	font-size: 0;
    background: #000;
    text-align: center;*/
    /*overflow: hidden;
    max-height: 100vh;*/
	text-align: center;
	min-height: 100vh;

}



@media (min-width: 991px) {
	section {
		/*padding-bottom:50px;*/
	}
}

section:not(.lata) {
	overflow: hidden;;
}

/*@media (min-width: 768px) {
	section {
	 height: 100vh;
	}
}

@media (max-width: 767px) {
	section {
	 min-height: 100vh;
	}
}*/


@media (min-width: 768px) {
	section .content-middle {
		/*display: inline-block;
		width: 50%;*/
		vertical-align: top;
		height: 100%;/*100vh;*/
		position: relative;
		z-index: 1;
	}

}


section .content-half {
    /*display: inline-block;*/
    width: calc(50% - 2px);/*50%;*/
    vertical-align: top;
    /*height: 100vh;*/
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
	section .content-half {
		width: 100%;
		display: block;
		height: auto;
		/*position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		right: 0;
		margin: auto;
		color: #fff;
		height: 100vh;*/
	}


	section .content-half:nth-child(2) {
		padding-top: 30px;
		padding-bottom: 30px;
	}



	section .content-half.fs-h {
		height: auto;
		min-height: auto;
	}
}

section .content-half .description {
    max-width: 300px;
	margin: auto;
	max-width: 400px;
    /*font-size: 18px;*/
}



section.caracteristicas {
	background-color: white;
	z-index: 10;
}



@media (min-width: 768px) {
	section#cover .container {
		text-align: right;
		z-index: 1;
	}
}

section#cover {
	overflow: hidden;
	height: 100vh;
	max-height: 100vh;
	z-index: 2;
}

section#cover.content-middle {
	height: 100vh;
}



section.caracteristicas:after {
	content: "";
    display: block;
    height: 80px;
    position: absolute;
    left: 0;
    width: 100%;
	bottom: 0;
	margin-bottom: -78px;
    background: url(../assets/imgs/shape_white.png) top center no-repeat;
}



section.caracteristicas .produto.top {
	/*margin-top: calc(-32.5vh);
	top: 40px;*/
}


.no-touch section.caracteristicas:not(.is-active) .produto{
 	/*-webkit-transform: translateY(-200px);
 	-ms-transform: translateY(-200px);
	transform: translateY(-200px);\*/
	/*top: 40px;*/

	/*transform: translateY(-70%);*/
}

.no-touch section.caracteristicas:not(.is-active) .produto #lata{
	position: fixed;
	transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
	opacity: 0;
}




section.caracteristicas .produto {
	position:relative;
	 transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;


	/*transition:all .25s ease-in-out;
	-webkit-transition:all .25s ease-in-out;
	-moz-transition:all .25s ease-in-out;
	-o-transition:all .25s ease-in-out;
	-ms-transition:all .25s ease-in-out;*/

	/*-webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;*/
	}


section.caracteristicas div.produto > div {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


section.caracteristicas .produto img {
	max-width: 350px;
}


/*@media (min-width: 1200px) {
	section.caracteristicas .docs {
		width:85%;
	}
}*/


@media (min-width: 768px) {
	section.caracteristicas .docs {
		margin-top:-120px;
	}
}
@media (max-width: 767px) {
	section.caracteristicas p {
		text-align: justify;
	}
	section.caracteristicas .docs {
		margin-top:-100px;
	}
}


section.caracteristicas a[href$=".pdf"]:before,
section.caracteristicas a.pdf:before {
		width:40px;
    height: 56px;
}






section.beneficios {
	background-color: #cbc8c3;
	z-index: 9;
}

@media (min-width: 1200px) {
	section.beneficios {
		 /*background: url("../imgs/img_beneficios.jpg")no-repeat top center fixed ;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		min-height: 660px;*/
		text-align: center;
		padding-top: 60px;
	}

	section.beneficios .bcg {
		background-image: url("../imgs/img_beneficios.jpg");
		background-position: bottom center;
		position: absolute;
		bottom:0;
	}


}

@media (max-width: 767px) {
	section.beneficios p {
		text-align: center;
	}
}




section.aplicacao{
	background-color: white;
	z-index: 6;
}


section.aplicacao > .container > div{
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

}



section.aplicacao ul {
	 display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
   /* -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;*/
	 margin:-10px 0 0 -10px;
}



section.aplicacao ul li {
   /* display: inline-block;
    background:blue;*/
    margin:10px 0 0 10px;
    flex-grow: 1;
  	 width: 40%;
     width: calc(100% * (1/2) - 10px - 1px);
     flex-basis: 40%;
	text-align: center;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}


@media (min-width: 768px) {
	section.aplicacao ul li {
		width: 20%; /* 100 / (n + 1)*/
		width: calc(100% * (1/4) - 10px - 1px);
		flex-basis: 20%;
	}
}


section.aplicacao ul li:before {
	content: "";
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:90px;
	height: 100px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(228, 228, 228, 1.00);

}

section.aplicacao ul li.icon-casa:before {
	 background: url("../assets/icons/green/icon-casa.svg")no-repeat center center;
}

section.aplicacao ul li.icon-trincha:before {
	 background: url("../assets/icons/green/icon-trincha.svg")no-repeat center center;
}

section.aplicacao ul li.icon-trincha2:before {
	 background: url("../assets/icons/green/icon-balde-2.svg")no-repeat center center;
}

section.aplicacao ul li.icon-balde:before {
	 background: url("../assets/icons/green/icon-balde.svg")no-repeat center center;
}

section.aplicacao ul li.icon-balde2:before {
	 background: url("../assets/icons/green/icon-balde-2.svg")no-repeat center center;
}

section.aplicacao ul li.icon-pincel:before {
	 background: url("../assets/icons/green/icon-pincel.svg")no-repeat center center;
}

section.aplicacao ul li.icon-relogio:before {
	 background: url("../assets/icons/green/icon-relogio.svg")no-repeat center center;
}



section.catalogoCores{
	background-color: rgba(182,207, 208, 1.00);
	z-index: 7;
}


@media (max-width: 767px) {
	section.catalogoCores .flex-center-center {
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}
}





section.catalogoCores img.speedmix {
    max-width: 150px;
    margin-top: 20px;
}



@media (min-width: 1200px) {

	.video-wrapper {
		overflow: hidden;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		padding-left: 0 !important;
		padding-right: 0 !important;
		/*background-color: black;*/
	}


	/*video.background-video[we] {

		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover
		object-fit: cover;
		object-fit:initial;
	}*/

	video.background-video,
	.catalogoCores .video-wrapper img{
	position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100%;

    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
	}

	video.background-video source {
	}
}


section.catalogoCores video.background-video {
	background-color: rgba(182,207, 208, 1.00);
}



/*@media (min-width: 768px) {
	.catalogoCores .video-wrapper img{
	    top: 50%;
	    -webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    transform: translateY(-50%);
	    position: relative;
	}

}*/



section.duvidas {
	text-align: center;
	/*margin-bottom: 80px;*/
}


section.duvidas .video-container {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
}


section.aplicacao .video-container {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
}



@media (min-width: 768px) {
	/*section.duvidas .video-container {
		width: 50%;
	}*/
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	/*padding-top: 25px;*/
	height: 0;
}

.video.dummy {
	background-color: #ccc;
	height:349px;
	width:100%;
}


.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


section.duvidas{
	background-color: darkorchid;
	z-index: 9;
}

section.duvidas:before {
	content: "";
    display: block;
    height: 80px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
	margin-top: -78px;
}

section.duvidas {
	background-color: #fff;
	text-align: center;
}


section.duvidas ul{
	text-align: center;
	margin-top: 20px;
	display: inline-table;
}

section.duvidas ul li {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
   -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}



@media (max-width: 767px){

	section.duvidas ul li {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-align-content: center;
		-ms-flex-line-pack: center;
		align-content: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}


section.duvidas ul.mosca li a span {
	margin-left: 10px;
}


section.duvidas ul.mosca {
	text-align: center;

}

section.duvidas ul.mosca li {
	text-align: left;
	margin-right: 10px;
	/*margin-bottom: 10px;*/
}


@media (max-width: 767px){
	section.duvidas ul.mosca li {
		text-align: center;
	}

}

section.duvidas ul.mosca li:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

section.duvidas ul.mosca li div:nth-child(1) {
    /* width: 16.666667%; */
    width: 10%;
}


@media (min-width: 768px){
	section.duvidas ul.mosca li div:nth-child(2) {
		margin-left: 20px;
	}
}



@media (max-width: 767px){


	section.duvidas ul.mosca li div:nth-child(1) {
		margin-bottom: 10px;
		 width: 30%;
	}

	section.duvidas ul.mosca li div:nth-child(2) {
		width:100%;
	}
}


section.duvidas ul.mosca li img {
	width:100%;
	height:auto;
	/*max-width: 150px;
	margin-bottom: 10px;
	padding-right: 10px;*/
}

section.duvidas ul.mosca li.smaller img {
	max-width: 80px;
}


@media (max-width: 991px) {
	/*section.duvidas ul.mosca li {
		display: inline-block;
		margin-top: 10px;
		margin-right: 20px;
	}

	section.duvidas ul.mosca li:last-child {
		margin-left: none;
	}*/

	section.duvidas a[href$=".pdf"]::before,
	section.duvidas a[href$=".zip"]::before {
		width: 23px;
		height: 32px;

	}
}





section.certificados{
	z-index: 9;
}

section.certificados:before {
	content: "";
    display: block;
    height: 80px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
	margin-top: -78px;
}

section.certificados {
	background-color: #fff;
	text-align: center;
}


section.certificados ul {
	text-align: left;
	margin-top: 20px;
}


section.certificados ul li {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 768px) {
	section.certificados ul li {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: center;
		-ms-flex-line-pack: center;
		align-content: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;

	}
}


section.certificados ul li {
	margin-bottom: 10px;
}

section.certificados ul li:last-child {
	margin-bottom: none;
}






section.certificados ul li div:nth-child(1){
	/*width: 83.333333%;*/
	width: 80%;
}

section.certificados ul li div:nth-child(2){
	/*width: 16.666667%;*/
	width: 10%;
}




@media (max-width: 767px) {
	section.certificados ul li div:nth-child(1){
		width: 100%;
	}

	section.certificados ul li div:nth-child(2){
		width: 20%;
		  margin-top: 10px;
	}
}


@media (max-width: 567px){

	section.certificados ul li div:nth-child(2) {
	    width: 40%;

	}
}




section.certificados ul li a {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
   -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

}

@media (max-width: 767px) {
	section.certificados ul li a {
		-webkit-justify-content: center;
	    -ms-flex-pack: center;
	    justify-content: center;
	    -webkit-align-content: center;
	    -ms-flex-line-pack: center;
	    align-content: center;
	    -webkit-align-items: center;
	    -ms-flex-align: center;
	    align-items: center;
	}
}

section.certificados a[href$=".pdf"]:before,
section.certificados a[href$=".zip"]:before,
section.catalogoCores a[href$=".pdf"]:before,
section.catalogoCores a.pdf:before {
	width:40px;
    height: 56px;
    margin-right: 15px;
    margin-left: 0;
    display: inline-table;
}



section.certificados a.ico-www:before {
	width:40px;
    height: 41px;
    margin-right: 15px;
    margin-left: 0;
    display: inline-table;
}


section.certificados ul li a span {
	margin-left: 0px;
}



section.certificados ul li div.logo {
	text-align: center;
}

section.certificados ul li div.logo .higher {
	max-height: 100px;
	width: auto;
}

@media (max-width: 567px){
	section.certificados ul li div.logo .higher {
		max-height: 100px;
 	}
}






section.certificados ul.logos {
	text-align: center;

}

section.certificados ul.logos li img {
	max-width: 90px;
	margin-bottom: 10px;
}

section.certificados ul.logos li.smaller img {
	max-width: 80px;
}





@media (max-width: 991px) {
	section.certificados ul.logos li {
		display: inline-block;
		margin-top: 10px;
		margin-left: 20px;
	}

	section.certificados ul.logos li:last-child {
		margin-left: none;
	}

	section.certificados a[href$=".pdf"]::before,
	section.certificados a[href$=".zip"]::before
	 {
		width: 23px;
		height: 32px;
	}

	section.certificados a.ico-www::before {

		width: 23px;
		height: 24px;

	}


}




section.contactos{
	background-color: grey;
	z-index: 10;
}

/*@media (max-width: 576px){
	section.contactos{
		padding-bottom: 80px;
	}
}*/




section.contactos > .container > div{
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}




@media (min-width: 576px) {

	section.contactos > .container > div{
	 display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

	}

}



section.contactos .newsletter {
		width: 100%;
}

@media (min-width: 768px) {
	section.contactos .newsletter {
		width: 41.666667%;
	}
}

@media (max-width: 767px) {
	section.contactos .contactos,
	section.contactos .newsletter{
		margin-bottom: 20px;
	}
}


/*@media (min-width: 576px) {
	section.contactos .newsletter {
		width: 58.333333%;

	}
}
*/




@media (min-width: 768px) {
		section.caracteristicas {
			text-align: right;
	}
}



.isMobile #backToTop {
	 display: none;
}

/* Back to Top */
#backToTop {
  /*display: none;*/
  position: fixed;
  z-index: 1000;

}


.back-to-top {
  right: 40px;
    bottom: -100px;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}
.back-to-top--visible {
  bottom: 40px;
}



#backToTop a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  outline: none;
  border-radius: 50%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  color: #FFF;
  /*background: none repeat scroll 0% 0% #555;*/
  background-color:rgba(44,55, 106, 1.00);
}
#backToTop a:hover {
 opacity: 1;
  filter: alpha(opacity=100);
  background-color: rgba(44, 55, 106, 1.00);
}


/*&#xf1c1;*/

/*
 height: -moz-calc(100% - 100px);
 height: -webkit-calc(100% - 100px);
 height: calc(100% - 100px); */


/*.options > div:not(:first-child) select { background:yellow;}*/


section.locationStores {
	background-color:white;
}

/*section.locationStores  .container:not(:first-child) {
	background-color: blueviolet;
}*/


section.locationStores .container::after {
	clear: both;
	display: block;

}



/* Especifico para cada site onde se vai buscar os conteúdos */
/* www.sotinco.pt */

section.locationStores .container .container .title {
	text-align: left;
	padding-left: 0;
}

section.locationStores .container .container .submenus {
	padding-right: 0;
	font-size: 0.9375rem;
}

section.locationStores .container .container .submenus a {
    border-color: rgba(44, 55, 106, 1.00)!important;
}


section.locationStores .container .container .mapLocations {
	padding-left: 0;
	padding-right: 0;
}


section.locationStores .container .container .title h1{
	margin-bottom: 1.5em;
    padding-bottom: 2px;
    display: -ms-inline-flex;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}




section.locationStores .container .container .title h1:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 25%;
    background-color: rgba(44, 55, 106, 1.00);
    height: 1px;
    width: 50%;
}



@media (min-width: 992px) {

	section.locationStores .container .container .title h1{
		margin-bottom: 0;
	}

	section.locationStores .container .container >.wrapLocations {

		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: space-between;
		-ms-flex-line-pack: justify;
		align-content: space-between;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	section.locationStores .container .container .submenus table {
		float: right;
	}

}

/*http://zeus.paloalto.pt/Site_sotinco/v2/pontos-de-venda/portugal/pasta_view_web*/

section.locationStores .container .container >.col-lg-8 table {
	font-size: 0.875em;

}

/*mapLocations wrapLocations*/



/*==========================================================
	4.TYPO & LINKS & NAV
============================================================*/
b, strong {
    font-weight: bold;
}



.text-normal {
	text-transform:none;
}


p b, p strong {
font-family: "Roboto";
}




a[href$=".pdf"]:before,
a.pdf:before {
	content: "";
	background: url("../assets/icons/icon-pdf.svg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	width:50px;
	height: 70px;
    margin-bottom: 10px;
}

a[href$=".pdf"]:hover:before,
a.pdf:hover:before{
	background: url("../assets/icons/icon-pdf--hover.svg");
	    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



a[href$=".zip"]:before {
	content: "";
	background: url("../assets/icons/icon-zip.svg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	width:50px;
	height: 70px;
    margin-bottom: 10px;
}

a[href$=".zip"]:hover:before {
	background: url("../assets/icons/icon-zip--hover.svg");
	    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

a.ico-www:before {
	content: "";
	background: url("../assets/icons/icon-www.svg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	width:50px;
	height: 70px;
    margin-bottom: 10px;
}

a.ico-www:hover:before {
	background: url("../assets/icons/icon-www--hover.svg");
	    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}







@media (max-width: 991px) {

	a[href$=".pdf"]::before {
		width: 32px;
		height: 52px;
	}
}

@media (max-width: 320px) {

	a[href$=".pdf"]::before {
		width: 23px;
		height: 32px;
	}
}








h1 {
	font-family: "Amplitude-Bold";
	/*font-size: 5.00em;
	line-height: 0.8;*/
	font-size: 30px;
    /*font-size: 10vh;*/
	font-size: calc(16px + 5vh);
    line-height: 0.8;

    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	margin-bottom: 0.750em;
}



@media screen and (min-width: 1200px) {
	h1 {
		font-size: 30px;
		font-size:calc(20px + 10vh);
		margin-bottom:0.7em; /*1em;*/
	}
}

@media (max-height: 320px) and (max-width: 1199px) {
	h1 {
		margin-bottom: 10px;
	}

}

/*
@media (max-height: 849px) and (max-width: 1199px) and (min-width: 769px){
	.h1 {
		font-size: 48px;
		font-size: 3rem;
	}
}*/

p,h2,h3{orphans:3;widows:3}
h2,h3{page-break-after:avoid}

/*h1,h2,h3,h4,h5,h6{margin:0;padding:0;font-weight:normal}
p{margin-bottom:20px;margin-top:0}*/

h2, h3, h4, h5,
.locationStores h1 {
	font-family: "Roboto";
}

h2,
.content-half h2,
.locationStores h1{
	text-transform: uppercase;
	/*font-size: calc(16px + 4vh);*/
    /*letter-spacing: 0.03rem;*/
	word-wrap: break-word;
	font-size: 44px;
    font-size: 1.375em;/*3vh;*/
    line-height: 1.1;
	position: relative;
}

/*@media (max-height: 849px) and (max-width: 1199px) and (min-width: 769px) {*/
@media (max-height: 849px) and (max-width: 1199px) {
	h2,
	.content-half h2,
	.locationStores h1{
		font-size: 18px;
		font-size: 1.15em;

	}
}

@media (min-width: 1200px) {
	h2,
	.content-half h2,
	.locationStores h1{
		font-size: calc(16px + 1vh);
	}
}


section.aplicacao h2 {
	text-align: center;
	max-width: 590px;
}

/*line-height:1;
	font-family:'DalaFloda';
	font-size:36px;
	color:#FFF;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	z-index:20;
	display:table;
	width:100%;
	text-align:center*%






section.catalogoCores *{
	color: rgba(44, 55, 106, 1.00);
}

/*
@media (max-width: 1199px) {
	h2 {
		font-size: 1.5em;
	}

}
*/


h2.stroke {
	/*border-bottom: 1px solid rgba(44, 55, 106, 1.00);
	padding-bottom: 0.5em;
	display: inline-block;*/
	margin-bottom: 1.5em;
	padding-bottom: 2px;

	display: -ms-inline-flex;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

}


h2.stroke:after {
	/*content: "";
    height: 1px;
    width: 100%;
    display: inline-block;
    background-color: rgba(175, 175, 175, 1.00);
    text-align: center;
	margin-top: 15px;*/
	content: "";
    position: absolute;

    bottom: -3px;
	left: 0;
    background-color: rgba(44, 55, 106, 1.00);
    height: 1px;
	width: 100%;
}

h2.stroke.strokecenter:after {
	width: 50%;
	bottom: -10px;
    left: 25%;
}

h2.stroke.strokecenter {
	background-color: transparent !important;
}
h2.stroke.white:after {
	 background-color: white;
}

h2.stroke.blue {
	background-color: transparent !important;
}

h2.stroke.blue:after {
	background-color: rgba(44, 55, 106, 1.00);
}


footer h2,
section.contactos h2{
	margin-bottom: 20px;
}


h3,
.content-half h3{
	text-transform: uppercase;
	/*font-size: calc(16px + 4vh);*/
	line-height: 1.13;
    /*letter-spacing: 0.03rem;*/
	word-wrap: break-word;
	font-size: 44px;
    font-size: 1.250em;
	margin-bottom: 20px;
}






/*
@media screen and (min-width: 768px) {
	p,
	.content-half p{
		font-size: 1.125em !important;
		line-height: 1.666666667 !important;
	}
}

@media screen and (max-width: 767px){
	p,
	.content-half p	{
		font-size: 14px;
		line-height: 1.4;
	}
}
*/

p.small {
	font-size: 90% !important;
}
/*Main Menu*/

.main-menu ul li a {
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    position: relative;
	color: rgba(44, 55, 106, 1.00);
    text-transform: uppercase;
    font-family: "Roboto";
    /*font-size: 1.3vw;
	font-size: 0.938em;*/
}


/*
@media (min-width: 768px) and (max-width: 991px) {
	.main-menu ul li a {
		font-size: 0.750em;
	}
}*/

@media (min-width: 992px) and (max-width: 1199px) {
	.main-menu ul li a {
		font-size:0.813em;
		/*ffont-size: 0.750em;*/
	}




	.main-menu ul.smaller li a {
   		 font-size: 0.750em;
   		 /*font-size:0.688em;*/
	}
}



@media (min-width: 1200px) {
	.main-menu ul li a {
		/*font-size:0.875em;*/
		font-size: 0.938em;
		/*font-size: calc(16px+(24-16)*(100vw-400px)/(800-400));*/
	}

	.main-menu ul.smaller li a {
   		 font-size: 0.813em;
	}
}







/*.main-menu ul li a:active,*/
.main-menu ul li.active a,
.main-menu ul li a:focus,
.main-menu ul li a:hover {
 	color: #7B7E96;
}


.main-menu ul li a:before,
.main-menu ul li a:focus:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -3px;
    background: rgba(44, 55, 106, 1.00);
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}



.main-menu ul li.active a:before,
.main-menu ul li a:hover:before,
.main-menu ul li a:focus:before {
	left: 0;
    right: 0;
	background: #7B7E96;}



/*Section Caracteristicas */

section.caracteristicas ul:not(.links) li  {
	font-size: 1.125em;
	/* line-height: 1.714285714; */
	line-height: 1.4565384;
	margin-bottom: 10px;
	/*-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;*/
}


@media (min-width: 768px) and (max-width: 1199px) {
	section.caracteristicas ul:not(.links) li  {
			font-size: 20px;
			font-size: 1.250em;
	}
}


@media (min-width: 1200px){
		section.caracteristicas ul:not(.links) li  {
			font-size: 22px;
			font-size: 1.375em;
			margin-bottom: 20px;
	}
}


section.caracteristicas div.produto > div {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}



@media (min-width: 992px) {
	section.caracteristicas ul.links {
		-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -webkit-justify-content: center;
	    -ms-flex-pack: center;
	    justify-content: center;
	    -webkit-align-content: center;
	    -ms-flex-line-pack: center;
	    align-content: center;
	    -webkit-align-items: center;
	    -ms-flex-align: center;
	    align-items: center;
	}
}


section.caracteristicas ul.links li {
	display: inline-block;
	margin-left: 20px;
	margin-bottom: 20px;
}

section.caracteristicas ul.links li:first-child {
	margin-left: 0;
}







section.caracteristicas ul.links li a  {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    text-align: center;
    font-size: 0.875em;
    width: 100px;
}


/*@media (min-width: 992px) {
	section.caracteristicas ul.links li a  {
		 max-width: 100px;
	}
}*/








section.contactos .bcg{
	background-image: url("../assets/imgs/footer.jpg");
	background-position: bottom center;
    position: absolute;
	/*padding-top: 40px;*/
}




@media (min-width: 768px) {

	section.contactos .credits-bottom{
		position: absolute;
		bottom: 0;
	}
}


.view .full-bg-img .container {
		text-align: right;
	}


footer {
	/*position: relative;*/
	z-index: 101;


}


/*@media (min-width: 768px) {
	footer {
		position: absolute;
		bottom: 0px;
	    left: 0;
	    width: 100%;
	}
}*/


footer > div {
	/*position: absolute;
	bottom: 10px;
	width: 100%;*/
	margin-top: 20px;
}



footer .credits{
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: right;
	font-size: 75%;

	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .credits .logo {
	width:100px;
	height: auto;
	margin-bottom: 10px;
}

footer .credits .logo img {
	width: 100%;
	height: auto;
}

/*==========================================================
	5.UI-BUTTONS
============================================================*/
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: none;
}

.btn {
    font-size: .8rem;
    padding: .85rem 2.13rem;
    border-radius: 2px;
    border: 0;
    color: #fff!important;
    margin: 6px;
    white-space: normal!important;
	text-transform: uppercase;
}

.btn-rounded {
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    -ms-border-radius: 10em;
    -o-border-radius: 10em;
    border-radius: 10em;
}

@media (min-width: 1200px){
	.btn {
		font-size: 1em;
	}
}



.btn-green {
	background-color: rgba(44,55,106, 1.00);
	color: white;
}

.btn-green:hover {
	background-color: #7B7E96;
	color: white;

}



.btn.play:before {
	position:relative;
	display: inline-block;
	font-family:"FontAwesome"!important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	margin-right: 7px;
	opacity: 1;

	vertical-align: middle;
	/*transition: all 0.15s ease-in-out 0s ;*/

}

.btn.play:before{
	content: "\f01d";
    font-size: 1.5em;
    top: -2px;
}


.btn-floating, .btn-floating i {
    color: #fff;
    display: inline-block;
    line-height: 37px;
	cursor: pointer;
}

.btn-floating {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 37px;
    height: 37px;
    padding: 0;
    background-color: #a6c;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    transition: .3s;
    margin: 10px;
}

.btn-yt {
    background-color: rgba(44, 55, 106, 1.00);
}

.btn-fb {
    background-color: rgba(44, 55, 106, 1.00);
}

.btn-fb:focus, .btn-fb:hover {
    background-color: #7B7E96;
}

.btn-yt:focus, .btn-yt:hover {
    background-color: #7B7E96;
}


footer ul.social li,
section.contactos ul.social li{
	display: inline-block;
	margin-right:5px;
	margin-bottom:none;
}

footer ul.social li:last-child,
section.contactos ul.social li:last-child{
	margin-right:none;
}


@media (min-width: 768px) and (max-width: 991px) {
	footer ul.social li,
	section.contactos ul.social li{
		display: block;
		text-align: right;
	}

}

@media (min-width: 992px){
	footer ul.social li,
	section.contactos ul.social li{
		float: right;
	}

}


ul.social li .btn-floating {
	 margin: 5px;
}

ul.social li .btn-floating.btn-large {
	width: 45.5px;
    height: 45.5px;
}

ul.social li .btn-floating.btn-large i {
    line-height: 45.5px;
}

.btn-floating i {
    width: inherit;
    text-align: center;
    font-size: 1.6rem;
}

/*

ul.social li a {
	width: 50px;
    height: 50px;
    background-color: rgba(44, 55, 106, 1.00);
    color: white;
    border-radius: 50%;
    font-size: 1.5em;
}

ul.social li a:hover {
	background-color: rgba(77,156,154,1.00);
}

*/



/*==========================================================
	6.UI-FORMS
============================================================*/

label {
    /* font-size: .8rem; */
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}


label.error {
    /* font-size: .8rem; */
	text-transform:initial;
	padding: 5px 10px;
	background-color: #d9534f;
	color:black;
	margin-top: 5px;
	transition: all .3s;
}
label.error.valid {
	background-color: rgba(201, 212, 206, 1.00);
}

input[type=date], input[type=datetime-local], input[type=email], input[type=number], input[type=password],
input[type=search-md], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], textarea.md-textarea,
.bfh-selectbox-toggle {
   /* background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    outline: 0;
    height: 2.1rem;
    width: 100%;
    font-size: 1rem;
    box-shadow: none;
*/

	background-color: transparent;
    border: 2px solid rgba(44, 55, 106, 1.00);
    border-radius: 10px;
    width: 100%;
    height: auto;
    padding: .5rem .75rem;


	 -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing:inherit /*content-box*/;
    transition: all .3s;

	 color: rgba(44, 55, 106, 1.00);

}


/*.form-control {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}*/



input[type=date]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=search-md]:focus:not([readonly]), input[type=search]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=text]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=url]:focus:not([readonly]), textarea.md-textarea:focus:not([readonly]) {
    border-bottom:none;
    box-shadow: none;

	border: 2px solid rgba(75,79, 84, 1);
}





/*==========================================================
	7.ELEMENTS
============================================================*/

/*==========================================================
	8.COMPONENTS
============================================================*/

/***** Modal *****/

.modal-backdrop.in {
	filter: alpha(opacity=7);
	opacity: 0.7;
}

.modal-content {
	background: none;
	border: 0;
	-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
	-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}

.modal-body {
	padding: 0 25px 25px 25px;
}

.modal-header {
	padding: 25px 25px 15px 25px;
	text-align: right;
}

.modal-header, .modal-footer {
	border: 0;
}

.modal-header .close {
	float: none;
	margin: 0;
	font-size: 36px;
	color: #fff;
	font-weight: 300;
	text-shadow: none;
	opacity: 1;
}


@media (min-width: 768px){
	.modal-dialog {
		max-width: 768px;
	}
}

@media (min-width: 992px){
	.modal-dialog {
		max-width: 992px;
	}
}
@media (min-width: 1200px){
	.modal-dialog {
		max-width: 1200px;
	}
}



/*Previous Boostrap*/
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: top;
    border-top: 4px solid #000000;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
}

.input-medium {
    width: 150px;
}



/* Updated from bootstrap-formhelpers.css */

.bfh-selectbox {
    /* height: 30px; */
    position: relative;
    display: inline-block;
    width: 100%;
}
.bfh-selectbox > .bfh-selectbox-toggle {
	background: transparent;
	text-align: left;
}

.bfh-selectbox > .bfh-selectbox-toggle {
	/*color: #000; */
    /* padding: 4px; */
    display: inline-block;
    width: 100%;
    /* background-color: white; */
    /* border: 1px solid #CCC; */
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    /* -webkit-border-radius: 6px; */
    /*-moz-border-radius: 6px;
     border-radius: 6px;*/
}

/*.bfh-selectbox > .bfh-selectbox-toggle > .bfh-selectbox-option {
     display: inline-block;
     float: left;
     height: 20px;
     overflow: hidden;
}*/


.bfh-selectbox .caret {
    margin-top: 8px;
    margin-left: 2px;
    height: 8px;
}

.bfh-selectbox > .bfh-selectbox-toggle > .caret {
    float: right;
}

.open > .bfh-selectbox-options {
    display: block;
}


.bfh-selectbox-options {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
   /* padding: 5px 0;
    margin: 2px 0 0;*/
    background-color: #ffffff;
    /*border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;*/

    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;

    width: 100%;

    border: 2px solid rgba(44, 55, 106, 1.00);
    border-radius: 10px;
    padding: .5rem .75rem;
    text-align: left;
}


.bfh-selectbox-filter {
    /* margin: 0 10px; */
    margin:0;
    margin-bottom: 10px;
}


.bfh-selectbox-options ul {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 5px 0 0 0;
    /*width: 240px;*/
    width: 100%;
}

.bfh-selectbox-options ul {
    list-style: none;
}

.bfh-selectbox-options a {
    display: block;
    /* padding: 3px 20px; */

}

/*==========================================================
	9.ANIMATION
============================================================*/


/* intro */


.delay2 {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.delay3 {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.delay4 {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.no-touch ._slideInUp,
.no-touch ._slideInLeft,
.no-touch ._fadeIn {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;

  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.no-touch .is-active ._fadeIn {
  visibility: visible;
  opacity: 1;
}


.no-touch ._slideInUp {
 -webkit-transform: translate3d(0, 50px, 0);
  -ms-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}


.no-touch ._slideInDown {
 -webkit-transform: translate3d(0, -50px, 0);
  -ms-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
}


.no-touch .is-active ._slideInUp {
  visibility: visible;
  opacity: 1;
 -webkit-transform: translate3d(0, 0, 0);
 -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

/* -webkit-animation-name: slideInUp;
  animation-name: slideInUp;*/
}


.no-touch ._slideInLeft {
	-webkit-transform: translate3d(-50px, 0, 0);
	-ms-transform: translate3d(-50px, 0, 0);
	transform: translate3d(-50px, 0, 0);
}

.no-touch .is-active ._slideInLeft {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}


/*
ul li._slideInLeft:nth-child(1)  { -webkit-transition-delay: 0.20s; transition-delay: 0.20s;}
ul li._slideInLeft:nth-child(2)  { -webkit-transition-delay: 0.25s; transition-delay: 0.25s;}
ul li._slideInLeft:nth-child(3)  { -webkit-transition-delay: 0.30s; transition-delay: 0.30s;}
ul li._slideInLeft:nth-child(4)  { -webkit-transition-delay: 0.35s; transition-delay: 0.35s;}
ul li._slideInLeft:nth-child(5)  { -webkit-transition-delay: 0.40s; transition-delay: 0.40s;}
ul li._slideInLeft:nth-child(6)  { -webkit-transition-delay: 0.45s; transition-delay: 0.45s;}
ul li._slideInLeft:nth-child(7)  { -webkit-transition-delay: 0.50s; transition-delay: 0.50s;}
ul li._slideInLeft:nth-child(8)  { -webkit-transition-delay: 0.55s; transition-delay: 0.55s;}
ul li._slideInLeft:nth-child(9)  { -webkit-transition-delay: 0.60s; transition-delay: 0.60s;}
ul li._slideInLeft:nth-child(10) { -webkit-transition-delay: 0.65s; transition-delay: 0.65s;}

ul li ._slideInLeft:nth-child(1)  { -webkit-transition-delay: 0.20s; transition-delay: 0.20s;}
ul li ._slideInLeft:nth-child(2)  { -webkit-transition-delay: 0.25s; transition-delay: 0.25s;}
ul li ._slideInLeft:nth-child(3)  { -webkit-transition-delay: 0.30s; transition-delay: 0.30s;}
ul li ._slideInLeft:nth-child(4)  { -webkit-transition-delay: 0.35s; transition-delay: 0.35s;}
ul li ._slideInLeft:nth-child(5)  { -webkit-transition-delay: 0.40s; transition-delay: 0.40s;}
ul li ._slideInLeft:nth-child(6)  { -webkit-transition-delay: 0.45s; transition-delay: 0.45s;}
ul li ._slideInLeft:nth-child(7)  { -webkit-transition-delay: 0.50s; transition-delay: 0.50s;}
ul li ._slideInLeft:nth-child(8)  { -webkit-transition-delay: 0.55s; transition-delay: 0.55s;}
ul li ._slideInLeft:nth-child(9)  { -webkit-transition-delay: 0.60s; transition-delay: 0.60s;}
ul li ._slideInLeft:nth-child(10) { -webkit-transition-delay: 0.65s; transition-delay: 0.65s;}*/


/*.myClass img:nth-child(4) { animation-delay: 2s }*/



/*

-webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);


*/




/*.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}*/
