/* Conteudo */
.body_ctn {
    min-height: 300px;
    background-color: #000;
}
.body_ctn ._head {
	position: relative;
}
.body_ctn>._head h1._titulo {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    color: #FFF;
    padding-bottom: 10px;
}
.body_ctn>._head h1._titulo span:after {
    content: '';
    background-color: var(--terciaria);
    height: 1px;
    width: 200px;
    display: inline-block;
    margin-top: 10px;

    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    position: absolute;
}
.body_ctn>._head h1._titulo span:before {
    content: '';
    background-color: #c9c9c9;
    height: 1px;
    display: inline-block;
    margin-top: 10px;
    
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    position: absolute;
}

.body_ctn ._body h4 {
	font-size: 24px;
	font-weight: bold;
}

._notfound {
	min-height: 300px
}

/* Comum */
h1 {
    font-size: 60px;
    font-weight: 600;
}
h2 {
    font-size: 40px;
    font-weight: 600;
}
h3 {
    font-size: 30px;
    font-weight: 600;
}

@media(max-width:767px) {
	.page_ctn>._head h1._titulo {
		font-size: 32px;
	}
	.page_ctn img {
		max-width: 100%;
		height: auto
	}
}