﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
  font-family: 'OpenSans';
  src: url('fonts/OpenSans/OpenSans.eot');
  src: url('fonts/OpenSans/OpenSans.woff2') format('woff2'),
	   url('fonts/OpenSans/OpenSans.woff') format('woff'),
	   url('fonts/OpenSans/OpenSans.ttf') format('truetype'),
	   url('fonts/OpenSans/OpenSans.svg#OpenSans') format('svg'),
	   url('fonts/OpenSans/OpenSans.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: url('fonts/OpenSans/OpenSans-Light.eot');
  src: url('fonts/OpenSans/OpenSans-Light.woff2') format('woff2'),
	   url('fonts/OpenSans/OpenSans-Light.woff') format('woff'),
	   url('fonts/OpenSans/OpenSans-Light.ttf') format('truetype'),
	   url('fonts/OpenSans/OpenSans-Light.svg#OpenSans') format('svg'),
	   url('fonts/OpenSans/OpenSans-Light.eot?#iefix') format('embedded-opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: url('fonts/OpenSans/OpenSans-Bold.eot');
  src: url('fonts/OpenSans/OpenSans-Bold.woff2') format('woff2'),
	   url('fonts/OpenSans/OpenSans-Bold.woff') format('woff'),
	   url('fonts/OpenSans/OpenSans-Bold.ttf') format('truetype'),
	   url('fonts/OpenSans/OpenSans-Bold.svg#OpenSans') format('svg'),
	   url('fonts/OpenSans/OpenSans-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
	font-family: 'ProximaNova';
	src: url('fonts/ProximaNova/ProximaNova-Regular.eot');
	src: url('fonts/ProximaNova/ProximaNova-Regular.woff2') format('woff2'),
		 url('fonts/ProximaNova/ProximaNova-Regular.woff') format('woff'),
		 url('fonts/ProximaNova/ProximaNova-Regular.ttf') format('truetype'),
		 url('fonts/ProximaNova/ProximaNova-Regular.svg#ProximaNova') format('svg'),
		 url('fonts/ProximaNova/ProximaNova-Regular.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'ProximaNova';
	src: url('fonts/ProximaNova/ProximaNova-Bold.eot');
	src: url('fonts/ProximaNova/ProximaNova-Bold.woff2') format('woff2'),
		 url('fonts/ProximaNova/ProximaNova-Bold.woff') format('woff'),
		 url('fonts/ProximaNova/ProximaNova-Bold.ttf') format('truetype'),
		 url('fonts/ProximaNova/ProximaNova-Bold.svg#ProximaNova') format('svg'),
		 url('fonts/ProximaNova/ProximaNova-Bold.eot?#iefix') format('embedded-opentype');
	font-weight: 700;
	font-style: normal;
}

/* BEGIN of CSS RESET */
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,em,img,ins,kbd,q,s,samp,small,strike,strong,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;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'OpenSans', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	font-weight: normal;
	background: #000000;
	color: #ffffff;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'ProximaNova';
	text-transform: uppercase;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 27px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'ProximaNova';
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'ProximaNova';
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	font-family: 'ProximaNova';
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 15px;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 12px;
}

blockquote {
	display: block;
	margin: 20px auto 20px;
	max-width: 840px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
}

p {
	padding: 0 0 21px;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	background: #FFFFFF;
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px #555555;
	border-top: 5px solid #861627;
}

header + * {
	padding-top: 93px;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: fixed;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.logo {
	float: left;
	display: block;
	margin: 11px 0 0 15px;
	padding: 0 0 0;
	max-width: 278px;
}

.logo img {
	display: block;
}



.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
	position: relative;
}

.navbar-nav > li > a {
	padding: 35px 10px 33px;
	margin: 0 0 0 8px;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	font-weight: 700;
	text-transform: none;
	position: relative;
	background: transparent;
	font-family: 'ProximaNova';
}

.navbar-nav > li > a:after {
	content: "";
	display: block;
	clear: both;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	border-bottom: 4px solid #861627;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.navbar-nav > li > a:hover:after, .navbar-nav > li.active > a:after {
	width: 100%;
}

.navbar-nav > li.active > a {
	color: #000000;
	background: transparent;
}

.nav > li > a:focus, .nav > li > a:hover {
	color: #000000;
	background: transparent;
	opacity: 1;
}

.nav > li ul {
	padding: 0 0 0;
	margin: 0 0 0;
	min-width: 200px;
	display: none;
	background-color: #861627;
	color: #ffffff;
	position: absolute;
	left: 0;
	top: 100%;
	border: 1px solid #770202;
}

.nav > li:hover ul {
	/* display: block; */
}

.nav > li ul li {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
}

.nav > li ul li a {
	padding: 8px 20px 8px;
	margin: 0 0 0;
	font-size: 12px;
	font-weight: 400;
	display: block;
	color: inherit;
}

.nav > li ul li a:hover {
	letter-spacing: .05em;
	opacity: 1;
	background-color: rgba(0, 0, 0, .2);
}

/* spinner css start */

.spinner-wr {
	background: #111111;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/* display: none; */
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: #861627;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 4px;
	z-index: 99;
	width: 44px;
	height: 44px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/i-arr-up.png') no-repeat center center;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 50px 0 50px;
	position: relative;
	z-index: 5;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

body .bg-white {
	background-color: #ffffff;
	color: #4d4d4d;
}

body .color-red {
	color: #861627;
}

.img-wr {
	position: relative;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

body .box-bg-slider {
	padding: 93px 0 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 0 0;
}

.box-bg-slider img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.box-bg-slider .slide-item {
	min-height: 880px;
}

.slide-item {
	outline: none;
	background-repeat: no-repeat;
	background-position: top center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

body .box-top-heading-slider {
	padding: 310px 0 286px;
	margin: 0 0 0;
}

.top-banner-slider-wr .slick-dots {
	bottom: 45px;
}

.container-inner {
	padding: 85px 45px 102px;
	margin: 0 0 0;
}

body .box-content {
	padding: 0 0 0;
}

.box-content a {
	color: inherit;
}

.container.bg-white {
	border-bottom: 8px solid #861627;
}

.tdu {
	text-decoration: underline;
}

.block-welcome {
	padding: 0 0 35px;
	margin: 0 0 0;
}

.block-contacts-info {
	padding: 0 0 0 50px;
	position: relative;
}

.block-contacts-info:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -10px;
	bottom: -20px;
	border-left: 2px solid #979797;
}

.block-contacts-info p {
	padding: 0 0 3px;
}

.box-contacts .block-contacts-info:before {
	display: none;
}

.box-contacts .block-contacts-info {
	padding: 0 0 40px;
}

.box-contacts .divider-line-sm {
	margin-left: 0;
}

.block-thumbs {
	padding: 35px 0 35px;
	margin: 0 -60px 0;
}

.block-thumbs .row {
	padding: 0 0 0;
	margin: 0 0 0;
}

.block-thumbs [class*="col-"] {
	padding: 0 0 0;
	margin: 0 0 0;
}

.thumbs-item {
	height: 252px;
	padding: 0 0 0;
	margin: 0 0 0;
	color: #ffffff;
	display: table;
	width: 100%;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
}

.thumbs-item > a {
	padding: 20px;
	color: inherit;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	z-index: 2;
}

.thumbs-item h3 {
	padding: 25px 0 10px;
	text-transform: uppercase;
}

.thumbs-item:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0);
}

.thumbs-item:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	border: 1px solid;
	background-color: transparent;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.thumbs-item:hover:after {
	margin: 15px;
	opacity: 1;
	background-color: rgba(0, 0, 0, .5);
}

.thumbs-item a:hover {
	opacity: 1;
}

.divider-line-sm {
	margin: 15px auto 15px;
	max-width: 200px;
	border-bottom: 2px solid #999999;
}

.block-awards {
	padding: 0px 15px 0;
	margin: 0 0 0;
	text-align: center;
}

.block-awards h2 {
	padding: 0 0 0;
	margin: 0 0 0;
	text-transform: uppercase;
}

.block-awards p {
	margin: 0 auto;
	max-width: 700px;
}

.slider-awards {
	margin: 0 auto 0;
	padding: 2px 0 20px;
}

.slider-awards .slick-slide {
	padding: 0 10px 0;
}

.awards-item {
	padding: 0 0 0;
	margin: 0 auto 0;
	width: 200px;
	max-width: 100%;
	display: block;
	border: 1px solid #d6d6d6;
	text-align: center;
}

.awards-item > a {
	display: table-cell;
	vertical-align: middle;
	width: 500px;
	height: 164px;
	text-align: center;
	overflow: hidden;
}

.awards-item img {
	margin: 0 auto;
	max-height: 146px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.awards-item:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.slick-dots li button:before {
	font-size: 16px;
	opacity: 1;
	color: #b9b9b9;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #861627;
}

.slick-dots {
	bottom: -10px;
}

.slick-dots li {
	margin: 0 1px;
}

.top-banner-slider-inner-page .box-top-heading-slider {
	padding: 145px 0 85px;
}

.block-sidebar {
	padding: 0 0 0 30px;
	margin: 0 0 0;
}

.block-sidebar h3 {
	padding: 0 15px 15px 0;
	margin: 0 0 30px;
	font-size: 22px;
	display: inline-block;
	border-bottom: 2px solid #989898;
	text-transform: uppercase;
}

.block-sidebar li {
	margin: 0 0 4px;
}

.attorney-main-info {
	padding: 27px 0 0;
}

.attorney-main-info h1 {
	padding: 0 0 1px;
	line-height: 1;
}

.attorney-main-info h4 {
	padding: 0 0 0;
}

.attorney-main-info p {
	padding: 0 0 0;
}

.attorney-main-info .divider-line-sm {
	margin: 11px 0 11px;
	border-bottom: 2px solid #999999;
}

.attorney-social-links {
	padding: 6px 0 6px;
}

.attorney-social-links a {
	color: #861627;
	font-size: 21px;
	margin: 0 1px 0 0;
}

.tabs-wr {
	padding: 14px 0 14px;
}

.tabs-nav a {
	padding: 12px 33px 6px;
	margin: 0 2px 0 0;
	font-size: 15px;
	min-width: 166px;
	text-align: center;
	font-weight: bold;
	background-color: #e6e8e7;
	display: inline-block;
	text-transform: uppercase;
	float: left;
	font-family: 'ProximaNova';
	border-bottom: 5px solid transparent;
}

.tabs-nav:after {
	content: "";
	display: block;
	clear: both;
}

.tabs-nav a.active {
	background-color: #861627;
	border-color: #000000;
	color: #ffffff;
}

.tabs-item {
	padding: 52px 60px 19px 0;
	margin: 0 0 0;
	display: none;
}

.tabs-item.active {
	display: block;
}

.tabs-item ul {
	padding: 2px 0 22px 36px;
}

.slider-attorney {
	padding: 24px 0 35px;
	margin: 0 -75px 0;
}

.attorney-thumb-item {
	padding: 0 0 0;
	margin: 0 0 0;
	text-align: left;
}

.attorney-thumb-item .img-wr {
	margin: 0 0 8px;
}

.attorney-thumb-item .img-wr img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.attorney-thumb-item p {
	padding: 0 17px 0;
}

.attorney-thumb-item a {
	text-decoration: underline;
}

body .box-padding-top {
	padding-top: 100px;
}

.box-contacts h3 {
	padding: 0 0 0;
	font-size: 22px;
	text-transform: uppercase;
}

.box-contacts .container-inner {
	padding: 77px 50px 102px;
}

.block-map {
	padding: 8px 0 0;
}

.block-map iframe {
	min-height: 525px;
	display: block;
	margin: 0 0 0;
	width: 100%;
}

body .btn-main {
	padding: 12px 25px 11px;
	margin: 0 auto 0;
	font-size: 15px;
	line-height: 18px;
	min-width: 134px;
	color: #e1e1e1;
	width: auto;
	font-style: normal;
	background: #861627;
	border: 2px solid #861627;
	font-weight: 700;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 0;
	font-family: 'ProximaNova';
}

body .btn-main:hover {
	color: #861627;
	background: #FFFFFF;
	opacity: 1;
}

form .btn-main {
	margin: 23px auto 0;
}


form {
	margin: 0 0 20px;
	padding: 0 20px 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 15px 10px 15px;
	font-size: 14px;
	line-height: 16px;
	color: #861627;
	background-color: #f9f9f9;
	clear: both;
	outline: none;
	width: 100%;
	border: 2px solid #f1f1f1;
	border-radius: 0;
}

textarea {
	min-height: 172px;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: #861627;
	border-color: #1b2030;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: #861627;
	border-color: #861627;
	opacity: 1;
}

label {
	display: block;
}

label span {
	padding: 0 0 12px;
	display: block;
}

*::-webkit-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #999999;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

.form-row {
	padding: 0 0 17px;
}

.divider-line-sm + .form-row {
	padding-top: 13px;
}












/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 120px 0 0;
	margin: -80px 0 0;
	background: #1c1c1c url('img/bg-footer.jpg') no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
	color: #9c9c9c;
}

footer a {
	color: inherit;
	display: inline-block;
	position: relative;
}

footer .block-contacts-info {
	padding: 16px 0 20px;
	margin: 0 0 0;
}

footer .block-contacts-info:before {
	content: none;
}

footer ul {
	padding: 18px 0 20px;
	margin: 0 0 0;
}

footer li {
	padding: 0 0 2px;
	margin: 0 0 0;
	list-style: none;
}

footer a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border-bottom: 1px solid;
}

footer a:hover:after {
	width: 100%;
}

.footer-bottom {
	font-size: 12px;
	padding: 28px 0 10px;
	margin: 38px 0 0;
	border-top: 2px solid #505050;
	position: relative;
}

.footer-bottom .disclaimer {
	top: -38px;
	padding: 0 8px 0;
	margin: 0 10px 0;
	text-transform: uppercase;
	display: inline-block;
	background-color: #1c1c1c;
	position: absolute;
	left: 0;
}

.footer-bottom .container {
	position: relative;
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1230px) {
	.container {
		width: 1200px;
	}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 14px;
	line-height: 1.5;
}
h1 {
	padding: 0 0 15px;
	font-size: 32px;
}
h2 {
	padding: 0 0 15px;
	font-size: 24px;
}
h3 {
	padding: 0 0 15px;
	font-size: 22px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
	font-size: 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.logo {
	margin: 8px 0 0 0;
	max-width: 200px;
}
.navbar-nav > li > a {
	padding: 24px 5px 20px;
	margin: 0 0 0 15px;
	font-size: 14px;
	line-height: 20px;
}
header + * {
	padding-top: 69px;
}
body .box-bg-slider {
	padding: 0 0 0;
}
body .box-top-heading-slider {
	padding: 160px 0 160px;
	margin: 0 0 0;
}
.top-banner-slider-wr .slick-dots {
	bottom: 40px;
}
.container-inner {
	padding: 40px 20px 40px;
	margin: 0 0 0;
}
.box-bg-slider .slide-item {
	min-height: 580px;
}
.block-welcome {
	padding: 0 0 15px;
	margin: 0 0 0;
}
.block-thumbs {
	padding: 15px 0 15px;
	margin: 0 -35px 0;
}
.thumbs-item {
	height: 200px;
}
.block-awards {
	padding: 30px 0 0;
}
.slider-awards {
	margin: 0 auto 0;
	padding: 15px 0 30px;
}
.awards-item img {
	max-height: 90px;
}
.block-sidebar h3 {
	padding: 0 10px 15px 0;
	margin: 0 0 15px;
	font-size: 20px;
}
.slider-attorney {
	padding: 10px 0 30px;
	margin: 0 -35px 0;
}
.attorney-main-info {
	padding: 0 0 0;
}
.tabs-nav a {
	padding: 12px 20px 4px;
	margin: 0 2px 0 0;
	font-size: 12px;
	min-width: 140px;
}
.tabs-item {
	padding: 30px 0 10px 0;
	margin: 0 0 0;
}
p {
	padding: 0 0 15px;
}
.box-contacts .container-inner {
	padding: 40px 20px 40px;
}
.box-contacts .block-contacts-info {
	padding: 0 0 30px;
}
.block-map {
	padding: 0 0 0;
}
.block-map iframe {
	min-height: 320px;
}
form .btn-main {
	margin: 10px auto 0;
}
.divider-line-sm + .form-row {
	padding-top: 10px;
}
label span {
	padding: 0 0 6px;
}
.form-row {
	padding: 0 0 15px;
}
form {
	padding: 0 0 0 0;
}
textarea {
	min-height: 130px;
}
form input, form textarea, form select {
	padding: 10px 10px 10px;
	font-size: 13px;
	line-height: 16px;
}







}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 13px;
	line-height: 1.5;
}
h1 {
	padding: 0 0 15px;
	font-size: 30px;
}
h2 {
	padding: 0 0 15px;
	font-size: 20px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.navbar-nav > li > a {
	padding: 24px 0 20px;
	margin: 0 0 0 13px;
	font-size: 13px;
	line-height: 20px;
}
.back-to-top {
	width: 24px;
	height: 24px;
	-webkit-background-size: contain;
	background-size: contain;
}
.block-sidebar {
	padding: 0 0 0;
	margin: 0 0 0;
}
p {
	padding: 0 0 15px;
}
.tabs-nav a {
	padding: 10px 15px 5px;
	margin: 0 2px 0 0;
	font-size: 11px;
	min-width: 100px;
	border-bottom: 3px solid transparent;
}








}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 12px;
	line-height: 1.5;
}
h1 {
	padding: 0 0 15px;
	font-size: 28px;
}
h2 {
	padding: 0 0 15px;
	font-size: 20px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.navbar-toggle .icon-bar {
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
	top: 4px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2), .navbar-toggle.active .icon-bar:nth-of-type(3) {
	background-color: transparent;
}
.navbar-toggle.active .icon-bar:nth-of-type(4) {
	top: -3px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navbar-toggle {
	padding: 0 0 0;
	margin: 9px 0 0;
	border: none;
	min-height: 25px;
	position: relative;
	z-index: 5;
}
.navbar-toggle:hover {
	opacity: 1;
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 4px;
}
.navbar-toggle .icon-bar {
	width: 30px;
	height: 3px;
	border-radius: 3px;
	background: #861627;
}
.navbar-toggle .icon-bar:nth-of-type(1) {
	width: 22px;
}
.navbar-toggle .icon-bar:nth-of-type(2) {
	width: 28px;
}
.navbar-toggle .icon-bar:nth-of-type(3) {
	width: 24px;
}
body .navbar-toggle.active .icon-bar {
	margin: 0;
	height: 2px;
	width: 30px;
}
.logo {
	margin: 5px 0 5px 0;
	max-width: 160px;
}
.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	position: static;
}
.navbar-collapse {
    margin: 0 0 0;
    padding: 0 0 25px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 100vh;
    overflow: auto;
    background: rgb(133, 36, 39);
    text-align: center;
}
.navbar-nav {
	margin: 0 0 0;
	padding: 15px 15px 15px;
}
.navbar-nav > li > a {
	padding: 15px 0 15px;
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 20px;
	display: inline-block;
	color: #ffffff;
}
header + * {
	padding-top: 50px;
	margin-top: 40px;
}
body .box-top-heading-slider {
	padding: 100px 0 100px;
	margin: 0 0 0;
}
.slide-item {
	-webkit-background-size: cover;
	background-size: cover;
}
.container-inner {
	padding: 30px 0 30px;
	margin: 0 0 0;
}
.block-contacts-info {
	padding: 25px 0 0;
	position: relative;
}
.block-contacts-info:before {
	left: 0;
	right: 0;
	top: 2px;
	bottom: auto;
	border-left: none;
	border-top: 2px solid #979797;
}
.block-thumbs {
	padding: 10px 0 10px;
	margin: 0 -15px 0;
}
.block-awards {
	padding: 20px 0 0;
}
.awards-item > a {
	height: 140px;
}
footer {
	padding: 40px 0 0;
	margin: 0 0 0;
	text-align: center;
}
footer .block-contacts-info {
	padding: 30px 0 15px;
	margin: 0 0 0;
}
footer ul {
	padding: 10px 0 10px;
	margin: 0 0 0;
}
.footer-bottom {
	font-size: 10px;
	padding: 28px 0 10px;
	margin: 24px 0 0;
}
.slider-attorney {
	padding: 10px 0 30px;
	margin: 0 -15px 0;
}
.block-welcome .pull-right {
	float: none !important;
}
.attorney-main-img {
	text-align: center;
	margin: 0 auto 30px;
}
.attorney-main-info {
	padding: 0 0 0;
	text-align: center;
}
.attorney-main-info .divider-line-sm {
	margin: 11px auto 11px;
}
.tabs-nav a {
	padding: 10px 15px 5px;
	margin: 0 0 0;
	font-size: 11px;
	min-width: 100px;
	border-bottom: 3px solid transparent;
	float: none;
}
.tabs-nav {
	text-align: center;
}
.tabs-item {
	padding: 25px 0 10px 0;
	margin: 0 auto 0;
	max-width: 500px;
}
.box-contacts .container-inner {
	padding: 30px 0 30px;
}
.nav > li:hover ul {
    display: block !important;
    height: auto !important;
    position: relative;
}







}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
.box-bg-slider .slide-item {
	min-height: 380px;
}
.tabs-nav a {
	padding: 10px 7px 5px;
	margin: 0 0 0;
	font-size: 10px;
	min-width: 0;
	border-bottom: 2px solid transparent;
	float: none;
}






}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
