/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

/*-webkit-transform: translate();
-moz-transform: translate();
-ms-transform: translate();
-o-transform: translate();
transform: translate();*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	position: relative;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
/*
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  	margin: 0;
  	padding: 0;
	box-sizing: border-box;
}

img {
  	width: 100%;
}

:active {
    outline: none;
    text-decoration: none;
}

a:active {
	outline: none;
    text-decoration: none;
	color: #333;
}

:visited {
    outline: none;
    text-decoration: none;
}

a:visited {
	outline: none;
    text-decoration: none;
	color: #333;
}

:focus {
	outline: none;
    text-decoration: none;
}

a:focus {
	outline: none;
    text-decoration: none;
	color: #333;
}

:hover {
	outline: none;
    text-decoration: none;
}

a:hover {
	outline: none;
    text-decoration: none;
}

button:active {
    outline: none;
    text-decoration: none;
}

button:visited {
    outline: none;
    text-decoration: none;
}

button:focus {
	outline: none;
    text-decoration: none;
}

button:hover {
    outline: none;
    text-decoration: none;
}


.clearFix {
	clear: both;
}

section {
    z-index: 999;
    position: relative;
}

/*select {
	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none;
}

select::-ms-expand {
    display: none;
}*/

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none;
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none;
	margin: 0;  
}

.relative {
    position: relative;
}

.absolute {
	position: absolute;
}

.right {
	right: 0;
}

.bottom {
	bottom: 0;
}

.left {
	left: 0;
}

.top {
	top: 0;
}

.hidden {
	display: none;
}

.hideMobile {
	display: block;
}

.hideDesktop {
	display: none;
}



/************************************/
/* END RESET */
/************************************/

body {
    background: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: #333;
	position: relative;
}

.openSansL {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}

.openSansR {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.openSansB {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}

.oswaldL {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
}

.oswaldR {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
}

.oswaldB {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}


.size36 {
	font-size: 36px;
}

.size30 {
	font-size: 30px;
}

.size20 {
	font-size: 20px;
}

a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #333333;
}

/*section {
	width: 100%;
	padding: 70px 0 0 0;
	background: #fff;
	position: relative;
}

section:first-of-type {
    padding: 0;
}*/

::-webkit-input-placeholder {
   color: #999999;
}

:-moz-placeholder { /* Firefox 18- */
   color: #999999;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #999999;  
}

:-ms-input-placeholder {  
   color: #999999;  
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-15 {
	width: 20%;
	float: left;
}

.verticalMiddle {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	position: relative;
}

.horizontalMiddle {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	position: relative;
}

.verticalMiddleAbsolute {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	position: absolute;
}

.horizontalMiddleAbsolute {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	position: absolute;
}

.allMiddle {
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	position: relative;
}

.allMiddleAbsolute {
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	position: absolute;
}

.h100 {
	height: 100%;
}

section {
	/*background-color: #FFF;*/
}

div {
	/*background-color: #FFF;*/
}

.alignRight {
	text-align: right;
}

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.margin70 {
	margin-bottom: 70px;
}

.padding70 {
	padding-bottom: 70px;
}

.sectionP70 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}

.sectionM70 {
	margin-top: 70px;
	margin-bottom: 70px;
}

.floatR {
	float: right;
}

/************************************/
/* HEADER */
/************************************/

#stickyHeader {
	background-color: #FFF;
	z-index: 9999;
	width: 100%;
	top: 0;
	height: 110px;
	position: absolute;
}

.logo {
	margin: 20px 0;
	max-width: 325px;
	max-height: 70px;
}

.logo a {
	display: block;
}

#stickyHeader .burger {
	position: relative;
	width: 40px;
	height: 40px;
	margin: 40px 0 30px;
	float: right;
}

#stickyHeader .burger li {
	position: absolute;
	width: 30px;
	height: 2px;
	border-radius: 1px;
	background: #333;
	left: 5px;
	top: 19px;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

#stickyHeader .burger li:first-child {
	top: 10px;
}

#stickyHeader .burger li:last-child {
	top: 29px;
}

#stickyHeader .burgerClose li:nth-child(2) {
	transform: rotate(45deg);
	background: #fff;
}

#stickyHeader .burgerClose li:nth-child(3) {
	transform: rotate(-45deg);
	background: #fff;
}

