.overlay
{
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.6);
	top: 0;
	left: 0;
	opacity: 0;
}
.overlay:hover { opacity: 1; }

/*ALIGN*/
.top { top: 0; }
.left { left: 0; }
.right { right: 0; }
.bottom { bottom: 0; }
.bottom-important { bottom: 0 !important; }
.middle { left: auto; right: auto; }
.h-center, .center { left: 50%; transform: translateX(-50%); }
.v-center, .center { top: 50%; transform: translateY(-50%); }
.center { transform: translate(-50%,-50%); }
.v-top { vertical-align: top; }
.v-bottom { vertical-align: bottom; }
.v-middle { vertical-align: middle; }
.v-sub { vertical-align: sub; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/*BACKGROUNND COLOR*/
.bg-grey{ background-color: #333; }
.bg-white { background-color: #fff; }
.bg-transparent { background-color: transparent; }
.bg-quarter-transparent { background-color: rgba(255, 255, 255, 0.75); }

/*COLOR*/
/*.white { color: white !important; }
.black { color: black !important; }
.grey, h2 { color: #6B6A6C !important; }
.dark-grey, p { color: #4D4D4D !important; }
.green, h3, h4 { color: #008463 !important; }
.yellow { color: #E3DA80 !important; }
.red { color: #E30513 !important; }*/

/*CONTENT - CONTAINER*/
.container, .sub-container, .mob-container
{
		overflow-y: auto;
		padding: 45px 10px 25px;
		display: block;
		margin: auto;
		z-index: 10;
		position: relative;
		max-width: 1044px;
}
.sub-container { max-width: 810px; }
.mob-container { max-width: 520px; }

/*CURSOR*/
.cursor-pointer { cursor: pointer; }

/*DISPLAY*/
.inline-block { display: inline-block; }
.block { display: block; }
.none-display { display: none; }

/*FLOAT*/
.float-right { float: right; }
.float-left { float: left; }
.c-float { float: none; }

/*FONT*/
/*@import url("NotoSans.ttf");
h1,h2,h3,h4,h5,p,a,li,ul,footer,header{ font-family: "Noto Sans" !important; }
h1 { font-size: 34px !important; }
h2 { font-size: 21px !important; }
h3 { font-size: 16px !important; }
p { font-size: 13px !important; }
.p10 { font-size: 10px !important; }*/

/*GRADIENT*/
.g-white-to-trans
{
	background: #fff !important; /* For browsers that do not support gradients */
	background: linear-gradient(to right, #fff , rgba(255, 255, 255, 0)) !important; /* Standard syntax */
  background: -webkit-linear-gradient(left, #fff ,  rgba(255, 255, 255, 0)) !important; /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(left, #fff,  rgba(255, 255, 255, 0)) !important; /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(left, #fff,  rgba(255, 255, 255, 0)) !important; /* For Firefox 3.6 to 15 */
}

/*HEIGHT*/
.full-height, .full-size { height: 100%; }
.half-height { height: 50%; }
.none-height { height: 0%; }
.auto-height { height: auto; }

/*MARGIN*/
.h-marg-a { margin-left: auto; margin-right: auto; }
.c-margin { margin: 0 !important; }
.c-t-margin, .c-v-margin { margin-top: 0; }
.c-b-margin, .c-v-margin { margin-bottom: 0; }
.c-l-margin, .c-h-margin { margin-left: 0; }
.c-r-margin, .c-h-margin { margin-right: 0; }
.b-marg-5 { margin-bottom: 5px; }
.b-marg-10 { margin-bottom: 10px; }
.b-marg-15 { margin-bottom: 15px; }
.b-marg-20 { margin-bottom: 20px; }
.b-marg-25, .v-marg-25 { margin-bottom: 25px; }
.b-marg-40 { margin-bottom: 40px; }
.b-marg-45 { margin-bottom: 40px; }
.t-marg-20 { margin-top: 20px; }
.r-marg-10, .h-marg-10 { margin-right: 10px; }
.l-marg-10, .h-marg-10 { margin-left: 10px; }
.t-marg-10, .v-marg-10 { margin-top: 10px; }
.t-marg-20, .v-marg-20 { margin-top: 20px; }
.t-marg-25, .v-marg-25 { margin-top: 25px; }
.t-marg-35 { margin-top: 35px; }
.t-marg-55, .v-marg-55 { margin-top: 55px; }
.b-marg-55, .v-marg-55 { margin-bottom: 55px; }
.r-marg-5, .h-marg-5  { margin-right: 5px; }
.l-marg-5, .h-marg-5  { margin-left: 5px; }
.l-marg-20, .h-marg-20  { margin-left: 20px; }
.l-marg-35, .h-marg-35  { margin-left: 35px; }
.r-marg-20, .h-marg-20  { margin-right: 20px; }
.r-marg-35, .h-marg-35  { margin-right: 35px; }

/*MARGIN NEGATIVE*/
.b-marg-10-n, .v-marg-10-n { margin-bottom: -10px; }
.r-marg-10-n, .h-marg-10-n { margin-right: -10px; }
.l-marg-10-n, .h-marg-10-n { margin-left: -10px; }
.b-marg-20-n, .v-marg-20-n { margin-bottom: -20px; }
.t-marg-10-n, .v-marg-10-n { margin-top: -10px; }
.t-marg-20-n, .v-marg-20-n { margin-top: -20px; }
.l-marg-2-5-n, .h-marg-2-5-n { margin-left: -2.5px}
.r-marg-2-5-n, .h-marg-2-5-n { margin-right: -2.5px}
.r-marg-5-n, .h-marg-5-n  { margin-right: -5px; }

/*OPACITY*/
.full-opac { opacity: 1; }
.half-opac { opacity: 0.5; }
.none-opac { opacity: 0; }

/*OVERFLOW*/
.overflow-y-a { overflow-y: auto; }
.overflow-x-a { overflow-x: auto; }
.overflow-a   { overflow: auto; }
.overflow-y-h { overflow-y: hidden; }
.overflow-x-h { overflow-x: hidden; }
.overflow-h   { overflow: hidden; }
.overflow-y-s { overflow-y: scroll; }
.overflow-x-s { overflow-x: scroll; }
.overflow-s   { overflow: scroll; }
.overflow-h-a { overflow-x: hidden; overflow-y: auto; }
.overflow-a-h { overflow-x: auto; overflow-y: hidden; }

/*PADDING*/
.c-padding { padding: 0; }
.c-t-padd, .c-v-padding { padding-top: 0; }
.c-t-padd, .c-v-padding-i { padding-top: 0 !important; }
.c-b-padd, .c-v-padding { padding-bottom: 0; }
.c-b-padd, .c-v-padding-i { padding-bottom: 0 !important; }
.c-l-padd, .c-h-padding { padding-left: 0; }
.c-r-padd, .c-h-padding { padding-right: 0; }
.l-padd-2-5 { padding-left: 2.5px; }
.l-padd-5 { padding-left: 5px; }
.l-padd-10 { padding-left: 10px; }
.l-padd-30 { padding-left: 30px; }
.r-padd-2-5 { padding-right: 2.5px; }
.r-padd-5 { padding-right: 5px; }
.r-padd-10 { padding-right: 10px; }
.r-padd-20 { padding-right: 20px; }
.b-padd-5 { padding-bottom: 5px; }
.b-padd-10 { padding-bottom: 10px; }
.t-padd-10 { padding-top: 10px; }
.t-padd-25, .v-padd-25{ padding-top: 25px; }
.b-padd-25, .v-padd-25{ padding-bottom: 25px; }
.t-padd-35, .v-padd-35{ padding-top: 35px; }
.b-padd-35, .v-padd-35{ padding-bottom: 35px; }
.h-padd-2-5 { padding-left: 2.5px; padding-right: 2.5px}
.h-padd-5 { padding-left: 5px; padding-right: 5px}
.h-padd-10 { padding-left: 10px; padding-right: 10px}
.h-padd-15 { padding-left: 15px; padding-right: 15px}
.h-padd-20 { padding-left: 20px; padding-right: 20px}
.v-padd-10 { padding-top: 10px; padding-bottom: 10px; }
.v-padd-35 { padding-top: 35px; padding-bottom: 35px; }
.pad-10 { padding: 10px; }

/*POSITION*/
.absolute { position: absolute; }
.fixed    { position: fixed; }
.relative { position: relative; }

/*SIZE*/
.height-100 { height: 100px; }
.height-110 { height: 110px; }
.height-115 { height: 115px; }

/*TRANSISTION*/
body *
{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.no-transition
{
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
  -o-transition: none;
  transition: none;
}

/*TEXT*/
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.decor-none { text-decoration: none; }
.underline { text-decoration: underline; }

/*VISIBILITY*/
.hide { visibility: hidden; }
.show { visibility: visible; }

/*WIDTH*/
.full-width, .full-size { width: 100%; }
.full-width-important { width: 100% !important; }
.half-width { width: 50%; }
.none-width { width: 0; }
.auto-width { width: auto; }
.full-less-10{ width: calc(100% - 10px); }
.full-less-20{ width: calc(100% - 20px); }
.full-less-50{ width: calc(100% - 50px); }

#cff.cff-default-styles a
{
		color: #73a333;
		text-decoration: underline !important;
}
/*COLUMNS SIZE*/
@media (min-width: 0px){
	.col-xxs-1 { width: 8.333%; }
	.col-xxs-2 { width: 16.666%; }
	.col-xxs-3 { width: 25%; }
	.col-xxs-4 { width: 33.333%; }
	.col-xxs-5 { width: 41.666%; }
	.col-xxs-6 { width: 50%; }
	.col-xxs-7 { width: 57.333%; }
	.col-xxs-8 { width: 66.666%; }
	.col-xxs-9 { width: 75%; }
	.col-xxs-10{ width: 83.333%; }
	.col-xxs-11{ width: 91.666%; }
	.col-xxs-12{ width: 100%; }
}
@media (min-width: 360px){
	.col-xs-1 { width: 8.333%; }
	.col-xs-2 { width: 16.666%; }
	.col-xs-3 { width: 25%; }
	.col-xs-4 { width: 33.333%; }
	.col-xs-5 { width: 41.666%; }
	.col-xs-6 { width: 50%; }
	.col-xs-7 { width: 57.333%; }
	.col-xs-8 { width: 66.666%; }
	.col-xs-9 { width: 75%; }
	.col-xs-10{ width: 83.333%; }
	.col-xs-11{ width: 91.666%; }
	.col-xs-12{ width: 100%; }
}

@media (min-width: 520px){
	.col-sm-1 { width: 8.333%; }
	.col-sm-2 { width: 16.666%; }
	.col-sm-3 { width: 25%; }
	.col-sm-4 { width: 33.333%; }
	.col-sm-5 { width: 41.666%; }
	.col-sm-6 { width: 50%; }
	.col-sm-7 { width: 57.333%; }
	.col-sm-8 { width: 66.666%; }
	.col-sm-9 { width: 75%; }
	.col-sm-10{ width: 83.333%; }
	.col-sm-11{ width: 91.666%; }
	.col-sm-12{ width: 100%; }
}
@media (max-width: 766px){
	.hide-mob { visibility: hidden; }
	.full-width-mob, .full-size-mob { width: 100%; }
	.c-margin-mob { margin: 0 !important; }
	.c-l-margin-mob, .c-h-margin-mob { margin-left: 0; }
	.c-r-margin-mob, .c-h-margin-mob { margin-right: 0; }
	.c-l-padding-mob, .c-h-padding-mob, .c-padd-mob { padding-left: 0; }
	.c-r-padding-mob, .c-h-padding-mob, .c-padd-mob { padding-right: 0; }
	.t-padding-mob { padding-top: 0; }
	.l-padd-15-mob { padding-left: 15px; }
	.l-padd-30-mob { padding-left: 30px; }
	.r-marg-20-mob, .h-marg-20-mob  { margin-right: 20px; }
	.l-marg-20-mob, .h-marg-20-mob  { margin-left: 20px; }
	.t-marg-10-e-mob { margin-top: 10px; }
	.none-display-desk { display: none; }
	.b-marg-15-mob { margin-bottom: 15px; }
	.b-padd-25-mob { padding-bottom: 25px; }
	.t-padd-25-mob { padding-top: 25px; }
	.c-b-padd-mob, .c-padd-mob { padding-bottom: 0; }
	.c-t-padd-mob, .c-padd-mob { padding-top: 0; }
}
@media (min-width: 767px){
	.col-md-1 { width: 8.333%; }
	.col-md-2 { width: 16.666%; }
	.col-md-3 { width: 25%; }
	.col-md-4 { width: 33.333%; }
	.col-md-5 { width: 41.666%; }
	.col-md-6 { width: 50%; }
	.col-md-7 { width: 57.333%; }
	.col-md-8 { width: 66.666%; }
	.col-md-9 { width: 75%; }
	.col-md-10{ width: 83.333%; }
	.col-md-11{ width: 91.666%; }
	.col-md-12{ width: 100%; }
	.full-width-desk, .full-size-desk { width: 100%; }
	.c-margin-desk { margin: 0 !important; }
	.c-l-margin-desk, .c-h-margin-desk { margin-left: 0; }
	.c-r-margin-desk, .c-h-margin-desk { margin-right: 0; }
	.l-padd-15-desk { padding-left: 15px; }
	.l-padd-30-desk { padding-left: 30px; }
	.r-marg-10-desk, .h-marg-10-desk  { margin-right: 10px; }
	.l-marg-10-desk, .h-marg-10-desk  { margin-left: 10px; }
	.r-marg-15-desk, .h-marg-15-desk  { margin-right: 15px; }
	.l-marg-15-desk, .h-marg-15-desk  { margin-left: 15px; }
	.r-marg-20-desk, .h-marg-20-desk  { margin-right: 20px; }
	.l-marg-20-desk, .h-marg-20-desk  { margin-left: 20px; }
	.r-marg-10-n-desk, .h-marg-10-n-desk { margin-right: -10px; }
	.l-marg-10-n-desk, .h-marg-10-n-desk { margin-left: -10px; }
	.c-b-padd-desk, .c-padd-desk { padding-bottom: 0; }
	.c-t-padd-desk, .c-padd-desk { padding-top: 0; }
	.c-t-padd-desk-i, .c-padd-desk { padding-top: 0 !important; }
	.none-display-mob { display: none; }
	.hide-desk { visibility: hidden; }
}
@media (min-width: 979px)
{
	.col-lg-1 { width: 8.333%; }
	.col-lg-2 { width: 16.666%; }
	.col-lg-3 { width: 25%; }
	.col-lg-4 { width: 33.333%; }
	.col-lg-5 { width: 41.666%; }
	.col-lg-6 { width: 50%; }
	.col-lg-7 { width: 57.333%; }
	.col-lg-8 { width: 66.666%; }
	.col-lg-9 { width: 75%; }
	.col-lg-10{ width: 83.333%; }
	.col-lg-11{ width: 91.666%; }
	.col-lg-12{ width: 100%; }
}
[class*="col-"] { float: left; }

/*Z-INDEX*/
.bring-to-front-1 { z-index: 1 !important; }
.bring-to-front-2 { z-index: 2 !important; }
.bring-to-front-3 { z-index: 3 !important; }
.bring-to-front-10 { z-index: 10 !important; }
.bring-to-front-100 { z-index: 100 !important; }
.send-to-back { z-index: -1 !important; }
.accordion{ margin: 5px 0; }
.accordion > div > * { margin-left: 10px; }
.accordion > div:first-child
{
		position: relative;
		border-bottom: 1px solid #00b2a9;
}
.accordion > div:last-child
{
		overflow-y: hidden;
		height: 0;
}
.accordion-button
{
		cursor: pointer;
		margin: 10px 10px;
		margin-left: 0;
		display: inline-block;
		max-width: 400px;
}
.accordion-button + a
{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
}
.accordion-button > .accordion-icon { vertical-align: bottom; transform: rotateZ(0deg); }
.accordion-button > .accordion-icon.invert { transform: rotateZ(180deg); }
[class*="droplist-button"] *
{
		-webkit-transition: all 0.2s linear;
		-moz-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		transition: all 0.2s linear;
}
[class*="droplist-button"] > .drop-list-arrow
{
		/*POSITION*/
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);

		/*DRAW TRIANGLE*/
		width: 0;
		height: 0;
		border-width: 5px 5px 0 5px;
		border-color: #ec9e17 transparent transparent;
		border-style: solid;
		_border-color: #ec9e17 #000000 #000000 #000000;
		/*_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');*/
}
[class*="droplist-button"]
{
		position: relative;
		border-style: none;
		outline: none;
		cursor: pointer;
		border-radius: 4px;
		width: calc(100% - 23px);
		height: 27px;
		text-align: left;
		color: #00b2a9;
		background-color: #f2f2f2;
}
[class*="droplist-button"] + ul
{
		overflow-y: hidden;
		background-color: #f2f2f2;
		padding: 0;
		color: #00b2a9;
		margin-top: 3px;
		border-radius: 4px;
		font-size: 12px;
		height: 0;
		width: calc(100% - 23px);
}
[class*="droplist-button"] + ul > li
{
		list-style: none;
		padding: 8px 5px;
		padding-left: 8px;
		background-color: #3c3533;
		border: 1px solid #ec9e17;
}
[class*="droplist-button"] + ul > li * {	color: white !important; font-size: 12px !important; }
[class*="droplist-button"] + ul > li:hover, [class*="droplist-button"] + ul > li.active
{
		background-color: #ec9e17;
		color: white;
}
.close-droplist
{
		display: none;
		position: fixed;
		width: 2000px;
		height: 2000px;
		top: 0;
		left: 0;
		z-index: -1;
}
@font-face { font-family: "Hind-Regular"; src: url("font/Hind-Regular.ttf"); } /*400*/
@font-face { font-family: "Hind-Medium"; src: url("font/Hind-Medium.ttf"); } /*500*/
@font-face { font-family: "Hind-SemiBold"; src: url("font/Hind-SemiBold.ttf"); } /*600*/

h1, h2, h3, h4, p, a, li, ol, ul, input, textarea { font-family: "Hind-Regular"; color: #3c3533; }
h1 { font-size: 34px; }
h2, h3.akah2 { font-family: "Hind-Regular";  font-size: 22px; }
h3 { font-family: "Hind-SemiBold";  font-size: 18px; }
h3.akah2{ font-size: 26px; }
.akah4 { font-size: 16px; font-family: "Hind-SemiBold"; }
p, li,ol,ul { font-size: 14px; line-height: 20px; }

form h2 { font-family: "Hind-Medium"; }
footer * { font-size: 12px; color: #3c3533; }

@media screen and (max-width: 520px)
{
    h1 { font-size: 28px; }
    h2 { font-size: 18px; }
}

*.red { color: #b12224; }
*.orange { color: #ec9e17; }
*.grey { color: #3c3533; }
*.bg-grey { background-color: #e3e3e3; }
form label input, form label textarea
{
		width: calc(100% - 20px);
		border: 0;
		outline: none;
		padding: 10px;
}
form label textarea
{
		resize: none;
		max-height: 100px;
}
form input[type="submit"]
{
		padding: 10px 20px;
		color: white;
		background-color: #b12224;
		border: 0;
		outline: none;
}
form input[type="submit"]:hover
{
		color: #b12224;
		background-color: white;
		cursor: pointer;
}
span.wpcf7-not-valid-tip, div.wpcf7-validation-errors { color: white !important; }
div.wpcf7-validation-errors { border-color: white !important; }
#loginform *
{
    font-family: "Hind-Regular";
    font-size: 14px;
}
#loginform label { display: none; }
#loginform input:not([type="submit"])
{
    max-width: 300px;
    width: 100%;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 10px 5px;
    outline: none;
}
#loginform input[type="submit"]
{
    border: 1px solid #b12224;
    background-color: #b12224;
    width: 100px;
    cursor: pointer;
    color: white;
    box-shadow: none;
    outline: none;
		padding: 7px 20px 5px;
		background-color: white;
		color: #b12224;
		border-radius: 5px;
}
#loginform input[type="submit"]:hover
{
    background-color: #b12224;
    color: white;
}
.login-msg
{
    font-weight: 700;
    color: #b12224;
}

/*NAV BAR*/
header
{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(0,0,0,1);
}
#navbar *
{
		-webkit-transition: all 0.2s linear;
		-moz-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		transition: all 0.2s linear;
}
#navbar
{
  	padding: 10px 0;
		max-width: 1044px;
		margin: 0 auto;
		position: relative;
}
#navbar > div { padding: 0 10px; }
#navbar > div > a { z-index: 100; position: relative;}
#navbar #menu
{
		position: absolute;
		top: 0;
		right: 0px;
		width: 100%;
		text-align: right;
}
#navbar #menu > div{ margin-top: -4px; }
#navbar #menu > div > div, #navbar #menu #site-menu > div{	display: inline-block; }
#navbar #menu #site-menu {	height: 84px; }
#navbar #menu #site-menu > div > p, #navbar #menu #site-menu > div > a { margin: 37px 10px 25px; }
#navbar #menu #site-menu p { cursor: default; }
#navbar #menu #site-menu .sub-menu
{
		position: absolute;
		top: 84px;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 120px;
    max-height: 0;
    overflow-y: hidden;
		-webkit-transition-delay: 0.05s; /* Safari */
    transition-delay: 0.05s;
}
#navbar #menu #other-menu > a > img{ margin-bottom: -7px; }
#navbar #menu #site-menu > div > p, #navbar #menu #site-menu > div > a
{
		font-size: 16px;
		color: white;
		text-decoration: none;
		position: relative;
		z-index: 1;
}
#navbar #menu #site-menu > div:hover > p, #navbar #menu #site-menu > div > p.active,
#navbar #menu #site-menu > div > a:hover, #navbar #menu #site-menu > div > a.active{	color: #ec9e17; }
#navbar #menu #site-menu > div:hover > .sub-menu
{
		top: 84px !important;
    max-height: 120px;
		-webkit-transition-delay: 0s; /* Safari */
		transition-delay: 0s;
}

#navbar #menu #site-menu .sub-menu *{	height: 100%; }
#navbar #menu #site-menu .sub-menu > .sub-menu-items
{
		text-align: center;
		background-color: rgba(0,0,0,0.6);
}
#navbar #menu #site-menu .sub-menu > .sub-menu-msg,
#navbar #menu #site-menu .sub-menu > .sub-menu-items > .sub-menu-link { position: relative; }
#navbar #menu #site-menu .sub-menu > .sub-menu-msg > p,
#navbar #menu #site-menu .sub-menu > .sub-menu-items > .sub-menu-link > a
{
		height: auto;
		text-decoration: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
}
#navbar #menu #site-menu .sub-menu > .sub-menu-msg > p
{
		width: 80%;
		margin-top: 0;
		margin-bottom: 0;
		font-size: 14px;
    text-align: left;
    color: white;
}
#navbar #menu #site-menu .sub-menu > .sub-menu-items:not(:last-child)
{
		border-right: 1px solid black;
}
#navbar #menu #site-menu .sub-menu > .sub-menu-msg
{
		background-color: rgba(177, 34, 36, 0.6);
		color: white;
}
#navbar #menu #site-menu .sub-menu .sub-menu-items .sub-menu-link > a { color: white; line-height: 20px; }
#navbar #menu #site-menu .sub-menu .sub-menu-items .sub-menu-link:hover > a,
#navbar #menu #site-menu .sub-menu .sub-menu-items .sub-menu-link.active > a {color: white; }
#navbar #menu #site-menu .sub-menu .sub-menu-items .sub-menu-link:hover,
#navbar #menu #site-menu .sub-menu .sub-menu-items .sub-menu-link.active {	background-color: #ec9e17 ; }
#navbar #menu #site-menu .white-mask
{
		background-color: white;
		height: 84px;
		top: 0;
		left: 0;
		width: 100%;
		position: absolute;
		z-index: -1;
}
#menu-button
{
    position: absolute;
    right: 20px;
    top: 50%;
    width: 25px;
    height: 20px;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 100;
}
#menu-button > div
{
    width: 100%;
    border-width: 2px;
    border-bottom: 2px solid white;
    margin-bottom: 5px;
}

.col-md-6-5 { width: calc(100% / 5);}
@media (max-width: 930px)
{
		#bg-menu-closer { display: block; }
		#navbar #brand { height: 100%; }
    #navbar #menu #other-menu > a > img{ height: 100%; }
    #navbar > div { padding: 0; }
		#navbar > div > a { padding-left: 10px; }
		#navbar #menu
		{
				z-index: 100;
				background-color: #3c3533;
				height: 0;
        overflow: hidden;
		}
		#menu > div
		{
				height: 0;
				margin: 0;
				padding: 0 !important;
		}
		#site-menu, #navbar #menu #site-menu
		{
				height: auto;
				margin-top: 75px;
        overflow-y: auto;
		}
    #other-menu
		{
				position: absolute;
				left: 0px;
				top: 0px;
				z-index: 100;
        padding: 20px;
        width: calc(100% - 40px);
        text-align: left;
        background-color: #3c3533;
		}
		#site-menu, #site-menu > div
		{
				text-align: left;
				width: 100%;
		}
		#site-menu .white-mask { display: none; }
    #navbar #menu #site-menu > div > p, #navbar #menu #site-menu > div, #navbar #menu #site-menu a { margin: 0 !important; }
		#navbar #menu #site-menu > div > p, #navbar #menu #site-menu > div > a
		{
				padding: 10px 20px !important;
        margin: 0 !important;
        display: block;
		}
		#navbar #menu #site-menu > div:last-child { max-width: calc(100% - 40px)}
		#navbar #menu #site-menu > div:last-child > a { margin: 0; }
    #navbar #menu #site-menu > div:not(:last-child){ position: relative; }
    #navbar #menu #site-menu .sub-menu
    {
        position: inherit;
        height: 0;
        z-index: 1;
        top: 0;
        overflow: hidden;
        max-height: 100%;
    }
    #navbar #menu #site-menu .sub-menu > .sub-menu-items { text-align: left !important; }
    #navbar #menu #site-menu .sub-menu > .sub-menu-msg,
    #navbar #menu #site-menu .sub-menu > .sub-menu-items,
    #navbar #menu #site-menu .sub-menu > .sub-menu-msg,
    #navbar #menu #site-menu .sub-menu > .sub-menu-items > .sub-menu-link
    {
        width: 100%;
        min-height: 50px;
    }
    #navbar #menu #site-menu .sub-menu > .sub-menu-items > .sub-menu-link > a
    {
        transform: translateY(-50%);
        left: 20px;
    }
    #navbar #menu #site-menu > div:hover > .sub-menu
    {
        top: 0px !important;
        max-height: 100%;
    }
    #site-menu, #navbar #menu #site-menu > div > p { background-color: #3c3533; }
    #navbar #menu #site-menu .sub-menu * { height: auto; }
    #navbar #menu #site-menu .sub-menu > .sub-menu-msg > p
    {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        padding: 20px;
        width: 95%;
    }
    #other-menu > div { float: left; }
    #navbar #menu > div > div, #navbar #menu #site-menu > div { display: block; }
    #menu-button.active > div:first-child { transform: skewY(45deg); margin-top: 10px; }
    #menu-button.active > div:nth-child(2) { opacity: 0; }
    #menu-button.active > div:last-child { transform: skewY(-45deg); margin-top: -14px; }
}
@media (min-width: 930px)
{
    #navbar #menu #other-menu > a:first-child > img
    {
        width: 25px;
        height: 100%;
    }
    #menu-button { display: none; }
}
@media (min-width: 767px) and (max-width: 979px)
{
		#navbar #menu #site-menu > div > p, #navbar #menu #site-menu > div > a { margin-left: 7px; margin-right: 7px; }
}
@media (max-width: 1043px)
{
		#navbar #menu > div { padding-right: 10px; }
}
#send-wmail-button
{
		background-position: center;
		background-repeat: no-repeat;
		background-size: 20px 20px;
		width: 20px;
		height: 20px;
}
.wmail_button, .wmail_textbox_button
{
		background-color: transparent;
		border: none;
		outline: none;
}
.wmail_textbox_button
{
		width: 20px;
		height: 20px;
		cursor: pointer;
		padding: 0 !important;
		position: absolute;
		top: 5px;
		right: 25px;
		color: white;
}
.wmail_caption { display: none; }
.wmail_textbox_class
{
		width: calc(100% - 30px) !important;
		background-color: #f2f2f2 !important;
		color: #00b2a9 !important;
		border-radius: 5px;
		padding-left: 7px !important;
		height: 25px !important;
		outline: none !important;
		border-color: #00b2a9;
		border-style: none;
}
#newsletter-block > div > div { position: relative; }
.wmail_msg { padding-top: 0 !important; padding-bottom: 0 !important; color: #E8E8E8  !important; font-family: "Raleway-Regular"; font-size: 12px; }
.pop-up
{
		position: fixed;
		opacity: 0;
		display: none;
		z-index: 1000;
}
.pop-up, .pop-up-bg
{
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
}
.pop-up-bg
{
		position: absolute;
		background-color: rgba(0,0,0,0.5);
}
.pop-up > div:not(.pop-up-bg)
{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 50%;
		height: 100%;
		padding: 20px 50px;
		background-color: white;
		overflow-y: auto;
}
.pop-up form input:not([type="submit"]), .pop-up form textarea,
.recrut form input:not([type="submit"]), .recrut form textarea
{
		background-color: #e3e3e3;
		color: #3c3533;
		margin-bottom: 5px;
}
.pop-up form input[type="submit"]:hover, .recrut form input[type="submit"]:hover
{
		border: 1px solid transparent;
}
.pop-up form input[type="submit"]:hover, .recrut form input[type="submit"]:hover
{
		border-color: #b12224;
}
.pop-up form > .wpcf7-form-control-wrap, .pop-up form > .wpcf7-form-control-wrap + p,
.recrut form > .wpcf7-form-control-wrap, .recrut form > .wpcf7-form-control-wrap + p
{
		float: left;
		display: inline-block;
}
.pop-up form > .wpcf7-form-control-wrap + p,
.recrut form > .wpcf7-form-control-wrap + p
{
		margin-left: 10px;
		display: inline-block;
}
span.wpcf7-not-valid-tip
{
		margin-top: -5px;
		color: #b12224 !important;
		margin-bottom: -20px;
}
.textarea-height .wpcf7-not-valid-tip { margin-top: -10px; margin-bottom: 10px; }
@media screen and (max-width:767px)
{
		.pop-up > div:not(.pop-up-bg)
		{
				width: 100%;
				overflow-y: auto;
				top: 0;
				left: 0;
				padding: 0;
				transform: none;
		}
}
[id|="slider"]
{
    position: relative;
    text-align: center;
}
[id|="slider"] .bullets
{
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: 100%;
    z-index: 1000;
}
[id|="slider"] .bullets > div
{
    border-radius: 15px;
    border: 2px solid white;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    margin: 0 3px;
}
[id|="slider"] .bullets > div.active, [id|="slider-"] .bullets > div:hover { background-color: white; }
[id|="slider"] .bullets > div.active { cursor: inherit; }
[id|="slider"] > [name="slider"] img
{
    width: 100%;
    height: auto;
}

.bullets { text-align: center; }
.bullets > div
{
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #b12224;
    position: relative;
    border-radius: 10px;
    margin: 0 3px;
    cursor: pointer;
}
.bullets > div > div
{
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    background-color: #b12224;
    opacity: 0;
}
.bullets > div.active
{
    cursor: inherit;
    background-color: #b12224;
    border-color: transparent;
}
.bullets > div:hover > div, .bullets > div.active > div
{
    opacity: 1;
    background-color: #b12224;
    border-color: transparent;
}
@media screen and (max-width: 930px)
{
	#ref-clients {
		float: left;
	}
	
	#clientes_referencia {
		width: 100%;
	}
}

@media screen and (max-width: 350px){
	#oportunidade_2 {
		margin-bottom: 12% !important;
	}
}
.subtitles
{
    text-align: center;
}
.subtitles * { color: #b12224; }
.subtitles hr
{
    margin-top: 0;
    border: 3px solid #b12224;
    width: 60px;
}
#to-top
{
    position: fixed;
    right: 10px;
    padding: 10px;
    transition: none;
    bottom: 10px;
    font-size: 12px;
}
#to-top a { font-family: "Hind-SemiBold" !important; color: #b12224; text-decoration: none !important; }

/*MAIN*/
html, body { margin: 0; padding: 0; overflow-x: hidden; }
.v-padd-10 { padding-top: 10px; color: white; padding-bottom: 10px; }
.line-height-21 { line-height: 21px; color: white; }
#login-icon
{
		position: relative;
}
#login-icon > img:first-child
{
		opacity: 1;
}
#login-icon > img:last-child
{
		opacity: 0;
		position: absolute;
		top: 0;
		width: 100%;
		height: auto !important;
		left: 0;
}
#login-icon:hover > img:first-child
{
		opacity: 0;
}
#login-icon:hover > img:last-child
{
		opacity: 1;
}
.intro-text
{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		max-width: 400px;
}
.intro-text > *
{
	 background-color: rgba(255,255,255,0.6);
	 padding: 10px;
	 line-height: 30px;
}
.intro-img-home
{
		background-position-x: right;
		height: 100%;
}

[class|="intro-img"]
{
		background-image: url("../../uploads/header.jpg");
		background-repeat: no-repeat;
		height: 600px;
}
[class|="intro-img-sub"]
{
		background-repeat: no-repeat;
		min-height: 250px;
		height: auto;
}
.intro-img-sub-consultores { background-image: url("../../uploads/consultoria-header.jpg"); }
.intro-img-sub-contabilidade { background-image: url("../../uploads/contabilidade-header.jpg"); }
.intro-img-sub-consultoria { background-image: url("../../uploads/consultoria-header.jpg"); }
.intro-img-sub-fiscalidade { background-image: url("../../uploads/fiscalidade-header.jpg"); }
.intro-img-sub-rh { background-image: url("../../uploads/recursos-humanos-header.jpg"); }
.intro-img-sub-outsourcing { background-image: url("../../uploads/outsourcing-1.jpg"); }
.intro-img-sub-contactos { background-image: url("../../uploads/recursos-humanos-header.jpg"); }
.intro-img-sub-confinanciamento { background-image: url("../../uploads/recursos-humanos-header.jpg"); }

.intro-img-sub-team.relative{
	background-image: url("../../uploads/team.jpg");
}

.intro-img-sub-recruiting.relative{
	background-image: url("../../uploads/recruitment.jpg");
}

.intro-img-sub-contactos{
background-image: url("../../uploads/contacts.jpg");
background-size:cover;
}


.intro-img-home > div.container { height: 100%; }
.intro-box-text
{
		float: none;
		margin-left: auto;
		margin-right: 0;
}

#home-services { overflow-y: auto; }
#home-services > div
{
		width: 20%;
		float: left;
		min-height: 200px;
		position: relative;
}
#home-services > div:hover > a h3 { color: #ec9e17; }
#home-services > div > a h3
{
		color: white;
		position: absolute;
		margin: 0;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
}
#home-services > div.contabilidade { background-image: url("../../uploads/contabilidade.jpg"); }
#home-services > div.consultoria { background-image: url("../../uploads/consultoria.jpg"); }
#home-services > div.fiscalidade { background-image: url("../../uploads/fiscalidade.jpg"); }
#home-services > div.outsourcing { background-image: url("../../uploads/outsourcing.jpg"); }
#home-services > div.rhumanos { background-image: url("../../uploads/RH.jpg"); }

.oportunidades
{
		background-image: url("../../uploads/fundo-oport-emprego.jpg");
		background-repeat: no-repeat;
}

.short-intro
{
		background-color: rgba(60, 53, 51, 0.6);
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
}
.short-intro.red { background-color: rgba(177, 34, 36, 0.6); }
.short-intro p
{
		color: white;
}

.about-tpc-box
{
		padding: 50px;
		background-color: #e3e3e3;
		margin: 0;
}
.about-tpc-box-1
{
		opacity: 0;
}

.tpc-buttons
{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
}
.tpc-buttons *
{
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-font-smoothing: antialiased;
}

.tpc-buttons > div:first-child > div
{
		position: relative;
		display: inline-block;
		cursor: pointer;
		transform: translateX(-20%);
}
.tpc-buttons > div:first-child > div:nth-child(2) { margin-top: -22px }
.tpc-buttons > div:first-child > div:nth-child(3) { margin-top: -13px }
.tpc-buttons > div:first-child > div:hover > img:nth-child(2), .tpc-buttons > div:first-child > div.active > img:nth-child(2) {	opacity: 1; }
.tpc-buttons > div:first-child > div > img:nth-child(2)
{
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
}
.tpc-buttons > div:first-child > div > p
{
		display: inline-block;
		position: absolute;
		top: 0;
		right: 50%;
		color: white;
		margin: 0;
		transform: translateX(calc(50% + 45px));
		-webkit-filter: blur(0);
		filter: blur(0);
}
.tpc-buttons > div:first-child > div:nth-child(1) > p { top: 10px; }
.tpc-buttons > div:first-child > div:nth-child(2) > p { top: 20px; }
.tpc-buttons > div:first-child > div:nth-child(3) > p { top: 22px; }

.tpc-buttons > div:last-child
{
		position: absolute;
		top: 50%;
		right: 0;
		width: 50%;
		transform: translateY(-50%);
}

.tpc-buttons > div:last-child p { color: #b12224; }

.mapa
{
		position: relative;
		background-image: url("../../uploads/mapa.png");
		background-position: center;
		min-height: 486px;
		background-repeat: no-repeat;
}
.mapa > div
{
		position: absolute;
		left: 50%;
		transform: translateX(-61%);
		bottom: 53.8%;
		max-width: 200px;
}
.mapa > div hr.red
{
		border-color: #b12224;
}
.list-tpc-change p
{
		padding: 10px;
		margin: 0;
		cursor: pointer;
		border-bottom: 1px solid #b12224;
		max-width: 180px;
}
.list-tpc-change p:hover, .list-tpc-change div.active > p
{
		color: white;
		background-color: #b12224;
}
.list-tpc-change-content ul > div, .list-tpc-change-content li > ul
{
		padding: 0;
		padding-top: 25px;
		padding-left: 20px;
		padding-right: 10px;
}
.list-tpc-change-content li > ul { padding-top: 0;}

.solicitar
{
		background-image: url("../../uploads/consultoria_solicitar-reuniao.jpg");
		background-position: center;
}
.solicitar > .container > * { margin: 0; }
.solicitar h3
{
		color: white;
		margin-top: -10px !important;
}
.solicitar .as-button, .oportunidades .as-button
{
		display: inline-block;
		padding: 10px 20px 7.5px;
		background-color: white;
		color: #b12224;
		border-radius: 5px;
		margin-top: 15px;
		cursor: pointer;
}
.solicitar .as-button:hover, .oportunidades .as-button:hover
{
		background-color: #b12224;
		color: white;
}

.intro-img-sub-contactos + div .subtitles { text-align: left !important; }
.intro-img-sub-contactos + div img { vertical-align: top !important; }

ul { padding: 0; margin: 0; }
footer { padding-top: 15px; }
footer > div:first-child img { margin: 0 3%; }

.form-contacts
{
		background-image: url("../../uploads/fundo-formulario.png");
		background-size: auto 455px;
		background-position: 25% top;
		min-height: 370px;
		background-repeat: no-repeat;
}
@media screen and (max-width:930px)
{
		.form-contacts { background-repeat: repeat-y; }
}
.form-contacts h3 > span, .form-contacts p { color: white; }
.form-contacts hr { border-color: white; }
.intro-img-home + div.container
{
		overflow-y: hidden;
}
@media screen and (max-width: 1024px)
{
		.tpc-buttons > div:first-child > div
		{
				transform: translateX(-23%);
		}
}
@media screen and (min-width: 930px)
{
		.intro-box-text
		{
				width: 91.666%;
				padding-bottom: 35px;
		}
		.t-padd-85-desk { padding-top: 85px; }
		.home-about-text
		{
				padding-left: 440px !important;
				margin-top: -50px !important;
				height: 100% !important;
		}
		.container.full-width-mob.c-h-padding-mob { padding-top: 100px; }
		.home-about-text p
		{
				line-height: 15px !important;
				margin-bottom: 0 !important;
		}
}
@media screen and (max-width: 930px)
{
		#home-services > div { width: 50%; }
	  .intro-box-text { float: left; }
		.home-about-text
		{
				height: 100% !important;
				padding-left: 20px !important;
				padding-bottom: 0 !important;
		}
		.container.full-width-mob.c-h-padding-mob
		{
				padding-bottom: 0;
				background-color: #e3e3e3;
		}
		.container.full-width-mob.c-h-padding-mob .col-md-5.col-xxs-12
		{
				width: 100% !important;
				text-align: center;
				background-color: #e3e3e3;
		}
}
@media screen and (max-width: 1023px)
{
		.tpc-buttons > div:first-child > div
		{
				transform: translateX(-35%);
		}
}
@media screen and (max-width: 520px)
{
		.intro-text { left: 0; }
		#home-services > div { width: 100%; }
		.mapa > div { width: 80%; }
}
@media screen and (max-width: 767px)
{
		.tpc-buttons > div:last-child
		{
				position: relative;
				transform: none;
				width: 100%;
		}
		.tpc-buttons
		{
				position: relative;
				transform: none;
		}
		.about-tpc-box { padding: 45px 10px 25px; }
		.tpc-buttons > div:last-child
		{
				width: auto;
				padding: 25px 10px;
		}
		.about-tpc-box-1 { display: none; }
		.list-tpc-change-content ul, .list-tpc-change-content ul > div { padding: 0; padding-left: 10px; }
		.list-tpc-change-content ul { padding-bottom: 25px; padding-left: 0;}
		.list-tpc-change-content ul > div { padding-right: 10px; }
}

/*OLD STAFF*/
#rec-cand-form form input[type="submit"], #inf-cand-form form input[type="submit"], #contact-form form input[type="submit"]
{
		height: 35px;
		width: 100px;
		cursor: pointer;
}

.intro-img-recrutamento { overflow-x: hidden; }
.intro-img-recrutamento .container h2 { margin-bottom: 0; }
.intro-img-recrutamento .container h2, .intro-img-recrutamento .container p{ color: white !important;  }
.intro-img-recrutamento .container p { width: 370px; font-family: "RaleWay-Regular";}
.intro-img-recrutamento .container hr { border-color: white; margin-left: 0; }
.intro-img-recrutamento > .diagonal-block-light
{
		margin-left: -100px;
		width: 700px;
		position: absolute;
}
.intro-img-recrutamento > .diagonal-block-light + div { position: relative; }

.intro-img-historia{ background-position: right -375px; }
.intro-img-lideranca{	background-position: center -625px; }
.intro-img-valores{	background-position: center -875px; }
.intro-img-auditoria{	background-position: center -1125px; }
.intro-img-fiscal{ background-position: center -1375px; }
.intro-img-gestao{ background-position: center -1625px; }
.intro-img-contatos{ background-position: right -1875px; }
.intro-img-disclaimer{ background-position: center -2375px; }
.intro-img-recrutamento{ background-position: right -2670px; }
.intro-img-institucional{	background-position: 80% -2995px; }
.intro-img-noticias{ background-position: right -2125px; }
.lideranca
{
		margin-top: 35px;
		overflow-y: auto;
}
.lideranca > div { overflow-y: auto; margin-bottom: 25px; }
.lideranca > div > div { position: relative; }
.lideranca > div > div > .h-padd-20 { min-height: 200px; }
.lideranca > div > div > div:last-child > p:first-child { padding-top: 15px; margin-top: 0; }
.contact-lider { position: relative; }
.lideranca > div > div > div + div, .contact-lider > div + div
{
		background-color: rgba(255,255,255,0.75);
		position: relative;
		height: 100%;
}
.contact-lider > div { right: 0; }
.contact-lider a { color: #333333; font-family: "Raleway-Regular"; }
#contact-form input, #contact-form textarea
{
		width: 100%;
		max-width: calc(100% - 10px);
		margin-bottom: 20px;
		outline: none;
		border: 0;
		border-bottom: 1px solid ;
		font-size: 12px;
		font-family: "Raleway-Regular";
		color: #333333;
}
#contact-form textarea { height: 15px; }
[class*="lider-"]
{
		background-image: url("../../uploads/diagonal-spritesheet.png");
		width: 330px;
		height: 100%;
		background-repeat: no-repeat;
		position: absolute;
		right: 20px;
}
.fiabilidade
{
		position: relative;
		background-color: #f2f2f2;
}
.fiabilidade > div:first-child{	padding: 20px; }
.fiabilidade > div[class*="arrow"]
{
		position: absolute;
		top: 50%;

		width: 0;
		height: 5px;
		border-style: solid;
		line-height: 0px;
		_border-color: #000000 #f2f2f2 #000000 #000000;
		/*_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');*/
}

.fiabilidade > .left-arrow
{
		left: 0;
		transform: translate(-50%, -50%);
		border-width: 30px 20px 30px 0;
		border-color: transparent #f2f2f2 transparent transparent;
}
.fiabilidade > .right-arrow
{
		right: 0;
		transform: translate(50%, -50%);
		border-width: 30px 0 30px 20px;
		border-color: transparent transparent transparent #f2f2f2;
}
.lider-0{	background-position: -390px 0px; }
.lider-1{	background-position: -730px 0px; }
/*TIMELINE*/
.t_line_month { display: none !important; }

.nexia-log-footer
{
		height: 100%;
		width: 80px;
		vertical-align: middle;
		margin-top: -6px;
}
.consul-img
{
		min-width: 150px;
		max-width: 200px;
		height: auto;
}
.rights > div > p img { margin-top: -15px; }
.rights{ padding: 10px 0; }
.rights > div > p
{
		display: inline-block;
		color: #333333;
		font-size: 12px;
}
#other-menu > div { display: inline-block; position: relative; }
.lang-droplist-button
{
		width: 50px;
		background-color: transparent;
		color: #ec9e17;
}
.lang-droplist-button + ul
{
		width: 100%;
		position: absolute;
		margin: 0;
		font-size: 12px;
		font-family: "Raleway-SemiBold";
		text-align: left;
}
#rec-cand-form form label, #inf-cand-form form label
{
		font-size: 18px;
		font-family: "Raleway-Regular";
		color: #0d5257;
		margin-bottom: 15px;
}
#rec-cand-form form input, #rec-cand-form textarea, #inf-cand-form form input, #inf-cand-form textarea
{
		width: 100%;
		max-width: calc(100% - 5px);
		padding-left: 5px;
		height: 35px;
		margin-top: 10px;
		background-color: #f2f2f2;
		border-style: none;
		border: 0;
		font-family: "Raleway-Regular";
		outline: none;
}
#rec-cand-form form input[type="file" i], #inf-cand-form form input[type="file" i]
{
		padding-top: 15px;
		padding-bottom: 15px;
		height: 100%;
}
#tl2 .item h2, #content #tl2 .item h2 { display: none !important;}
#tl2 .item, #content #tl2 .item { height: 100% !important; }
#tl2 .item span, #content #tl2 .item span
{
		font-size: 14px !important;
		font-family: "Raleway-Regular";
		margin-top: -50px !important;
		position: relative;
		text-align: left !important;
		z-index: 1;
		margin-bottom: 0 !important;
		margin-left: 10px !important;
		color: white;
}
.timeline.flatNav:hover .t_right, .timeline.flatNav .t_right, .timeline.flatNav:hover .t_left, .timeline.flatNav .t_left { margin-top: 30px !important; }
.timeline_items_wrapper
{
		max-width: 1024px;
		margin: 0 auto !important;
		overflow-x: hidden;
}
.home-about-text
{
		padding: 25px 20px;
		background-color: #e3e3e3;
}
.news-block a
{
		margin: 0;
		color: #00b2a9;
		font-size: 20px;
}
.home-about-text a, .news-block a { font-size: 12px; }
.home-about-text a span, .news-block a > span { font-size: 22px; vertical-align: middle; }
.last-news h3, .last-news h2
{
		color: #0d5257;
		margin: 0;
}
.last-news h2 { color: #00b2a9; }
.news-block p:first-child, .side-news p:first-child{ color: #0d5257 !important; font-family: "Raleway-SemiBold"; }
.news-block hr, .side-news hr
{
		border-bottom: 1px solid #00b2a9;
		margin-top: 0;
		color: #00b2a9;
		width: 100%;
}
.side-news-type { margin-bottom: 25px; }
.side-news-type p:first-child{ margin-top: 0; }
.side-news-type p a, .side-news a:last-child{ color: #0d5257; font-family: "Raleway-Regular"; }
.side-news a:last-child{ font-size: 12px; }
.side-news a:last-child span{ font-size: 20px; vertical-align: middle; }
.side-news-type p.active, .side-news a:last-child{ color: #00b2a9; }
.side-news-single p:first-child,.side-news-single p:nth-child(2)
{
		color: #333333;
		font-family: "Raleway-SemiBold";
}
.side-news-single p:nth-child(2){ color: #0d5257; }
.download-link {	color: #00b2a9 !important; }
.download-link img {	vertical-align: sub; }
.slider:hover > img { transform: rotateY(180deg); }
.slider:hover > div { transform: rotateY(0deg); }
.slider > img
{
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
}
.slider > div
{
		position: absolute;
		top: 10px;
		left: 0;
		margin: 0;
		padding: 0 10px;
		background-color: rgba(255,255,255,0.8);
		transform: rotateY(180deg);
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
}
@media (max-width: 766px)
{
		[class*="lider-"]	{ right: 0; }
		.lideranca > div > div { margin-bottom: 25px; }
		.lideranca > div { margin-bottom: 0}
		.consul-img { margin-bottom: 25px; }
		.fiabilidade > div[class*="arrow"]
		{
				top: 0;
				left: 50%;
				transform: translate(-50%, -50%);
				border-width: 0 40px 30px 40px;
				border-color: transparent transparent #f2f2f2;
				_border-color: #000000 #000000 #f2f2f2 #000000;
				/*_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');*/
		}
		.fiabilidade > div.right-arrow
		{
				top: auto;
				bottom: 0;
				transform: translate(-50%, 50%);
				border-width: 30px 40px 0 40px;
				border-color: #f2f2f2 transparent transparent;
				_border-color: #f2f2f2 #000000 #000000 #000000;
				/*_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');*/
		}
		.body-page { padding-bottom: 5px; }
		.home-about-iframe > iframe{	width: 100%; max-height: 374px; height: 25em; }
		/*#menu{ overflow-y: hidden; }*/

		.lang-droplist-button + ul
		{
				background-color: white;
				max-height: inherit;
				height: 0;
				text-align: center;
		}
		[class*="droplist-button"] + ul > li { padding: 18px 0 !important; }
		.contact-lider { margin-bottom: 10px; }
		.intro-img-recrutamento{ height: auto; }
		.intro-img-contatos{ background-position: 78% -1875px; }
		.intro-img-gestao { background-position: 60% -1625px; }
		.intro-img-disclaimer{ background-position: 75% -2375px; }
}
@media (min-width: 767px)
{
		.intro-img-recrutamento { overflow-x: hidden; }
		.consul-img
		{
				position: absolute;
				left: 50%;
				top: 50%;
				transform: translate(-50%, -50%);
				min-width: 150px;
				max-width: 200px;
				height: auto;
		}
		.home-about-iframe
		{
				position: relative;
				height: 354px;
		}
		.home-about-iframe > iframe
		{
				position: absolute;
				width: 120%;
				top: 50%;
				left: 0;
				transform: translateY(-50%);
		}
		.home-about-text
		{
				height: 244px;
				padding: 55px 20px;
				padding-left: 100px;
		}
}
@media (max-width: 520px)
{
		.intro-img-recrutamento .container p{ width: auto; }
		.intro-img-contatos{ background-position: 74% -1875px; }
}


/*****   CONTACT FORM   *****/

.contact-form-input {
	float: left;
	background-color: white;
	height: 43px;
	margin-top: 4px;
}

.input-full-width {
	width: 100%;
}

.contact-input-file {
	display: none;
}

.input-cv-label {
	background-color: #757575;
    color: white;
    padding: 4px 15px;
    position: relative;
    bottom: 0px;
    left: 5px;
    cursor: pointer;
    font-size: 15px;

}

.input-cv-label:hover {
	background-color: #5a5959;
}

.input-cv-filename {
    padding: 4px;
    position: relative;
    left: 5px;
    line-height: 45px;
}



@media screen and (max-width: 324px) {
		
	.form-contacts .wpcf7 {
		width: 99% !important;
	}
	.form-contacts .container {
		padding: 2px 5px !important;
	}
}

@media screen and (max-width: 350px) {
		
	.form-contacts .wpcf7 {
		width: 95% !important;
	}
}

@media screen and (max-width: 513px) {
	.form-contacts .container .col-md-4.col-xxs-12 div {
		display: inline-block;
	}
	
	.form-contacts .wpcf7 {
		width: 97% !important;
		float: left !important;
	}
}
