html {
	scroll-behavior: smooth;
}

.main-header {
	width: 100%;
	background-color: white;
	box-shadow: 0 2px 2px rgba(0,0,0,0.2);
	position: fixed;
	top: 0;
	z-index: 123123;
}


.main-header .navbar {
	border-radius: 0;
	margin-bottom: 0;	
	position: relative;
}

.navbar-header button {
	background-color: rgb(0,79,159);
}

.navbar-header button span {
	background-color: white;
}

.navbar-brand {
	padding: 0;
}

.navbar-brand img {
	position: absolute;
}
.main-header .navbar li {
	border-top: 2px solid transparent;
	margin: 0 10px;
}
.main-header .navbar li:hover {
	border-top: 2px solid rgb(0,79,159);
	background-color: transparent;
}
.main-header .navbar li:hover a {
	background-color: transparent;
	color: rgb(0,79,159);
}
.main-header .navbar li a {
	color: #333;
}
.main-header .navbar li.active {
	border-top: 2px solid rgb(0,79,159);
}
.main-header .navbar li.active a {
	color: rgb(0,79,159);
}


/********* main area ********/

.main-area {
	width: 100%;
	min-height: 800px;
	height: auto;
	background-image: url(../images/advice.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-attachment: fixed;
}

.main-area .company-name {
	width: 100%;
	height: 100%;
	padding-top: 85px;
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 0;
}

.main-area .company-name h1 {
	margin: 0;
	color: white;
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 2px rgba(0,0,0,0.2);
	letter-spacing: 2px;
	transition: all .5s;
	background-color: rgba(200,200,200,0.4);
	border-radius: 20px;
	padding: 20px;
	margin-top: 100px;
}

.about-button {
	display: block;
	width: 150px;
	height: 50px;
	background-color: rgb(0,79,159);
	line-height: 50px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	margin: 50px auto;
	border-radius: 5px;
}
.about-button:hover {
	color: white;
	text-decoration: none;
	filter: brightness(120%);
	transition: all .5s;
}

/************ about area ************/

.about-area {
	padding: 100px 0;
}

.about-area h1 {
	font-size: 30px;
	letter-spacing: 2px;	
	font-weight: bold;
	padding-bottom: 20px;
}

.about-area p {
	font-size: 18px;
	padding-bottom: 20px;
}

.about-area a {
	display: block;
	width: 150px;
	height: 50px;
	font-size: 16px;
	border: 3px solid #333;
	line-height: 44px;
	text-align: center;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	margin-bottom: 50px;
}

.about-area a:hover {
	border: 3px solid rgb(0,79,159);
	background-color: rgb(0,79,159);
	color: white;
	transition: all .5s;
}

/************ consulting area ************/

.consulting-area {
	padding: 100px 0;
	background-color: rgb(218,235,247);
}
.consulting-area h1 {
	text-align: center;
	padding-bottom: 50px;
	letter-spacing: 2px;
}
.consulting-area p {
	text-align: center;
	padding: 50px 0;
	font-weight: bold;
	letter-spacing: 1px;
}

.consulting-img {
	height: 200px;
	margin-bottom: 15px;
	position: relative;
	transition: all .5s;
}

.cons-1:hover, .cons-2:hover, .cons-3:hover, .cons-4:hover {
	transform: scale(1.3);
	z-index: 2;	
}

.consulting-type {
	text-align: center;
	color: #333;
	font-weight: bold;
	width: 200px;
	height: 40px;
	line-height: 40px;
	background-color: white;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}

/************ services area ************/

.services-area {
	padding: 100px 0;
	background-color: rgb(237,237,237);
}
.services-area h1 {
	text-align: center;
	padding-bottom: 50px;
	letter-spacing: 2px;
}

.services-area a {
	display: block;
	width: 100%;
	height: 50px;
	font-size: 16px;
	border: 2px solid #333;
	line-height: 44px;
	text-align: center;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	margin-bottom: 20px;
}

.services-area a:hover {
	background-color: #333;
	color: white;
	transition: all .5s;
}

/************ services area 2 ************/

.services-area-2 {
	padding: 100px 0;
}

.services-area-2 p, .services-area-2 ul li {
	font-size: 18px;
	line-height: 30px;
	padding-bottom: 20px;
}

.download-info {
	text-align: center;
	padding: 50px;
	margin-bottom: 50px;
}

/************ clients area ************/

.clients-area {
	padding: 100px 0;
	background-color: rgb(253,173,57);
}
.clients-area h1 {
	text-align: center;
	padding-bottom: 50px;
	letter-spacing: 2px;
}

.clients-list-container {
	width: 100%;
	padding: 20px;
	height: auto;
	border: 2px solid #333;
	border-radius: 5px;
	background: linear-gradient(rgba(240,240,240), white);
}

.clients-list-container p {
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 50px;
	text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}
.clients-list-container p small {
	font-weight: lighter;
}

.client-logos {
	margin-bottom: 50px;
}

.client-logos img {
	transition: all .5s;
}

.client-logos img:hover {
	transform: scale(1.2);
	z-index: 123123123;
}

/************ contact area ************/

.contact-area {
	padding: 100px 0;
	background-color: rgb(218,235,247);
}
.contact-area h1 {
	text-align: center;
	padding-bottom: 50px;
	letter-spacing: 2px;
}
.contact-area h2 {
	font-size: 24px;
	font-weight: bold;
}
.contact-area p {
	font-size: 16px;
	font-weight: lighter;
	letter-spacing: 1px;
}

.contact-area a {
	display: block;
	width: 150px;
	height: 50px;
	font-size: 16px;
	border: 2px solid #333;
	line-height: 44px;
	text-align: center;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	margin: 50px auto 0;
}

.contact-area a:hover {
	background-color: #333;
	color: white;
	transition: all .5s;
}

/************ address area ************/

.address-area {
	padding: 50px 0;
	background-color: rgb(237,237,237);
}

.address-area p {
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: lighter;
	border-left: 1px solid #333;
	padding-left: 10px;
}

.address-area .col-md-4:last-child p {
	border-right: none;
}

/********** about main area ***********/

.main-about-area {
	background-image: url(../images/desk.jpg) !important;
}

.main-about-area .company-name h1 {
	padding-top: 200px;
}

/********** mission area ***********/

.mission-area {
	padding: 50px 0;
	background-color: rgb(232, 236, 248);
}
.mission-area h1, .mission-area-2 h1 {
	text-align: center;
	font-weight: bold;
	padding-bottom: 30px;
	letter-spacing: 2px;
}
.mission-area p {
	text-align: center;
	font-size: 20px;
	font-weight: lighter;
	color: #555;
	letter-spacing: 1px;
	line-height: 30px;
	padding: 20px;
}

.mission-area-2 {
	padding: 100px 0;
}

.mission-area-2 p {
	font-size: 18px;
	line-height: 30px;
	padding: 20px;
}

/********** testimonials area ***********/

.testimonials-area {
	padding: 100px 0;
	background-color: rgba(253,173,57,0.5);
}
.testimonials-area h1 {
	text-align: center;
	font-weight: bold;
	padding-bottom: 30px;
	letter-spacing: 2px;
}
.testimonials-area p {
	text-align: left;
	font-size: 16px;
	font-weight: lighter;
	color: #555;
	letter-spacing: 1px;
	line-height: 30px;
	padding: 0 20px;
}

/********** team area ***********/

.team-area {
	padding: 100px 0;
	background-color: rgb(232, 236, 248);
}
.team-area h1 {
	text-align: center;
	font-weight: bold;
	padding-bottom: 30px;
	letter-spacing: 2px;
}
.team-area p {
	text-align: left;
	font-size: 16px;
	font-weight: lighter;
	color: #555;
	letter-spacing: 1px;
	line-height: 30px;
	padding: 0 20px;
}

/********** contact page ***********/

.main-about-area {
	width: 100%;
	min-height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-attachment: fixed;
	background-image: url(../images/services.jpg);
}

.main-services-area {
	width: 100%;
	min-height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-attachment: fixed;
	background-image: url(../images/services.jpg);
}

.main-contact-area {
	width: 100%;
	min-height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-attachment: fixed;
	background-image: url(../images/services.jpg);
}

.main-about-area .about-inside,
.main-services-area .services-inside,
.main-contact-area .contact-inside {
	width: 100%;
	height: 100%;
	padding-top: 110px;
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
}

.main-about-area .about-inside h1,
.main-services-area .services-inside h1,
.main-contact-area .contact-inside h1 {
	color: white;
	font-size: 60px;
	font-weight: normal;
	text-align: center;
	text-shadow: 1px 2px rgba(0,0,0,0.2);
	letter-spacing: 2px;
	transition: all .5s;
	background-color: rgba(200,200,200,0.4);
	border-radius: 20px;
	padding: 20px;
	margin-top: 100px;
	display: inline-block;
}

.message-area {
	padding: 100px 0;
}

.message-area h1 {
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
}

.message-area td {
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 20px;
}

.message-area i {
	margin: 20px 10px 20px 0;
}

.message-area textarea {
	resize: none;
	height: 120px;
}

.message-area button {
	margin-bottom: 50px;
}

.three-part-area .col-md-4
 {
	padding: 0;
}

.three-part-area .parts {
	width: 100%;
	height: 500px;
	padding: 80px 60px;
	font-size: 16px;
}

.three-part-area .parts.part-1 {
	background: rgb(0, 244, 255);
}

.three-part-area .parts.part-2 {
	background: rgb(255, 255, 0);
}	

.three-part-area .parts.part-3 {
	background: rgb(0, 255, 216);
}

.three-part-area .parts i {
	font-size: 60px;
	text-align: center;
	display: block;
	color: black;
	padding-bottom: 20px;
}

.three-part-area .parts h1 {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
}

.three-part-area .parts p {
	text-align: center;
	font-weight: lighter;
	color: black;
}

/********** consulting info ***********/

.consulting-info {
	padding: 100px 0;
	border-top: 1px solid #333;
}
.consulting-info:first-child {
	border-top: none;
}
.consulting-info h1 {
	text-align: center;
	font-size: 30px;
	text-shadow: 1px 2px rgba(0,0,0,0.2);
	padding-bottom: 30px;
}
.consulting-info h2 {
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}
.consulting-info p, .consulting-info ol li, .consulting-info ul li {
	font-size: 16px;
	padding-bottom: 0;
}
.consulting-info ol li, .consulting-info ul li {
	padding-bottom: 10px;
}

.consulting-button {
	display: block;
	width: 250px;
	height: 50px;
	font-size: 16px;
	border: 3px solid #333;
	line-height: 44px;
	text-align: center;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	margin: 50px auto;
}

.consulting-button:hover {
	border: 3px solid #333;
	background-color: #333;
	text-decoration: none;
	color: white;
	transition: all .5s;
}

/********** media ***********/

@media screen and (max-width: 768px) {
	.main-header .container {
		padding: 0;
	}
	.main-area .company-name h1 {font-size: 50px;}
	.cons-1:hover, .cons-2:hover, .cons-3:hover, .cons-4:hover {
		transform: scale(1);
	}
	.navbar {
		border: none;
	}
	.navbar ul {
		background-color:white;
		position: relative;
		z-index: 123123123;
		padding: 10px 0;
	}
	.navbar ul li {
		border-top: none !important;
	}
	.navbar ul li.active, .navbar ul li:hover {
		border-top: none !important;
	}
	.navbar ul li a {
		color: #333 !important;
	}
	.navbar ul li a:hover {
		background-color: rgb(0,79,159) !important;
		color: white !important;
	}
	.address-area p {
		border-right: none;
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #999;
	}
	.consulting-button {
		font-size: 14px;
		width: 200px;
	}
	.client-logos {
		margin-bottom: 30px;
	}
	.client-logos img:hover {
		transform: scale(1);
	}
}

@media screen and (max-width: 576px) {
	.main-area .company-name h1 {font-size: 40px;}
}