/*
COLORS

black: #231f20;
green: #16a751;
orange: #fcb042;

*/

html, body {
	height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.45;
	color: #231f20;
}
a {
	color: #419c51;
}
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
p {
	margin: 16px 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	color: #231f20;
}

h1 {
	position: relative;
	margin: 10px 0 50px;
	text-transform: uppercase;
	font-size: 50px;
	font-weight: 500;
	line-height: 65px;
}
h1 span {
	position: relative;
}
h1 span:after {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #0aa650;
	content: '';
}
.home h1 {
	margin: 0 0 50px 0;
	font-size: 53px;
}
.single-lawyer h1 {
	margin: 0 0 30px 0;
}

h2 {
	margin: 30px 0 15px 0;
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 500;
	line-height: 44px;
}
div + h2 {
	margin-top: 0;
}

.home h2 {
    position: relative;
    margin: 0 0 90px 0;
    text-align: center;
    font-size: 51px;
    word-spacing: 3px;
    color: #231f20;
}

h3 {
	font-size: 28px;
	line-height: 42px;
}
h4, h5, h6 {
	font-size: 25px;
	line-height: 40px;
}

.wrapper {
	display: table;
	width: 100%;
	height: 100%;
	max-width: 1920px;
	overflow: hidden;
}
main {
	display: table-row;
	width: 100%;
	height: 100%;
}

.container {
	position: relative;
}

.centered-block {
	max-width: 750px;
	margin: 0 auto;
}