#stickyHeader .burgerClose li:first-child {
	opacity: 0;
}

#stickyHeader .burgerClose li:last-child {
	opacity: 0;
}

.navBox {
	position: absolute;
    right: 15px;
    width: 100%;
    max-width: 330px;
	top: 80px;
	background-color: #333;
	display: none;
}

.menu {
	padding-top: 35px;
	padding-bottom: 25px;
}

.menu > li {
	display: block;
	padding: 6px 0;
}

.menu > li:hover {
	background-color: #4b57dd;
}

.menu > li > a, .subMenu > li > a, .langs > li > a {
	display: block;
}

.menu > li >a > p, .subMenu > li > a > p {
	color: #FFF;
	font-size: 16px;
	text-align: center;
}

.subMenu {
	display: none;
}

.subMenu > li {
	padding-top: 15px;
}

.langs {
	text-align: center;
	padding-bottom: 40px;
}

.langs > li {
	display: inline-block;
}

.langs > li > a > p {
	color: #FFF;
	font-size: 14px;
	text-transform: uppercase;
}
 
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/

.homepageVideo {
	position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    display: block;
}

.homepageVideo video {
	min-width: 100vw;
    min-height: 100%;
	/*opacity: .5;*/
	display: block;
}

.homepageContent {
	width: 100%;
}

.homepageVideo .icon-arrowDown {
	font-size: 50px;
	color: #4b57dd;
	position: absolute;
	bottom: 10px;
}

.videoText {
	text-align: center;
}

.videoText_title {
	margin-bottom: 10px;
}

.videoText_subtitle {
	margin-bottom: 35px;
}


.middleText {
	background-color: #4b57dd;
}

.middleText_content {
	color: #FFF;
	text-align: center;
	padding: 70px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#candidatosBtn {
	display: inline-block;
	vertical-align: middle;
	min-height: 50px;
	width: 240px;
}

.videoText_box {
	display: inline-block;
	border: 2px solid #333;
	vertical-align: middle;
	width: 166px;
	background-color: rgba(255,255,255,0.3);
}

.videoText_box_double {
	width: 170px;
	word-break: break-word;
	vertical-align: middle;
	display: none;
	margin-right: 70px;
}

#imageHomepage {
	display: none;
}

#videoHomepage {

}

.homepageVideo .videoText_box {
	margin-right: 70px
}

.homepageVideo .videoText_box:last-of-type {
	margin: 0;
}

.videoText_box_double .videoText_box {
	margin: 0;
	display: block;
}

.videoText_box_double .videoText_box:first-of-type {
	margin-bottom: 3px;
}

.videoText_box a {
	padding: 14px 25px;
	font-size: 16px;
	display: block;
	color: #333;
	text-transform: uppercase;
}


