/*---------------------------------------------------------------
	Template Name: Xprieme
	Description: Responsive HTML5 / CSS3 Multi-pages Portfolio-Resume Template
	Version: 1.2
	Author: Ahmed Beheiry
	URL: https://themeforest.net/user/ahmedbeheiry
	--------------------------------------------------------------

	---------------------------------------------------------------
		*** Table Of Content:
	---------------------------------------------------------------
	1 - Reset
	2 - Typography
	3 - Preloader Page
	4 - Buttons
	5 - NavBar
	6 - IconBox
	7 - Breadcrumb
	8 - CTA
	9 - Portfolio
	10 - Team Members
	11 - Testimonials
	12 - Timeline
	13 - Skills
	14 - Pricing-tables
	15 - Blog-Post
	16 - Pagination
	17 - Comment-Box
	18 - Social-Links
	19 - Blockquote
	20 - Contact Form
	21 - To Top Button
	22 - Hero Area
	23 - Page Title Area
	24 - Footer
	25 - Home Page Styles
	26 - About Page Styles
	27 - Single Project Page Styles
	28 - Blog Pages Styles
	29 - Contact Pages Styles */
/*--------------------------------------------------------------*/
/*---------------------------------------------------------------
	1 - Reset */
/*--------------------------------------------------------------*/
* {
	outline: none;
}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
	text-shadow: none;
}

::selection {
	background-color: #333;
	color: #fff;
	text-shadow: none;
}

a,
a:focus,
a:hover {
	outline: none;
	color: #333;
	text-decoration: none;
}

.section {
	padding-top: 10px;
	padding-bottom: 40px;
}

.has-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.jarallax {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.overlay-dark,
.overlay-white {
	position: relative;
}

.overlay-dark::before,
.overlay-white::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.textbx{font-size:30px; padding-top:50px; padding-bottom:10px; color:#FFFFFF; text-align:center
}
.disclaime{font-size:12px; color:#999999;

}

.textblc{font-size:30px; padding-top:20px; color:#000; text-transform:uppercase;
}
.overlay-dark::before {
	background-color: rgba(37, 37, 37, 0.8);
}

.overlay-white::before {
	background-color: rgba(255, 255, 255, 0.5);
}

.light-bg {
	background-color: #e3f2fd;
}

.dark-bg {
	background-color: #000; background-image:url(../img/lines.gif); background-repeat:repeat
}

.no-gutter {
	padding: 0;
}

.mt-10 {
	margin-top: 10px;
}

.mr-20 {
	margin-right: 20px;
}

.ml-20 {
	margin-left: 20px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}
.mb-303 {
	margin-bottom: 30px; text-align:justify; line-height:26px
}
.mt-40 {
	margin-top: 40px;
}

.mb-40 {
	margin-bottom: 40px;
}
.mb-404 {
	margin-bottom: 40px; text-align:justify
}


.ml-40 {
	margin-left: 40px;
}

.mb-80 {
	margin-bottom: 80px;
}

.big-num {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 165px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	color: #fff;
}

.contcent{text-align:center}
@media only screen and (max-width: 991px) {
	.big-num {
		display: none;
	}
}

.mid-num {
	font-size: 45px;
	color: #999;
}

.count {
	font-size: 45px;
}

/*---------------------------------------------------------------
	2 - Typography */
/*--------------------------------------------------------------*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	color: #000;
	margin-top: 0;
	margin-bottom: 15px;
	margin-top:20px;
	text-transform: capitalize;
	text-align:center
}



h1.light, .h1.light,
h2.light, .h2.light,
h3.light, .h3.light,
h4.light, .h4.light,
h5.light, .h5.light,
h6.light, .h6.light {
	color: #fff;
}

p {
	color: #777; text-align:justify;
}

p.sec {
	color: #999;
}
p.secd {
	color: #e4e4e4;
}

p.light {
	color: #ccc;
}

.italic {
	font-style: italic;
}

.capitalize {
	text-transform: capitalize;
}

/*---------------------------------------------------------------
  3 - Preloader Page */
/*--------------------------------------------------------------*/
.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
}

.preloader .pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	opacity: .35;
	background-color: #333;
	-webkit-animation: pulsing 2s infinite ease-in-out;
	        animation: pulsing 2s infinite ease-in-out;
}

.preloader .pulse:nth-of-type(2) {
	-webkit-animation-delay: -1s;
	        animation-delay: -1s;
}

