/**
* template:  TRUSTLAW

TABLE OF CONTENTS

        + Global
        + Header
		+ Trend
		+ About
		+ Excellence
		+ Practice
		+ Trusted
		+ Team
		+ Testimonials
		+ Consultation
		+ Contact


*/
@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';


@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Exo+2:wght@400;800&display=swap');


/*************************************************************
*
*                  GLOBAL
*
**************************************************************/

:root {
	--braun-color: #CA9457;
	--dark-gray-color: #212529;
	--dark-gray-color-2: #151719;
	--light-gray-color: #dedede;
	--font-exo: 'Exo 2', sans-serif;
	--font-cormorant: 'Cormorant Garamond', serif;
}


body {
	font-family: var(--font-exo);
	background-color: var(--dark-gray-color);
	font-size: 16px;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-cormorant);
	font-weight: 700;
	text-transform: capitalize;
}

.wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

.btn {
	text-decoration: none;
	text-transform: uppercase;
	color: var(--light-gray-color);
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.btn .fa-arrow-right-long {
	margin-left: 10px;
}

.text-center {
	text-align: center;
}

.icon-top-title {
	position: relative;
}

.icon-top-title:before {
	position: absolute;
	top: -100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
	background-color: var(--dark-gray-color);

}

#scroll-top {
	background-color: var(--braun-color);
	color: var(--light-gray-color);
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index:100;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

#scroll-top:hover {
	background-color: var(--dark-gray-color-2);
}

#openmenu,
#closemenu {
	color: var(--light-gray-color);
	font-size: 30px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--braun-color);
}

.wrapper-res {
	height: 20px;
	margin-top: 20px;
}

.res .error {
	color: #e8604c;
}

.res {
	display: none;
	font-family: var(--font-cormorant);
	font-weight: 700;
}

.res .send {
	color: #fff;
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--dark-gray-color-2);
	z-index: 30000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

}

#preload img {
	width: 40px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}


/*************************************************************
*
*                        HEADER
*
**************************************************************/


.wrapper-header-content {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	background-attachment: fixed;
	height: 900px;
	position: relative;
}

.header-content {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

.header-content h1 {
	color: var(--light-gray-color);
	font-size: 100px;
	text-transform: capitalize;
	font-family: var(--font-cormorant);
	font-weight: 400;

}

.header-content .btn {
	padding: 20px 30px;
	background-color: var(--braun-color);
}

.header-content .btn:hover {
	background-color: var(--dark-gray-color-2);
}

.social-header {
	margin: 30px 0 50px 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.social-header li {
	margin: 0 10px;
}

.social-header li a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--light-gray-color);
	width: 40px;
	height: 40px;
	border: 2px solid var(--light-gray-color);
	border-radius: 50%;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.social-header li a i {
	font-size: 14px;
}

.social-header li a:hover {
	background-color: var(--braun-color);
	border-color: var(--braun-color);
}

header {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header.container {
	padding-top: 15px;
	padding-bottom: 15px;
	max-width: 1400px;
}

#logo a {
	text-decoration: none;
	display: inline-block;
}

#logo a img {
	max-width: 100%;
	display: block;
}

header .menu li {
	float: left;
	margin-left: 30px;
}

header .menu li a {
	text-decoration: none;
	text-transform: capitalize;
	color: var(--light-gray-color);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

header .menu li a:hover {
	color: var(--braun-color);
}

.wrapper-nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-callback-header {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 50px;
	color: var(--light-gray-color);
}

.wrapper-callback-header p {
	margin-bottom: 5px;
}

.wrapper-callback-header i {
	font-size: 25px;
	color: var(--braun-color);
	margin-right: 20px;
}

.wrapper-callback-header a {
	text-decoration: none;
	color: var(--light-gray-color);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	font-size: 25px;
	font-weight: 800;
}

.wrapper-callback-header a:hover {
	color: var(--braun-color);
}


/*************************************************************
*
*                     TREND   
*
**************************************************************/


#trend {
	position: relative;
	padding-top: 150px;
	padding-bottom: 50px;
}

