/* width */
::-moz-scrollbar, ::-webkit-scrollbar {
 width: 5px;
}

/* Track */
::-moz-scrollbar-track, ::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 5px #ddd;
 box-shadow: inset -20px 10px 5px #ddd;
 border-radius: 0px;
}

/* Handle */
::-moz-scrollbar-thumb, ::-webkit-scrollbar-thumb {
 background: #fa8822;
 border-radius: 0px;
}

/* Handle on hover */
::-moz-scrollbar-thumb:hover, ::-webkit-scrollbar-thumb:hover {
 background: #fa8822;
}
* {
	margin: 0;
	padding: 0;
}
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	line-height: 1.4;
	font-family: 'Raleway', sans-serif;
	color: #000;
}
h1 {
	font-size: 48px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 16px;
}
body {
	font-size: 16px;
	font-weight: 400;
	word-wrap: break-word;
	background-color: #ccc;
	color: #6f6f6f;
	line-height: 2;
	letter-spacing: 0.8px;
	font-family: 'Open Sans', sans-serif;
}

::-moz-selection {
 color: #fff;
 text-shadow: none;
 background-color: #222;
}
::selection {
	color: #fff;
	text-shadow: none;
	background-color: #222;
}
*:not(div), :before, :after, .content, .show-icon, .hide-icon, .vcard-box, .menu, section {
	transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
	-moz-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}