.linkBlackWhiteUp {
	background: linear-gradient(rgba(0,0,0,0) 50%, #FFF 50%);
	background: -webkit-linear-gradient(rgba(0,0,0,0) 50%, #FFF 50%); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(rgba(0,0,0,0) 50%, #FFF 50%); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(rgba(0,0,0,0) 50%, #FFF 50%); /* For Firefox 3.6 to 15 */
}

.li_content:hover .linkBlackWhiteUp{
	background-position: 0 100%;
	color: #333;
}

.li_content:hover .icon-plus {
	color: #333;
}

.linkAnimUp {
	background-size: 100% 210%;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .3s ease-out;
}

.li_content > div {
	height: 52px;
	border-radius: 50%;
}

.linkBlackWhite {
	background: linear-gradient(45deg, rgba(0,0,0,0) 50%, #333 50%);
	background: -webkit-linear-gradient(45deg, rgba(0,0,0,0) 50%, #333 50%); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(45deg, rgba(0,0,0,0) 50%, #333 50%); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(45deg, rgba(0,0,0,0) 50%, #333 50%); /* For Firefox 3.6 to 15 */
}

.linkBlackWhite:hover {
	background-position: 99% 0;
	color: #FFF;
}

.linkAnim {
	background-size: 259% 100%;
	display: inline-block;
	padding: 10px 25px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .4s ease-out;
}

.services_ul .icon-plus {
	font-size: 50px;
	color: #FFF;
	border-radius: 50%;
	border: 1px solid #FFF;
	width: 50px;
	margin: 0 auto 20px;
}

.services_ul > li {
	width: 50%;
	display: inline-block;
	margin-right: -4px;
	height: 293px;
	position: relative;
	text-align: center;
	vertical-align: top;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.services_ul > li > a {
	display: block;
	height: 100%;
	color: #FFF;
	text-align: center;
}

/************************************/
/* END HOMEPAGE */
/************************************/


/************************************/
/* FOOTER */
/************************************/

footer {
	background-color: #3841a6;
}

.socialMedia {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 20px;
}

.socialMedia > li {
	display: inline-block;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #FFF;
    height: 50px;
	margin-right: 6px;
}

.socialMedia > li:last-child {
	margin-right: 0;
}

.socialMedia > li > a {
	display: block;
	width: 100%;
	height: 100%;
}

.socialMedia .icon-facebook, .socialMedia .icon-twitter, .socialMedia .icon-linkedin {
	font-size: 30px;
	color: #FFF;
	text-align: center;
}

.footerLangs {
	text-align: center;
	padding-bottom: 20px;
}

.footerLangs > li {
	display: inline-block;
}

.footerLangs > li > a {
	display: block;
}

.footerLangs > li > a > p {
	color: #FFF;
	font-size: 15px;
	text-transform: uppercase;
}

.morada, .contactos {
	text-align: center;
	color: #FFF;
	font-size: 15px;
}

.contactos a {
	display: inline-block;
	color: #FFF;
}

footer .icon-kriacao {
	font-size: 50px;
	color: #FFF;
	text-align: center;
}

footer .icon-kriacao a {
	display: block;
	height: 100%;
}


/************************************/
/* END FOOTER */
/************************************/

/************************************/
/* QUEM SOMOS */
/************************************/
	
.pageTitleBox {
	background-color: #4b57dd;
	text-align: center;
}

.pageTitle {
	color: #FFF;
	padding: 45px 0 35px;
}

.pageBanner {
	width: 100%;
    display: block;
    height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.middleTextWrapper {
	background-color: #FFF !important;
}

.middleTextL {
	padding: 70px 0;
	padding-right: 50px;
	position: relative;
	padding-left: 15px;
}

.QSdottedL:after {
	width: 1px;
	height: 100%;
	background-color: rgba(0,0,0,0);
	position: absolute;
	right: 0;
	content: '';
	top: 0;
	background-color: rgba(0,0,0,0);
	border-right: 1px dotted #808080;
}

.QSdottedR:after {
	width: 1px;
	height: 100%;
	background-color: rgba(0,0,0,0);
	position: absolute;
	left: 0;
	content: '';
	top: 0;
	background-color: rgba(0,0,0,0);
	border-left: 1px dotted #808080;
}

.middleTextR {
	padding: 70px 0;
	padding-left: 50px;
	padding-right: 15px;
	
}

.quemSomosSubTitle {
	color: #4b57dd;
	padding-bottom: 25px;
}

.bottomText_subtitle {
	padding-bottom: 20px;
}

.bottomTextWrapper {
	background-color: #edeefc;
}
	
/************************************/
/* END QUEM SOMOS */
/************************************/


/************************************/
/* SERVIÇOS */
/************************************/

.s4Left {
	padding: 0 50px 0 15px;
}

.s4Right {
	padding: 0 15px 0 50px;
}

#servicos4 .QSdottedL:after, #servicos4 .QSdottedR:after, #servicos1 .QSdottedL:after, #servicos1 .QSdottedR:after, #servicos3 .QSdottedL:after, #servicos3 .QSdottedR:after {
	height: 100%;
	margin-top: 0;
}

#servicos4 ul, #servicos1 ul, #servicos2 ul, #servicos3 ul {
	list-style-type: disc;
	padding-left: 20px;
}

.s1BottomContent {
	background-color: #edeefc;
}

.s1BottomContent .bottomText_content {
	padding-bottom: 40px;
}

.s1BottomContent_ul {
	list-style: none !important;
	padding: 0 !important;
}

.s1BottomContent_ul > li {
	display: inline-block;
	vertical-align: top;
	margin-right: -4px;
	width: 14.2%;
	position: relative;
	z-index: 2;
}

.circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #FFF;
	background-color: #4b57dd;
	text-align: center;
	margin: 0 auto;
}

.circle .icon-arrowRight, .circle .icon-arrowDown {
	font-size: 20px;
	color: #FFF;
	font-weight: 400;
}

.circle .icon-gear {
	font-size: 30px;
	color: #FFF;
}

.circleTitle {
	max-width: 150px;
	text-align: center;
	padding: 0 10px;
	padding-top: 20px;
	color: #4b57dd;
	margin: 0 auto;
}

.circleLine {
	position: absolute;
    width: 100%;
    height: 1px;
    background-color: #4b57dd;
    top: 25px;
    left: 65%;
    z-index: 2;
}

.s1BottomContent_ul > li:last-child .circleLine {
	display: none;
}

.s1Text_content {
	text-align: left;
}

.metodologiaS2_ul {
	list-style: none !important;
	padding: 0 !important;
}

.metodologiaS2_ul > li {
	background-color: #edeefc;
	width: calc(50% - 10px);
	margin-right: -4px;
	display: inline-block;
	vertical-align: top;
}

.metodologiaS2_ul > li:nth-child(odd) {
	margin-right: 10px;
	text-align: right;
	margin-top: 10px;
}

.metodologiaS2_ul > li:nth-child(even) {
	margin-left: 10px;
	text-align: left;
	margin-top: 20px;
}


.metodologiaS2_ul > li > p {
	display: inline-block;
	color: #4b57dd;
	padding-top: 17px;
}

.metodologiaS2_ul > li:first-child {
	margin-top: 0;
}

.metodologiaS2_ul > li:nth-child(2) {
	margin-top: 10px;
}

.numberBox {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	background-color: #4b57dd;
	text-align: center;
	width: 60px;
	height: 60px;
}

.metodologiaS2_ul > li:nth-child(even) .numberBox {
	float: left;
}

.metodologiaS2_ul > li:nth-child(odd) .numberBox {
	float: right;
}

.metodologiaS2_ul > li:nth-child(odd) > p {
	padding-right: 20px;
}

.metodologiaS2_ul > li:nth-child(even) > p {
	padding-left: 20px;
}

.ferramentasP {
	padding-bottom: 35px;
}

.s2SubTitle {
	padding-bottom: 35px;
	color: #4b57dd;
}

.s2BottomContent ul > li {
	padding-left: 10px;
}

.s3MiddleText_subTitle {
	padding: 30px 0 25px;
}

.s5SubTitle_top {
	padding-bottom: 30px;
}

.s5Topics {
	
}

.s5TopicsBorder {
	border-right: 1px dotted #808080;
}

.s5TopicsBorder:last-of-type {
	border-right: none;
}

.s5BottomContent ul {
	list-style: disc;
	padding-left: 20px;
}

#servicos5 form input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #cccccc;
	height: 40px;
	margin-bottom: 12px;
	padding-left: 10px;
}

#servicos5 form p {
	margin-bottom: 5px;
}


#servicos5 form textarea {
	width: 100%;
	padding-left: 10px;
	padding-top: 5px;
	min-height: 120px;
	border-radius: 4px;
	border: 1px solid #cccccc;
	margin-bottom: 10px;
}

