/*****************************************
/* HIGHSSPOTUGAL 360 - Langing Page
/* version: 0.1
/* date: 24/05/2018
/* author: realizecode
******************************************/
 * {
 	box-sizing: border-box;
 }

 img{
 	max-width: 100%;
 }

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "open sans", sans-serif;
	height: 100%;
	font-size: 16px;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-family: montserrat, "open sans", sans-serif;
}

a{
	color: #fff;
	letter-spacing: .03em;
	text-decoration: none;
}



small{
	font-size: 80%;
	font-weight: 300;
}
.upperCase {
	text-transform: uppercase;
}

.textCenter {
	text-align: center
}
/*GRID*/
header, main {
	width: 100%;
	height: 100vh;
}
footer {
	width: 100%;
	height: 100%;
}
/*HEADER*/
header {
	background-image: url('../images/header-background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	position: relative;
}

h1 {
	width:80%;
	max-width: 520px;
}

/*MAIN*/
main {
	background-image: url('../images/main-background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	position: relative;
}

main img {
	position: absolute;
	top: 15%;
	left:50%;
	-webkit-transform: translate(-50%, -15%);
  	transform: translate(-50%, -15%);
	height: 70%;
}

/*FOOTER*/
footer {
	background-color: #222222;
	color:#fff;
	display: grid;
	position: relative;
}

footer nav {
	padding: 20px;
	align-self: center;
	justify-self:center;
}

nav.menuHPSC li {
	margin-bottom: 20px;
} 

nav.menuHPSC a {
	font-weight: 700;
} 
nav.menuHPSC a:hover, nav.menuHPSC a.active{
	color: #F47629;
}
#direitos{
	padding: 0 20px 20px;
}

#direitos small{
	font-weight: bold!important;
}

.barraLogos {
    padding-bottom:20px;
    max-width: 800px;
    margin: 0 auto;
}
/* SCROLL BOTTOM */
.scrollArrow a {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font : normal 400 1.5rem 'montserrat', sans-serif;
  transition: opacity .3s;
}
.scrollArrow a:hover {
  opacity: .5;
}

#sectionHeader .scrollArrow a, #sectionMain .scrollArrow a {
  padding-top: 50px;
}

#sectionHeader .scrollArrow a span, #sectionMain .scrollArrow a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 1px solid #fff;
  border-radius: 100%;
  box-sizing: border-box;
}
#sectionHeader .scrollArrow a span::after, #sectionMain .scrollArrow a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
#sectionHeader .scrollArrow a  span::before, #sectionMain .scrollArrow a span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb03 3s infinite;
  animation: sdb03 3s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*numbers*/
ol {
	counter-reset:li; /* Initiate a counter */
	margin-left:0; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */
}
ol > li {
	position:relative; /* Create a positioning context */
	margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
	padding:4px 8px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
}
ol > li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top:4px;
	left:-2em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	width:2em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it (Camino 2 is one example) */
	margin-right:8px;
	padding:8px;
	border-radius:50%;
	color:#222;
	background:#FFF;
	font-weight:bold;
	font-family: "open sans", sans-serif;
	text-align:center;
	font-size: 1rem;
}
li ol, li ul {
	margin-top:6px;
}
ol ol li:last-child {
	margin-bottom:0;
}

.visible-mobile {
	display: block;
}

.hidden-mobile {
	display: none;
}

.clearFloat {
	clear: both;
}



@media screen and (max-width:767px){
	.centerBoxMobile{
		position: absolute;
		top: 50%;
		left:50%;
		-webkit-transform: translate(-50%, -50%);
	  	transform: translate(-50%, -50%);
	}
}


@media screen and (min-width:768px) {

	body {
		display: flex;
	}

	header, main {
		width: 100%;
		height: auto;
		min-height: 100vh;
		overflow: auto;
	}
	.visible-mobile {
		display: none;
	}

	.hidden-mobile {
		display: block;
	}

	.grid-md-3-5{
		float: left;
		width: 60%
	}
	.grid-md-2-5{
		float: left;
		width: 40%
	}

	#sectionHeader{
		padding: 25px 50px;
		display: grid;
	}

	h1 img {
		margin-bottom: 20px;
	}

	main svg {
		height: 85%;
		position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    padding: 10px;
	}
	nav.menuHPSC li {
    	margin-bottom: 10px;
	}

	svg a.svglink path{
	    opacity: .8;
	    transform: translate(0,0);
	   /* transform: scale(1,1);*/
	   
	}

	svg a.svglink:hover{
		  cursor:pointer;
	}


	svg a.active path {
	    transition: all 1s;
		-webkit-transition: all 1s;
		opacity: 1;
		/*transform: translate(-0.5%,-0.5%) scale(1.1);*/
	 	fill:#333!important;
	 	stroke:#333!important;
	 	stroke-width: 1!important;
		/*transform-origin: top;*/
	}

	#direitos{
		width: 100%;
	    padding-top: 30px;
	    color: white;
	    align-self: self-end;
	    justify-self: end;
	}
	
}

@media screen and (min-width:1200px) {
	.visible-mobile {
		display: none;
	}

	.hidden-mobile {
		display: block;
	}
	.grid-lg-2-3{
		float: left;
		width: 66.66%
	}
	.grid-lg-1-3{
		float: left;
		width: 33.33%
	}
	header {
	background-image: url('../images/section-left-background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 100%;
	position: relative;
	}
	h1 img {
		margin-bottom: 40px;
	}
	#sectionHeader{
		padding: 50px 100px;
	}
	.two-columns {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 40px;
		column-gap: 40px;
		-moz-column-gap: 40px;
	}

	nav.menuHPSC li {
    	margin-bottom: 13px;
	}


	#direitos{
	    padding-top: 30px;
	}
}