.btn {
	display: inline-block;
	position: relative;
	z-index: 1;
    margin-top: 10px;
    padding: 10px 22px;
	overflow: hidden;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	background-color: #16a751;
    font-size: 15px;
	font-weight: 300;
    color: #fff;
	
	-webkit-mask-image: -webkit-radial-gradient(circle, white, black);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.btn:before {
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 150px;
	height: 150px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fcb042;
	content: '';

	-webkit-transform: scale(0);
	transform: scale(0);

	-webkit-transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
}
.btn:hover {
	text-decoration: none;
	color: #fff;
}
.btn:hover:before {
	-webkit-transform: scale(2);
	transform: scale(2);
}
.btn span {
	position: relative;
	z-index: 2;
}

/* Page block: header */

.header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 90px;
	background-color: #fff;
	z-index: 10;

	-webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
}
.logged-in .header {
	top: 32px;
}
.header .container {
	height: 100%;
}
.header__logo {
	display: inline-block;
	width: 154px;
	height: 78px;
	margin-top: 5px;
	vertical-align: top;
	background: url('images/logo.png') no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.header__contacts {
	position: absolute;
	top: 18px;
	right: 15px;
	text-align: right;
}
.header__contacts-title {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 400;
}
.header__phone {
	margin: 26px 0 0 60px;
	font-family: 'Prompt', sans-serif;
	font-size: 22px;
	font-weight: 700;
	word-spacing: -4px;
	color: #419c51;

	-webkit-transition: color .2s ease;
	transition: color .2s ease;
}
.header__phone:hover {
	text-decoration: none;
	color: #6ec57d;
}


/*
	Header menu
*/

.header__nav {
	display: inline-block;
	margin: 20px 0 0 118px;
	vertical-align: top;
}
.header__menu {
	position: relative;
    font-size: 0;
	transition: transform .4s ease-in-out;
}
.header__menu > li {
	position: relative;
	display: inline-block;
	margin-left: 62px;
	padding-top: 20px;
}
.header__menu > li:first-child {
	margin-left: 0;
}
.header__menu > li:before,
.header__menu > li:after {
	position: absolute;
	top: 0;
	width: 0;
	height: 3px;
	background-color: #0aa650;
	content: '';

	-webkit-transition: width .2s ease;
	-o-transition: width .2s ease;
	transition: width .2s ease;
}
.header__menu > li:before {
	right: 50%;
}
.header__menu > li:after {
	left: 50%;
}
.header__menu > li:hover:before,
.header__menu > li:hover:after {
	width: 50%;
}
.header__menu > li.current_page_item:before,
.header__menu > li.current_page_item:after {
	width: 50%;
}

.header__menu > li > a {
	display: block;
	position: relative;
	font-size: 18px;
	color: #231f20;
}
.header__menu a:hover {
	text-decoration: none;
}
.header__menu > li.menu-item-has-children > a:after {
	position: absolute;
	right: -20px;
	bottom: 7px;
	width: 12px;
	height: 6px;
	background: url('images/arrow-triangle.png') no-repeat;
	content: '';
}

.header__menu .sub-menu {
	position: absolute;
	top: 120%;
	left: -9999px;
	width: 230px;
	padding-top: 12px;
	visibility: hidden;
	opacity: 0;
	text-align: left;
	
	-webkit-transition: .4s ease;
	transition: .4s ease;
	-webkit-transition-property: top, visibility, opacity;
	transition-property: top, visibility, opacity;
}
.header__menu > li:hover .sub-menu {
	top: 100%;
	left: -4px;
	visibility: visible;
	opacity: 1;
}
.header__menu .sub-menu li {
	border-top: 1px solid #dedede;
	background: #f1f1f1;
}
.header__menu .sub-menu li:first-child {
	border-top: none;
}
.header__menu .sub-menu li a {
	display: block;
	padding: 12px 20px;
	white-space: nowrap;
	font-size: 15px;
	line-height: 22px;
	color: #231f20;

	-webkit-transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
}
.header__menu .sub-menu li a:hover {
	-webkit-transform: translate3d(5px, 0, 0);
	transform: translate3d(3px, 0, 0);
}
.mobile-nav {
	display: none;
}


/* Page block: slider */

.slider-wrapper {
	position: relative;
	width: 100%;
	margin-top: 90px;
}
.main-slider {
	max-height: 550px;
	overflow: hidden;
}
.main-slider__container {
	height: 100%;
}
.main-slider__slide {
	position: relative;
	width: 100%;
	height: 550px;
	background-position: 50% 0;
	background-repeat: no-repeat;
}
.main-slider__slide:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.2);
	content: '';
}
.main-slider__caption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	width: 500px;
	padding: 150px 40px 0 40px;
	background-color: rgba(35, 31, 32, 0.7);
	font-weight: 300;
	color: #fff;
}
.main-slider__title {
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-size: 50px;
	font-weight: 400;
	color: #fcb042;

	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
a.main-slider__title:hover {
	text-decoration: none;
	color: #ff9700;
}
.main-slider__scroll {
	position: absolute;
	left: 50%;
	bottom: -30px;
	width: 60px;
	height: 60px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
}
.main-slider__scroll:after {
	position: absolute;
	top: 15px;
	left: 50%;
	width: 19px;
	height: 10px;
	margin: 0 0 0 -10px;
	background: url('images/arrow-down1.png') no-repeat;
	background-size: cover;
	content: '';

	animation: scrollDown 1s infinite linear;
}
@keyframes scrollDown {
	50% {
		transform: translateY(5px);
	}
	100% {
		transform: translateY(0px);
	}
}
@-webkit-keyframes scrollDown {
	50% {
		transform: translateY(5px);
	}
	100% {
		transform: translateY(0px);
	}
}

.flickity-prev-next-button {
	width: 38px;
	height: 80px;
	outline: none;
	background-color: rgba(222, 222, 222, 0.9);

	transition: all .3s ease;
}
.flickity-prev-next-button:hover {
	width: 42px;
	background-color: #fcb042;
}
.flickity-prev-next-button.previous {
	left: 0;
	border-radius: 0 4px 4px 0;
}
.flickity-prev-next-button.next {
	right: 0;
	border-radius: 4px 0 0 4px;
}



/* Main page: intro */
.home-intro {
	position: relative;
	width: 100%;
	max-width: 650px;
	margin: 55px auto;
	font-size: 25px;
	font-weight: 300;
	font-style: italic;
	line-height: 34px;
	color: #999;
}
.home-intro:before {
	position: absolute;
	top: 20px;
	left: -75px;
	font-family: 'Oswald', sans-serif;
	font-size: 120px;
	letter-spacing: -5px;
	content: '\201c';
}
.home-intro:after {
	position: absolute;
	bottom: 0;
	right: 112px;
	font-family: 'Oswald', sans-serif;
	font-size: 120px;
	letter-spacing: -5px;
	content: '\201d';
}
.home-intro cite {
	display: block;
	margin-top: 30px;
	text-align: right;
	font-size: 18px;
	line-height: 26px;
}
.flying-block {
	position: relative;
}
.flying-text {
	position: relative;
	left: -15px;
	width: 775px;
	padding: 50px 60px;
	border: 8px solid #f1f1f1;
	font-size: 16px;
}
.flying-text p:last-child {
	margin-bottom: 0;
}

.flying-image {
	position: absolute;
	top: 65px;
	right: -90px;
}


/* Main page: planning */

.plans {
	margin: 80px 0 60px 0;
	text-align: center;
}
.plans h2 {
	position: relative;
	margin: 0;
	padding-bottom: 36px;
	text-align: center;
	font-size: 51px;
	word-spacing: 3px;
	color: #231f20;
}
.plans h2:after {
	position: absolute;
	left: 50%;
	bottom: 13px;
	width: 30px;
	height: 3px;
	margin-left: -15px;
	background-color: #16a751;
	content: '';
}
.plans__row {
	margin-top: 50px;
}
.plans__item {
	position: relative;
	padding: 40px 0;
	border: 6px solid #f1f1f1;
}
.plans__link {
	display: block;
	position: relative;
	padding: 40px 0 10px 0;
	text-transform: uppercase;
	font-family: 'Prompt', sans-serif;
	font-size: 24px;
	font-weight: 300;
	color: #231f20;
}
.plans__link:before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 25px;
	height: 26px;
	margin-left: -12px;
	background: url('images/check-mark-plans.png') no-repeat;
	content: '';
}
.plans__link:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 30px;
	height: 2px;
	margin-left: -15px;
	background-color: #0aa650;
	content: '';
}
.plans__link:hover {
	text-decoration: none;
	color: #231f20;
}
.plans__excerpt {
	height: 150px;
	padding: 10px 20px;
	font-size: 15px;
}