@-webkit-keyframes pulsing {
	0%, 100% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes pulsing {
	0%, 100% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

/*---------------------------------------------------------------
  4 - Buttons */
/*--------------------------------------------------------------*/
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
	outline: none;
	box-shadow: none;
}

.btn {
	border-radius: 0;
	padding: 0;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn.btn-block {
	width: 100%;
	display: block;
}
.lpheading{font-size:34px; text-transform:uppercase; color:#beaf87; letter-spacing:2px; font-weight: normal; font-family: Oakes,arial,sans-serif; text-align:left}
.lpheadorg{font-size:34px; text-transform:uppercase; color:#ed5f09; letter-spacing:2px; font-weight: normal; font-family: Oakes,arial,sans-serif;text-align:left}
.lpheadblu{font-size:34px; text-transform:uppercase; color:#037aff; letter-spacing:2px; font-weight: normal; font-family: Oakes,arial,sans-serif;text-align:left}
.lpheadpur{font-size:34px; text-transform:uppercase; color:#9f10b4; letter-spacing:2px; font-weight: normal; font-family: Oakes,arial,sans-serif;text-align:left}
.lpheadred{font-size:34px; text-transform:uppercase; color:#f81010; letter-spacing:2px; font-weight: normal; font-family: Oakes,arial,sans-serif;text-align:left}

.lpsubhead{font-size:20px; color:#808285;  font-weight:400; line-height:1.6; font-family:Arial, Helvetica, sans-serif}
.lpsubheado{font-size:20px; color:#ff8e57;  font-weight:400; line-height:1.6; font-family:Arial, Helvetica, sans-serif}
.lpsubheadb{font-size:20px; color:#57aaff;  font-weight:400; line-height:1.6; font-family:Arial, Helvetica, sans-serif}
.lpsubheadp{font-size:20px; color:#d653de;  font-weight:400; line-height:1.6; font-family:Arial, Helvetica, sans-serif}
.lptitle{font-size:18px; color:#808285;  font-weight:bold; line-height:1.6; font-family:Arial, Helvetica, sans-serif; text-transform:uppercase; line-height:2; letter-spacing:1.67px}
.lptitle a .active{ box-shadow: inset 0 -3px #beaf87;}

.primary-btn {
	width: 160px;
	height: 45px;
	border: 2px solid #333;
	line-height: 41px;
	text-align: center;
	background-color: transparent;
	color: #333;
}

.primary-btn:hover {
	background-color: #333;
	color: #fff;
}

.primary-btn.white {
	border-color: #fff;
	color: #fff;
}

.primary-btn.white:hover {
	border-color: transparent;
}

.secondary-btn {
	width: 160px;
	height: 45px;
	border: 2px solid transparent;
	line-height: 41px;
	text-align: center;
	background-color: #333;
	color: #fff;
}

.secondary-btn:hover {
	background-color: transparent;
	border-color: #333;
}

.secondary-btn:focus, .secondary-btn:active {
	color: #fff;
	background-color: #333;
}

.secondary-btn.lighten:hover {
	background-color: #404040;
	color: #fff;
	border-color: transparent;
}

.secondary-btn.white {
	background-color: #fff;
	color: #333;
}

.secondary-btn.white:hover {
	background-color: #333;
	color: #fff;
	border-color: transparent;
}

.read-more {
	position: relative;
	color: #333;
	background-color: transparent;
	padding-bottom: 10px;
}

.read-more::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #333;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.read-more:hover::after {
	width: 100%;
}

.btn-small {
	width: 95px;
	height: 35px;
	border: 2px solid #333;
	line-height: 31px;
	text-align: center;
}

/*---------------------------------------------------------------
  5 - NavBar */
/*--------------------------------------------------------------*/
.header-1.transparent-header .navbar {
	background-color: transparent;
	border: none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.header-1.transparent-header .navbar.affix-top .open .dropdown-toggle {
	color: #fff;
}

.header-1.transparent-header .navbar.affix-top .dark-logo {
	display: none;
}

.header-1.transparent-header .navbar.affix {
	background-color: #fff;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.header-1.transparent-header .navbar.affix .white-logo {
	display: none;
}

.header-1 .navbar-nav > li > a {
	position: relative;
	background-color: transparent !important;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	padding: 0 15px;
	line-height: 40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #ccc;
}

.header-1 .navbar-nav > li > a::after {
	position: absolute;
	content: '';
	width: 0px;
	height: 2px;
	background-color: #fff;
	left: 15px;
	bottom: 15px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-1 .navbar-nav > li:hover > a {
	background-color: transparent;
}

.header-1 .navbar-nav > li:hover > a::after {
	width: 30px;
}

.header-1 .navbar-nav > li:hover > a:focus {
	background-color: transparent;
}

.header-1 .navbar-nav > li.active > a {
	color: #fff;
}

.header-1 .navbar-nav > li.active > a:focus {
	background-color: transparent;
	color: #fff;
}

.header-1 .navbar-nav > li.active > a::after {
	width: 30px;
}

.header-1 .navbar-nav > li.active:hover > a {
	color: #fff;
}

.header-1 .navbar-nav > li:hover > a {
	color: #fff;
}

.header-1 .navbar-nav > li.open .dropdown-toggle {
	color: #333;
}

.header-1 .navbar-nav .dropdown-menu {
	background-clip: border-box;
	background-color: #FFF;
	right: 15px;
	border-radius: 0;
	border: none;
	border-top: 2px solid #333;
	padding: 0;
}

.header-1 .navbar-nav .dropdown-menu > li > a {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	padding: 15px 20px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-1 .navbar-nav .dropdown-menu > li > a:hover {
	background-color: #333;
	color: #fff;
}

.header-1 .affix .navbar-nav > li > a {
	color: #aaa;
}

.header-1 .affix .navbar-nav > li > a::after {
	background-color: #333;
}

.header-1 .affix .navbar-nav > li.active > a, .header-1 .affix .navbar-nav > li:hover > a {
	color: #333;
}

.header-1 .navbar-header {
	height: 80px;
}

.header-1 .navbar-header .navbar-toggle {
	background-color: #333;
	padding: 10px;
	border: none;
	border-radius: 0;
	margin-top: 23px;
	margin-bottom: 23px;
}

.header-1 .navbar-header .navbar-toggle .icon-bar {
	background-color: #FFF;
	width: 25px;
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-1 .navbar-header .navbar-toggle .icon-bar:nth-child(3) {
	opacity: 0;
}

.header-1 .navbar-header .navbar-toggle .icon-bar:nth-child(2) {
	-webkit-transform: rotate(-45deg) translate(-4px, 5px);
	        transform: rotate(-45deg) translate(-4px, 5px);
}

.header-1 .navbar-header .navbar-toggle .icon-bar:nth-child(4) {
	-webkit-transform: rotate(45deg) translate(-4px, -4px);
	        transform: rotate(45deg) translate(-4px, -4px);
}

.header-1 .navbar-header .navbar-toggle.collapsed .icon-bar:nth-child(3) {
	opacity: 1;
}

.header-1 .navbar-header .navbar-toggle.collapsed .icon-bar:nth-child(2), .header-1 .navbar-header .navbar-toggle.collapsed .icon-bar:nth-child(4) {
	-webkit-transform: rotate(0deg) translate(0px);
	        transform: rotate(0deg) translate(0px);
}

.header-1 .navbar-brand {
	padding-top: 2px;
}

.header-1 .navbar-brand img {
	height: 76px;
	width: 115px;
}

.homepage-3 .header-1 .navbar-nav > li.active > a,
.homepage-3 .header-1 .navbar-nav > li:hover > a {
	color: #333;
}

.homepage-3 .header-1 .navbar-nav > li.active > a::after,
.homepage-3 .header-1 .navbar-nav > li:hover > a::after {
	background-color: #333;
}

.homepage-3 .header-1.transparent-header .navbar.affix-top .open .dropdown-toggle {
	color: #333;
}

@media only screen and (max-width: 767px) {
	.navbar-collapse {
		background-color: rgba(51, 51, 51, 0.85);
	}
	.navbar-collapse li {
		padding-left: 15px;
	}
	.affix .navbar-collapse {
		background-color: #fff;
	}
}

/*---------------------------------------------------------------
  6 - IconBox */
/*--------------------------------------------------------------*/
.icon-box-wrapper {
	margin-bottom: 40px;
}

.icon-box-wrapper .icon-box {
	width: 80px;
	height: 80px;
	border: 1px solid #333;
	line-height: 78px;
	border-radius: 50%;
	text-align: center;
	font-size: 35px;
	text-align: center;
	margin: 0 auto 20px;
	background-color: transparent;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.icon-box-wrapper .icon-box i {
	display: block;
	position: relative;
	line-height: inherit;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.icon-box-wrapper .icon-box.icon-dark {
	background-color: #333;
	color: #fff;
}

.icon-box-wrapper:hover .icon-box {
	background-color: #333;
}

.icon-box-wrapper:hover .icon-box i {
	color: #fff;
}

.icon-box-wrapper:hover .icon-box i:first-child {
	margin-top: -78px;
}
.contejest{ text-align:justify}

.icon-box-wrapper .icon-box-2 {
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 35px;
	margin-bottom: 20px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.icon-box-wrapper .icon-box-2.icon-dark {
	background-color: #333;
	color: #fff;
}

.icon-box-wrapper .icon-box-2 i {
	display: block;
	position: relative;
	line-height: inherit;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.icon-box-wrapper:hover .icon-box-2 {
	background-color: #333;
}

.icon-box-wrapper:hover .icon-box-2 i {
	color: #fff;
}

.icon-box-wrapper:hover .icon-box-2 i:first-child {
	margin-top: -80px;
}

.dark-bg .icon-box-wrapper .icon-box {
	border-color: #fff;
	color: #fff;
}

.dark-bg .icon-box-wrapper:hover .icon-box {
	background-color: #FFF;
}

.dark-bg .icon-box-wrapper:hover .icon-box i {
	color: #333;
}

/*---------------------------------------------------------------
  7 - Breadcrumb */
/*--------------------------------------------------------------*/
.breadcrumb {
	background-color: transparent;
	padding: 0;
	margin: 0;
}

.breadcrumb .breadcrumb-item {
	text-transform: uppercase;
}

.breadcrumb .breadcrumb-item a {
	color: #fff;
	position: relative;
}

.breadcrumb .breadcrumb-item a::after {
	position: absolute;
	content: '';
	width: 0px;
	height: 2px;
	background-color: #FFF;
	left: 0;
	bottom: -10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.breadcrumb .breadcrumb-item a:hover::after {
	width: 30px;
}

.breadcrumb .breadcrumb-item.active {
	color: #ccc;
}

.breadcrumb .breadcrumb-item.active::before, .breadcrumb > li + li::before {
	color: #fff;
	content: '\f178';
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*---------------------------------------------------------------
  8 - CTA */
/*--------------------------------------------------------------*/
.cta-1 {
	background-color: #333;
}

.cta-1 .btn:hover {
	background-color: #fff;
	color: #333;
}

/*---------------------------------------------------------------
  9 - Portfolio */
/*--------------------------------------------------------------*/
.portfolio-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	margin-bottom: 20px;
}

.portfolio-menu li {
	position: relative;
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	cursor: pointer;
	color: #aaa;
	padding: 10px;
	text-transform: capitalize;
}

.portfolio-menu li::after {
	position: absolute;
	content: "";
	bottom: 5px;
	left: 10px;
	width: 0;
	height: 2px;
	background-color: #333;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-menu li.active {
	color: #333;
}

.portfolio-menu li.active::after {
	width: 50%;
}

@media (max-width: 420px) {
	.portfolio-menu li {
		display: block;
	}
	.portfolio-menu li::after {
		bottom: 0;
		left: 50%;
		margin-left: -15px;
	}
	.portfolio-menu li.active::after {
		width: 30px;
	}
}
.portfolio-item {
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
}

.portfolio-item .portfolio-img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-item .portfolio-caption {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.9);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-item .portfolio-caption .text {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	        transform: translate3d(-50%, -50%, 0);
}

.portfolio-item .portfolio-caption .text h4, .portfolio-item .portfolio-caption .text p {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-item .portfolio-caption .text h4 {
	margin-bottom: 10px;
	-webkit-transform: translateY(15px);
	        transform: translateY(15px);
}

.portfolio-item .portfolio-caption .text p {
	margin-bottom: 0;
	-webkit-transform: translateY(-15px);
	        transform: translateY(-15px);
}

.portfolio-item:hover .portfolio-img {
	-webkit-transform: rotate(5deg) scale(1.15);
	        transform: rotate(5deg) scale(1.15);
}

.portfolio-item:hover .portfolio-caption {
	opacity: 1;
	visibility: visible;
}

.portfolio-item:hover .portfolio-caption .text h4, .portfolio-item:hover .portfolio-caption .text p {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

.portfolio-item:hover .portfolio-caption .text p {
	-webkit-transition-delay: .15s;
	        transition-delay: .15s;
}

/*---------------------------------------------------------------
  10 - Team Members */
/*--------------------------------------------------------------*/
.our-team .member {
	max-width: 400px;
	margin: 0 auto 40px;
}

.our-team .member .member-info,
.our-team .member .member-social {
	margin-top: 20px;
}

.our-team .member .member-info h4 {
	margin-bottom: 10px;
}

.our-team .member .member-info p {
	margin-bottom: 0;
	color: #aaa;
	font-style: italic;
}

/*---------------------------------------------------------------
  11 - Testimonials */
/*--------------------------------------------------------------*/
.testimonials .test-carousel {
	cursor: move;
}

.testimonials .testimonial-content {
	background-color: #f6f6f6;
	padding: 20px;
	position: relative;
}

.testimonials .testimonial-content i {
	float: left;
	font-size: 24px;
}

.testimonials .testimonial-content p {
	padding-left: 40px;
}

.testimonials .testimonial-content::after {
	position: absolute;
	content: '';
	bottom: -10px;
	left: 80px;
	border-top: 10px solid #f6f6f6;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
}

.testimonials .testimonial-meta img {
	box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.15);
	width: 100px;
	height: 100px;
}

.testimonials .testimonial-meta .author {
	padding-top: 20px;
}

.testimonials .testimonial-meta .author h4 {
	margin-bottom: 10px;
}

.testimonials .autor-details {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: cneter;
	    -ms-flex-pack: cneter;
	        justify-content: cneter;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.testimonials .autor-details .author-profile img {
	box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.15);
	width: 100px;
	height: 100px;
}

.testimonials .autor-details .author-title {
	margin-left: 20px;
}

.testimonials .autor-details .author-title h4 {
	margin-bottom: 10px;
}

.testimonials .autor-details .author-title p {
	margin-bottom: 0px;
}

.testimonials .owl-dots {
	text-align: center;
	margin-bottom: 40px;
}

.testimonials .owl-dots .owl-dot {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: rgba(51, 51, 51, 0.5);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.testimonials .owl-dots .owl-dot + .owl-dot {
	margin-left: 5px;
}

.testimonials .owl-dots .owl-dot.active, .testimonials .owl-dots .owl-dot:hover {
	background-color: #333;
}

.testimonials.light-bg .testimonial-content {
	background-color: #fff;
}
.testimonials.light-bg .testimonial-content::after {
	border-top-color: #fff;
}

/*---------------------------------------------------------------
  12 - Clients */
/*--------------------------------------------------------------*/
#clients {
	padding: 80px 0;
	background-color: #f6f6f6;
}

#clients .owl-carousel {
	cursor: move;
}

#clients .client {
	padding: 10px 20px;
	opacity: 0.5;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#clients .client img {
	max-width: 100%;
}

#clients .client:hover {
	opacity: 1;
}

/*---------------------------------------------------------------
  13 - Timeline */
/*--------------------------------------------------------------*/
.timeline {
	margin-top: 40px;
	margin-bottom: 40px;
}

.timeline .duration {
	padding: 0;
	text-align: right;
}

.timeline h3 {
	text-transform: capitalize;
	margin-bottom: 10px;
}

.timeline .sub-title {
	margin-bottom: 20px;
	font-style: italic;
	color: #aaa;
}

.timeline .details {
	position: relative;
	padding-left: 65px;
	padding-bottom: 40px;
}

.timeline .details::before {
	position: absolute;
	content: '';
	width: 3px;
	height: 100%;
	background-color: #333;
	left: 24px;
	top: 0;
}

.timeline .details i {
	width: 40px;
	height: 40px;
	border: 2px solid #333;
	line-height: 36px;
	border-radius: 50%;
	text-align: center;
	left: 5px;
	top: -10px;
	position: absolute;
	background-color: #FFF;
	color: #333;
	font-size: 21px;
}

@media only screen and (max-width: 767px) {
	.timeline .duration {
		text-align: left;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 20px;
	}
	.timeline .details {
		padding-left: 60px;
		padding-bottom: 0;
		margin-bottom: 40px;
	}
	.timeline .details::before {
		left: 19px;
	}
	.timeline .details i {
		left: 0;
	}
}

/*---------------------------------------------------------------
  14 - Skills */
/*--------------------------------------------------------------*/
.skill {
	margin-bottom: 40px;
}

.skill h3 {
	margin-bottom: 10px;
}

.progress {
	margin: 0;
	padding-top: 5px;
	overflow: visible;
	background-color: #f6f6f6;
	border-radius: 0 10px 10px 0;
}

.progress .progress-bar {
	height: 10px;
	border-radius: 0 5px 5px 0;
	background-color: #333;
	position: relative;
}

.progress .progress-bar .percent {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #333;
	border-radius: 5px;
	top: -50px;
	right: -15px;
}

.progress .progress-bar .percent::after {
	position: absolute;
	content: '';
	top: 30px;
	left: 10px;
	border-top: 5px solid #333;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

.skill.has-animation .percent {
	opacity: 0;
}

/*---------------------------------------------------------------
  15 - Pricing Tables */
/*--------------------------------------------------------------*/
.pricing-table {
	background-color: #FFF;
	text-align: center;
	padding: 40px 50px;
	margin-bottom: 40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pricing-table .table-price p {
	color: #aaa;
}

.pricing-table hr {
	margin-top: 40px;
	margin-bottom: 40px;
	border-color: #f6f6f6;
}

.pricing-table .table-features ul {
	margin-bottom: 40px;
}

.pricing-table .table-features ul li {
	margin-bottom: 20px;
	color: #777;
}

.pricing-table:hover {
	box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
}

/*---------------------------------------------------------------
  16 - Blog-Post */
/*--------------------------------------------------------------*/
.blog-post .post-img img,
.blog-post-content .post-img img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-post .post-img:hover img,
.blog-post-content .post-img:hover img {
	opacity: .8;
}

.blog-post .post-meta,
.blog-post-content .post-meta {
	margin-bottom: 20px;
	margin-top: 20px;
}

.blog-post .post-meta a,
.blog-post-content .post-meta a {
	color: #aaa;
	margin-right: 10px;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-post .post-meta a:hover,
.blog-post-content .post-meta a:hover {
	color: #999;
}

.blog-post .post-meta i,
.blog-post-content .post-meta i {
	margin-right: 5px;
}

.blog-post .post-title,
.blog-post-content .post-title {
	margin-bottom: 30px;
	color: #333;
	text-transform: capitalize;
}

.blog-post .post-title a,
.blog-post-content .post-title a {
	color: #333;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-post .post-title:hover a,
.blog-post-content .post-title:hover a {
	color: rgba(51, 51, 51, 0.8);
}

.blog-post .post-desc p,
.blog-post-content .post-desc p {
	margin-bottom: 30px;
}

.blog-post .post-desc .read-more i,
.blog-post-content .post-desc .read-more i {
	margin-left: 5px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-post .post-desc .read-more:hover i,
.blog-post-content .post-desc .read-more:hover i {
	margin-left: 10px;
}

.blog-post.list .post-title {
	margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
	.blog-post.list .post-title {
		margin-top: 40px;
	}
}

/*---------------------------------------------------------------
  17 - Blog-Sidebar */
/*--------------------------------------------------------------*/
.widget {
	margin-bottom: 40px; color:
}

.widget:last-of-type {
	margin-bottom: 70px;
}

.widget .list-unstyled {
	margin-bottom: 0;
}

.widget .search-form .form-group {
	position: relative;
	margin-bottom: 0;
}

.widget .search-form .form-group .search-btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-color: transparent;
	color: #aaa;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget .search-form .form-group .search-btn:hover {
	color: #333;
}

.widget li {
	margin-bottom: 10px;
}

.widget li:last-of-type {
	margin-bottom: 0;
}

.widget li a {
	display: block;
	color: #aaa;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget li a:hover {
	color: #333;
}

.widget .popular-posts .widget-post-img {
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget .popular-posts .widget-post-img:hover {
	opacity: .8;
}

.widget .popular-posts img {
	max-width: 90px;
	height: auto;
}

.widget .popular-posts .widget-post-content {
	padding-top: 10px;
	margin-left: 110px;
}

.widget .popular-posts .widget-post-content a {
	color: #333;
	margin-bottom: 10px;
}

.widget .popular-posts .widget-post-content a:hover {
	color: rgba(51, 51, 51, 0.8);
}

.widget .tags li {
	display: inline-block;
	margin-right: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget .tags li a {
	border: 1px solid #aaa;
	padding: 6px 16px;
}

.widget .tags li:hover {
	background-color: #333;
}

.widget .tags li:hover a {
	border-color: #333;
	color: #fff;
}

.blog-post-wrapper .widget:last-of-type {
	margin-bottom: 30px;
}

/*---------------------------------------------------------------
  18 - Pagination */
/*--------------------------------------------------------------*/
.blog-pagination {
	line-height: 0;
	margin-bottom: 80px;
}

.blog-pagination .pagination {
	margin: 0;
}

.blog-pagination .pagination > li {
	display: inline-block;
	background-color: transparent;
	margin-left: 5px;
	margin-right: 5px;
}

.blog-pagination .pagination > li:first-of-type {
	margin-left: 0;
}

.blog-pagination .pagination > li > a {
	padding: 0;
	color: #333;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	width: 40px;
	height: 40px;
	border: 1px solid #333;
	line-height: 38px;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-pagination .pagination > li:hover > a {
	border-color: #333;
	background-color: #333;
	color: #fff;
}

.blog-pagination .pagination > li:first-child > a, .blog-pagination .pagination > li:last-child > a {
	border-radius: 0;
}

.blog-pagination .pagination > .active > a, .blog-pagination .pagination > .active > a:hover {
	color: #fff;
	background-color: #333;
	border-color: #333;
}

/*---------------------------------------------------------------
  19 - Comment-Box */
/*--------------------------------------------------------------*/
.comment-box {
	padding: 20px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
	margin-bottom: 40px;
}

.comment-box .media-body h3 {
	margin-bottom: 10px;
}

.comment-box .media-body h3 a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comment-box .media-body h3:hover a {
	color: rgba(51, 51, 51, 0.8);
}

.comment-box .comment-text {
	margin-bottom: 20px;
	margin-top: 20px;
}

.comment-box.is-reply {
	margin-left: 40px;
}

.comment-box:last-child {
	margin-bottom: 80px;
}

/*---------------------------------------------------------------
  20 - Social-Links */
/*--------------------------------------------------------------*/
.social-list {
	line-height: 1;
	text-align:center;
}

.social-list .icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	line-height: 48px;
	border-radius: 50%;
	text-align: center;
	margin: 5px;
	font-size: 20px;
	color: #fff;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.social-list .icon.fb:hover {
	background-color: #3b5998;
}

.social-list .icon.tw:hover {
	background-color: #1da1f2;
}

.social-list .icon.gh:hover {
	background-color: #333;
}

.social-list .icon.lin:hover {
	background-color: #0077b5;
}

.social-list .icon.be:hover {
	background-color: #1769ff;
}

.social-list .icon.gp:hover {
	background-color: #dd4b39;
}

.social-list .icon.pin:hover {
	background-color: #bd081c;
}

.social-list .icon.drib:hover {
	background-color: #ea4c89;
}

.social-list .icon:hover {
	border-color: transparent;
}

.social-list .icon:hover i {
	line-height: inherit;
	color: #fff;
	-webkit-animation: icontotop .3s forwards ease;
	        animation: icontotop .3s forwards ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.social-list.style-2 .icon {
	width: 35px;
	height: 35px;
	border: 1px solid #333;
	line-height: 33px;
	border-radius: 50%;
	text-align: center;
	color: #333;
	font-size: 18px;
}

.social-list.style-2 .icon:hover {
	border-color: transparent;
}

.social-list.member-social .icon {
	color: #333;
	margin: 0;
}

@-webkit-keyframes icontotop {
	49% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%);
	}
	50% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
}

@keyframes icontotop {
	49% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%);
	}
	50% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
}

/*---------------------------------------------------------------
  21 - Blockquote */
/*--------------------------------------------------------------*/
blockquote {
	margin: 30px 0;
	padding: 20px;
	border-left: 3px solid #333;
	background-color: #f6f6f6;
}

blockquote p {
	color: #999;
	font-style: italic;
}

/*---------------------------------------------------------------
  22 - Contact Form */
/*--------------------------------------------------------------*/
.contact-form .form-group,
.search-form .form-group {
	margin-bottom: 40px;
}

.contact-form .form-group label,
.search-form .form-group label {
	display: block;
	font-weight: 400;
	color: #aaa;
}

.contact-form .form-group .asterisk,
.search-form .form-group .asterisk {
	color: red;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.search-form .form-group input,
.search-form .form-group textarea {
	border: none;
	border-radius: 0;
	box-shadow: none;
	border-bottom: 1px solid #ccc;
	padding-left: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.search-form .form-group input:focus,
.search-form .form-group textarea:focus {
	border-color: #333;
	box-shadow: none;
}

.contact-form .form-group textarea,
.search-form .form-group textarea {
	min-height: 80px;
	resize: none;
}

.contact-form .form-response,
.search-form .form-response {
	margin-top: 20px;
	margin-bottom: 0;
}

.contact-form .form-response i,
.search-form .form-response i {
	font-size: 24px;
	margin-right: 5px;
}

.contact-form .form-response i.fa-times,
.search-form .form-response i.fa-times {
	color: #ff3e3e;
}

.contact-form .form-response i.fa-check,
.search-form .form-response i.fa-check {
	color: #4ac94f;
}

/*---------------------------------------------------------------
  23 - To Top Button */
/*--------------------------------------------------------------*/
#to-top {
	position: fixed;
	z-index: 3000;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#to-top.totop {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	background-color: rgba(51, 51, 51, 0.35);
}

#to-top.totop.style-2 {
	border-radius: 50%;
}

#to-top.totop.style-3 {
	border-radius: 5px;
}

#to-top.show {
	opacity: 1;
}

#to-top:hover {
	background-color: #333;
}

@media only screen and (max-width: 767px) {
	#to-top.show {
		opacity: 0;
	}
}

/*---------------------------------------------------------------
  24 - Hero Area */
/*--------------------------------------------------------------*/
.full-size-hero {
	height: 100vh;
}

.fixed-height-hero {
	height: 700px;
}

.hero-content-wrapper {
	width: 100%;
	height: 100%;
	display: table;
}

.hero-content-wrapper .hero-content {
	display: table-cell;
	vertical-align: middle;
}

.hero-content-wrapper .hero-content h1 {
	font-size: 60px;
}

@media only screen and (max-width: 767px) {
	.hero-content-wrapper .hero-content h1 {
		font-size: 40px;
	}
}

.hero-content-wrapper .hero-content p {
	letter-spacing: 1px;
}

.hero-content-wrapper .hero-content .primary-btn:hover {
	background-color: #FFF;
	color: #333;
}

.fixed-height-hero .hero-content .lead {
	text-transform: uppercase;
}

.overlay-white .hero-content .primary-btn:hover {
	background-color: #333;
	color: #fff;
}

/*---------------------------------------------------------------
  25 - Page Title Area */
/*--------------------------------------------------------------*/
#page-title {
	height: 400px;
}

#page-title h2 {
	color: #FFF;
	font-size: 60px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
	#page-title h2 {
		font-size: 40px;
	}
}

/*---------------------------------------------------------------
  26 - Footer */
/*--------------------------------------------------------------*/
footer {
	background-color: #1a1a1a;
	padding-top: 80px;
}

footer .logo img {
	max-width: 80px;
	height: auto;
	margin-bottom: 20px;
}

footer .follow {
	padding-bottom: 75px;
}

footer .follow h3 {
	margin-bottom: 40px;
	color: #fff;
}

footer .copyright {
	background-color: #181818;
	padding-top: 30px;
	padding-bottom: 20px;
}

footer .copyright p {
	color: #ccc;
	text-align:center;
}

footer .copyright .heart {
	color: #ec2f2f;
	-webkit-animation: heartBeat 2s infinite;
	        animation: heartBeat 2s infinite;
}

@-webkit-keyframes heartBeat {
	0%, 50%, 100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	5% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
	10% {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
	15% {
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
	}
}

/*---------------------------------------------------------------
  27 - Home Page Styles */
/*--------------------------------------------------------------*/
/*----------------------------------------------
  homepage-1 Styles */
/*---------------------------------------------*/
/* Start About Me Section */
.about-me {
	padding-bottom: 0;
}

@media only screen and (max-width: 991px) {
	.about-me {
		padding-bottom: 40px;
	}
}

.about-me .profile-wrapper img {
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 991px) {
	.about-me .profile-wrapper {
		margin-bottom: 40px;
	}
}

.about-me h2 {
	line-height: 1.5;
	margin-bottom: 40px;
}

.about-me .btn {
	margin-top: 30px;
	margin-bottom: 40px;
}

/* End About Me Section */
/* Start Work Process Section */
.homepage-1 .work-process .process {
	position: relative;
	z-index: 1;
}

.homepage-1 .work-process p {
	margin: 0;
	text-align:center
}

/* End Work Process Section */
/*----------------------------------------------
  homepage-3 Styles */
/*---------------------------------------------*/
/* Start About-Intro Section */
.homepage-3 .about-intro h2 {
	line-height: 1.6;
	margin-bottom: 40px;
}

/* End About-Intro Section */
/*---------------------------------------------------------------
  28 - About Page Styles */
/*--------------------------------------------------------------*/
/* Start About Section */
@media (max-width: 991px) {
	.about-page .about .section-title {
		text-align: center;
	}
}

.about-page .about .profile-wrapper img {
	margin-left: auto;
	margin-right: auto;
}

.about-page .about .profile-info span {
	font-weight: 600;
	color: #333;
	margin-right: 10px;
}

.about-page .about .profile-info a {
	color: #777;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.about-page .about .profile-info a:hover {
	color: #333;
}

.about-page .about .more-info .btn {
	margin-top: 20px;
}

.about-page .about .more-info .btn + .btn {
	margin-left: 20px;
}

.about-us h2 {
	line-height: 1.5;
	margin-bottom: 40px;
}

/* End About Section */
/*---------------------------------------------------------------
  29 - Single Project Page Styles */
/*--------------------------------------------------------------*/
.single-project .project-details {
	margin-bottom: 0;
}

.single-project .project-details li {
	margin-bottom: 20px;
}

.single-project .project-details h5 {
	display: inline-block;
	min-width: 140px;
	padding-right: 10px;
	font-size: 16px;
	margin-bottom: 0;
}

.single-project .project-details span {
	color: #777;
}

.single-project .project-details a {
	color: #777;
	border-bottom: 1px solid #777;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.single-project .project-details a:hover {
	color: #333;
	border-color: #333;
}

.single-project .project-nav {
	margin: 0;
}

.single-project .project-nav li {
	display: inline-block;
	position: relative;
}

.single-project .project-nav li.prev {
	float: left;
}

.single-project .project-nav li.prev i {
	margin-right: 10px;
}

.single-project .project-nav li.next {
	float: right;
}

.single-project .project-nav li.next i {
	margin-left: 10px;
}

.single-project .project-nav li::after {
	position: absolute;
	content: '';
	width: 0;
	height: 2px;
	background-color: #333;
	bottom: -10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.single-project .project-nav li.prev::after {
	right: 0;
}

.single-project .project-nav li.prev:hover::after {
	width: 100%;
}

.single-project .project-nav li.next::after {
	left: 0;
}

.single-project .project-nav li.next:hover::after {
	width: 100%;
}

.single-project .related-projects {
	padding-top: 40px;
	padding-bottom: 40px;
}

/*---------------------------------------------------------------
  30 - Blog Pages Styles */
/*--------------------------------------------------------------*/
/* Start Blog Posts Page Styles */
.blog-posts-wrapper {
	padding-bottom: 0;
}

/* End Blog Posts Page Styles */
/* Start Single Post Styles */
.blog-post-wrapper .blog-post-content p {
	margin-bottom: 20px;
}

.blog-post-wrapper .social-list .icon {
	width: 40px;
	height: 40px;
	border: 1px solid #333;
	line-height: 38px;
	border-radius: 50%;
	text-align: center;
}

.blog-post-wrapper .tag-share-wrapper {
	padding-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.blog-post-wrapper .tag-share-wrapper .tags h4 {
	margin-bottom: 0;
}

.blog-post-wrapper .tag-share-wrapper .tags a {
	margin-left: 5px;
	color: #aaa;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-post-wrapper .tag-share-wrapper .tags a:hover {
	color: #333;
}

/* End Single Post Styles */
/*---------------------------------------------------------------
  31 - Contact Pages Styles */
/*--------------------------------------------------------------*/
/* Start Contact-1 Page */
.contact-1 .contact-details {
	padding-top: 40px;
}

.contact-1 #map {
	height: 600px;
}

/* End Contact-1 Page */
/* Start Contact-2 Page */
.contact-2 #map {
	height: 400px;
}

.contact-2 .contact-details {
	display: table;
	width: 100%;
	padding-left: 80px;
	padding-right: 80px;
	min-height: 400px;
}

.contact-2 .contact-details .intro {
	display: table-cell;
	vertical-align: middle;
}

.contact-2 .contact-details .intro i {
	margin-right: 10px;
}

.contact-2 #contact-form {
	margin-bottom: 40px;
}
.tetbold{color:#000066 ; font-weight:bold; text-decoration:underline}

/* End Contact-2 Page */

/*# sourceMappingURL=maps/style.css.map */


#bd{color:#808285;font:14px Oakes,arial,sans-serif;line-height:1.618em}#bd h1,#bd h2,#bd h3,#bd h4,#bd h5{font-family:Oakes,arial,sans-serif;margin:0}#bd a{color:#a19276;cursor:pointer;text-decoration:underline}#bd a:hover{text-decoration:none}#bd div,#bd li,#bd p{font-size:12px;color:#808285;letter-spacing:normal;line-height:1.6}#bd h1{color:#beaf87;font-family:TypoldCondenced,arial,sans-serif;font-size:28px;font-weight:300;letter-spacing:.9px;line-height:1.25;text-transform:uppercase}#bd .contentPreface,#bd .contentPreface p,#bd h2{color:#808285;font-family:Oakes,arial,sans-serif;font-size:18px;font-weight:400;line-height:1.6}#bd h3{color:#a19276;font-size:16px;font-weight:700;letter-spacing:1.67px;line-height:1.25;text-transform:uppercase}#bd .contentBodySection h2,#bd .contentBodySection h3,#bd h4{color:#808285;font-family:oakes,arial,sans-serif;font-size:15px;font-weight:700;line-height:1.25}#bd h5{color:#252526;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:1.25;text-transform:uppercase}#bd blockquote,#bd em,#bd p em{font-family:arial,sans-serif;line-height:1.25;margin:0}#bd blockquote,#bd em,#bd label,#bd p em{color:#808285;display:block;font-size:12px;font-weight:400}#bd label{font-family:Oakes,arial,sans-serif;line-height:1.5;letter-spacing:3px;position:relative;text-transform:uppercase}#bd .breadcrumb{font-size:12px;font-weight:700}@media (min-width:769px){#bd div,#bd label,#bd li,#bd p{font-size:14px}#bd h1{font-size:32px}#bd .contentPreface,#bd .contentPreface p,#bd h2{font-size:20px}#bd h3{font-size:18px}#bd .contentBodySection h2,#bd .contentBodySection h3,#bd h4{font-size:16px}#bd h5{font-size:14px}}@media (min-width:1024px){#bd h1{font-size:36px}}#bd{background-color:#fff;margin-top:-10px}#bd *{box-sizing:border-box}#bd [tabindex="-1"]:focus{outline:none}#bd h1,#bd h2,#bd h3,#bd h4,#bd p{margin:0;padding:10px 0}#bd h1+.contentPreface,#bd h1+h2{padding-bottom:10px}#bd h2,#bd h3{padding:20px 0 0}#bd ul{padding-left:20px}#bd .button,#bd [type=submit],#bd button{background-color:#beaf87;border:1px solid #beaf87;border-radius:4px;color:#252526;cursor:pointer;display:block;font-family:Typold,arial,sans-serif;font-size:14px;font-weight:700;line-height:1.4;margin:15px 0;outline:none;padding:.75em 1.75em;text-transform:uppercase}#bd .button:active,#bd .button:focus,#bd .button:hover,#bd [type=submit]:active,#bd [type=submit]:focus,#bd [type=submit]:hover,#bd button:active,#bd button:focus,#bd button:hover{background-color:#e2dbc9;border-color:#e2dbc9}#bd .hero{background-position:38%;background-size:cover;height:360px;position:relative;width:100%}#bd .hero>div{height:100%;margin:0 auto;max-width:1280px;position:relative}#bd .hero .breadcrumb{bottom:15px;color:#e6e7e8;left:40px;position:absolute}#bd .hero .breadcrumb a{color:#e6e7e8;text-decoration:none}#bd .hero .breadcrumb span{color:#beaf87}#bd .hero.listaproperty__hero{background-image:none!important}#bd .hero.listaproperty__hero:before{background-image:url("/static/c21-landing/images/contact.jpg");background-position:38%;background-size:cover;content:"";height:100%;position:absolute;opacity:.5;width:100%}#bd .hero.listaproperty__hero .breadcrumb,#bd .hero.listaproperty__hero .breadcrumb a,#bd .hero.listaproperty__hero h1,#bd .hero.listaproperty__hero h2{color:#252526}#bd .hero.listaproperty__hero .breadcrumb span{color:#a19276}#bd .hero.listaproperty__hero .nav__container{max-width:1070px;height:auto}#bd .hero.listaproperty__hero .hero__container{display:flex;align-items:center;max-width:1280px}#bd .hero.listaproperty__hero .hero__container .hero--text{margin:0 80px;padding:0 2.5%}#bd main.main-body{display:-webkit-box;display:-moz-box;display:box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-moz-box-orient:vertical;box-orient:vertical;-webkit-box-direction:normal;-moz-box-direction:normal;box-direction:normal;-webkit-flex-direction:column;-moz-flex-direction:column;flex-direction:column;-ms-flex-direction:column;padding:20px 40px}#bd main.main-body aside{order:1;width:100%}#bd main.main-body aside .lvl1{display:-webkit-box;display:-moz-box;display:box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-moz-box-orient:vertical;box-orient:vertical;-webkit-box-direction:normal;-moz-box-direction:normal;box-direction:normal;-webkit-flex-direction:column;-moz-flex-direction:column;flex-direction:column;-ms-flex-direction:column}#bd main.main-body aside .lvl1>li:first-child{border-top:2px solid #d3d3d3;margin:25px 0 0;padding:25px 0 0}#bd main.main-body aside li,#bd main.main-body aside ul{list-style:none;margin:0;padding:0}#bd main.main-body aside a{color:#000;display:inline-block}#bd main.main-body aside a:hover{color:inherit;text-decoration:inherit}#bd main.main-body aside .lvl1>li>a{color:#a19276;font-size:18px;font-weight:700;letter-spacing:1.67px;line-height:2;text-decoration:none;text-transform:uppercase}#bd main.main-body aside .lvl2>li{padding-top:24px}#bd main.main-body aside .lvl2>li:last-child{padding-bottom:30px}#bd main.main-body aside .lvl2>li>a{color:#252526;font-size:14px;font-weight:700;letter-spacing:1.5px;line-height:2;text-decoration:none;text-transform:uppercase}#bd main.main-body aside .lvl3>li{padding-top:5px}#bd main.main-body aside .lvl3>li:first-child{padding-top:20px}#bd main.main-body aside .lvl3>li>a{color:#808285;font-size:14px;line-height:2;text-decoration:none}#bd main.main-body aside ul ul li{padding-left:16px}#bd main.main-body aside a.active,#bd main.main-body aside a:hover{box-shadow:inset 0 -3px #beaf87}#bd main.main-body aside ul ul ul{display:none}#bd main.main-body aside a.active~ul,#bd main.main-body aside ul.active{display:block}@media (min-width:550px){#bd h1+.contentPreface,#bd h1+h2{padding-bottom:20px}#bd main.main-body aside .lvl1{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;box-orient:horizontal;-webkit-box-direction:normal;-moz-box-direction:normal;box-direction:normal;-webkit-flex-direction:row;-moz-flex-direction:row;flex-direction:row;-ms-flex-direction:row;padding-top:70px}#bd main.main-body aside .lvl1>li{width:50%}#bd main.main-body aside .lvl1>li:first-child{border-right:2px solid #d3d3d3;border-top:none;margin:0 20px 0 0;padding:0 20px 0 0}}@media (min-width:769px){#bd .hero .breadcrumb{bottom:30px}#bd main.main-body{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;box-orient:horizontal;-webkit-box-direction:normal;-moz-box-direction:normal;box-direction:normal;-webkit-flex-direction:row;-moz-flex-direction:row;flex-direction:row;-ms-flex-direction:row;margin:0 auto;max-width:1280px}#bd main.main-body aside{min-width:260px;order:0;padding-right:20px;width:260px}#bd main.main-body aside .lvl1{-webkit-box-orient:vertical;-moz-box-orient:vertical;box-orient:vertical;-webkit-box-direction:normal;-moz-box-direction:normal;box-direction:normal;-webkit-flex-direction:column;-moz-flex-direction:column;flex-direction:column;-ms-flex-direction:column;padding-top:40px}#bd main.main-body aside .lvl1>li{width:100%}#bd main.main-body aside .lvl1>li:first-child{border:none;margin:0;padding:0}#bd main.main-body section{margin:0 auto;max-width:800px}}@media only screen and (max-width:925px){#bd .hero.hero.listaproperty__hero .hero--text{margin:0 40px;padding:unset}}@media only screen and (min-width:320px) and (max-width:600px){#bd .hero.hero.listaproperty__hero .hero--text{margin:0 32px;padding:unset}#bd .hero.hero.listaproperty__hero h2{font-size:100%;line-height:18px}}#bd .calculators{display:flex;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;flex-direction:column;padding:0}#bd .calculators__menu{padding-right:30px}#bd .calculators__menu__title{color:#000;font-size:1.5rem;font-weight:700}#bd .calculators__menu__list{list-style:none}#bd .calculators__menu__list li{margin:20px 0}#bd .calculators__menu__list li a{text-decoration:none;color:dimgray;padding-bottom:5px}#bd .calculators__menu__list li a.selected{color:#000;font-weight:700}#bd .calculators__menu__list li a.selected,#bd .calculators__menu__list li a:hover{border-bottom:3px solid #a19276}#bd .calculators__breadcrumb{padding:20px 40px 0;margin:0 auto;max-width:1280px}#bd .calculators__breadcrumb a{color:#808285;text-decoration:none}#bd .calculators__breadcrumb span{color:#beaf87}#bd .calculators zap-calculator input,#bd .calculators zap-calculator label,#bd .calculators zap-calculator select{margin:5px 0}#bd .calculators zap-calculator input,#bd .calculators zap-calculator select{border:1px solid #d3d3d3;border-radius:3px;font-size:13px;height:36px;padding:6px;margin-bottom:25px}#bd .calculators zap-calculator .calculator__title{color:#beaf87;font-family:Typold,arial,sans-serif;font-size:36px;font-stretch:condensed;font-weight:500;margin-bottom:15px;text-transform:uppercase;letter-spacing:.9px}#bd .calculators zap-calculator .calculator__subtitle{color:#808285;font-family:oakes,arial,sans-serif;font-size:15px;font-weight:700;line-height:1.25;margin:10px 0;text-decoration:underline}#bd .calculators zap-calculator .calculator__wrapper{align-items:flex-start;flex-direction:column;display:flex;justify-content:space-between}#bd .calculators zap-calculator .calculator__form{font-size:0}#bd .calculators zap-calculator .calculator__clarification{color:#888;font-family:Oakes,arial,sans-serif;font-size:.8rem;margin-top:-5px}#bd .calculators zap-calculator .calculator__response{border:1px solid #d3d3d3;border-radius:4px;color:dimgray;display:flex;flex-direction:column;max-height:500px;overflow-y:auto;max-width:350px}#bd .calculators zap-calculator .calculator__response__header{background:#d3d3d3;font-weight:700;text-transform:uppercase;padding:10px}#bd .calculators zap-calculator .calculator__response__row{align-items:center;padding:10px}#bd .calculators zap-calculator .calculator__response__row--final{color:#252526;font-weight:700}#bd .calculators zap-calculator .calculator__response__row--final .calculator__response__row__value{font-size:2rem}#bd .calculators zap-calculator .calculator__response__separator{border-bottom:2px solid #d3d3d3;margin:10px}#bd .calculators zap-calculator .calculator__response__note{padding:10px}#bd .calculators zap-calculator .calculator__response--hide{display:none}#bd .calculators zap-calculator .calculator__response table,#bd .calculators zap-calculator .calculator__response td,#bd .calculators zap-calculator .calculator__response th{text-align:center}#bd .calculators zap-calculator .calculator__response table{width:100%}#bd .calculators zap-calculator .calculator__disclaimer{color:#808285;display:block;font-family:arial,sans-serif;font-size:12px;font-weight:400;line-height:1.25;margin-top:15px}#bd .calculators zap-calculator .calculator__footer{display:flex;flex-direction:column;align-items:center;text-align:center}#bd .calculators zap-calculator .calculator__footer .alterra-logo{width:280px}#bd main.calculators__body aside .lvl1>li{min-width:310px;width:310px}@media (min-width:769px){#bd .calculators,#bd zap-calculator .calculator__wrapper{flex-direction:row}#bd main.calculators__body aside{min-width:370px;width:370px}#bd .calculators{padding:0 30px}#bd .calculators zap-calculator .calculator__footer{align-items:flex-start;text-align:left}#bd .calculators zap-calculator .calculator__footer .alterra-logo{width:200px}#bd .calculators zap-calculator .calculator__subtitle{font-size:16px}#bd .calculators zap-calculator .calculator__disclaimer{font-size:14px}}.calculator__response{display:flex;flex-direction:column}.calculator__response__row{display:flex;justify-content:space-between}.full-width{width:100%}#list-a-property{max-width:800px;margin:0 auto 50px}#list-a-property .hide{display:none}#list-a-property .invisible{visibility:hidden}#list-a-property .messages{color:#888;margin-bottom:20px}#list-a-property .messages .legend{display:inline-block;width:60px}#list-a-property .messages .msg-text{width:calc(100% - 80px)}#list-a-property .messages .success .msg-text{width:100%;font-weight:700}#list-a-property .messages .close{display:inline-block;width:10px;font-size:18px;cursor:pointer;text-align:center;line-height:24px}#list-a-property .messages .close,#list-a-property .messages .msg-text{padding:10px 0}#list-a-property .messages .error{display:-webkit-flex;display:flex;border:1px solid #fa0000;line-height:1em}#list-a-property .messages .error .legend{border-left:10px solid #fa0000;background-image:url("/static/c21-landing/images/icon.png");background-position:50%;background-repeat:no-repeat}#list-a-property .messages .error.hide{display:none}#list-a-property form .heading{font-weight:700;font-size:14px;padding-bottom:40px;color:inherit}#list-a-property form label{margin-bottom:16px}#list-a-property form .required-fields:before{content:"*";color:#fa0000;margin-right:3px}#list-a-property form .flex-alignment{display:-webkit-flex;display:flex}#list-a-property form .radio-controls{margin-bottom:20px}#list-a-property form .radio-control{margin:0 5px;display:inline-block}#list-a-property form .radio-control span{font-size:14px}#list-a-property form .half-width{margin-right:40px}#list-a-property form input{min-height:0}#list-a-property form input[type=text],#list-a-property form textarea{border-radius:3px;border:1px solid #e7e9ec;font-size:13px;color:#666;box-sizing:border-box}#list-a-property form input[type=text]::placeholder,#list-a-property form textarea::placeholder{opacity:.5}#list-a-property form input[type=text].validation-error,#list-a-property form textarea.validation-error{border:1px solid #fa0000}#list-a-property form input[type=text].validation-error+span.validation-msg,#list-a-property form textarea.validation-error+span.validation-msg{display:block}#list-a-property form input[name=email],#list-a-property form input[name=fName],#list-a-property form input[name=lName]{width:338px}#list-a-property form input[name=phone]{width:180px}#list-a-property form input[name=zip]{width:120px}#list-a-property form textarea{width:720px;height:125px;padding:16px}#list-a-property form input[type=text]{height:36px;padding:6px}#list-a-property form .zip{margin-left:40px}#list-a-property form .action-controls{margin-top:32px;text-align:right;width:720px;display:flex;justify-content:space-between}#list-a-property form .validation-msg{display:none;color:#fa0000;font-size:12px;height:20px;margin-top:5px}#list-a-property form .required-label{color:#888;font-size:12px;float:left}#list-a-property form .fields-group{margin-top:24px}@media screen and (max-width:768px){#list-a-property form .fields-group{margin-top:0}#list-a-property form label{margin-top:24px}#list-a-property form .half-width{width:100%}#list-a-property form .flex-alignment{margin:0;-webkit-flex-direction:column;flex-direction:column}#list-a-property form .flex-alignment .group-together{-webkit-flex-direction:row;flex-direction:row}#list-a-property form .action-controls,#list-a-property form textarea{width:455px}}@media screen and (max-width:414px){#list-a-property form .fields-group{margin-top:0}#list-a-property form label{margin-top:24px}#list-a-property form .flex-alignment .group-together{-webkit-flex-direction:column;flex-direction:column}#list-a-property form .action-controls,#list-a-property form input[name=email],#list-a-property form input[name=fName],#list-a-property form input[name=lName],#list-a-property form textarea{width:285px}#list-a-property form .zip{margin:0}#list-a-property form .action-controls{text-align:left}#list-a-property form .required-label{float:none}#list-a-property form .action-controls{display:block}#list-a-property form .action-controls button{display:block;margin:20px auto}}#list-a-property .help-block{border-top:1px solid #e7e9ec;margin-top:45px;padding-top:45px}#list-a-property .help-block .help-text h3{color:inherit;margin-bottom:25px;font-size:20px;font-weight:700;padding-top:0}#list-a-property .help-block .help-text p{font-size:16px}#list-a-property .fields-group.fields-group--feedback{margin-top:48px}
/*# sourceMappingURL=main.css.map*/