/** FONT-FACE STARTS **/
/* Google Fonts Turkish letters problem solve. Add This parameter to end of the google font line &subset=latin,latin-ext*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

::selection {
	background-color: #0faad3;
	color: white;
}

::-moz-selection {
	background-color: #0faad3;
	color: white;
}

img::selection {
	background: transparent;
}

img::-moz-selection {
	background: transparent;
}

/** CLEARFIX **/

.clear {
	clear: both;
}

/** GENERAL OPTIONS START **/

html {

}

body {
	font-family: 'Open Sans', Arial;
	background-color: #fcfcfc;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased; /** fixing font visual problem **/
    -webkit-text-size-adjust: 100%; /** fixing font visual problem **/
	-moz-osx-font-smoothing: grayscale; /** fixing font visual problem **/
}


/** HOME PAGE **/

header {
	height: auto;
	width: 100%;
}

header #logo-main {
	width: 250px;
	height: 150px;
	display: block;
	margin: 0 auto;
	background-image: url('../img/main-logo.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	cursor: default;

	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

header #logo-main a.logo-link {
	width: 250px;
	height: 150px;
	display: block;
	text-indent: -9999px;
	cursor: default;
}

header #logo-main:hover {
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";

	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=30);

	/* Older than Firefox 0.9 */
	-moz-opacity:0.3;

	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.3;

	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.3;


	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

header nav#main {
	width: 100%;
	height: 50px;
	background-color: #f47676;

	-webkit-box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
}

header nav ul.main {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	height: 50px;
	text-align: center;
}

header nav ul.main li {
	display: block;
	float: left;
	width: 16%;
	background-color: #f47676;
}

header nav ul.main a.nav-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	width: 100%;
	display: block;
	height: 50px;
	line-height: 50px;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

header nav ul.main li a.nav-link:hover {
	background-color: #ffffff;
	color: #d60d0d;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}


header nav span.mobile-nav-btn {
	display: none;
	width: 100%;
	height: 50px;
	background-color: rgba(244, 118, 118, 1);
	border-bottom: 1px solid #ffffff;
	text-transform: initial;
	cursor: pointer;
	font-weight: 400;
	font-size: 17px;
	line-height: 50px;
	color: rgba(255, 255, 255, 1);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

header nav span.mobile-nav-btn:before {
	content: "Menu" ;
}

header nav span.mobile-nav-btn:hover {
	background-color: rgba(244, 118, 118, 0.1)!important;
	color:rgba(255, 255, 255, 0.6);

	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

#mbanner {
	margin-top: 40px;
	margin-bottom: 0;
	overflow: hidden;
}

#mbanner .img-box img {
	width: 100% !important;
	max-height: 1600px;
}

#mbanner .img-box {
	width: 100%;
	max-height: 1600px;
}

#mtop-content {
	margin-top: 100px;
	text-align: center;
}

#mtop-content h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 70px;
}

#mtop-content h1 span {
	font-size: 19px;
	font-weight: 400;
	margin-top: 12px;
	display: inline-block;
	letter-spacing: 3px;
	color: #d60d0d;
}


#mtop-content .about-us {
	padding:100px 0 60px 0;
	width: 100%;
	background-color: #f47676;
}


#mtop-content .about-us .container {
	max-width: 940px;
	margin: 0 auto;
	padding-right: 30px;
	padding-left: 30px;
}

#mtop-content .about-us .container p {
	color: white;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
}

#mtop-content .about-us .container p a {
	color: #e0e0e0;
	text-decoration: none;

	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

#mtop-content .about-us .container p a:hover{
	color: #c6c6c6;

	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.services {
	padding-top: 100px;
	padding-bottom: 60px;
	text-align: center;
}

.services h2 {
	color: #000000;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 60px;
}

.services .services-container {
	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: 0 auto;
  	display: box;
  	display: -webkit-box;
  	display: -moz-box;
  	display: flex;
  	display: -webkit-flex;
 	display: -moz-flex;
  	display: -ms-flexbox;
  	box-pack: center;
  	-webkit-box-pack: center;
  	-moz-box-pack: center;
  	-ms-flex-pack: center;
 	justify-content: center;
  	-webkit-justify-content: center;
  	-moz-justify-content: center;
  	-ms-justify-content: center;
  	-o-justify-content: center;
  	box-lines: multiple;
  	-webkit-box-lines: multiple;
  	-moz-box-lines: multiple;
  	-ms-box-lines: multiple;
  	flex-wrap: wrap;
}

.services .services-container .services-box {
	width: 270px;
	padding: 30px 25px 25px;
	height: 270px;
	border: 1px solid #2b2b2b;
	box-sizing: border-box;
	margin-bottom: 30px;
	margin-left: 15px;
	margin-right: 15px;
}

