@charset "UTF-8";

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}

}

@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}

}

@media (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1170px;
	}
}

.row::before {
	display: table;
    content: " ";
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

html {
	font-size: 10px;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
}

/* General */
body {
	background: #780102;
	color: #333333;
	max-width: 1920px;
	margin: 0 auto;
	box-shadow: 0 0 100px rgba(0,0,0,.1);
	font-family: 'Mont', sans-serif;
	border-bottom: 3px solid #830201;
	font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
}

h2 {
	font-size: 1.5em;
	margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

h3 {
	font-size: 1.17em;
	margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

body p, body li {
	line-height: 1.6;
}
.stop-scroll {
	overflow: hidden;
}
.wrapper {
	background: #fff;
	box-shadow: 0 5px 30px rgba(0,0,0,.1);
}
.header {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 15;
	background: #fff;
}
.header__fixed {
	position: fixed;
	transition: all .5s ease-out;
	z-index: 999;
}
.header__fixed.scrolled {
	background: rgba(255,255,255,.9);
}
.header__fixed.is-visible {
	top: 0;
}
.header img {
	height: 65px;
	transition: all .5s ease-out;
}
.header__fixed.scrolled img {
	height: 35px;
}
.header__hamburger {
	position: fixed;
    float: none;
    right: 15px;
	height: 23px;
	width: 27px;
	overflow: hidden;
	text-indent: -9999px;
	border: 0;
	background: transparent;
	padding: 0;
	outline: 0;
	cursor: pointer;
	top: 33px;
}
.scrolled .header__hamburger {
	top: 20px;
}
.header__hamburger span {
	top: 50%;
	margin-top: -2.5px;
	left: 0;
	right: 0;
	position: absolute;
	height: 2px;
	background: #780102;
	display: block;
	transition: background .3s linear;
	-moz-transition: background .3s linear;
	-webkit-transition: background .3s linear;
	-webkit-backface-visibility: hidden;
}
.header__hamburger span:before, .header__hamburger span:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #780102;
	position: absolute;
}
.header__hamburger span:before {
	transition: top .3s .3s, -webkit-transform .3s 0s;
	-moz-transition: top .3s .3s, -webkit-transform .3s 0s;
	-webkit-transition: top .3s .3s, -webkit-transform .3s 0s;
	top: -8px;
	-webkit-transform: rotate(0);
}
.header__hamburger span:after {
	transition: bottom .2s .3s, -webkit-transform .3s 0s;
	-moz-transition: bottom .2s .3s, -webkit-transform .3s 0s;
	-webkit-transition: bottom .2s .3s, -webkit-transform .3s 0s;
	bottom: -8px;
	-webkit-transform: rotate(0);
}
.header__hamburger.is-active span {
	background: transparent;
}
.header__hamburger.is-active span:before {
	transition: top .3s 0s, transform .3s .3s;
	top: 0;
	background: #780102;
	transform: rotate(45deg);
}
.header__hamburger.is-active span:after {
	transition: bottom .3s 0s, transform .3s .3s;
	bottom: 0;
	transform: rotate(-45deg);
	background: #780102;
}
.header__menu .btn {
	border: 0;
	padding: 15px 20px 14px 20px;
}
.header__menu .btn:after {
	display: none;
}
.mobile__menu {
	background: rgba(255,255,255,.9);
	position: fixed;
	right: -100%;
	height: 100%;
	width: 100%;
	z-index: 10;
	opacity: 0;
	margin-top: -30px;
	transition: all .5s ease-out;
}
.mobile__menu.is-visible {
	right: 0;
	opacity: 1;
	z-index: 999;
}
.mobile__menu ul {
	margin: 45px 15px 0 15px;
	padding: 0;
}
.mobile__menu li {
	display: block;
	margin: 0 0 15px 0;
}
.mobile__menu a {
	font-size: 16px;
	color: #780102;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
}
.header li {
	position: relative;
}
.header ul ul {
	display: none;
	position: absolute;
	top: 100px;
	left: 0;
	text-align: left;
	width: 350px;
	z-index: 9999;
	margin: 0;
	padding: 0;
}
.header ul ul li {
	display: block;
	margin: 0;
}
.header ul ul a {
	background: rgba(255,255,255,.95);
	display: block;
	padding: 5px 25px;
	width: 100%;
	font-size: 13px;
	color: #333;
}
.header ul ul li:last-child a {
	padding-bottom: 20px;
}
.header ul li:hover ul {
	display: block;
}
.header__logo {
	background: #780102;
	padding: 20px;
	border-bottom: 3px solid #fff;
	display: inline-block;
	margin: 0 0 -20px 0;
	position: relative;
	z-index: 9999;
}

/* Homepage */
.video__holder {
	position: relative;
	margin-top: 94px;
	overflow: hidden;
	border-bottom: 3px solid #a2a2a2;
	background: url('../img/video.jpg')no-repeat center;
}
.video__holder:before {
	content:'';
	display: block;
	padding-top: 50%;
}
.video__holder video {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.intro__box {
	padding: 30px;
	background: #fff;
	position: relative;
	z-index: 1;
	transform-style: preserve-3d;
	margin-top: -20px;
}
/* .intro__box:before {
	content: '';
	width: 50%;
	height: 100%;
	display: block;
	left: -20px;
	bottom: -20px;
	position: absolute;
	background-image: linear-gradient(to bottom, #ffffff, #efefef);
	transform: translateZ(-1px);
} */
.intro__box h2 {
	margin: 0 0 20px 0;
	color: #830201;
	text-align: center;
}
.intro__box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.intro__box li {
	display: block;
	margin: 0 0 20px 0;
	text-align: center;
	padding: 15px;
	transition: all .5s ease-in-out;
	background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0), #efefef);
	background-repeat: no-repeat;
	background-position: center 120px;
}
.intro__box img {
	width: 30px;
	margin: 0 auto 15px auto;
	display: block;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .3;
	transition: all .3s ease-in-out;
}
.intro__box li:hover {
	background-position: center 0px;
}
.intro__box li:hover img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	opacity: 1;
}
.intro__box a {
	text-decoration: none;
	color: #333333;
	font-size: 16px;
}

.home__intro {
	background: #f9f9f9;
}

.home__partners {
	background: url('../img/bg-socios.jpg')no-repeat center;
	padding: 30px 0 60px 0;
	color: #fff;
	background-size: cover;
	position: relative;
}
.home__partners:before {
	content: 'Franceschini e Miranda';
	font-family: 'Libre Baskerville', serif;
	font-size: 32px;
	color: rgba(0,0,0,.1);
	position: absolute;
	top: 20px;
	left: 80px;
	font-style: italic;
}
.home__partners h2:before {
	content: '';
	width: 50px;
	height: 1px;
	background: #fff;
	display: inline-block;
	position: relative;
	top: -6px;
	margin: 0 15px 0 0;
}
.home__partners a {
	text-decoration: none;
	color: #fff;
}
.home__partners h3 {
	padding-left: 35px;
}
.home__partners--name span:last-child {
	display: block;
	font-size: 130%;
}
.home__partners--bg {
	position: relative;
}
.home__partners--bg + .home__partners--bg {
	margin: 20px 0 0 0;
}
.home__partners--bg::before {
	position: absolute;
	bottom: 0;
	width: 90%;
	right: 0;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.newsletter__holder {
	margin-top: -30px;
	position: relative;
	z-index: 5;
	background: #f9f9f9;
	border-top: 3px solid #a2a2a2;
}
.box__newsletter {
	padding: 20px;
	border-top: 3px solid #a2a2a2;
	box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.26);
	background: #fff;
	margin-top: -30px;
}
.box__newsletter h2 {
	color: #830201;
	margin: 0 0 10px 0;
}

.form-group {
	margin: 0 0 15px 0;
}
.form-group label {
	color: #666666;
	font-size: 16px;
	margin: 0 0 5px 0;
	display: block;
}
.form-control {
	box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	height: 50px;
	width: 100%;
	padding: 0 15px;
}
textarea.form-control {
	height: 150px;
}
.wpcf7-submit {
	max-width: 120px;
	float: right;
}

.btn, .form-send input {
	display: block;
	border: 0;
	width: 100%;
	background-color: #830201;
	padding: 16px 20px 14px 45px;
	color: #fff;
	font-weight: bold;
	transition: all .3s ease-in-out;
}
.btn-primary, .form-send input {
	background-image: url('../img/arrow-right.svg');
	background-repeat: no-repeat;
	background-position: -10px center;
}
.btn-primary:hover, .form-send input:hover {
	background-image: url('../img/arrow-right.svg');
	background-repeat: no-repeat;
	background-position: -5px center;
}
.btn:focus {
	outline: 0;
}

.footer__general {
	padding: 30px 0;
	background: #f9f9f9;
}
.footer__general .col-12 {
	margin: 0 0 30px 0;
}
.footer__general .col-12:last-child {
	margin: 0;
}
.footer__general h4 {
	font-size: 16px;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.footer__general ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer__general li {
	display: block;
}
.footer__general li a {
	text-transform: uppercase;
	text-decoration: none;
}
.footer__general a {
	font-family: 'Libre Baskerville', serif;
	font-size: 11px;
	color: #000;
	text-decoration: underline;
}
.footer__general a:hover {
	text-decoration: none;
}
.icon {
	padding: 0 0 0 50px;
	margin: 0 0 20px 0;
}
.icon p {
	font-family: 'Libre Baskerville', serif;
	font-size: 12px;
	margin: 0 0 5px 0;
}
.icon-phone {
	background: url('../img/icon-telefone.svg')no-repeat left center;
}
.icon-mail {
	background: url('../img/icon-email.svg')no-repeat left center;
}

.copyrights {
	padding: 12px 0;
	background: #830201;
	color: #fff;
	text-align: center;
}
.copyrights p {
	font-size: 11px;
	margin: 0;
}
.copyrights a {
	color: #fff;
	text-decoration: underline;
}

/* Inner Pages */
.page__title {
	background: url('../img/bg-title.jpg')no-repeat center;
	background-size: cover;
	margin-top: 94px;
	padding: 0;
}
.page__title h1 {
	line-height: 1;
	color: #fff;
	margin: 0;
	font-weight: 300;
	padding: 45px 20px 25px 20px;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
}
.page__title h1:before {
	content: attr(title);
	display: block;
	font-family: 'Libre Baskerville', serif;
	color: rgba(255,255,255,.05);
	font-style: italic;
	position: absolute;
	top: 30px;
	left: 0;
	font-size: 150%;
	text-align: center;
}
.breadcrumbs__holder {
	padding: 15px 0;
	border-bottom: 1px solid #efefef;
}
.breadcrumbs {
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumbs li {
	margin: 0 5px 0 0;
	list-style: none;
	display: inline-block;
}
.breadcrumbs li:after {
	content: '»';
	margin: 0 10px 0 0;
	font-weight: 300;
}
.breadcrumbs li:last-child:after {
	display: none;
}
.breadcrumbs li:last-child, .breadcrumbs a {
	color: #780102;
}
.breadcrumbs span:last-child {
	color: #333;
}

.sidebar {
	margin: 0 0 20px 0;
	max-height: 1000px;
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
	transition: all .5s ease-in-out;
	overflow: hidden;
	position: relative;
	z-index: 800;
}
.sidebar ul {
	border-top: 1px solid rgba(255,255,255,.1);
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
}
.sidebar li {
	display: block;
}
.sidebar li a {
	font-size: 13px;
	display: block;
	padding: 20px 23px 18px 40px;
	border-bottom: 1px solid #f9f9f9;
	color: #999;
	position: relative;
	transition: all .3s ease-in-out;
	background: #fff;
}
.sidebar a:hover, .sidebar .is-active, .sidebar li a:hover, .sidebar .current_page_item a, .sidebar .current-cat a {
	text-decoration: none;
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(left, #efefef 0%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #efefef 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #efefef 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.sidebar li a:before, .sidebar .current_page_item a:before {
	content: '';
	width: 10px;
	height: 12px;
	background: url('../img/arrow-right-2.svg')no-repeat center;
	position: absolute;
	margin-top: 5px;
	/*top: 50%;*/
	/*margin-top: -6px;*/
	left: 15px;
	transition: all .5s ease-in-out;
	opacity: .2;
	filter: grayscale(100%);
}
.sidebar li a:hover:before, .sidebar .is-active:before, .sidebar .current_page_item a:before, .sidebar .current-cat a:before {
	opacity: 1;
	filter: grayscale(0%);
}

.sidebar.is-hidden {
	max-height: 0;
	overflow: hidden;
}

.sidebar__contact {
	clear: both;
}
.sidebar__contact p, .sidebar__contact a, .sidebar__contact address {
	font-style: normal;
}
.sidebar__contact iframe {
	margin: 0 0 30px 0;
}
.sidebar__contact address, .sidebar__contact a {
	margin: 0 0 20px 0;
	display: block;
	padding: 0;
	color: #333;
	text-decoration: none;
}
.sidebar__contact iframe {
	max-width: 100%;
	height: 320px;
}

.page__content {
	padding: 30px 0 120px 0;
	text-align: justify;
}
.page__content h2 {
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	color: #780102;
	position: relative;
	z-index: 2;
	clear: both;
}
.page__content h2:before {
	width: 20px;
	height: 1px;
	background: #780102;
	content: '';
	display: inline-block;
	position: relative;
	top: -6px;
	margin: 0 10px 0 0;
}
.page__content h2:after {
	content: attr(title);
	color: #f9f9f9;
	font-size: 130%;
	right: 0;
	position: absolute;
	top: -30px;
	z-index: -1;
}
.page__content--box {
	color: #666;
	background: #fff;
	position: relative;
	z-index: 2;
}
.page__content--box img {
	max-width: 100%;
	height: auto!important;
}
.page__content--box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.page__content--box li {
	position: relative;
	padding-left: 30px;
	display: block;
	margin: 0 0 10px 0;
}
.page__content--box li:before {
	content: '';
	width: 10px;
	height: 12px;
	background: url('../img/arrow-right-2.svg')no-repeat center;
	position: absolute;
	/*top: 50%;*/
	/*margin-top: -6px;*/
	margin-top: 5px;
	left: 0px;
	transition: all .5s ease-in-out;
	opacity: 1;
}

.page__content--partners h2 {
	font-size: 22px;
	color: #780102;
	font-family: 'Mont', sans-serif;
	font-style: normal;
	font-weight: 300;
}
.page__content--partners h2:before {
	content: '';
	width: 30px;
	height: 1px;
	background: currentColor;
	display: inline-block;
	position: relative;
	top: -4px;
	margin: 0 15px 0 0;
}
.box__partners {
	text-align: center;
	margin: 0 0 30px 0;
}
.box__partners h3 {
	font-size: 21px;
	color: #780102;
	font-weight: 600;
	margin: 20px 0 0 0;
}
.box__partners--img {
	position: relative;
	max-width: 150px;
	z-index: 2;
	margin: 0 auto 30px auto;
}
.box__partners--img:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -20px;
	left: -20px;
	background-image: linear-gradient(to bottom, #ffffff, #efefef);
	z-index: -1;
}
.box__partners a {
	text-decoration: none;
	color: inherit;
}

.lawyer__linkedin {
	background: #780102 url('../img/icon-linkedin.svg')no-repeat 15px center;
	padding: 15px 15px 13px 47px;
	display: block;
	color: #fff;
}
.lawyer__linkedin:hover, .lawyer__linkedin:focus {
	color: #fff;
	text-decoration: none;
}

.page__content--lawyer h2 {
	margin: 20px 0 15px 0;
}
.page__content--lawyer h2:before {
	display: none;
}
.page__content--lawyer h3 {
  font-family: 'Mont', sans-serif;
  font-size: 18px;
  color: #666;
  margin: 0;
}
.page__content--lawyer h3:after {
	content: '';
	width: 70px;
	height: 1px;
	background: #780102;
	display: block;
	margin: 20px 0;
}

.box__infos .col-12 {
	margin: 0 0 20px 0;
}
.box__infos h3 {
	font-family: 'Libre Baskerville', serif;
	margin: 0;
	color: #780102;
	font-style: italic;
}
.box__infos h3:after {
	display: none;
}
.box__infos p, .box__infos a {
	color: #666;
	font-size: 16px;
	text-decoration: none;
	margin: 0;
}

.box__content {
	padding: 30px;
	border: 1px solid #f9f9f9;
	background-image: linear-gradient(to bottom, #ffffff, #efefef);
}
.box__content p + p{
	margin: 30px 0 0 0;
}
.box__content p:first-child {
	margin: 0;
}

.page__content--lawyer h4 {
	font-size: 18px;
	color: #780102;
	font-family: 'Libre Baskerville', serif;
	font-style: italic;
	margin: 20px 0;
}
.page__content--lawyer h5 {
	font-size: 14px;
	color: #666;
	padding: 0 0 0 30px;
	border-left: 1px solid #780102;
	margin: 0 0 30px 0;
}

.hustle-ui[data-id="1"].hustle-inline .hustle-social {
	padding: 0!important;
}

.blog__post {
	padding: 0 0 30px 0;
	border-bottom: 1px solid #efefef;
}
.blog__post:last-child {
	border-bottom: 0;
}
.blog__post + .blog__post {
	margin-top: 30px;
}
.blog__post h3 {
	margin: 0;
	font-size: 21px;
	font-family: 'Libre Baskerville', serif;
	color: #830201;
}
.blog__post p {
	margin: 0 0 20px 0;
}
.blog__post .btn {
	width: auto;
	display: inline-block;
	padding: 10px 20px 10px 45px;
}

.sidebar h4 {
	color: #830201;
	padding: 20px;
	font-family: 'Libre Baskerville', serif;
	font-size: 21px;
	margin: 0;
	border-bottom: 1px solid #efefef;
	display: block;
}

.wpcf7-response-output {
	padding: 15px;
	clear: both;
	background: rgba(255,255,255,.7);
	border: 1px solid #780102;
	color: rgb(10,34,56);
	margin: 0;
	position: relative;
	z-index: 10;
	opacity: 1;
	display: none;
}
.wpcf7-display-none {
	opacity: 0;
}
.wpcf7-validation-errors {
	background: #d98081;
	opacity: 1;
	color: #fff;
}
.wpcf7-mail-sent-ok {
	opacity: 1;
}
.screen-reader-response {
	display: none;
}
span.wpcf7-not-valid-tip {
	color: red;
	font-size: 10px;
}
.ajax-loader.is-active {
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 5px;
	background: green;
	opacity: .5;
	position: absolute;
	animation: loading 2s ease-in-out;
	border-radius: 5px;
}
.wpcf7-display-none:empty {
	display: none;
}
.btn-send {
	overflow: hidden;
	position: relative;
	padding-bottom: 10px;
}
@keyframes loading {
	0% {
		left: -100%;
	}
	10% {
		left: -90%;
	}
	20% {
		left: -80%;
	}
	50% {
		left: -70%;
	}
	80% {
		left: 0;
	}
	100% {
		left: 0;
	}
}
@-moz-keyframes loading {
	0% {
		left: -100%;
	}
	10% {
		left: -90%;
	}
	20% {
		left: -80%;
	}
	50% {
		left: -70%;
	}
	80% {
		left: 0;
	}
	100% {
		left: 0;
	}
}
@-webkit-keyframes loading {
	0% {
		left: -100%;
	}
	10% {
		left: -90%;
	}
	20% {
		left: -80%;
	}
	50% {
		left: -70%;
	}
	80% {
		left: 0;
	}
	100% {
		left: 0;
	}
}
.wpcf7 ul {
	display: none;
}


@media screen and (min-width: 767px) {
	.header__hamburger {
		top: 37px;
	}
	.intro__box ul {
		text-align: center;
	}
	.intro__box li {
		display: inline-block;
	}
}

@media screen and (min-width: 992px) {
	.header__fixed img {
		height: 70px;
	}
	.header__menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		text-align: right;
		transition: all .5s ease-in-out;
	}
	.header__menu li {
		display: inline-block;
		list-style: none;
	}
	.header__menu a {
		font-size: 13px;
		color: #333;
		padding: 40px 12.5px;
		display: block;
		transition: all .3s ease-in-out;
		font-family: 'Libre Baskerville', serif;
		text-transform: uppercase;
	}
	.header__fixed.scrolled .header__menu a {
		padding: 22px 12.5px;
	}
	.header ul ul {
		box-shadow: 0 10px 20px rgba(0,0,0,.2);
	}
	.header ul ul a, .header__fixed.scrolled .header__menu ul ul a {
		padding: 22px 18px;
		border-top: 1px solid #f9f9f9;
	}
	
	.header__menu a:hover, .header__menu a.is-active {
		color: #830201;
		background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0), #efefef);
		text-decoration: none;
	}
	.header__menu .btn {
		max-width: 100%;
	}
	.header__hamburger {
		display: none;
	}
	.header__fixed.scrolled ul {
		top: 64px;
	}

	.intro__box {
		padding: 40px;
	}
	.intro__box h2 {
		font-size: 32px;
		font-weight: 300;
	}
	.intro__box li {
		width: 16%;
		vertical-align: top;
		background-position: center 160px;
		margin: 0;
	}
	.intro__box a {
		font-size: 17px;
	}

	.home__partners {
		padding: 110px 0 150px 0;
		/* margin-top: 20px; */
	}
	.home__partners h2 {
		font-size: 32px;
		font-weight: 300;
		margin: 0 0 40px 0;
	}
	.home__partners:before {
		width: 100%;
		font-size: 72px;
		top: 130px;
		left: 0;
	}
	/* .home__partners:after {
		content: '';
		width: 52%;
		height: 339px;
		background: url('../img/element-socios.jpg')no-repeat center;
		background-size: cover;
		display: block;
		position: absolute;
		top: -260px;
		right: 0;
	} */
	.home__partners h3 {
		padding-left: 0;
		font-size: 19px;
		margin-top: 50px;
	}
	.home__partners--bg:before {
		bottom: -120px;
	}

	.home__partners .text-right {
		text-align: right;
	}
	.home__partners .text-right a {
		text-decoration: none;
		color: #fff;
		margin: 10px 0 0 0;
		display: block;
	}
	.home__partners .text-right a:before {
		content: '';
		width: 30px;
		height: 1px;
		background: #fff;
		display: inline-block;
		position: relative;
		top: -4px;
		margin: 0 15px 0 0;
	}
	
	.box__newsletter {
		padding: 40px;
	}
	.box__newsletter h2 {
		margin: 0;
		font-size: 26px;
	}
	.box__newsletter .form-group {
		margin: 0;
	}
	.box__newsletter .form-send {
		margin-top: 27px;
	}

	.footer__general {
		padding: 40px 0 0 0;
	}
	.footer__general li {
		display: inline-block;
		margin: 0 10px 0 0;
	}
	.footer__general li a {
		font-size: 10px;
	}
	.footer__general .visible-md p, .footer__general .visible-md a {
		font-family: 'Mont', sans-serif;
		color: #666;
		margin-top: 60px;
		font-size: 10px;
	}

	.sidebar.is-hidden {
		max-height: 100%;
	}
	.sidebar li a {
		font-size: 16px;
	}
	.sidebar li a.is-active {
		color: #780102;
	}
	.page__content {
		text-align: left;
	}
	.page__content--box {
		padding: 0 20px;
	}
	.page__content--box p {
		line-height: 28px;
		margin: 0 0 20px 0;
	}
	.page__content--box ul {
		margin: 0 0 20px 0;
	}
	.page__content h2 {
		font-size: 32px;
	}
	.page__content h2:before {
		width: 70px;
		margin: 0 30px 0 0;
	}
	.page__title h1 {
		padding: 95px 35px 55px 35px;
		font-size: 42px;
		display: inline-block;
	}
	.page__title h1:before {
		top: 80px;
	}
	.page__content h2:after {
		top: -60px;
		z-index: -1;
	}
	.breadcrumbs__holder {
		padding: 30px 0;
	}
	.breadcrumbs li:last-child a {
		color: #780102;
	}

	.page__content--partners h2 {
		font-size: 32px;
	}

	.box__content {
		margin: 50px 0 40px 0;
		border: 0;
		padding: 45px;
	}
}

@media screen and (min-width: 1200px) {
	.bg-sp {
		background: url('../img/bg-sp.jpg')no-repeat top center;
	}
	.bg-df {
		background: url('../img/bg-df.jpg')no-repeat top center;
	}
	
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}

	.hidden-lg {
		display: none !important;
	}

}

@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
}