a:hover, a:focus {
	text-decoration: none;
}
.align {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* Section Title Style */
.section-title h6 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 5px;
	color: #fa8822;
}
.section-title h1 {
	letter-spacing: 0;
	font-weight: 800;
	text-transform: uppercase;
	color: #02072d;
	font-size: 34px;
}
.section-title h1 span {
	color: #fa8822;
}
.section-title {
	padding-bottom: 20px;
	border-bottom: 1px dotted rgba(152, 152, 152, 0.2);
	margin-bottom: 30px;
}
.section-title .rt p {
	letter-spacing: 0.3px;
	position: relative;
	padding-left: 20px;
}
.section-title .rt p:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: #fa8822;
}
.iner-section-title {
	margin-bottom: 10px;
}
.iner-section-title h3 {
	z-index: 1;
	font-weight: 800;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #02072d;
	font-size: 26px;
	margin: 0;
	position: relative;
	display: inline-block;
}
.iner-section-title h3:before {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 35%;
	background: #fa2d46;
	z-index: -1;
}
/* Layout Style */
.mobile-menu {
	display: none;
}
.mt-50 {
	margin-top: 50px;
	width: 100%;
}
.page-layout {
	position: absolute;
	height: calc(100% - 30px);
	width: 100%;
	top: 15px;
	left: 0;
}
.menu {
	width: 80px;
	position: fixed;
	top: 0px;
	left: 0;
	height: 100vh;
	background-color: #02072d;
	z-index: 2;
}
.vcard-box {
	width: 345px;
	position: fixed;
	top: 0px;
	left: 85px;
	height: 100vh;
	background: url('../img/svg-vcard-box.svg') #fff repeat left top;
	padding: 20px;
	z-index: 1;
}
.vcard-box.hide {
	left: -250px;
	opacity: 0;
}
.content {
	position: fixed;
	left: 435px;
	top: 0px;
	height: 100%;
	width: calc(100% - 435px);
	background-color: #fff;
	overflow: visible;
}
.content:after {
	content: '';
	position: absolute;
	top: 0;
	left: -4px;
	width: 2px;
	height: 10px;
	background: #fff;
	animation: gobot 6s infinite linear;
	z-index: 9999;
}
 @keyframes gobot {
 0% {
 top: 0;
}
 25% {
 top: 25%;
}
 50% {
 top: 50%;
}
 75% {
 top: 75%;
}
 100% {
 top: 100%;
}
}
.content.bw {
	left: 86px;
	width: calc(100% - 86px);
}
.sections {
	overflow: hidden;
	overflow-y: auto;
	height: 100%;
	width: 100%;
}
.sections section {
	z-index: 1;
	left: 100%;
	overflow: hidden;
	overflow-y: auto;
}
section.active {
	z-index: 10;
	left: 0;
}
section {
	padding: 10px 0 0 0;
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
}
/* Mobile Menu */
.mobile-menu {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	margin-bottom: 15px;
	width: 100%;
	height: 60px;
	background: #fff;
}
.mobile-menu .logo {
	width: 100px;
	height: 100%;
	line-height: 60px;
	color: #333;
	border-bottom: none;
	margin-left: 15px;
	display: inline-block;
	text-align:left;
}
.icon-menu.open span:nth-of-type(2) {
	display: none;
}
.icon-menu.open span:nth-of-type(1) {
	transform: rotate(-45deg);
	margin: 0;
	position: absolute;
}
.icon-menu.open span:nth-of-type(3) {
	transform: rotate(45deg);
	margin: 0;
	position: absolute;
}
.icon-menu {
	display: block;
	position: absolute;
	top: 15px;
	right: 25px;
	cursor: pointer;
}
.icon-menu.open {
	top: 30px;
	right: 45px;
}
.icon-menu span {
	width: 25px;
	height: 3px;
	display: block;
	margin: 5px 0;
	background: #333;
}
.m-menu {
	display: inline-block;
	position: relative;
	background: #fff;
	top: -60px;
	z-index: -1;
	opacity: 0;
	width: 100%;
}
ul.m-menu li {
	display: inline-block;
	width: calc(20% - 4px);
	height: 100%;
}
ul.m-menu li a {
	color: #333;
}
.m-menu.active {
	top: 0;
	opacity: 1;
	z-index: 1;
}
/* Menu Style */
.logo {
	width: 100%;
	height: 80px;
	color: #fff;
	text-align: center;
	line-height: 80px;
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 18px;
	border-bottom: 1px solid rgba(103, 103, 103, 0.31);
}
.menu .menu-links {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
}
.link-t a i {
	display: block;
	font-size: 20px;
	margin-bottom: 4px;
}
.link-t a .link-t-n {
	display: block;
	text-transform: uppercase;
	font-size: 11px;
}
li.link-t {
	text-align: center;
	border-bottom: 1px solid rgba(103, 103, 103, 0.31);
	padding: 15px 0;
}
li.link-t a {
	color: #fff;
}
li.link-t:first-of-type {
	border-top: 1px solid rgba(103, 103, 103, 0.31);
}
li.link-t.active, li.link-t:hover {
	background: #fa8822;
}
.show-icon i {
	font-size: 22px;
	color: #02072d;
	line-height: 35px;
}
.show-icon {
	position: absolute;
	bottom: 8.3%;
	left: 0;
	background: #fff;
	width: 35px;
	height: 35px;
	text-align: center;
	cursor: pointer;
	opacity: 0;
}
.show-icon.vb {
	opacity: 1;
}
/* End Menu Style */