#trend h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	background-color: var(--dark-gray-color);
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -30%);
	-ms-transform: translate(-50%, -30%);
	transform: translate(-50%, -30%);
	padding: 30px;
}

#trend .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
	background-color: var(--dark-gray-color);
}

.wrapper-trend {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	max-width: 1400px;

}

.wrapper-trend article {
	width: 25%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--dark-gray-color);
	position: relative;
}

.wrapper-trend article img {
	width: 100%;
	display: block;
}

.wrapper-trend-img {
	position: relative;
}

.wrapper-trend-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(33, 37, 41, 0.8);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-trend-img:hover .wrapper-trend-hover {
	background-color: rgba(33, 37, 41, 0.7);
}

.wrapper-trend-hover h3 {
	color: var(--light-gray-color);
	font-size: 30px;
	text-transform: capitalize;
	font-family: var(--font-cormorant);
	font-weight: 400;
}

.wrapper-trend-content {
	background-color: var(--dark-gray-color);
	text-align: center;
	width: 90%;
	margin: 0 auto;
	border: 1px solid var(--braun-color);
	padding: 70px 20px 20px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;

}

.wrapper-trend-content img {
	display: block;
	width: 100px !important;
	height: 100px !important;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 10px;
	position: absolute;
	top: -30%;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
	-ms-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
}

.wrapper-trend-content p {
	color: var(--light-gray-color);
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.wrapper-trend-content span {
	font-size: 20px;
	color: var(--braun-color);
	margin-bottom: 20px;
	display: inline-block;
}

.trend-social {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.trend-social li {
	margin: 0 5px;
}

.trend-social li a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--light-gray-color);
	width: 20px;
	height: 20px;
	border: 2px solid var(--light-gray-color);
	border-radius: 50%;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.trend-social li a i {
	font-size: 12px;
}

.trend-social li a:hover {
	background-color: var(--braun-color);
	border-color: var(--braun-color);
}


/*************************************************************
*
*                        ABOUT
*
**************************************************************/


#about {
	padding-top: 80px;
	padding-bottom: 80px;
}

.wrapper-about {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.about-content {
	width: 50%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--light-gray-color);
	line-height: 1.4;
}

.about-content h3 {
	font-size: 40px;
	margin-bottom: 30px;
}

.about-content p {
	margin-bottom: 20px;
}

.about-img {
	width: 50%;
}

.about-img img {
	width: 100%;
	display: block;
}

#about h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 50px;
}

#about .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
}

.wrapper-signature-video {
	margin-top: 50px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.signature img {
	max-width: 100%;
	display: block;
}

.signature p {
	color: var(--braun-color);
}

.wrapper-signature-video .btn {
	padding: 10px 20px;
	background-color: var(--braun-color);
	margin-left: 50px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-signature-video .btn i {
	margin-right: 10px;
}

.wrapper-signature-video .btn:hover {
	background-color: var(--dark-gray-color-2);
}


/*************************************************************
*
*                       EXCELLENCE
*
**************************************************************/


#excellence {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	background-attachment: fixed;
	padding-top: 80px;
	padding-bottom: 80px;
}

.wrapper-excellence {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.single-excellence {
	width: 33%;
	padding: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	color: var(--light-gray-color);
}

.single-excellence i {
	font-size: 50px;
	margin-bottom: 30px;
}

.single-excellence h3 {
	font-size: 30px;
	text-transform: capitalize;
	font-weight: 400;
	margin-bottom: 20px;
}

.single-excellence p {
	line-height: 1.4;
}


/*************************************************************
*
*                       PRACTICE
*
**************************************************************/


#practice {
	padding-top: 100px;
	padding-bottom: 80px;
}

#practice h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 50px;
}

#practice .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
}

.wrapper-practice-img {
	position: relative;
}

.practicle-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	background-color: rgba(33, 37, 41, 0.5);
}

.practicle-overlay:hover {
	background-color: rgba(33, 37, 41, 0);
}