/* Page block: footer */

.footer {
	margin-top: 25px;
	padding: 10px 0;
	background-color: #fff;
}
.footer__logo {
	display: block;
	width: 120px;
	height: 61px;
	background: url('images/logo.png') no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.footer__info {
	margin: 15px 0 0 0;
	text-align: right;
	font-size: 14px;
}
.footer__phone {
	display: inline-block;
	margin-left: 15px;
	font-family: 'Prompt', sans-serif;
}




/* Content */

.content {
	padding-top: 90px;
}
.home .content {
	padding-top: 0;
}
.single-lawyer .content {
	padding-top: 130px;
}
.content p:first-of-type {
	margin-top: 0;
}
.content img {
	max-width: 100%;
	height: auto;
}
.list {
	margin: 0 0 0 20px;
}
.list li {
	position: relative;
	margin-top: 6px;
	padding-left: 20px;
}
.list li:first-child {
	margin-top: 0;
}
.list  li:before {
	position: absolute;
	top: 12px;
	left: 0;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border: 1px solid #0aa650;
	content: '';
}

h2 + .list,
h3 + .list {
	margin-top: 20px;
	margin-bottom: 20px;
}

.content .figure {
	margin: 40px 0;
}
.content .figure-title {
	display: block;
	text-align: center;
	font-family: 'Prompt', sans-serif;
	font-size: 20px;
	font-weight: 500;
}
.content .figure figcaption {
	display: block;
	text-align: center;
	font-size: 14px;
}


img.alignleft {
	float: left;
	margin: 0 15px 10px 0;
}
.two-column-list {
	font-size: 0;
}
.two-column-list li {
	display: inline-block;
	width: 50%;
	margin-bottom: 10px;
	padding-left: 25px;
	background: url( 'images/marker.png' ) no-repeat 0% 50%;
	font-size: 18px;
}

.our-plans {
	margin: 40px 0;
	max-height: 600px;
	overflow: hidden;
}
.our-plans h2 {
	text-transform: uppercase;
	font-size: 50px;
	line-height: 1;
	margin: 0 0 10px 0;
	color: #7dba2f;
	font-weight: 600;
}
.our-plans .lede {
	color: #232323;
	margin-bottom: 30px;
}
.our-plans .plan {
	padding: 40px;
	height: 360px;
	text-align: center;
	background-color: #2c3b59;
	background: linear-gradient(to bottom, #2c3b59, #3a4968);
	transition: background-color .2s linear;
	margin: 0 5px;
}
.our-plans .plan:hover {
	opacity: 0.9;
}
.our-plans h3 {
	margin-top: 5px;
	color: #7dba2f;
}
.number {
	display: inline-block;
	font-size: 40px;
	font-weight: 200;
	color: #fff;
}
.plan-desc {
	height: 110px;
	font-size: 16px;
	color: #ddd;
}

/* Union list */
.union-list {
	margin: 40px 0;
}
.union-list li {
	position: relative;
	padding: 0 0 35px 35px;
	cursor: default;
}
.union-list li:last-child {
	padding-bottom: 0;
}
.union-list li:before {
	position: absolute;
	width: 2px;
	height: auto;
	top: 0;
	bottom: 0;
	left: 0;
	background: #0aa650;
	-webkit-border-radius: 0;
	border-radius: 0;
	content: '';
}
.union-list li:after {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 5px;
	left: -9px;
	background-color: #0aa650;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	content: '';
}
.union-list li:after {
	-webkit-transition: background-color .1s ease;
	transition: background-color .1s ease;
}
.union-list li:hover:after {
	background-color: #fcb042;
}
.union-list li h3 {
	margin: 0 0 10px 0;
	line-height: 1.15;
	font-weight: 400;

	-webkit-transition: color .1s ease;
	transition: color .1s ease;
}
.union-list li:hover h3 {
	color: #fcb042;
}
.union-list li p:last-of-type {
	margin-bottom: 0;
}



/* contact form */
.wpcf7 p {
	margin: 0 0 20px 0;
}
.wpcf7 label {
	font-size: 15px;
	font-style: italic;
}
.wpcf7-list-item-label {
	font-style: normal;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
	max-width: 100%;
	padding: 8px 12px;
	border: 1px solid #a7a7a7;
	border-radius: 2px;
	font-size: 15px;
	font-style: normal;
}
span.wpcf7-list-item {
	display: inline-block;
	margin-top: 10px;
	margin-left: 20px;
}
span.wpcf7-list-item.first {
	margin-left: 0;
}
.wpcf7-submit {
	padding: 10px 30px;
	border: none;
	background: #0aa650;
	font-weight: 300;
	color: #fff;

	-webkit-transition: background .2s ease;
	-o-transition: background .2s ease;
	transition: background .2s ease;
}
.wpcf7-submit:hover {
	background: #09803e;
}


/* respond form */
.respond-form {
	padding-left: 50px;
	font-size: 15px;
}
.respond-form h2 {
	margin-top: 0;
	line-height: 1;
}


/* to-top button */
.to-top {
	position: fixed;
	right: 10px;
	bottom: 50px;
	width: 48px;
	height: 48px;
	visibility: hidden;
	opacity: 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	background-color: #4c524e;
	cursor: pointer;

	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
.to-top_visible {
	display: block;
	visibility: visible;
	opacity: 1;
}
.to-top:after {
	position: absolute;
	top: 12px;
	bottom: 0;
	left: 0;
	right: 0;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	content: 'top';
}
.to-top:hover {
	background-color: #16a751;
}



/*
	Article
*/
.articles {

}
.articles__categories {
	margin: 0 0 30px 0;
	padding: 0;
	list-style: none;
	font-size: 0;
	line-height: 0;
}
.articles__categories li {
	display: inline-block;
	margin-left: 15px;
	padding: 0;
}
.articles__categories li:first-child {
	margin-left: 0;
}
.articles__categories li:before {
	content: normal;
}
.articles__categories li a {
	display: block;
	padding: 7px 15px;
	border: 2px solid #f1f1f1;
	background-color: #f1f1f1;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 22px;
	color: #231f20;

	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
}
.articles__categories li a:hover {
	background-color: transparent;
	text-decoration: none;
}

.article {
	position: relative;
	height: 210px;
	margin-bottom: 30px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.article_thumb_false {
	border: 1px solid #d8dcde;
}
.article_thumb_false:hover {
	border-color: transparent;
	-webkit-box-shadow: 0px 15px 35px 0px rgba(171, 171, 184, 0.4);
	box-shadow: 0px 15px 35px 0px rgba(171, 171, 184, 0.4);
}
.article_thumb_true {
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.article_thumb_true:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.85));
	content: '';

	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
}
.article__meta {
	position: relative;
	padding: 12px 20px;
}
.article__category {
	font-size: 13px;
	color: #231f20;
}
.article__title {
	margin: 0;
	text-transform: none;
	font: 400 18px/26px 'Open Sans', sans-serif;
}
.article__link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: #231f20;
}
.article__link:hover {
	color: #231f20;
}
.article__link span {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
}
.article_thumb_true .article__link,
.article_thumb_true .article__category {
	color: #fff;
}


/* Single Plan */
.single-plan {}

.single-plan__header {
	position: relative;
	height: 250px;
	margin-bottom: 50px;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.single-plan__header:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.55);
	content: '';
}
.single-plan__header .container {
	height: 100%;
}
.single-plan__title {
	position: absolute;
	top: 50%;
	margin: 0;
	padding-bottom: 30px;
	font-size: 65px;
	color: #fff;

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.single-plan__title:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 6px;
	background-color: #16a751;
	content: '';
}