/* Vcard Box Style */
.avatar-image {
	width: 200px;
	margin: 50px auto 20px;
}
.avatar-image img {
	max-width: 100%;
	border-radius: 50%;
}
.short-info {
	text-align: center;
}
.short-info svg {
	width: 50px;
}
.short-info p {
	font-size: 15px;
	color: #676767;
	margin-bottom: 30px;
}
.raj-name {
	font-weight: 800;
	letter-spacing: 0;
	color: #02072d;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.short-info h5 {
	font-size: 14px;
	color: #fa8822;
	font-weight: 600;
	margin: 0;
	letter-spacing: 2px;
}
.social-icon {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin: 0 2px;
}
.social-icon i {
	color: #02072d;
	font-size: 22px !important;
}
.social-icon i:hover {
	color: #fa8822;
}
.raja-btn {
	border: 3px solid #fa8822;
	border-radius: 0;
	color: #333;
	text-transform: uppercase;
	font-size: 13px;
	position: relative;
	overflow: hidden;
	min-width: 170px;
	padding: 10px;
}
.short-info .raja-btn-box {
	margin-top: 50px;
}
.raja-btn:hover:after {
	top: 0;
}
.raja-btn:hover {
	color: #fff !important;
}
.raja-btn:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fa8822;
	z-index: -1;
}
.copyright {
	position: absolute;
	bottom: 20px;
	width: 100%;
	left: 0;
	text-align: center;
}
.copyright p {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: #333;
}
.copyright:before {
	content: '';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	height: 1px;
	background: #bcbcbc;
}
.hide-icon i {
	font-size: 22px;
	color: #fff;
	line-height: 35px;
}
.hide-icon {
	position: absolute;
	bottom: 8.3%;
	right: 0;
	background: #02072d;
	width: 35px;
	height: 35px;
	text-align: center;
	cursor: pointer;
}
/* About Section Style */
ul.banner-meta{
	background:#036;
	width:100%!important; padding:0 15px; margin:0;
}
.banner-meta li {
	display: inline-block;
	margin: 0 10px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	position: relative;
	color: #fff;
}
.banner-meta li:first-of-type {
	margin: 0;
}
.banner-meta li:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -10px;
	height: 10px;
	width: 2px;
	background: #617ace;
}
.banner-meta li:first-of-type:before {
	width: 0;
}
.about h2 {
	letter-spacing: 0;
	font-weight: 800;
	text-transform: capitalize;
	font-size: 36px;
	margin-bottom: 20px;
	position: relative;
	margin-left: 20px;
}
.about h2:after {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	height: 100%;
	width: 4px;
	background: #fa8822;
}
.about h2 span {
	color: #02072d;
}
.about-image {
	padding: 20px;
	background: #33406c;
}
.skill:last-of-type {
	padding-bottom: 0;
}
.skill h5 {
	color: #02072d;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	padding-right: 10px;
	margin-bottom: 8px;
	text-transform: uppercase;
}
.percentage {
	position: absolute;
	right: 0;
	top: -4px;
	color: #02072d;
	font-size: 13px;
	font-weight: bold;
}
.progress_bar {
	height: 6px;
	background-color: #fa8822;
}
.progress_bg {
	background: rgba(52, 70, 108, 0.69);
}
.skill {
	position: relative;
	margin-bottom: 20px;
}
.about svg {
	width: 50px;
}
.about .col-md-6 > p {
	margin-bottom: 30px;
}
.profile li {
	width: 49%;
	display: inline-block;
	margin-bottom: 11px;
}
ul.profile {
	background: rgba(254, 228, 204, 0.4);
	margin-top: 40px;
	padding: 25px;
	position: relative;
}
.profile li span {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #333;
	letter-spacing: 0.5px;
}
.profile li .rty {
	color: #02072d;
}
.profile li.n-m {
	margin: 0 !important;
}
.profile .sgh {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size: 70px;
	opacity: 0.2;
	color: #000;
}
.services {
	background-color: rgba(2,7,45,0.1); /* #f9f9f9;*/
	padding: 15px 0;
	margin-top: 25px;
	position: relative;
	overflow: hidden;
}
.services:after {
	content: '';
	position: absolute;
	bottom: -80px;
	right: -100px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #fee4cc;
	opacity: 0.3;
}
.services:before {
	content: '';
	position: absolute;
	top: -80px;
	left: -100px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #fee4cc;
	opacity: 0.3;
}
.service-box:hover {
	transform: translateY(-10px);
}
.service-box {
	background: #ffffff;
	padding: 30px;
	border-radius: 5px;
	transition: all .3s linear;
	position: relative;
	margin: 0;
}
.service-box svg {
	width: 50px;
	fill: #fa8822;
}
.service-box i {
	font-size: 42px;
	margin-bottom: 15px;
	color: #fa8822;
}
.service-box h3 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 0;
	letter-spacing: 1px;
	color: #02072d;
}
.service-box p {
	font-size: 16px;
	line-height: 26px;
	color: #676767;
	margin: 0;
}
.big-num {
	font-size: 80px;
	font-weight: 800;
	position: absolute;
	top: -16px;
	right: 30px;
	color: #fee4cc5e;
}
.services .owl-nav {
	position: absolute;
	top: -42px;
	right: 0px;
}
.services .owl-nav i {
	font-size: 32px;
	background: #fa8822;
	margin: 0 5px;
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
}
button:focus {
	outline: none;
}
.services .owl-nav i:hover {
	background: #02072d;
}
/* Testimonials Style */
.testimonials {
	padding: 15px 0;
}
.client-image img {
	max-width: 100%;
	height: auto;
	width: 60px !important;
	display: inline-block !important;
}
.testimonial-box {
	padding: 25px 30px;
	background: #02072d;
	border-radius: 5px;
	position: relative;
}
.client-image {
	margin-right: 19px;
}
.client-info {
	display: flex;
	align-items: center;
	border-top: 1px dotted #4d6290;
	padding-top: 15px;
}
.client-info span {
	display: block;
	text-transform: uppercase;
	font-size: 13px;
	color: #fa8822;
	font-weight: 400;
	margin-top: -8px;
}
.testimonial-box > p {
	letter-spacing: 0.3px;
	color: #fbfbfb;
	margin-top: 25px;
}
.client-info p {
	text-transform: capitalize;
	color: #fff;
	font-weight: 600;
	margin: 0;
}
.testimonials .owl-nav.disabled {
	display: block;
}
.testimonials .owl-nav {
	position: absolute;
	top: -42px;
	right:0px;
}
.testimonials .owl-nav i {
	font-size: 32px;
	background: #fa8822;
	margin: 0 5px;
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
}
.testimonials .owl-nav i:hover {
	background: #02072d;
}
.testimonial-box i {
	font-size: 42px;
	color: #fa8822;
}
.testimonial-box .la-quote-left {
	position: absolute;
	top: 10px;
	left: 25px;
}
.testimonial-box .la-quote-right {
	position: absolute;
	top: 135px;
	right: 25px;
	display: none;
}
/* Fun Fact Style */