.wrapper-practice-content {
	background-color: var(--dark-gray-color-2);
	padding: 50px 20px 30px 20px;
	color: var(--light-gray-color);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.icon-practice {
	position: absolute;
	top: 0;
	left: 20px;
	width: 60px;
	height: 60px;
	background-color: var(--dark-gray-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	margin-top: -30px;
}

.icon-practice i {
	font-size: 25px;
	color: var(--braun-color);
}

.wrapper-practice-content h3 {
	font-size: 30px;
	font-family: var(--font-cormorant);
	font-weight: 400;
	margin-bottom: 20px;
}

.wrapper-practice-content p {
	line-height: 1.4;
}

.wrapper-carousel-practice .owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.wrapper-carousel-practice .owl-theme .owl-dots .owl-dot span {
	width: 25px;
	height: 2px;
	background: var(--braun-color);
	border-radius: 0px;
}

.wrapper-carousel-practice .owl-theme .owl-dots .owl-dot.active span,
.wrapper-carousel-practice .owl-theme .owl-dots .owl-dot:hover span {
	background: #869791;
}


/*************************************************************
*
*                       TRUSTED
*
**************************************************************/


#trusted {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	background-attachment: fixed;
	padding-top: 100px;
	padding-bottom: 80px;
}

#trusted h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 10px;
}

#trusted .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
	background-color: transparent;
}

.wrapper-trusted {
	text-align: center;
	line-height: 1.4;
	color: var(--light-gray-color);
}

.trusted-company {
	padding-top: 50px;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.trusted-company img {
	max-width: 100%;
}


/*************************************************************
*
*                       TEAM
*
**************************************************************/


#team {
	padding-top: 100px;
	padding-bottom: 80px;
}

#team h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 50px;
}

#team .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
}

.wrapper-team {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	max-width: 1400px;
}

.single-team {
	width: calc(25% - 10px);
	margin: 0px 5px 10px 5px;
}

.single-team img {
	display: block;
	width: 100%;
}

.single-team-img {
	position: relative;
}

.team-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	background-color: rgba(33, 37, 41, 0.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.team-overlay:hover {
	background-color: rgba(33, 37, 41, 0.8);
}

.team-overlay:hover .team-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.team-social {
	display: none;
}

.team-social li {
	margin: 0 10px;
}

.team-social li a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--light-gray-color);
	width: 30px;
	height: 30px;
	border: 2px solid var(--light-gray-color);
	border-radius: 50%;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.team-social li a i {
	font-size: 14px;
}

.team-social li a:hover {
	background-color: var(--braun-color);
	border-color: var(--braun-color);
}

.single-team-content {
	background-color: var(--dark-gray-color-2);
	padding: 30px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--light-gray-color);
	text-align: center;
}

.single-team-content h3 {
	font-size: 30px;
	font-family: var(--font-cormorant);
	font-weight: 400;
	margin-bottom: 20px
}

.single-team-content p {
	color: var(--braun-color);
}

/*************************************************************
*
*                    TESTIMONIALS
*
**************************************************************/

#testimonials {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	background-attachment: fixed;
	padding-top: 100px;
	padding-bottom: 80px;
}

#testimonials h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 10px;
}

#testimonials .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
	background-color: transparent;
}

.wrapper-testimonials .owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.wrapper-testimonials .owl-theme .owl-dots .owl-dot span {
	width: 25px;
	height: 2px;
	background: var(--braun-color);
	border-radius: 0px;
}

.wrapper-testimonials .owl-theme .owl-dots .owl-dot.active span,
.wrapper-testimonials .owl-theme .owl-dots .owl-dot:hover span {
	background: #869791;
}

.owl-testimonials {
	max-width: 800px;
	margin: 0 auto;
	color: var(--light-gray-color);
}

.owl-testimonials .item {
	text-align: center;

}

.owl-testimonials .item img {
	width: 100px !important;
	height: 100px !important;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.owl-testimonials .item p {
	line-height: 1.4;
}

.owl-testimonials .item h3 {
	margin-top: 30px;
	color: var(--braun-color);
	font-size: 25px;
}

/*************************************************************
*
*                    CONSULTATION
*
**************************************************************/

#consultation {
	padding-top: 100px;
	padding-bottom: 80px;
}