#servicos5 form button {
	font-size: 16px;
	border: 1px solid #4b57dd;
	color: #4b57dd;
	background-color: #f2f2f2;
	width: 151px;
	height: 44px;
}

#servicos5 .formWrapper {
	background-color: rgba(237,238,252,.3);
}



/************************************/
/* END SERVIÇOS */
/************************************/

/************************************/
/* CANDIDATOS */
/************************************/

#candidatos form input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #cccccc;
	height: 40px;
	margin-bottom: 12px;
	padding-left: 10px;
}

#candidatos form p {
	margin-bottom: 5px;
}

input[name=attachment] {
	border-radius: 0 !important;
	border: none !important;
	padding-left: 0 !important;
}

#candidatos form textarea {
	width: 100%;
	padding-left: 10px;
	padding-top: 5px;
	min-height: 120px;
	border-radius: 4px;
	border: 1px solid #cccccc;
	margin-bottom: 10px;
}

#candidatos form button {
	font-size: 16px;
	border: 1px solid #4b57dd;
	color: #4b57dd;
	background-color: #f2f2f2;
	width: 151px;
	height: 44px;
}


/************************************/
/* END CANDIDATOS */
/************************************/


/************************************/
/* CONTACTOS */
/************************************/

.contactoItem {
	color: #4b57dd;
	padding-bottom: 40px;
}