.fun-facts {
	padding: 80px 0 0 0;
	border-top: 1px dotted #333;
}
.fun-fact-block {
	padding: 28px 10px;
	position: relative;
	background-image: url(../img/chayilyam-bangalore.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	top: 0;
	left: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	position: relative;
	overflow: hidden;
	text-align:center;
}
.fun-fact-block .overlay {
	background: rgba(52, 70, 108, 0.63);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.fun-fact-block::after {
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	border: 1px solid #f1f1f1;
}
.fun-fact-block i {
	font-size: 40px;
	color: #fff;
	position: relative;
	z-index: 4;
}
.fun-fact-block h4 {
	font-size: 16px;
	color: #fff;
	background:#345;
	text-align:center; padding:3px 0;
	letter-spacing: 0.7px;
	/*margin: 7px 0 4px 0;*/ margin:0 1px;
	position: relative;
	z-index: 4;
	font-weight: bold;
	text-transform: uppercase;
}
.fun-value {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 4;
	text-align:center;
}
/* Resume Section Style */
.resume {
	background-color: #fff;
}
.my-resume {
	padding-left: 10px;
	margin-right: 00px;
	border-left: 2px solid #eaeaea;
	margin-left: 00px;
	position: relative;
	background: rgba(15,27,37,0.3);
	padding: 20px 20px 20px 10px;
	border-top-left-radius: 20px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 20px;
}
.my-resume::after {
	content: " ";
	display: block;
	clear: both;
	width: 100%;
}
.inner-resume::after {
	content: " ";
	display: block;
	clear: both;
	width: 100%;
}
.history-top {
	display: inline-block;
	text-align: center;
	padding: 7px 14px 7px 7px;
	font-weight: 500;
	font-size: 12px;
	color: #ffffff;
	border-radius: 0px;
	margin-bottom: 10px;
	position: relative;
	top: 0;
	left: 0;
	line-height: 12px;
	background-color: #02072d;
	letter-spacing: 0;
	border-top-right-radius: 14px;
	border-bottom-right-radius: 14px;
}
.history-top::before {
	position: absolute;
	width: 2px;
	height: 26px;
	left: -12px;
	top: 0;
	display: block;
	content: "";
	background: #fa8822;
}
.title-resume {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 30px;
	color: #444;
	position: relative;
	padding-left: 40px;
	font-weight: 600;
	letter-spacing: 1px;
}
.title-resume::before {
	position: absolute;
	left: 0;
	bottom: 12px;
	background: #444;
	height: 1px;
	width: 30px;
	display: block;
	content: " ";
}
.resume-item {
	background: #ffffff;
	border: 1px solid #eaeaea;
	position: relative;
	margin-bottom: 30px;
	padding: 30px 20px;/*! border-radius: 5px; */
}
.resume-head {
	position: relative;
}
.resume-head > span {
	color: #ffffff;
	line-height: 35px;
	font-size: 30px;
	text-align: center;
	margin-right: 14px;
	float: left;
	height: 45px;
	width: 45px;
	font-size: 25px;
	text-align: center;
	line-height: 48px;
	background: #02072d;
}
.rel-resume {
	position: relative;
}
.icon-exp {
	height: 40px;
	width: 40px;
	background: #fff;
	color: #f98a61;
	line-height: 40px;
	font-size: 20px;
	text-align: center;
	display: block;
	margin-right: 10px;
	float: left;
	border: 1px solid #f3f2f2;
	border-radius: 3px;
}
.resume-head .content-exper h4 {
	color: #fa8822;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px;
	letter-spacing: 0;
}
.resume-head.content-exper .history {
	font-size: 13px;
	color: #444;
}
.resume-footer {
	position: relative;
	z-index: 1;
}
.resume-footer p {
	margin-bottom: 0;
	font-size: 16px;
	letter-spacing: 0.4px;
}
.resume-footer .icon-bg {
	position: absolute;
	color: #d2d1d1;
	bottom: 0px;
	font-size: 40px;
	right: 0px;
	opacity: .2;
	z-index: -1;
}
.img-resume {
	margin-top: 25px;
	max-height: 120px;
	overflow: hidden;
}
.resume .section-title h1 {
	color: #02072d;
}
.resume .section-title .rt p {
	color: #676767;
}
.resume svg {
	width: 50px;
	fill: #fa8822;
}
.resume .history {
	letter-spacing: 0.3px;
	font-size: 14px;
	color: #02072d;
	margin: 0;
}
.resume .container-fluid {
	padding: 0 100px;
}
/* ====================
  Portfolio
=======================*/
.mix {
	display: none;
}
ul.portfolio-filter {
	margin-bottom: 35px;
	text-align: center;
}
ul.portfolio-filter li {
	cursor: pointer;
	display: block;
	margin: 10px 0;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background: #02072d;
	padding: 5px 10px;
}
ul.portfolio-filter li:first-of-type {
	margin-top: 0;
}
ul.portfolio-filter li.filter.active, ul.portfolio-filter li.filter:hover {
	background: #fa8822;
}
.img-box {
	position: relative;
	display: table;
	margin-bottom: 30px;
}
.portfolio-text {
	text-align: center;
	position: absolute;
	top: 3%;
	left: 3%;
	width: 94%;
	height: 94%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background: rgba(52, 70, 108, 0.7);
	overflow: hidden;
	opacity: 0;
}
.text-port {
	position: absolute;
	bottom: 0;
	left: -120px;
}
.text-port h2 {
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 4px;
	background: #fff;
	color: #323232;
	text-transform: uppercase;
	padding: 5px 10px;
}
.text-port p {
	font-weight: 400;
	font-size: 13px;
	text-transform: uppercase;
	background: #fa8822;
	color: #fff;
}
.img-box:hover .portfolio-text {
	opacity: 1;
}
.img-box:hover .portfolio-text .text-port {
	left: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
/* Blog Section Style */


.blog {
	background-color: #f6f6f6;
}
.blog-item {
	margin-bottom: 30px;
}
.blog-img {
	position: relative;
	overflow: hidden;
}
.blog-item:hover a img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.blog-info {
	background: #fff;
	padding: 35px 35px;
	z-index: 1;
	position: relative;
	border: 1px solid #f1f1f1;
}
.date {
	padding-left: 0;
}
.date li {
	display: inline-block;
	padding-right: 15px;
}
.date li span {
	padding-right: 5px;
}
.blog-info .title-post a h5 {
	display: block;
	color: #323232;
	font-size: 18px;
	font-weight: bold;
	line-height: 29px;
	margin-bottom: 18px;
	text-transform: uppercase;
	margin-top: 20px;
	letter-spacing: 0.5px;
}
.my-blog * {
	transition: all .3s linear;
}
.blog-info .post-text p {
	/*! font-size: 14px; */
	font-weight: 400;
	/*! line-height: 23px; */
	margin-bottom: 20px;
	letter-spacing: 0.3px;
}
.blog-info .date {
	line-height: 20px;
	margin-bottom: 5px;
	font-size: 12px;
	margin: 0 0 15px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
.blog-info .link {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
}
.date li a {
	color: #fa8822;
}
/* Contact Section Style */

#map {
	height: 500px;
	margin-bottom: 60px;
}
.map {
	padding: 0;
}
.contact {
	margin-bottom: 80px;
}
.contact .section-title-1 {
	margin-bottom: 80px;
}
.contact-info {
	padding: 20px;
	background: #02072d;
}
.contact-info {
	padding: 50px 40px;
	background: #02072d;
}
.contact .social-links li {
	display: inline-block;
	margin: 0 5px;
}
.contact .social-links li a {
	color: #fff;
	font-size: 25px;
}
input[type="text"], input[type="email"], textarea {
	border: none;
	border-bottom: 1px solid #cecece;
	width: 100%;
	padding: 0 0 20px 0;
	color: #4a4a4a;
	text-transform: capitalize;
	font-weight: 500;
	margin-bottom: 35px;
	outline: none;
}

::placeholder {
 font-family: 'Poppins', sans-serif;
 color: #222;
 letter-spacing: 1px;
}
textarea {
	min-height: 120px;
	outline: none;
	resize: auto;
	margin-bottom: 20px;
}
.contact-info h2 {
	font-weight: bold;
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.contact-info h5 {
	color: #fa8822;
	margin-bottom: 10px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}
ul.contact-info-list {
	margin-bottom: 30px;
}
ul.contact-info-list li {
	color: #dadada;
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 5px;
	position: relative;
	padding-left: 25px;
}
ul.contact-info-list li:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5px;
	height: 8px;
	width: 8px;
	background: #dadada;
	border-radius: 50%;
}
ul.contact-info-list li:last-of-type {
	margin: 0;
}
form p {
	color: #555;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	margin-bottom: 0;
}
input[type="submit"] {
	border-radius: 50px;
	background: transparent;
	border: 2px solid #f9a766;
	cursor: pointer;
	color: #f9a766;
	padding: 10px;
	min-width: 180px;
	text-transform: uppercase;
	font-weight: bold;
}
input[type="submit"]:hover {
	background-color: #f9a766;
	color: #fff;
}
input.raja-tbn {
	border-radius: 0;
	padding: 5px 0;
	font-size: 14px;
	letter-spacing: 1px;
}
.social-media {
	position: absolute;
	top: 10px;
	margin: 0 auto;
	border: 1px solid #fff;
	width: 305px;
	background: rgba(255,0,255,0.6);
	text-align: center;
	padding-top: 5px
}
.copyright {
	position: absolute;
	bottom: 0px;
	margin: 0 auto
}
.nav-pills { margin-top:15px;}
	  .nav-pills li{ padding:10px 15px; background:#ebe9e5;}
	 /* .contact-info{ border-top-left-radius:90px; border-top-right-radius:90px;}*/
	  .leftRadius{  border-top-left-radius:10px;}
	  .rightRadius{ border-top-right-radius:10px;}
	  .tab-content{border-top:2px solid #ebe9e5;}
	  .theStumb{ border-left:1px dashed #fff; border-right:1px dashed #fff;}