.sidebar {
	width: 280px;
	margin: 0 auto;
}
.sidebar__title {
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
	font: 400 36px/42px 'Oswald', sans-serif;
}



.article-lede {
	font-size: 18px;
	font-weight: 700;
	font-style: italic;
}
.article-lede strong {
	color: #16a751;;
}


.to-article {
	position: relative;
	padding: 50px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
}
.to-article:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.55);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7));
	content: '';
}
.to-article__content {
	position: relative;
	color: #fff;
}
.to-article__title {
	display: block;
	text-transform: uppercase;
	font: 500 35px/45px 'Oswald', sans-serif;
}


/*
	Pagination
*/

.pagination {
	margin: 30px 0;
	text-align: center;
	font-size: 18px;
	line-height: 26px;
}
.pagination__counter {
	display: block;
	position: relative;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 300;
	color: #ababab;
}
.pagination__item {
	display: inline-block;
	padding: 0 8px;
	margin-right: 5px;
	border-bottom: 3px solid #DDD;
}
a.pagination__item:hover {
	text-decoration: none;
	color: #16a751;
}
.pagination__current {
	border-color: #16a751;
}



.page-header {
	position: relative;
	height: 230px;
	max-height: 550px;
	margin-bottom: 40px;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.page-header:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.55);
	content: '';
}
.page-header .container {
	height: 100%;
}
.page-header__title {
	position: absolute;
	top: 50%;
	margin: 0;
	padding-bottom: 30px;
	font-size: 65px;
	color: #fff;

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.page-header__title:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 6px;
	background-color: #16a751;
	content: '';
}