#contactos iframe {
	height: 400px;
}

/************************************/
/* END CONTACTOS */
/************************************/


/************************************/
/* AREAS */
/************************************/

.areasWrapper {
	background-color: #4b57dd;
}

.areasWrapper div, .areasWrapper p {
	color: #FFF;
}

.iconBox {
	width: 80px;
	height: 80px;
	border: 1px solid #FFF;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 20px;
}

.iconBox > div {
	font-size: 40px;
}

.areaItem {
	margin-bottom: 50px;
}

.areasWrapper div.areaItem:nth-last-of-type(-n+4) {
	margin-bottom: 0;
}

/************************************/
/* END AREAS */
/************************************/



/************************************/
/* REDE */
/************************************/	
	
.countriesList > li {
	border: 1px solid #cccccc;
	border-radius: 4px;
	width: 100%;
	margin-bottom: 6px;
	height: 40px;
	padding: 4px 10px;
}

.countriesList > li:last-child {
	margin-bottom: 0;
}

.flag {
	width: 32px;
	height: 32px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}

.countriesList > li > p {
	display: inline-block;
	vertical-align: middle;
}
	
	
/************************************/
/* END REDE */
/************************************/	




/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/















/************************************/
/************************************/
/* TABLET */
/************************************/
/************************************/

@media (max-width:1200px) {
	
	.hideDesktop {
		display: block;
	}
	
	.hideMobile {
		display: none;
	}

    .col-sm-15 {
        width: 20%;
        float: left;
    }
	
	.size36 {
		font-size: 30px;
	}

	.size30 {
		font-size: 26px;
	}

	.size20 {
		font-size: 18px;
	}
	
	.margin70 {
		margin-bottom: 60px;
	}

	.padding70 {
		padding-bottom: 60px;
	}
	
	.sectionP70 {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.sectionM70 {
		margin-top: 60px;
		margin-bottom: 60px;
	}


/************************************/
/* HEADER */
/************************************/
	
	

	.navBox {
		top: 80px;
	}
	
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/

	#imageHomepage {
		display: block;
	    width: 100vw;
	    height: 100vh;
	    background-position: center center;
	    background-repeat: no-repeat;
	    background-size: cover;
		}

	#videoHomepage {
		display: none;
	}
	
	.services_ul > li {
		width: 100%;
	}
	
/************************************/
/* END HOMEPAGE */
/************************************/


/************************************/
/* FOOTER */
/************************************/

	.socialMedia {
		padding-top: 60px;
	}
	

/************************************/
/* END FOOTER */
/************************************/

/************************************/
/* QUEM SOMOS */
/************************************/
	
	/*.pageBanner {
		background-attachment: initial;
	}*/

	.middleTextL {
		padding: 60px 0;
		padding-right: 30px;
		position: relative;
		padding-left: 15px;
	}

	.QSdottedL:after, .QSdottedR:after {
		height: calc(100% - 120px);
		margin-top: 60px;
	}

	.middleTextR {
		padding: 60px 0;
		padding-left: 30px;
		padding-right: 15px;
	}
	
	
	
/************************************/
/* END QUEM SOMOS */
/************************************/	

	
/************************************/
/* SERVIÇOS */
/************************************/

	.s4Left {
		padding: 0 30px 0 15px;
	}

	.s4Right {
		padding: 0 15px 0 30px;
	}

	#servicos4 .QSdottedL:after, #servicos4 .QSdottedR:after, #servicos1 .QSdottedL:after, #servicos1 .QSdottedR:after, #servicos3 .QSdottedL:after, #servicos3 .QSdottedR:after {
		height: 100%;
		margin-top: 0;
	}
	
	.metodologiaS2_ul > li:nth-child(odd) > p {
		padding-right: 10px;
	}

	.metodologiaS2_ul > li:nth-child(even) > p {
		padding-left: 10px;
	}
	
	.numberBox {
		width: 50px;
		height: 50px;
	}
	
	.metodologiaS2_ul > li > p {
		padding-top: 12px;	
	}
	
	.s1Text_content {
		text-align: left;
		margin-bottom: 40px;
	}
	
	.s5TopicsBorder:nth-of-type(even) {
		border-right: none;
	}
	
	.s5TopicsBorder {
		margin-bottom: 30px;
	}
	
	.s5TopicsBorder:nth-last-of-type(-n+2) {
		margin-bottom: 0;
	}
	