.services .services-container .services-box h3 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 25px;
	color: #d60d0d;
	letter-spacing: -0.5px;
}

.services .services-container .services-box p {
	color: #2b2b2b;
	margin-bottom: 30px;
}

.services .services-container .services-box a {
	padding:6px 20px;
	text-decoration: none;
	border: 1px solid #191919;
	color: #d60d0d;
	text-transform: uppercase;
	letter-spacing: 1px;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

.services .services-container .services-box a:hover {
	background-color: #191919;
	color: white;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}


.services .services-container .services-box h3.margin-h3 {
	margin-bottom: 141px;
}
#education {
	text-align: center;
	background-color: #f47676;
	padding: 100px 0 60px 0;
}
#education .container {
	max-width: 940px;
	margin: 0 auto;
	padding-right: 30px;
	padding-left: 30px;	
}

#education h3 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

#education .container p {
	color: white;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
}

#education .container p a {
	color: #e0e0e0;
	text-decoration: none;

	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

#education .container p a:hover{
	color: #c6c6c6;

	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

#mcontact-section {
	width: 100%;
	text-align: center;
	padding: 100px 0 30px;
	background-color: #f47676;
}

#mcontact-section h3{
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

#mcontact-section a.mcontact-icon {
	width: 252px;
	height: 131px;
	background-image: url('../img/contact4.png');
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	margin: 0 auto;
	text-indent: -9999px;

	border-top: 2px solid rgba(1255,255,255, 1);

	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#mcontact-section a.mcontact-icon:hover {
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";

	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=30);

	/* Older than Firefox 0.9 */
	-moz-opacity:0.3;

	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.3;

	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.3;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}
/** TEAM PAGE **/

#tbanner {
	width: 100%;
	background-image: url('../img/team.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-top: 40px;

}

#tbanner .overlay {
	width: 100%;
	padding: 200px 0px;
	background-color: rgba(0,0,0, 0.1);
	display: block;
}
#mteam-section {
	width: 100%;
	text-align: center;
	padding: 100px 0 60px;
}

#mteam-section h3 {
	color: #000000;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 60px;
}

#mteam-section .container {
	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: 0 auto;
  	display: box;
  	display: -webkit-box;
  	display: -moz-box;
  	display: flex;
  	display: -webkit-flex;
 	display: -moz-flex;
  	display: -ms-flexbox;
  	box-pack: center;
  	-webkit-box-pack: center;
  	-moz-box-pack: center;
  	-ms-flex-pack: center;
 	justify-content: center;
  	-webkit-justify-content: center;
  	-moz-justify-content: center;
  	-ms-justify-content: center;
  	-o-justify-content: center;
  	box-lines: multiple;
  	-webkit-box-lines: multiple;
  	-moz-box-lines: multiple;
  	-ms-box-lines: multiple;
  	flex-wrap: wrap;
}

#mteam-section .container .team-box {
	width: 250px;
	height: 220px;
	padding: 30px 10px;
	border: 1px solid rgba(43, 43, 43, 1);
	margin: 0 15px 30px;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#mteam-section .container .team-box .face-thumb {
	width: 100px;
	height: 100px;
	margin: 10px auto;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;

	-webkit-box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);

}

.photo1 {
	background-image: url('../img/photo-1.png');
	background-position: center center;
}

.photo2 {
	background-image: url('../img/photo-2.jpg');
	background-position: center center;
	background-size: cover;
}

.photo3 {
	background-image: url('../img/photo-3.jpg');
	background-position: center center;
	background-size: cover;
}

.photo4 {
	background-image: url('../img/photo-4.jpg');
	background-position: center -8px;
	background-size: cover;
}

.photo5 {
	background-image: url('../img/photo-5.jpg');
	background-position: center -8px;
	background-size: cover;
}

#mteam-section .container .team-box h4 {
	font-size: 16px;
	font-weight: 400;
	color: rgba(214, 13, 13, 1);

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#mteam-section .container .team-box span {
	font-size: 13px;
	font-weight: 400;
	font-style: italic;
	color: rgba(0,0,0, 0.7);

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#mteam-section .container .team-box a {
	padding:5px 15px;
	text-decoration: none;
	border: 1px solid #191919;
	color: #d60d0d;
	letter-spacing: 1px;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;

	display: inline-block;
	margin-top: 15px;
}

#mteam-section .container .team-box a:hover {
	background-color: #191919;
	color: white;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

footer {
	color: white;
	padding:50px 0px 30px;
	width: 100%;
	background-color: #191919;
}

footer nav.footer-nav {
	max-width: 1000px;
	height: auto;
	width: 100%;
	margin: 0 auto;
}

footer nav.footer-nav ul.footer {
	text-align: center;
}