.styled-header {
	margin-top: 30px;
	padding: 15px 25px;
	background: #0aa650;
    background: linear-gradient(to bottom right, #0aa650, #259055);
    color: #fff;
}
.styled-header p {
	font-weight: 300;
	font-style: italic;
}
.styled-header p:last-child {
	margin-bottom: 0;
}



/*
	Lawyers
*/
.lawyers {
	margin-top: 20px;
	text-align: center;
}
.lawyer {
	padding: 20px 0;
	border: 4px solid #f1f1f1;
}
.lawyer a {
	display: block;
}
.lawyer__link {
	font-family: 'Prompt', sans-serif;
	font-size: 23px;
	font-weight: 300;
	color: #231f20;
}
.lawyer__link:hover {
	text-decoration: none;
	color: #16a751;
}


/* 404 */
.page-404 h1 {
	margin: 40px 0 15px 0;
}



/* Phones and tablets */

@media all and (max-width: 1200px) {

	.flying-image,
	.slider-wrapper {
		display: none;
	}

	/* Header */

	.header {
		height: 64px;
	}
	.header__logo {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 111px;
		height: 56px;
		margin: -28px 0 0 -55px;
	}
	.header__contacts {
		top: 50%;
		margin-top: -22px;
	}
	.header__contacts-title {
		display: none;
	}
	.header__phone {
		display: block;
		width: 44px;
		height: 44px;
		margin: 0;
		background: url('images/phone-call.png') no-repeat;
		-webkit-background-size: cover;
		background-size: cover;
		font-size: 0;
		line-height: 0;
	}
	.header__nav {
		display: none;
	}
	.menu-opened,
	.menu-opened body {
		overflow: hidden;
	}
	.mobile-nav {
		display: none;
		position: absolute;
		top: 64px;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 20px 15px;
		overflow-y: auto;
		background-color: #fff;
		z-index: 9;
	}
	.mobile-nav__menu li {
		margin-bottom: 10px;
	}
	.mobile-nav__menu li:last-child {
		margin-bottom: 0;
	}
	.mobile-nav__menu a {
		font-size: 20px;
		line-height: 28px;
		color: #231f20;
	}

	.sub-menu {
		margin-top: 8px;
		padding-left: 12px;
	}


	/* Burger */

	.burger {
		position: absolute;
		top: 50%;
		left: 20px;
		width: 28px;
		height: 20px;
		margin-top: -10px;
		cursor: pointer;
	}
	.burger__line {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 2px;
		margin-top: -1px;
		background-color: #231f20;
	}
	.burger__line:before,
	.burger__line:after {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #231f20;
		content: '';
	}
	.burger__line:before {
		top: 9px;
	}
	.burger__line:after {
		bottom: 9px;
	}
	.burger_active .burger__line:before {
		top: 0;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.burger_active .burger__line:after {
		bottom: 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.burger_active .burger__line {
		background-color: transparent;
	}

}



@media all and (max-width: 767px) {

	/* Defaults */
	
	h1 span::after {
		display: none;
	}
	.home h1 {
		margin-bottom: 20px;
		font-size: 44px;
		line-height: 52px;
	}
	.content {
		padding-top: 64px;
	}
	.home .content {
		padding-top: 94px;
	}

	/* Slider */
	.slider-wrapper,
	.home-intro,
	.flying-image {
		display: none;
	}

	/* Flying */

	.flying-text {
		left: auto;
		width: 100%;
		padding: 0;
		border: none;
	}

	/* Plans */
	.plans {
		margin-top: 60px;
	}
	.plans h2 {
		font-size: 42px;
		line-height: 50px;
	}
	.plans__item {
		margin-bottom: 15px;
	}
	.plans__excerpt {
		height: auto;
	}

	/* Footer */
	.footer__logo {
		margin: 0 auto;
	}
	.footer__info {
		text-align: center;
	}


	/* Page header */
	.page-header__title {
		padding-bottom: 24px;
		font-size: 54px;
		line-height: 62px;
	}

	/* Forms */
	.respond-form {
		padding-left: 15px;
	}
	.wpcf7 input[type="text"],
	.wpcf7 input[type="email"],
	.wpcf7 input[type="tel"],
	.wpcf7 textarea,
	.wpcf7 select {
		width: 100%;
	}

	.sidebar {
		margin-top: 30px;
	}

	.single-lawyer .content {
		padding-top: 90px;
	}

	.single-lawyer h1 {
		margin: 20px 0 15px 0;
		text-align: center;
		font-size: 36px;
		line-height: 44px;
	}

}


@media all and (min-width: 768px) and (max-width: 1200px) {

	.content {
		padding-top: 64px;
	}
	.home .content {
		padding-top: 64px;
	}

	.home-intro {
		display: none;
	}
	.flying-text {
		left: 0;
		width: 100%;
		padding: 20px 40px 0 40px;
		border: none;
	}
	.plans {
		margin-bottom: 0;
	}
	.plans__item {
		margin: 0 40px 20px 40px;
	}
	.plans__excerpt {
		height: auto;
		padding: 10px 50px;
	}
	.footer__logo {
		margin: 0 auto;
	}
	.footer__info {
		text-align: center;
	}
	.page-header {
		margin-bottom: 20px;
	}
	.sidebar {
		width: auto;
		margin: 40px 0 0 0;
	}
	.respond-form {
		margin-top: 40px;
		padding-left: 15px;
	}

}

/*
COLORS

black: #231f20;
green: #16a751;
orange: #fcb042;

*/