html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	min-height: 100vh;
	font-family: 'Montserrat', sans-serif;
	color: #152843;
	background-image: url(../assets/fundo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;

}

.title {
	font-size: 36px;
	font-weight: 400;
	color: #4d4d4f;
	margin-bottom: 25px;
}

.title:after {
	content: "";
	width: 30px;
	margin: 0 auto;
	height: 2px;
	background-color: #bbbdbf;
	display: block;
	margin-top: 15px;
}

.sub-title {
	font-size: 18px;
	font-weight: 300;
	color: #77787b;
}

.container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px; 
}


.cont-wrap {
	margin-top: 50px;
	font-size: 18px;
}

.cont-text {
	font-weight: 400;
}

.c-title {
	color: #4d4d4f;
	font-weight: 700;
}

.c-text {
	color: #77787b;
	font-weight: 300;
}
.c-line {
	display: inline-block;
}
.c-line:first-child {
	margin-right: 15px;
}

.m20 {
	margin: 2px 0;
}
.content {

	text-align: center;
}


.logo {
	margin-bottom: 50px;
}

.logo img {
	width: 550px;
}

.left {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: calc((100vw - 500px)/2);
	background-image: url(../assets/left.svg);
	z-index: -1;
	background-size: 100%;
}

.right {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: calc((100vw - 500px)/2);
	background-image: url(../assets/right.svg);
	z-index: -1;
	background-size: 100%;
}

a, a:visited{
	color: #77787b;
	text-decoration: underline;
}

a:hover, a:focus, a:active {
	color: black;
}
.copy {
	margin-top: 50px;
	font-size: 12px;
}

@media(max-width: 1600px){
	body {
		background-size: 110%;
	}
}

@media(max-width: 1400px){
	body {
		background-size: 125%;
	}
}

@media(max-width: 1200px){
	body {
		background-size: 150%;
	}
}

@media(max-width: 991px){
	body {
		background-size: 150%;
	}
	.logo img {
		width: 290px;
	}
	.title {
		font-size: 30px;
	}

	.sub-title, .cont-wrap {
		font-size: 16px;
	}
}

@media(max-width: 850px){
	body {
		background-size: 175%;
	}
}


@media(max-width: 767px){
	body {
		background-size: 200%;
	}
}

@media(max-width: 630px){
	body {
		background-size: 225%;
	}
}

@media(max-width: 540px){
	body {
		background-size: 250%;
	}
}

@media(max-width: 500px){
	body {
		background-size: 275%;
	}
}

@media(max-width: 450px){
	body {
		background-size: 300%;
	}
}


@media(max-width: 420px){
	body {
		background-image: none;
	}
}

@media(min-width: 991px){
	.content {
		height: calc(100vh - 125px);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.container {
		padding-top: 75px;
	}
}

/*popup video*/
.overlay {
  width: 100%;
  background: rgba(0,0,0,.75);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.videoBox {
  position: fixed;
  width: 90%;
  left: 50%;
  top:50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 20px;
  /*background: #fff;*/
  text-align: center;
  border-radius: 5px;
}
.videoBox video {
  width: 100%;
}
.close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: -18px;
  right: -18px;
  display: block;
  background: transparent url(/files/close.png) no-repeat center center;
  opacity: .8;
}
.close:hover {
  opacity: 1;
}
@media (min-width: 767px) {
  .videoBox {
    width: 50%;
  }
}