footer nav.footer-nav ul li {
	display: inline-block;
	margin: 0 10px 20px;
}

footer nav.footer-nav ul li a.footer-nav-link {
	color: rgba(255,255,255, 1);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

footer nav.footer-nav ul li a.footer-nav-link:hover {
	color: rgba(255,255,255, 0.5);

	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}

footer p {
	font-size: 14px;
	text-align: center;
}

footer p span {
	font-size: 13px;
	color: #dfdfdf;
}


/** ABOUT PAGE **/


#abanner {
	padding: 200px 0px;
	margin-top: 40px;
	background-image: url('../img/about-banner-responsive.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#acontent {
	text-align: center;
	padding: 100px 0px 60px;
}

#acontent h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 50px;
}

#acontent .container {
	max-width: 940px;
	margin: 0 auto;
	padding-right: 30px;
	padding-left: 30px;
}

#acontent .container p {
	color: #000000;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
}



/** EDUCATIONS PAGE **/

#ebanner {
	margin-top: 40px;
	background-image: url('../img/meeting.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#ebanner .eoverlay{
	width: 100%;
	padding: 200px 0px;
	background-color: rgba(0,0,0, 0.5);
	display: block;
}

#econtent {
	text-align: center;
	padding: 100px 0px 60px;
}

#econtent h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 50px;
}

#econtent .container {
	max-width: 940px;
	margin: 0 auto;
	padding-right: 30px;
	padding-left: 30px;
}

#econtent .container p {
	color: #000000;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
}
#econtent .container ul {
	display: table;
	margin: 0 auto;
	list-style: none;
	margin-top: 40px;
}

#econtent .container ul li{
	color: #000000;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
}


/** TEAM PAGE **/

#tcontent {
	text-align: center;
	padding: 100px 0px 60px;
}

#tcontent h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 50px;	
}

#tcontent h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 50px;	
}

#tcontent .person-section {
	width: 100%;
	height: auto;
	margin-top: 50px;
	padding: 100px 0px 60px;
	background-color: #f47676;
}

#tcontent .person-section .container {
    max-width: 940px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
}

#tcontent .person-section .container .photo-box {
	width: 100px;
	height: 100px;
	margin: 0px auto 20px;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;

	-webkit-box-shadow: 0px 7px 23px 0px rgba(255,255,255,0.15);
	-moz-box-shadow: 0px 7px 23px 0px rgba(255,255,255,0.15);
	box-shadow: 0px 7px 23px 0px rgba(255,255,255,0.15);
}

#tcontent .person-section .container h3.name {
	font-size: 18px;
	font-weight: 600;
	color: rgba(255, 255, 255, 1);
}

#tcontent .person-section .container span.title {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

#tcontent .person-section .container p.cv-box{
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
	margin-top: 30px;
}

#tcontent .alt-person-section {
	width: 100%;
	height: auto;
	padding: 100px 0px 60px;
}

#tcontent .alt-person-section .container {
    max-width: 940px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
}

#tcontent .alt-person-section .container .photo-box {
	width: 100px;
	height: 100px;
	margin: 0px auto 20px;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;

	-webkit-box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 7px 23px 0px rgba(0,0,0,0.15);
}

#tcontent .alt-person-section .container .h3.name {
    font-size: 18px;
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
}

#tcontent .alt-person-section .container span.title {
	font-size: 15px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.7);
}

#tcontent .alt-person-section .container p.cv-box {
	color: #2b2b2b;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
	margin-top: 30px;	
}


/** SERVICES PAGE **/
#sbanner {
	margin-top: 40px;
	background-image: url('../img/service.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

#sbanner .soverlay {
	width: 100%;
	padding: 200px 0px;
	background-color: rgba(0,0,0, 0.4);
	display: block;
}
#scontent {
	text-align: center;
	padding: 100px 0px 60px;
}

#scontent h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 50px;	
} 

#scontent .container {
    max-width: 940px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
}

#scontent .container h3 {
	color: #f47676;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 5px 10px;
    border: 1px solid #f47676;
    cursor: pointer;
}


#scontent .container h3 a {
	text-decoration: none;
	color: #f47676;
	display: block;
	padding: 5px 10px;
}

#scontent .container div {
	margin-bottom: 20px;
}


#scontent .container div p {
    color: #000000;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
}

#scontent .container div li {
    color: #000000;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
}
#scontent .container div h5 {
	color: #f33737;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#scontent .container div h5.margin {
	display: block;
	margin-top: 40px;
}

#scontent span.margin {
	display: block;
	margin-top: 20px;
}

#scontent .container div ul {
	display: table;
	margin: 0 auto;
	max-width: 500px;
	margin-bottom: 40px;
	text-align: left;
	padding: 0 5px;
	list-style: outside disc;
}