/************************************/
/* END SERVIÇOS */
/************************************/
	
	
	
	
/************************************/
/* CANDIDATOS */
/************************************/




/************************************/
/* END CANDIDATOS */
/************************************/
	
	
	
/************************************/
/* CONTACTOS */
/************************************/





/************************************/
/* END CONTACTOS */
/************************************/	


/************************************/
/* AREAS */
/************************************/


	

/************************************/
/* END AREAS */
/************************************/

/************************************/
/* REDE */
/************************************/	
	
	
	
	
	
/************************************/
/* END REDE */
/************************************/	

	
}






/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/



/************************************/
/************************************/
/*   Medium Devices, Desktops */
/************************************/
/************************************/

@media (min-width:992px) and (max-width:1200px) {
	
	.col-md-15 {
        width: 20%;
        float: left;
    }
	
	.circleLine {
    	width: calc(100% - 44px);
	}
	
	.s1Text_content {
		text-align: right;
		margin-bottom: 0;
	}
	
	.s5TopicsBorder:nth-of-type(even) {
		border-right: 1px dotted #808080;
	}
	
	.s5TopicsBorder:last-of-type {
		border-right: none;
	}
	
	s5TopicsBorder {
		padding-bottom: 0;
	}
	
	
}




/************************************/
/************************************/
/*  Medium Devices, Desktops END */
/************************************/
/************************************/











/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
















/************************************/
/************************************/
/* MOBILE */
/************************************/
/************************************/

@media (max-width:767px) {

	.hideMobile {
		display: none;
	}
	
	.col-xs-15 {
		width: 20%;
		float: left;
	}
	
	.pads {
		padding: 0;
	}
	
	.size36 {
		font-size: 24px;
	}

	.size30 {
		font-size: 22px;
	}

	.size20 {
		font-size: 16px;
	}
	
	.margin70 {
		margin-bottom: 40px;
	}

	.padding70 {
		padding-bottom: 40px;
	}
	
	.sectionP70 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.sectionM70 {
		margin-top: 40px;
		margin-bottom: 40px;
	}


/************************************/
/* HEADER */
/************************************/
	
	.logo {
		max-width: 200px;
		margin: 15px 0 0;
	}
	
	.navBox {
		width: 280px;
		top: 55px;	
	}
	
	#stickyHeader .burger {
		margin: 15px 0 10px;
	}
	
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/
	
	#stickyHeader {
		height: 70px;
	}
	
	.services_ul > li {
		height: 220px;
	}

	.homepageVideo .videoText_box {
		margin-right: 20px;
		width: 135px;
	}

	.videoText_box a {
		padding: 14px 20px;
	}


	.videoText_box_double {
		margin-right: 0;
	}

	.videoText_box_double .videoText_box {
		width: 135px;
	}

	.videoText_box_double .videoText_box a {
		padding: 14px 15px;
	}

	#candidatosBtn {
		width: 170px;
	}


/************************************/
/* END HOMEPAGE */
/************************************/  

	
/************************************/
/* FOOTER */
/************************************/
	
	.socialMedia {
		padding-top: 40px;
	}
	
	
/************************************/
/* END FOOTER */
/************************************/