#consultation h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 50px;
}

#consultation .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
}

.wrapper-consultation {

	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.consultation-img {
	width: 50%;
}

.consultation-img img {
	width: 100%;
	display: block;
	height: 100%;
}

.consultation-content {
	width: 50%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--light-gray-color);
	line-height: 1.4;
	background-color: var(--dark-gray-color-2);
}

.consultation-content h3 {
	font-size: 40px;
	margin-bottom: 30px;
}

.consultation-content .wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.consultation-content .wrapper-input input {
	display: block;
	outline: none;
	border: none;
	padding: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 48%;
	margin-bottom: 20px;
	background-color: var(--dark-gray-color);
	border: 1px solid var(--dark-gray-color);
	color: var(--light-gray-color);
}

.consultation-content .wrapper-input textarea {
	display: block;
	outline: none;
	border: none;
	padding: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	min-height: 200px;
	margin-bottom: 20px;
	resize: none;
	background-color: var(--dark-gray-color);
	border: 1px solid var(--dark-gray-color);
	color: var(--light-gray-color);
}

#submit-consultation {
	padding: 20px 30px;
	background-color: var(--braun-color);
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	border: none;
	border: 1px solid var(--braun-color);
}

#submit-consultation:hover {
	background-color: var(--dark-gray-color-2);
}

.consultation-content .wrapper-input input:focus,
.consultation-content .wrapper-input textarea:focus {
	border: 1px solid var(--braun-color);
}

.consultation-content .wrapper-input input::-webkit-input-placeholder,
.consultation-content .wrapper-input textarea::-webkit-input-placeholder {
	color: var(--light-gray-color);
	font-family: var(--font-cormorant);
	font-size: 16px;
}

.consultation-content .wrapper-input input::-moz-placeholder,
.consultation-content .wrapper-input textarea::-moz-placeholder {
	color: var(--light-gray-color);
	font-family: var(--font-cormorant);
	font-size: 16px;
}

.consultation-content .wrapper-input input:-ms-input-placeholder,
.consultation-content .wrapper-input textarea:-ms-input-placeholder {
	color: var(--light-gray-color);
	font-family: var(--font-cormorant);
	font-size: 16px;
}

.consultation-content .wrapper-input input::-ms-input-placeholder,
.consultation-content .wrapper-input textarea::-ms-input-placeholder {
	color: var(--light-gray-color);
	font-family: var(--font-cormorant);
	font-size: 16px;
}

.consultation-content .wrapper-input input::placeholder,
.consultation-content .wrapper-input textarea::placeholder {
	color: var(--light-gray-color);
	font-family: var(--font-cormorant);
	font-size: 16px;
}

/*************************************************************
*
*                    CONTACT
*
**************************************************************/

footer {
	background-color: var(--dark-gray-color-2);

}

#contact {
	padding-top: 100px;
}

#contact h2 {
	font-size: 80px;
	color: var(--light-gray-color);
	font-weight: 400;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 10px;
}

#contact .icon-top-title:before {
	position: absolute;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -79px);
	-ms-transform: translate(-50%, -79px);
	transform: translate(-50%, -79px);
	content: "";
	background-image: url('../images/justice-scale.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
	display: block;
	width: 80px;
	height: 80px;
	background-color: transparent;
}

.wrapper-contact {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 50px;
}

.single-contact {
	width: 30%;
	background-color: var(--dark-gray-color);
	padding: 50px 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--light-gray-color);
	line-height: 1.4;
	font-size: 16px;
	font-weight: 800;

}

.single-contact i {
	font-size: 30px;
	margin-right: 20px;
	color: var(--braun-color);
}

.single-contact a {
	text-decoration: none;
	color: var(--light-gray-color);
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.single-contact a:hover {
	color: var(--braun-color);
}

.wrapper-map {
	width: 100%;
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
}

.wrapper-copyright {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	color: var(--light-gray-color);
	font-size: 14px;
}