#scontent span.heading {
	font-size: 17px;
	font-weight: 600;
	display: block;
	color: #f76d6d;
}

#scontent span.ydemargin {
	margin-bottom: -20px!important;	
}

#scontent .ymargin2 {
	margin-top: 25px!important;	
}

#scontent .ymargin {
	margin-top: 15px!important;	
}

#scontent .container ul span {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	color: #f76d6d;
}

#scontent .container ul li{
	color: #000000;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 35px;
}

#scontent .container ul#tab-button {
	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: 20px auto;
  	list-style: none;
  	text-align: center;
}

ul span.center {
	text-align: center!important;
}

#scontent .container ul#tab-button li a {
	text-decoration: none;
    color: #f47676;
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding:5px 10px;
    border: 1px solid #f47676;
    margin: 0px 10px 10px;
}

li.ui-state-active a {
    color: #ffffff!important;
    background-color: #f47676;
}

h3.ui-state-active {
    color: #ffffff!important;
    background-color: #f47676;
}

#scontent p.main-content {
	max-width: 1000px;
	margin: 0 auto;
    color: #000000;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;

}

.emotion-box {
	max-width: 1000px;
	margin: 10px auto 0px;
  	border-top: 1px solid black;
}

.emotion-box h6{
	width: 33.33333%;
	float: left;
	display: block;
    color: #000000;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 35px;
    font-weight: 500;
}







/** CONTACT PAGE **/

#cbanner {
	width: 100%;
	background-image: url('../img/contact.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-top: 40px;

}

#cbanner .overlay {
	width: 100%;
	padding: 200px 0px;
	background-color: rgba(0,0,0, 0.3);
	display: block;
}

#ccontent .contact-container {
	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: 0 auto;
  	display: box;
  	display: -webkit-box;
  	display: -moz-box;
  	display: flex;
  	display: -webkit-flex;
 	display: -moz-flex;
  	display: -ms-flexbox;
  	box-pack: center;
  	-webkit-box-pack: center;
  	-moz-box-pack: center;
  	-ms-flex-pack: center;
 	justify-content: center;
  	-webkit-justify-content: center;
  	-moz-justify-content: center;
  	-ms-justify-content: center;
  	-o-justify-content: center;
  	box-lines: multiple;
  	-webkit-box-lines: multiple;
  	-moz-box-lines: multiple;
  	-ms-box-lines: multiple;
  	flex-wrap: wrap;
  	text-align: left;
}

#ccontent .contact-container address {
	font-size: 14px;
	font-style: normal;
	margin: 0px 30px 30px;
	width: 250px;
}

#ccontent .contact-container address span.heading {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	display: block;
	color: #f47676;
	margin-bottom: 15px;
	padding-bottom: 2px;
	border-bottom: 1px solid #f18181;
}

#ccontent .googlemap {
	margin-top: 70px;
	background-image: url('../img/mapgoogle.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

#ccontent .googlemap .overlay {
	width: 100%;
	padding: 200px 0px;
	background-color: rgba(0,0,0, 0.3);
	display: block;
}

#ccontent {
	text-align: center;
	padding: 100px 0px 0px;
}

#ccontent h1 {
	color: #000000;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 50px;
}
.contact-container #contact-box {
	text-align: left;
	width: 250px;
	margin: 0px 30px;
}

.contact-container #contact-box span.heading {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	display: block;
	color: #f47676;
	margin-bottom: 15px;
	padding-bottom: 2px;
	border-bottom: 1px solid #f18181;
}

#contact-box a.email{
	color: #585858;
	text-decoration: none;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#contact-box a {
	cursor: default;
}

#contact-box a span {
	color: #000000 !important;
	cursor: default;
}

#contact-box a.email:hover{
	color: #000000;
	text-decoration: none;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#contact-box a.website{
	color: #585858;
	text-decoration: none;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	display: block;
}

#contact-box a span {
	color: #000000 !important;
	cursor: default;
}

#contact-box a.website:hover{
	color: #000000;
	text-decoration: none;

	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
}

#contact-box p span {
	text-indent: 60px;
	display: block;
}

#contact-box .info-box {
	width: 100%;
	height: auto;
}
#contact-box .info-box .info-heading {
	width: 50px;
	float: left;
	margin-right: 10px;
}

/** RESPONSIVE STARTS **/
@media screen and (max-width: 800px) {
	header {
		text-align: center;
	}

	header nav#main {
		height: auto;
		background-color: #f47676;
	}

	header nav ul.main {
		height: auto;
		text-align: center;
		display: none;
	}

	header nav ul.main li {
		float: none;
		width: 100%;
		background-color: #f47676;
		border-bottom: 1px solid #ffffff;
	}

	header nav span.mobile-nav-btn {
		display: block;
		width: 100%;
		cursor: pointer;
	}

}