/************************************/
/* QUEM SOMOS */
/************************************/
	
	.pageTitle {
		padding: 20px 0;
	}
	
	.pageBanner {
		height: 200px;
		background-attachment: initial;
	}
	
	.contentBackgroundQSL {
		position: absolute;
		width: 100%;
		left: 0;
	}

	.contentBackgroundQSR {
		position: absolute;
		width: 100%;
		right: 0;
		background-color: #f6f7fd;
		bottom: 0;
	}
	
	.middleTextL {
		padding: 40px 0;
		padding-right: 15px;
		position: relative;
		padding-left: 15px;
	}
	
	#servicos3 .middleTextL {
		padding: 40px 0;
		padding-right: 15px;
		position: relative;
		padding-left: 15px;
	}

	.QSdottedL:after {
		width: calc(100% - 30px);
		height: 1px;
		background-color: rgba(0,0,0,0);
		position: absolute;
		right: inherit;
		content: '';
		top: inherit;
		left: 0;
		bottom: 0;
		border-bottom: 1px dotted #808080;
		margin-top: 0;
		margin-left: 15px;
	}

	.middleTextR {
		padding: 40px 0;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#servicos3 .middleTextR {
		padding: 40px 0;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.bottomText_content {
		padding-bottom: 20px;
	}
	
	.bottomTextWrapper .container .row:last-of-type .col-xs-12:last-of-type .bottomText_content {
		padding-bottom: 0;
	}
	
	
/************************************/
/* END QUEM SOMOS */
/************************************/	

/************************************/
/* SERVIÇOS */
/************************************/

	#servicos4 .QSdottedL:after, #servicos1 .QSdottedL:after, #servicos3 .QSdottedL:after {
		height: 1px;
	}
	
	.s4Left {
		padding: 0 15px;
	}
	
	.s4Right {
		margin-top: 20px;
		padding: 0 15px;
	}
	
	.s1BottomContent_ul > li {
		width: 33.33%;
		padding-bottom: 20px;
	}
	
	.circleLine {
		left: 60%;
	}
	
	.s1BottomContent_ul > li:nth-child(3n) .circleLine {
		display: none;
	}
	
	.metodologiaS2_ul > li {
		width: 100%;
	}
	
	.metodologiaS2_ul > li > p {
    	padding-top: 15px;
	}
	
	.metodologiaS2_ul > li:nth-child(odd) {
		margin-right: 0;
		margin-top: 20px;
	}
	
	.metodologiaS2_ul > li:nth-child(even) {
		margin-left: 0;
	}
	
	.metodologiaS2_ul > li:nth-child(2) {
		margin-top: 20px;
	}
	
	.metodologiaS2_ul > li:first-child {
    	margin-top: 0;
	}
	
	.ferramentasP {
		padding-top: 20px;
	}
	
	.servicos3TopText {
		padding-bottom: 0;
	}
	
	
	.s5TopicsBorder {
		border-right: none;
		margin-bottom: 0;
	}
	
	.s5TopicsBorder:nth-last-of-type(-n+2) {
		margin-bottom: 0px;
	}
	
	.s5TopicsBorder:last-of-type {
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.s5Topics {
		border-bottom: 1px dotted #808080;
		padding-bottom: 15px;
		padding-top: 15px;
	}
	
	.s5TopicsBorder:last-of-type .s5Topics {
		border-bottom: none;
		padding-bottom: 0;
	}
	
	.s5TopicsBorder:first-of-type .s5Topics {
		padding-top: 0;
	}
	
/************************************/
/* END SERVIÇOS */
/************************************/	
	
	
	
	
	
	
	
/************************************/
/* CANDIDATOS */
/************************************/




/************************************/
/* END CANDIDATOS */
/************************************/
	
	
/************************************/
/* CONTACTOS */
/************************************/

.contactoItem {
	padding-bottom: 20px;
}

.contactoContent {
	padding-bottom: 20px;
}

#contactos iframe {
	height: 350px;
	width: 100%;
}

/************************************/
/* END CONTACTOS */
/************************************/	
	
	
/************************************/
/* AREAS */
/************************************/

	.areasWrapper div.areaItem {
		margin-bottom: 30px;
	}	
	
	.areasWrapper div.areaItem:nth-last-of-type(-n+4) {
		margin-bottom: 30px;
	}
	
	.areasWrapper div.areaItem:nth-last-of-type(-n+2) {
		margin-bottom: 0;
	}
	

/************************************/
/* END AREAS */
/************************************/	
	

	
	
	
/************************************/
/* REDE */
/************************************/	
	
	.redeMundo {
		margin: 30px 0;
	}
	
	.countriesList > li {
		width: calc(50% - 10px);
		margin-right: 8px;
		display: inline-block;
		padding: 4px 5px 4px 5px;
	}
	
/************************************/
/* END REDE */
/************************************/	
	
	
}







