/* ================================================================
   MAIN.CSS — OfficeTours Landlord Sites
   Single consolidated stylesheet. Section order:
    1.  CSS Custom Properties
    2.  Base & Reset
    3.  Layout & Header (front-end)
    4.  Hero & Carousel
    5.  Section Utilities
    6.  Card Base
    7.  Vacancy Card
    8.  Request Card
    9.  Building Card
   10.  Admin Header
   11.  Admin Nav Bar
   12.  Admin Dashboard
   13.  Footer
   14.  Responsive
================================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
============================================================ */
:root {
    /* Brand colours */
    --color-primary:        #1D5999;
    --color-primary-dark:   #154d88;
    --color-navy:           #0d1b2e;
    --color-teal:           #0a7a72;

    /* Text */
    --color-text-dark:      #1a2942;
    --color-text-mid:       #6b7a8d;
    --color-text-muted:     #6b7280;
    --color-text-light:     #90a4ae;

    /* Backgrounds */
    --color-bg-section:     #f5f8fc;
    --color-bg-info:        #eef3fb;
    --color-card-bg:        #ffffff;

    /* Borders */
    --color-border-light:   #c8d9f0;

    /* Accents */
    --color-red:            #e53935;
    --color-green:          #2e7d32;
    --color-orange:         #c9910a;

    /* Card tokens — shared across all three card types */
    --card-radius:          10px;
    --card-shadow:          0 2px 14px rgba(0,0,0,0.08);
    --card-shadow-hover:    0 6px 24px rgba(0,0,0,0.13);
    --card-lift:            translateY(-5px);
    --card-transition:      transform 0.2s, box-shadow 0.2s;
    --card-img-height:      190px;
    --card-cta-bg:          linear-gradient(to right, #0d1b2e, #0a7a72);
    --card-cta-padding:     11px 14px;
}

/* ============================================================
   2. BASE & RESET
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700&display=swap');

body {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 13px;
    line-height: 21px;
	font-weight: 300;
	color: #666;
}

strong, b {
	font-family: 'Nunito Sans';
	font-weight: normal;
}

img {
	max-width: 100%;
	height: auto;
}

ul, ol {
	list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
}

a:hover {
    color: #444;
}

a, a:hover {
    text-decoration: none;
}

i {
	font-size: 1.1em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito Sans', sans-serif;
	margin: 0;
	color: #444;
}

h1 {
    font-size: 24px;
	line-height: 30px;
}

h2 {
    font-size: 22px;
	line-height: 28px;
}

h3 {
    font-size: 18px;
	line-height: 24px;
}

h4 {
    font-size: 16px;
	line-height: 22px;
}

h5 {
    font-size: 14px;
	line-height: 20px;
}

h6 {
    font-size: 12px;
	line-height: 18px;
}

p {
    color: #666;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 22px;
    margin: 0;
}

p strong {
	font-weight: 600;
}

.accent-color-bg {
	color: #fff;
}

.fittext {
	font-size: 38px;
	font-weight: 300;
	line-height: 1.6em;
    margin-bottom: 35px;
	color: rgba(0,0,0, 0.8);
}

.fittext strong {
	font-weight: 700;
}

.page-content p {
	margin-bottom: 15px;
}

.wite-text {
	color: #fff;
}

.uppercase {
	text-transform: uppercase;
}

.image-text {
	margin-right: 10px;
}

a.main-button, input[type="submit"] {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

a.main-button:hover, input[type="submit"]:hover {
	background: #444;
	color: #fff;
}

a.main-button i {
	font-size: 1.2em;
}

input[type="submit"] {
	border: none;
}

.tooltip .tooltip-inner {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
}

#content {
	padding: 60px 0;
}

#content.full-sections {
	padding: 0;
}

.section {
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.section.repeat-bg {
	background-repeat: repeat;
	-webkit-background-size: auto !important;
	-moz-background-size: auto !important;
	-o-background-size: auto !important;
	background-size: auto !important;
}

.bg-parallax {
	background-attachment: fixed;
}

.section-video {
	position: absolute;
	z-index: 33;
	left: 0;
	top: -100px;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
}

.section-video object {
	display: block;
	width: 100% !important;
	height: auto !important;
}

.section-video img {
	display: block;
	width: 100% !important;
	height: auto !important;
}

.section-video-content {
	z-index: 35;
	position: relative;
	opacity: 0.98;
}

.section-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 34;
	opacity: 0.7;
}

.light-section {
	color: #fff;
}

.light-section .testimonials {
	color: #666;
}

.light-section .testimonials .testimonial-content p {
	color: #c4c4c4;
}

#container {
    background-color: #fff;
}

.boxed-page {
  position: relative;
  width: 1220px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow:0 0 10px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
  -o-box-shadow: 0 0 10px rgba(0,0,0,0.3);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.boxed-page header {
  width: 1220px;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999999;
}

.spinner {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	-webkit-animation: rotatee 2.0s infinite linear;
	animation: rotatee 2.0s infinite linear;
}

.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	-webkit-animation: bouncee 2.0s infinite ease-in-out;
	animation: bouncee 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes rotatee { 100% { -webkit-transform: rotate(360deg) }}
@keyframes rotatee {
	100% {
		transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes bouncee {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bouncee {
	0%, 100% {
		transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
      }
}

/* ============================================================
   3. LAYOUT & HEADER (front-end)
============================================================ */

/* ── Front-End Nav: MENU dropdown trigger ─────────────────── */
.fe-user-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 14px !important;
    border-radius: 50px;
    border: 1.5px solid rgba(29,89,153,0.30);
    background: rgba(29,89,153,0.07);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    text-decoration: none;
}
.fe-user-trigger:hover,
.fe-user-trigger.show {
    border-color: var(--color-primary);
    background: rgba(29,89,153,0.12);
    box-shadow: 0 0 0 3px rgba(29,89,153,0.10);
    text-decoration: none;
}
.fe-user-trigger::after { display: none; } /* hide Bootstrap caret */

.fe-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.fe-user-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}
.fe-user-chevron {
    font-size: 11px;
    color: var(--color-primary);
    transition: transform 0.2s;
}
.fe-user-trigger.show .fe-user-chevron { transform: rotate(180deg); }

/* ── Front-End Pro Dropdown Panel ────────────────────────── */
.fe-pro-dropdown {
    min-width: 240px;
    padding: 0 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.13) !important;
    overflow: hidden;
    margin-top: 10px !important;
}

/* Profile header — blue gradient */
.fe-dd-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.fe-dd-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.40);
}
.fe-dd-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.fe-dd-role {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
}

/* Section label */
.fe-dd-section {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 10px 18px 3px;
}

/* Menu items */
.fe-dd-item {
    display: flex !important;
    align-items: center;
    gap: 11px;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 500;
    color: #374151 !important;
    text-decoration: none !important;
    transition: background 0.12s, color 0.12s;
}
.fe-dd-item i {
    font-size: 15px;
    color: var(--color-primary);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.12s;
}
.fe-dd-item:hover {
    background: #f0f6ff !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
}
.fe-dd-item:hover i { color: var(--color-primary); }

/* Divider */
.fe-dd-divider {
    height: 1px;
    background: #f0f2f5;
    margin: 5px 0;
}

/* Logout — red */
.fe-dd-logout { color: #dc2626 !important; }
.fe-dd-logout i { color: #dc2626 !important; }
.fe-dd-logout:hover { background: #fef2f2 !important; color: #b91c1c !important; }
.fe-dd-logout:hover i { color: #b91c1c !important; }

/* ── Header & Navigation (from style.css 02 section) ─────────── */
header {
	position: fixed;
	top: 0;
    width: 100%;
	z-index: 9999999;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.fixed-header {
	opacity: 0.65;
	box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
  	-webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
}

.top-bar {
	background-color: #fff;
	border-bottom: 1px solid #f2f2f2;
}

.top-bar.color-bar {
	border-bottom: 0;
}

.top-bar.color-bar a {
	color: rgba(255,255,255,.6);
}

.top-bar.color-bar a:hover {
	color: rgba(255,255,255,1) !important;
}

.top-bar.color-bar ul.social-list li a i {
	border-left: 1px solid rgba(255,255,255,.1);
}

.top-bar.color-bar ul.social-list li:last-child a i {
	border-right: 1px solid rgba(255,255,255,.1);
}

.top-bar.color-bar .contact-details li a:before {
	color: rgba(255,255,255,.2);
}

.top-bar.dark-bar {
	background-color: #F1F4F8;
	border-bottom: 0;
}

.top-bar.dark-bar a {
	color: rgba(255,255,255,.4);
}

.top-bar.dark-bar a:hover {
	color: #333;
}

.top-bar.dark-bar ul.social-list li a i {
	border-left: 1px solid rgba(255,255,255,.08);
}

.top-bar.dark-bar ul.social-list li:last-child a i {
	border-right: 1px solid rgba(255,255,255,.08);
}

.top-bar.dark-bar .contact-details li a:before {
	color: rgba(255,255,255,.2);
}

.top-bar a {
	color: #666;
}

.top-bar .contact-details li {
	display: inline-block;
}

.top-bar .contact-details li a:before {
	position: relative;
	content: "|";
	font-size: 13px;
	margin: 0 3px;
	top: -1px;
	color: #ddd;
}

.top-bar .contact-details li a:before {
	color: #666;
}

.top-bar .contact-details li:first-child a:before {
	display: none;
}

.top-bar .contact-details li a {
	font-size: 16px;
	display: block;
	line-height: 50px;
	height: 50px;
	font-family: 'Nunito Sans';
	text-transform: uppercase;
	color: #999;
}

ul.social-list {
    float: right;
}

ul.social-list li {
    float: left;
}

ul.social-list li a {
    display: inline-block;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    color: #999 !important;
}

ul.social-list li a:hover {
	color: #fff;
}

ul.social-list li a.facebook:hover {
	background-color: #507CBE;
	color: #ffffff !important;
}

ul.social-list li a.twitter:hover {
	background-color: #63CDF1;
	color: #ffffff !important;
}

ul.social-list li a.google:hover {
	background-color: #F16261;
}

ul.social-list li a.pinterest:hover {
	background-color: #BD2126;
	color: #ffffff !important;
}

ul.social-list li a.dribbble:hover {
	background-color: #E46387;
}

ul.social-list li a.linkdin:hover {
	background-color: #90CADD;
}

ul.social-list li a.tumblr:hover {
	background-color: #4D7EA3;
}

ul.social-list li a.flickr:hover {
	background-color: #E474AF;
}

ul.social-list li a.instgram:hover {
	background-color: #4D4F54;
	color: #ffffff !important;
}

ul.social-list li a.vimeo:hover {
	background-color: #87D3E0;
}

ul.social-list li a.skype:hover {
	background-color: #36C4F3
}

ul.social-list li a i {
	font-size: 18px;
	display: block;
	width: 34px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-left: 1px solid #f2f2f2;
}

ul.social-list li:last-child a i {
	border-right: 1px solid #f2f2f2;
}


.dropdown li, .sup-dropdown li {
	position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown li:first-child, .sup-dropdown li:first-child {
    border-top: none;
}

.dropdown li a, .sup-dropdown li a {
    display: block;
    color: #666;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    padding: 11px 16px;
    text-decoration: none;
    text-transform: capitalize;
    transition: padding 0.2s ease-in-out;
    -moz-transition: padding 0.2s ease-in-out;
    -webkit-transition: padding 0.2s ease-in-out;
    -o-transition: padding 0.2s ease-in-out;
}


.dropdown > li:hover > a, .sup-dropdown li:hover > a {
	padding-left: 18px;
}

.dropdown li a i {
	margin: 0 0 0 -4px;
}

.navbar-default .navbar-nav .sup-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 180px;
	background-color: #fff;
    margin-top: 10px;
    transition: margin-top 0.2s ease-in-out;
    -moz-transition: margin-top 0.2s ease-in-out;
    -webkit-transition: margin-top 0.2s ease-in-out;
    -o-transition: margin-top 0.2s ease-in-out;
    visibility: hidden;
    z-index: 3;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown {
    visibility: visible;
    margin-top: 0;
}

.search-side {
	position: relative;
	float: right;
	top: 19px;
	right: -15px;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.show-search {
	position: relative;
	display: block;
	float: right;
}

.show-search i {
	font-size: 1.2em !important;
	display: block;
	color: #666;
	width: 36px;
	height: 36px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	line-height: 36px;
	text-align: center;
	background-color: #f2f2f2;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.show-search:hover i {
	color: #666;
}

.navbar .search-form {
	position: absolute;
	right: 0;
	z-index: 20;
	float: right;
	display: none;
	top: 40px;
}

.navbar .search-form:before {
	background-color: #ccc;
	top: -2px;
	content: '';
	display: block;
	height: 4px;
	width: 4px;
	z-index: 20;
	right: 15px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
}

.navbar .search-form form input {
	border: 2px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	padding: 5px 14px;
	z-index: 22;
	color: #9d9d9d;
	box-shadow: none;
	-o-box-shadow: none;
	-moz-box-shadow: none;
  	-webkit-box-shadow: none;
	outline: none;
	box-shadow: none;
}

.navbar .search-form form {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 20;
}

/* ── Blue color theme (from colors/blue.css) ─────────────────── */
a {
    color: #1D5999;
}

.accent-color {
	color: #1D5999;
}

.accent-color-bg {
	background-color: #1D5999;
}

.top-bar a:hover {
	color: #1D5999;
}

.section-overlay {
	background-color: #1D5999;
}

.top-bar.color-bar {
	background-color: #1D5999;
}

.service-box .read-more {
	color: #1D5999;
}

a.main-button, input[type="submit"] {
	background-color: #1D5999;
}

.navbar-default .navbar-nav > li:hover > a,
.navbar-default .navbar-nav > li > a.active {
	color: #1D5999;
}

.dropdown > li:hover > a, .sup-dropdown li:hover > a {
	color: #1D5999;
}

.navbar-default .navbar-nav > li > a:after {
	background-color: #1D5999;
}

.navbar-default .navbar-nav > li > a.active, .navbar-default .navbar-nav > li:hover > a {
	border-color: #1D5999;
}

.dropdown  li a.active, .sup-dropdown li a.active {
	color: #1D5999;
}

ul.breadcrumbs li a:hover {
    color: #eee;
}

.full-width-recent-projects .portfolio-item:hover .portfolio-thumb .thumb-overlay {
	background-color: #1D5999;
}

.tp-caption.color-bg {
	background-color: #1D5999;
}

.team-member .member-socail a.mail:hover i {
	background-color: #1D5999;
}

.post-share a.mail:hover {
	background-color: #1D5999;
}

.progress .progress-bar.progress-bar-primary {
	background-color: #1D5999;
}

.latest-posts-classic .left-meta-post .post-type i {
	background-color: #1D5999;
}

.latest-posts-classic .post-title a:hover {
	color: #1D5999;
}

.latest-posts-classic .read-more {
	color: #1D5999;
}

.panel-title a {
	color: #1D5999;
}

.panel-title a:hover {
	color: #1D5999;
}

.milestone-block .milestone-icon {
	background-color: #1D5999;
}

.milestone-block .milestone-icon:after {
	background-color: #1D5999;
}

.milestone-block .milestone-number {
	color: #1D5999;
}

.pricing-tables .pricing-table.highlight-plan .plan-signup {
    background-color: #1D5999;
}

.pricing-tables .pricing-table.highlight-plan .plan-name {
	background-color: #1D5999;
}

.btn-system {
	background-color: #1D5999;
}

.btn-system.border-btn {
	border-color: #1D5999;
	color: #1D5999;
}

.btn-system.border-btn:hover {
	background-color: #1D5999;
}

.btn-system.border-btn.btn-wite:hover {
	color: #1D5999;
}

.btn-system.btn-wite{
	color: #1D5999;
}

ul.icons-list li i {
	color: #1D5999;
}

.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
	background-color: #1D5999;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover {
	color: #1D5999;
}

.icon-small {
	text-shadow: 0 0 0 #1D5999;
}

.icon-small:hover, .service-box:hover .icon-small {
	color: #1D5999;
}
.icon-medium {
	text-shadow: 0 0 0 #1D5999;
}

.icon-medium:hover, .service-box:hover .icon-medium {
	color: #1D5999;
}

.icon-large {
	text-shadow: 0 0 0 #1D5999;
}

.icon-large:hover, .service-box:hover .icon-large {
	color: #1D5999;
}

.icon-effect-1 {
	box-shadow: 0 0 0 3px #1D5999;
	-o-box-shadow: 0 0 0 3px #1D5999;
	-moz-box-shadow: 0 0 0 3px #1D5999;
  	-webkit-box-shadow: 0 0 0 3px #1D5999;
}

.icon-effect-1:after {
	background-color: #1D5999;
}

.icon-effect-1:hover, .service-box:hover .icon-effect-1 {
	color: #1D5999;
}

.icon-effect-2 {
	color: #1D5999;
	box-shadow: 0 0 0 3px #1D5999;
	-o-box-shadow: 0 0 0 3px #1D5999;
	-moz-box-shadow: 0 0 0 3px #1D5999;
  	-webkit-box-shadow: 0 0 0 3px #1D5999;
}

.icon-effect-2:after {
	background-color: #1D5999;
}

.icon-effect-3 {
	color: #1D5999;
	box-shadow: 0 0 0 3px #1D5999;
	-o-box-shadow: 0 0 0 3px #1D5999;
	-moz-box-shadow: 0 0 0 3px #1D5999;
  	-webkit-box-shadow: 0 0 0 3px #1D5999;
}

.icon-effect-4 {
	color: #1D5999;
	box-shadow: 0 0 0 3px #1D5999;
	-o-box-shadow: 0 0 0 3px #1D5999;
	-moz-box-shadow: 0 0 0 3px #1D5999;
  	-webkit-box-shadow: 0 0 0 3px #1D5999;
}

.icon-effect-5 {
	color: #1D5999;
	box-shadow: 0 0 0 3px #1D5999;
	-o-box-shadow: 0 0 0 3px #1D5999;
	-moz-box-shadow: 0 0 0 3px #1D5999;
  	-webkit-box-shadow: 0 0 0 3px #1D5999;
}

.icon-effect-6 {
	color: #1D5999;
	box-shadow: 0 0 0 3px #1D5999;
	-o-box-shadow: 0 0 0 3px #1D5999;
	-moz-box-shadow: 0 0 0 3px #1D5999;
  	-webkit-box-shadow: 0 0 0 3px #1D5999;
}

.team-member .member-photo .member-name span {
	background-color: #1D5999;
}

.classic-title span {
	border-bottom-color: #1D5999;
}

.portfolio-filter li a:hover {
	color: #1D5999;
}

.portfolio-filter li a.selected {
	border-color: #1D5999;
	background-color: #1D5999;
}

.portfolio-item:hover .portfolio-details h4 {
	color: #1D5999;
}

.project-content h4 span {
	border-bottom-color: #1D5999;
}

.recent-projects h4.title span {
	border-bottom-color: #1D5999;
}

ul.post-meta li a:hover {
	color: #1D5999;
}

#pagination span.current {
	border-color: #1D5999;
	background-color: #1D5999;
}

#pagination a:hover {
	color: #1D5999;
}

.post-tags-list a:hover {
	background-color: #1D5999;
}

.post-share a.mail {
	background-color: #1D5999;
}

.sidebar a:hover {
	color: #1D5999;
}

.widget-search .search-btn {
	background-color: #1D5999;
}

.sidebar .tagcloud a:hover {
    background-color: #1D5999;
}

.back-to-top:hover i {
    background-color: #1D5999;
}

.touch-slider .owl-controls.clickable .owl-buttons div:hover {
	background-color: #1D5999;
}

.touch-carousel .owl-controls.clickable .owl-buttons div:hover {
	background-color: #1D5999;
}

.testimonials-carousel .owl-controls.clickable .owl-buttons div {
	background-color: #1D5999;
}

.testimonials-carousel .owl-controls.clickable .owl-buttons div:hover i {
	color: #1D5999;
}

#portfolio-list li .portfolio-item-content {
    background: rgba(0, 175, 209, 0.9);
}

.services-3-icon i {
    background-color: #1D5999;
}

.services-2-icon i {
    background-color: #1D5999;
}

#main-slide .animated2 strong {
    color: #fff;
}
#main-slide .animated4 strong {
    color: #1D5999;
}
#main-slide .animated7 strong {
    color: #1D5999;
}

#main-slide .carousel-control i:hover{
	background-color: #1D5999;
}
.slider.btn {
    background-color: #1D5999;
}

#main-slide .carousel-indicators .active {
    background-color: #1D5999;
}

.counter-item i {
    color: #1D5999;
}

.timer {
    color: #1D5999;
}

.progress-bar {
    background-color: #1D5999;
}

.team-member.modern .member-photo:after {
    background-color: #1D5999;
}

.twitter-widget a {
	color: #31a2e1;
}

.dot1, .dot2 {
    background-color: #1D5999;
}

/* ============================================================
   4. HERO & CAROUSEL
============================================================ */
/*-- Main slide --*/
#main-slide .item{
	height: 500px;
}

#main-slide .item img{
	width: 100%;
}

#main-slide .item .slider-content {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
#main-slide .item.active .slider-content {
  z-index: 0;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  -o-transition: opacity 100ms;
  transition: opacity 100ms;
}

#main-slide .slider-content{
	top: 50%;
	margin-top: -70px;
	left: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	color: #fff;
}

#main-slide .carousel-indicators {
	bottom: 30px;
}

.carousel-indicators li{
	width: 14px !important;
	height: 14px !important;
	border: 2px solid #fff !important;
	margin: 1px !important;
}

#main-slide .carousel-control.left,
#main-slide .carousel-control.right {
	opacity: 1;
	filter: alpha(opacity=100);
	background-image: none;
	background-repeat: no-repeat;
	text-shadow: none;
}

#main-slide .carousel-control.left span {
	padding: 15px;
}

#main-slide .carousel-control.right span {
	padding: 15px;
}

#main-slide .carousel-control .fa-angle-left,
#main-slide .carousel-control .fa-angle-right{
	position: absolute;
	top: 40%;
	z-index: 5;
	display: inline-block;
}

#main-slide .carousel-control .fa-angle-left{
	left: 0;
}

#main-slide .carousel-control .fa-angle-right{
	right: 0;
}

#main-slide .carousel-control i{
	background: rgba(0,0,0,.7);
	color: #fff;
	line-height: 36px;
	font-size: 32px;
	padding: 15px 20px;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

#main-slide .slider-content h2{
	font-size: 76px;
	font-weight: 100;
	text-transform: uppercase;
    color: #555;
}

#main-slide .slider-content h2.white, #main-slide .slider-content h3.white {
    color: #fff;
}

#main-slide .slider-content h3{
	font-size: 26px;
	text-transform: uppercase;
    color: #555;
    margin-bottom: 10px;
}

.slider.btn{
	padding: 10px 40px;
	margin-top: 40px;
	font-size: 20px;
	border-radius: 2px;
	text-transform: uppercase;
	line-height: 28px;
	border: 0;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
		box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  -o-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  -moz-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  -webkit-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
}

.slider.btn.btn-default{
	margin-left: 4px;
	background: #ECECEC
}

.slider.btn.btn-default:hover{
	background: #000;
	color: #fff;
}

.slider-content-left {
	position: relative;
	margin: 0 0 0 40px;
}

.slider-content-right{
	position: relative;
}

/*-- Animation --*/
.carousel .item.active .animated2 {
	-webkit-animation: lightSpeedIn 1s ease-in 200ms both;
	animation: lightSpeedIn 1s ease-in 200ms both;
}

.carousel .item.active .animated3 {
	-webkit-animation: bounceInLeft 1s ease-in-out 500ms both;
	animation: bounceInLeft 1s ease-in-out 500ms both;
}

.carousel .item.active .animated4 {
	-webkit-animation: flipInX 1s ease-in 500ms both;
	animation: flipInX 1s ease-in 500ms both;
    text-align: center;
}

.carousel .item.active .animated5 {
	-webkit-animation: bounceInLeft 1s ease-in-out 100ms both;
	animation: bounceInLeft 1s ease-in-out 100ms both;
}

.carousel .item.active .animated6 {
	-webkit-animation: bounceIn 1s ease-in 500ms both;
	animation: bounceIn 1s ease-in 500ms both;
    text-align: center;
}

.carousel .item.active .animated7 {
	-webkit-animation: bounceIn 1s ease-in 500ms both;
	animation: bounceIn 1s ease-in 500ms both;
}

.carousel .item.active .animated8 {
	-webkit-animation: fadeInDown 1s ease-in 1000ms both;
	animation: fadeInDown 1s ease-in 1000ms both;
}

/* ============================================================
   5. SECTION UTILITIES
============================================================ */
/*------------------------------------------*/
/*	   03 - Main Page Elements
/*------------------------------------------*/

.page-banner {
    padding: 30px 0;
    background-color: #1D5999;
}

.page-banner h2 {
	text-transform: uppercase;
	font-family: 'Nunito Sans';
	color: #fff;
}

.page-banner p {
	font-weight: 300;
}

ul.breadcrumbs {
    float: right;
	margin-top: 0px;
}

.no-subtitle ul.breadcrumbs {
	margin-top: 4px;
}

ul.breadcrumbs li {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 13px;
	font-weight: 300;
    margin-left: 3px;
	color: #999;
	float: left;
}

ul.breadcrumbs li:before {
    content: '/';
	margin: 0 4px 0 2px;
	color: #ddd;
}

ul.breadcrumbs li:first-child {
	margin: 0;
}

ul.breadcrumbs li:first-child:before {
    content: '';
	margin: 0;
}

ul.breadcrumbs li a {
	color: #fff;
	font-weight: 600;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

label {
	font-size: 13px;
	color: #666;
	font-weight: 300;
	cursor: pointer;
}

label .required {
	color: #ED2C3A;
	margin-left: 2px;
}

input[type="submit"] {
    outline: none;
}

.widget-search input[type="search"],
#contact-form input[type="text"],
#contact-form textarea,
#respond input[type="text"],
#respond textarea, .email {
    color: #666fb5;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    border: 1px solid #eee;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    outline: none;
    width: 100%;
    padding: 7px 14px;
    display: block;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.widget-search input[type="search"]:focus,
#contact-form input[type="text"]:focus,
#contact-form textarea:focus,
#respond input[type="text"]:focus,
#respond textarea:focus {
	border-color: #ddd;
	box-shadow: 0 0 3px #eee;
	-o-box-shadow: 0 0 3px #eee;
	-moz-box-shadow: 0 0 3px #eee;
  	-webkit-box-shadow: 0 0 3px #eee;
}

.mail_response {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.name-missing, .email-missing, .message-missing {
    opacity: 0;
    color: #ED2C3A;
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.error-page {
    padding: 90px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 160px;
    line-height: 140px;
    font-weight: 700;
    color: #333;
}

.error-page h3 {
    font-size: 64px;
    line-height: 70px;
    font-weight: 300;
}

.error-page p {
    font-size: 22px;
    line-height: 28px;
    color: #666;
    margin-bottom: 25px
}

#map {
	position: relative;
	height: 350px;
	width: 100%;
}

/*------------------------------------------*/
/*	     05 - Shortcodes Elements
/*------------------------------------------*/

/*************** Dividers ***************/

.margin-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.hr1 {
	height: 1px;
}

.hr2 {
	height: 0;
	border-bottom: 1px solid #eee;
}

.hr3 {
	height: 0;
	border-bottom: 1px dotted #eee;
}

.hr4 {
	height: 0;
	border-bottom: 1px dashed #eee;
}

.hr5 {
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
	background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.15), rgba(0,0,0,0));
}

/*************** Clients Carousel ***************/

.partner {
    padding-bottom: 60px;
}

.clients-carousel .client-item a {
	display: block;
	padding: 12px 0;
	text-align: center;
}

.clients-carousel .client-item a img {
	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.clients-carousel:hover .client-item a img {
	opacity: 0.6;
}

.clients-carousel:hover .client-item a:hover img {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: none;
	opacity: 1;
}

/*************** Call To Action ***************/

.call-action-boxed {
	padding: 30px 40px;
}

.call-action.no-descripton h2.primary {
	margin-top: 4px;
}

.call-action h2.primary {
	font-family: 'Nunito Sans';
}

.call-action h2.primary strong {
	font-family: 'Nunito Sans';
}

.call-action p {
	font-size: 14px;
	margin-bottom: 0;
}

.call-action h2 + p {
	margin-top: 4px;
}

.call-action .button-side {
	float: right;
}

.call-action-style1 {
	border: 1px solid #e8e8e8;
	box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
	-o-box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
	-moz-box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
  	-webkit-box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
}

.call-action-style2 {
	background: #ffffff;
}

.call-action-style3 {
	background: #444;
}

.call-action-style3 h2.primary {
	color: #fff;
}

.call-action-style3 p {
	color: #bbb;
}

/*************** Custom Carousel ***************/

.custom-carousel .item {
	padding-right: 20px;
}

.custom-carousel.show-one-slide .item {
	padding-right: 0;
}

/*************** Latest News ***************/

.latest-posts-classic .post-row {
	margin-bottom: 20px;
}

.latest-posts-classic .left-meta-post {
	float: left;
	text-align: center;
	margin-right: 12px;
	margin-bottom: 0;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	overflow: hidden;
}

.latest-posts-classic .left-meta-post .post-date {
	padding: 8px 0;
	width: 42px;
	background-color: #444;
	color: #fff;
}

.latest-posts-classic .left-meta-post .post-date .day {
	font-size: 20px;
	font-weight: 700;
	display: block;
	letter-spacing: 1px;
}

.latest-posts-classic .left-meta-post .post-date .month {
	display: block;
	text-transform: uppercase;
	line-height: 14px;
	font-size: 11px;
	letter-spacing: 1px;
}

.latest-posts-classic .left-meta-post .post-type i {
	display: block;
	height: 40px;
	line-height: 39px;
	width: 42px;
	color: #fff;
	font-size: 1.4em;
}

.latest-posts-classic .post-title {
	margin-bottom: 5px;
}

.latest-posts-classic .post-title a {
	color: #444;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.latest-posts-classic .read-more {
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.latest-posts-classic .read-more:hover {
	color: #444;
}

/*************** Toggles & Accordion ***************/

.panel-default > .panel-heading {
	background-color: #fff;
}

.panel-group .panel {
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
}

.panel-default {
	border-color: #e8e8e8;
}

.panel-body {
	padding: 4px 15px 10px 15px;
}

.panel-heading {
	padding: 0;
}

.panel-title {
	font-size: 13px;
	font-weight: 600;
}

.panel-title a {
	position: relative;
	display: block;
	padding: 6px 12px;
	background-color: #fff;
	box-shadow: none;
	-o-box-shadow: none;
	-moz-box-shadow: none;
  	-webkit-box-shadow: none;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.panel-title a.collapsed {
	color: #444;
	box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
	-o-box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
	-moz-box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
  	-webkit-box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
}

.panel-title a.collapsed:hover {
	color: #666;
}

.panel-title a .control-icon {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -11px;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.panel-title a.collapsed .control-icon {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}

.panel-title a i {
	font-size: 1.2em;
    padding-right: 5px;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
	border-top: none;
}

/*************** Dropcaps ***************/

.dropcap {
	display: block;
	float: left;
	font-size: 40px;
	line-height: 34px;
	color: #444;
	margin: 6px 8px 0 0;
}

.dropcap.border-dropcap {
	border: 2px solid #444;
	width: 46px;
	height: 46px;
	font-size: 28px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	margin: 8px 12px 0 0;
}

.dropcap.bg-dropcap {
	background-color: #444;
	color: #fff;
	width: 48px;
	height: 48px;
	font-size: 28px;
	font-weight: 500;
	line-height: 48px;
	text-align: center;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	margin: 8px 12px 0 0;
}

.dropcap.circle-dropcap {
	border-radius: 50%;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
}

/*************** Milestone ***************/

.milestone-block {
	display: inline-block;
	margin-bottom: 25px;
	margin-right: 50px;
}

.milestone-block:last-child {
	margin-right: 0;
}

.milestone-block .milestone-icon {
	float: left;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	margin-right: 9px;
	margin-bottom: 4px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	position: relative;
}

.milestone-block .milestone-icon:after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 21px;
	right: -2px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.milestone-block .milestone-icon i {
	font-size: 2em;
	color: #fff;
}

.milestone-block .milestone-right {
	float: left;
	text-align: left;
}

.milestone-block .milestone-number {
	font-size: 26px;
	line-height: 28px;
	font-weight: 500;
}

.milestone-block .milestone-text {
	font-size: 18px;
	color: #444;
}

/*************** Pricing Tables ***************/

.pricing-tables {
	padding: 25px 0;
    text-align: center;
}

.pricing-tables .pricing-table {
	border: 1px solid #e4e4e4;
	text-align: center;
	position: relative;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.pricing-tables .pricing-table:hover {
	z-index: 2;
	top: -3px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 8px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,0.1);
	-o-box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.pricing-tables .highlight-plan {
	margin: -15px 0;
	margin-right: -1px;
	z-index: 1;
	box-shadow: 0 0 6px rgba(0,0,0,0.06);
	-moz-box-shadow: 0 0 6px rgba(0,0,0,0.06);
	-webkit-box-shadow: 0 0 6px rgba(0,0,0,0.06);
	-o-box-shadow: 0 0 6px rgba(0,0,0,0.06);
}

.pricing-tables .pricing-table.highlight-plan .plan-name {
	padding: 25px 0;
}
.pricing-tables .pricing-table.highlight-plan .plan-name h3 {
    color: #fff;
}

.pricing-tables .pricing-table.highlight-plan .plan-signup {
	padding: 30px 0;
}

.pricing-tables .pricing-table.highlight-plan .plan-signup .btn-system.border-btn {
    border-color: #fff;
    color: #fff;
}

.pricing-table .plan-name {
	padding: 15px 0;
	box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
	-o-box-shadow:  0 0 20px rgba(0,0,0,.04) inset;
	-moz-box-shadow:  0 0 20px rgba(0,0,0,.04) inset;
  	-webkit-box-shadow:  0 0 20px rgba(0,0,0,.04) inset;
	border-bottom: 1px solid #eee;
}

.pricing-table .plan-name h3 {
	font-weight: 700;
	color: #666;
	text-transform: uppercase;
}

.pricing-table .plan-price {
	padding: 25px 0;
}

.pricing-table .plan-price .price-value {
	font-size: 38px;
	line-height: 40px;
	font-weight: 600;
	color: #444;
}

.pricing-table .plan-price .price-value span {
	font-size: 18px;
	font-weight: 300;
	line-height: 18px;
}

.pricing-table .plan-price .interval {
	line-height: 14px;
}

.pricing-table .plan-list li {
	padding: 8px;
	font-size: 12px;
	border-bottom: 1px solid #eee;
}

.pricing-table .plan-list li:first-child {
	border-top: 1px solid #eee;
}

.pricing-table .plan-signup {
	padding: 25px 0;
	box-shadow: 0 0 20px rgba(0,0,0,.06) inset;
	-o-box-shadow: 0 0 20px rgba(0,0,0,.06) inset;
	-moz-box-shadow: 0 0 20px rgba(0,0,0,.06) inset;
  	-webkit-box-shadow: 0 0 20px rgba(0,0,0,.06) inset;
}

.pricing-table .plan-signup a {
	text-transform: uppercase;
}

/*************** Buttons ***************/

.btn {
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.btn-system {
	display: inline-block;
	color: #fff;
	margin-right: 5px;
	font-weight: 300;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
	-o-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
	-moz-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  	-webkit-box-shadow: 0 4px 0 rgba(0,0,0,0.1) inset;
  	border:0;
  	text-transform: uppercase;
  	font-weight: 400;
}

.btn-system:last-child {
	margin-right: 0;
}

.btn-system {
	font-size: 1em;
	width: auto;
}

.btn-system.border-btn {
	background-color: transparent;
	border: 1px solid;
	box-shadow: none;
	-o-box-shadow: none;
	-moz-box-shadow: none;
  	-webkit-box-shadow: none;
}

.btn-system:hover {
	color: #fff;
	opacity: 0.8;
}

.btn-system.border-btn:hover {
	opacity: 1;
	color: #fff;
}

.btn-system.border-btn.btn-gray:hover {
	background-color: #444;
	color: #fff;
}

.btn-system.border-btn.btn-black:hover {
	background-color: #111;
	color: #fff;
}

.btn-system.border-btn.btn-wite:hover {
	background-color: #fff;
}

.btn-system.btn-gray {
	background-color: #444;
}

.btn-system.btn-black {
	background-color: #111;
}

.btn-system.btn-wite{
	background-color: #fff;
}

.btn-system.border-btn.btn-gray {
	background-color: transparent;
	border: 1px solid #444;
	color: #444;
}

.btn-system.border-btn.btn-black {
	background-color: transparent;
	border: 1px solid #111;
	color: #111;
}

.btn-system.border-btn.btn-wite {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.btn-large {
	font-size: 14px;
	padding: 9px 22px;
}

.btn-medium {
	font-size: 14px;
	padding: 7px 18px;
}

.btn-small {
	padding: 5px 15px;
}

.btn-mini {
	padding: 3px 12px;
}

.btn-large.border-btn {
	padding: 8px 22px;
}

.btn-medium.border-btn {
	padding: 6px 18px;
}

.btn-small.border-btn {
	padding: 4px 15px;
}

.btn-mini.border-btn {
	padding: 2px 12px;
}

/*************** Alerts ***************/

.alert-success p {
	color: #468847;
}

.alert-info p {
	color: #3a87ad;
}

.alert-warning p {
	color: #c09853;
}

.alert-danger p {
	color: #a94442;
}

.alert h4 {
	margin-bottom: 10px;
}

.alert strong {
	font-weight: 700;
}

/*************** Pie Charts ***************/

.easyPieChart {
	font-size: 24px;
	font-weight: 400;
    position: relative;
    text-align: center;
	display: inline-block;
	margin: 0 80px 20px 0;
	overflow: hidden;
}

.easyPieChart:last-child {
	margin-right: 0;
}

.easyPieChart span {
	color: #666;
	line-height: 20px;
	font-size: 13px;
	font-weight: 700
}

.easyPieChart i {
	position: absolute;
	width: 100%;
	top: -2px;
	right: 0;
	display: block;
	font-size: 3.5em;
	color: rgba(0,0,0,.05);
	text-align: center;
}

.easyPieChart canvas {
    position: absolute;
    top: 0;
    left: 0;
}

/*************** Lists ***************/

ul.icons-list {
	margin-bottom: 6px;
}

ul.icons-list li, ul.list-unstyled li {
	margin-bottom: 4px;
}

ul.icons-list li i {
	font-size: 14px;
	margin-right: 4px;
}

/*************** Tabs ***************/

.nav-tabs {
	border-color: #eee;
}

.nav-tabs > li > a {
	font-weight: 600;
	color: #666;
	padding: 8px 14px;
	border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -o-border-radius: 3px 3px 0 0;
	border: 1px solid #eee;
	border-bottom: none;
	box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
	-o-box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
	-moz-box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
  	-webkit-box-shadow: 0 0 15px rgba(0,0,0,.04) inset;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.nav-tabs > li > a i {
	margin-right: 1px;
    padding-right: 5px;
}

.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
	color: #fff;
	border-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,.1) inset;
	-o-box-shadow: 0 0 15px rgba(0,0,0,.1) inset;
	-moz-box-shadow: 0 0 15px rgba(0,0,0,.1) inset;
  	-webkit-box-shadow: 0 0 15px rgba(0,0,0,.1) inset;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	border-color: #eee;
	border-bottom-color: #fff;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover {
	box-shadow: 0 0 0 rgba(0,0,0,.1) inset;
	-o-box-shadow: 0 0 0 rgba(0,0,0,.1) inset;
	-moz-box-shadow: 0 0 0 rgba(0,0,0,.1) inset;
  	-webkit-box-shadow: 0 0 0 rgba(0,0,0,.1) inset;
}

.tab-content {
	border: 1px solid #eee;
	border-top: none;
	padding: 12px 16px;
}

.tab-content p {
	margin-bottom: 15px;
}

.tab-content p:last-child {
	margin-bottom: 0;
}

/*************** Icons ***************/

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.icon-small {
	font-size: 2em;
	color: #444;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.icon-small:hover, .service-box:hover .icon-small {
	text-shadow: 5px 5px 2px rgba(255,255,255,0);
}

.icon-medium {
	font-size: 2.5em;
	color: #666;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.icon-medium:hover, .service-box:hover .icon-medium {
	text-shadow: 5px 5px 2px rgba(255,255,255,0);
}

.icon-large {
	font-size: 3em;
	color: #666;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.icon-large:hover, .service-box:hover .icon-large {
	text-shadow: 5px 5px 2px rgba(255,255,255,0);
}

.icon-mini-effect {
	position: relative;
	display: block;
	z-index: 1;
	font-size: 1.2em;
	color: #fff;
	top: 4px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	margin: 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.icon-medium-effect {
	position: relative;
	display: block;
	z-index: 1;
	font-size: 2em;
	color: #fff;
	width: 64px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	margin: 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.icon-large-effect {
	position: relative;
	display: block;
	z-index: 1;
	font-size: 2.6em;
	color: #fff;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	margin: 0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.icon-mini-effect:after, .icon-medium-effect:after, .icon-large-effect:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.icon-effect-1 {
	background-color: #fff;
	-webkit-transition: color 0.4s;
	-moz-transition: color 0.4s;
	transition: color 0.4s;
}

.gray-icon.icon-effect-1 {
	box-shadow: 0 0 0 3px #444;
	-o-box-shadow: 0 0 0 3px #444;
	-moz-box-shadow: 0 0 0 3px #444;
  	-webkit-box-shadow: 0 0 0 3px #444;
}

.icon-effect-1:after {
	top: -2px;
	left: -2px;
	padding: 2px;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	-moz-transition: -moz-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}

.gray-icon.icon-effect-1:after {
	background: #444;
}

.icon-effect-1.gray-icon:hover, .service-box:hover .gray-icon.icon-effect-1 {
	color: #444;
}

.icon-effect-1:hover:after, .service-box:hover .icon-effect-1:after {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	opacity: 0;
}

.icon-effect-2 {
	background: #fff;
	-webkit-transition: color 0.4s;
	-moz-transition: color 0.4s;
	transition: color 0.4s;
}

.gray-icon.icon-effect-2 {
	color: #444;
	box-shadow: 0 0 0 3px #444;
	-o-box-shadow: 0 0 0 3px #444;
	-moz-box-shadow: 0 0 0 3px #444;
  	-webkit-box-shadow: 0 0 0 3px #444;
}

.icon-effect-2:after {
	top: -2px;
	left: -2px;
	padding: 2px;
	z-index: -1;
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	-moz-transition: -moz-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}

.gray-icon.icon-effect-2:after {
	background: #444;
}

.icon-effect-2:hover, .service-box:hover .icon-effect-2, .icon-effect-2.gray-icon:hover, .service-box:hover .gray-icon.icon-effect-2 {
	color: #fff;
}

.icon-effect-2:hover:after, .service-box:hover .icon-effect-2:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.icon-effect-3 {
	background: #fff;
}

.gray-icon.icon-effect-3 {
	color: #444;
	box-shadow: 0 0 0 3px #444;
	-o-box-shadow: 0 0 0 3px #444;
	-moz-box-shadow: 0 0 0 3px #444;
  	-webkit-box-shadow: 0 0 0 3px #444;
}

.icon-effect-3:hover:before, .service-box:hover .icon-effect-3:before {
	-webkit-animation: toRightFromLeft 0.4s forwards;
	-moz-animation: toRightFromLeft 0.4s forwards;
	animation: toRightFromLeft 0.4s forwards;
}

@-webkit-keyframes toRightFromLeft {
	49% { -webkit-transform: translate(100%); }
	50% { opacity: 0; -webkit-transform: translate(-100%); }
	51% { opacity: 1; }
}
@-moz-keyframes toRightFromLeft {
	49% { -moz-transform: translate(100%); }
	50% { opacity: 0; -moz-transform: translate(-100%); }
	51% { opacity: 1; }
}
@keyframes toRightFromLeft {
	49% { transform: translate(100%); }
	50% { opacity: 0; transform: translate(-100%); }
	51% { opacity: 1; }
}

.icon-effect-4 {
	background: #fff;
}

.gray-icon.icon-effect-4 {
	color: #444;
	box-shadow: 0 0 0 3px #444;
	-o-box-shadow: 0 0 0 3px #444;
	-moz-box-shadow: 0 0 0 3px #444;
  	-webkit-box-shadow: 0 0 0 3px #444;
}

.icon-effect-4:hover:before, .service-box:hover .icon-effect-4:before {
	-webkit-animation: toLeftFromRight 0.4s forwards;
	-moz-animation: toLeftFromRight 0.4s forwards;
	animation: toLeftFromRight 0.4s forwards;
}

@-webkit-keyframes toLeftFromRight {
	49% { -webkit-transform: translate(-100%); }
	50% { opacity: 0; -webkit-transform: translate(100%); }
	51% { opacity: 1; }
}
@-moz-keyframes toLeftFromRight {
	49% { -moz-transform: translate(-100%); }
	50% { opacity: 0; -moz-transform: translate(100%); }
	51% { opacity: 1; }
}
@keyframes toLeftFromRight {
	49% { transform: translate(-100%); }
	50% { opacity: 0; transform: translate(100%); }
	51% { opacity: 1; }
}

.icon-effect-5 {
	background: #fff;
}

.gray-icon.icon-effect-5 {
	color: #444;
	box-shadow: 0 0 0 3px #444;
	-o-box-shadow: 0 0 0 3px #444;
	-moz-box-shadow: 0 0 0 3px #444;
  	-webkit-box-shadow: 0 0 0 3px #444;
}

.icon-effect-5:hover:before, .service-box:hover .icon-effect-5:before {
	-webkit-animation: toTopFromBottom 0.4s forwards;
	-moz-animation: toTopFromBottom 0.4s forwards;
	animation: toTopFromBottom 0.4s forwards;
}

@-webkit-keyframes toTopFromBottom {
	49% { -webkit-transform: translateY(-100%); }
	50% { opacity: 0; -webkit-transform: translateY(100%); }
	51% { opacity: 1; }
}
@-moz-keyframes toTopFromBottom {
	49% { -moz-transform: translateY(-100%); }
	50% { opacity: 0; -moz-transform: translateY(100%); }
	51% { opacity: 1; }
}
@keyframes toTopFromBottom {
	49% { transform: translateY(-100%); }
	50% { opacity: 0; transform: translateY(100%); }
	51% { opacity: 1; }
}

.icon-effect-6 {
	background: #fff;
}

.gray-icon.icon-effect-6 {
	color: #444;
	box-shadow: 0 0 0 3px #444;
	-o-box-shadow: 0 0 0 3px #444;
	-moz-box-shadow: 0 0 0 3px #444;
  	-webkit-box-shadow: 0 0 0 3px #444;
}

.icon-effect-6:hover:before, .service-box:hover .icon-effect-6:before {
	-webkit-animation: toBottomFromTop 0.4s forwards;
	-moz-animation: toBottomFromTop 0.4s forwards;
	animation: toBottomFromTop 0.4s forwards;
}

@-webkit-keyframes toBottomFromTop {
	49% { -webkit-transform: translateY(100%); }
	50% { opacity: 0; -webkit-transform: translateY(-100%); }
	51% { opacity: 1; }
}
@-moz-keyframes toBottomFromTop {
	49% { -moz-transform: translateY(100%); }
	50% { opacity: 0; -moz-transform: translateY(-100%); }
	51% { opacity: 1; }
}
@keyframes toBottomFromTop {
	49% { transform: translateY(100%); }
	50% { opacity: 0; transform: translateY(-100%); }
	51% { opacity: 1; }
}

/*************** Service Box ***************/

.service-box .read-more {
	margin-top: 4px;
	font-weight: 500;
	margin-left: 2px;
}

.service-box .read-more i {
	display: inline-block;
	position: relative;
	top: 1px;
}

.image-service-box img {
	margin-bottom: 14px;
}

.image-service-box h4 {
	margin-bottom: 8px;
	padding: 0 10px;
    font-weight: 400;
}

.image-service-box p {
	padding: 0 10px;
}

.service-box {
	margin-bottom: 35px;
}

.service-center {
	text-align: center;
}

.service-icon-left .service-icon {
	float: left;
}

.service-icon-left .service-content {
	padding-left: 45px;
}

.service-icon-left-more .service-icon {
	float: left;
}

.service-icon-left-more .service-content {
	padding-left: 60px;
}

.service-center .service-icon {
	margin-bottom: 14px;
}

.service-center .service-content h4 {
	margin-bottom: 6px;
    font-weight: 500;
}

.service-center .service-icon i {
	display: inline-block;
}

.service-box h4 {
	margin-bottom: 5px;
    font-weight: 400;
}

.service-box > div:first-child {
	padding: 0;
}

.service-boxed {
	margin-top: 30px;
	padding: 0 15px 20px 15px !important;
	border: 1px solid #eee;
	border-radius: 4px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.service-boxed:hover {
	border-color: #e2e2e2;
	box-shadow: 0 0 6px rgba(0,0,0,.1);
	-o-box-shadow: 0 0 6px rgba(0,0,0,.1);
	-moz-box-shadow: 0 0 6px rgba(0,0,0,.1);
  	-webkit-box-shadow: 0 0 6px rgba(0,0,0,.1);
}

.service-boxed p {
    margin-bottom: 0;
}

/*************** Testimonials ***************/

.testimonials {
	padding-top: 8px;
	text-align: center;
	position: relative;
}

.testimonials .testimonial-content p {
	font-family: 'Lora', serif;
	font-size: 24px;
	line-height: 36px;
	font-style: italic;
	font-weight: 400;
	color: #444;
}

.testimonials .testimonial-content {
	position: relative;
}

.testimonials .testimonial-content p::before {
	content: open-quote;
	margin-right: 6px;
}

.testimonials .testimonial-content p::after {
	content: close-quote;
	margin-left: 6px;
}

.testimonials .testimonial-author {
	padding: 8px;
	margin-bottom: 10px;
}

.classic-testimonials .testimonial-content {
	position: relative;
	padding: 14px 18px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	margin-bottom: 10px;
	border: 1px solid #e8e8e8;
	box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
	-o-box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
	-moz-box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
  	-webkit-box-shadow: 0 0 20px rgba(0,0,0,.04) inset;
}

.classic-testimonials .testimonial-content:before {
	content: "\201C";
	font-weight: 300;
	position: absolute;
	font-size: 30px;
	opacity: 0.5;
	top: 8px;
	left: 6px;
}

.classic-testimonials .testimonial-author {
	margin-left: 10px;
}

.classic-testimonials .testimonial-author span {
	font-weight: 600;
}

/*************** Team Members ***************/

.team-member {
	padding: 3px;
	position: relative;
}

.team-member p{
	font-size: 16px;
}

.team-member .member-photo {
	padding: 3px;
	border: 1px solid #eee;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	position: relative;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    margin-bottom: 15px;
}

.team-member .member-photo .member-name {
	position: absolute;
	bottom: 12px;
	right: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 5px 14px;
	background-color: #31A2E1;
	z-index: 9994;
}

.team-member .member-photo .member-name span {
	position: absolute;
	top: 90%;
	right: 0;
	color: #fff;
	font-size: 13px;
	font-weight: 300;
	padding: 1px 10px;
}

.team-member .member-info {
	padding: 15px 6px 12px 6px;
}

.team-member .member-socail a i {
	color: #fff;
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	display: inline-block;
	background-color: #d2d2d2;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.team-member .member-socail a.facebook:hover i { background-color: #507CBE; }
.team-member .member-socail a.twitter:hover i { background-color: #63CDF1; }
.team-member .member-socail a.gplus:hover i { background-color: #F16261; }
.team-member .member-socail a.dribbble:hover i { background-color: #E46387; }
.team-member .member-socail a.linkedin:hover i { background-color: #90CADD; }
.team-member .member-socail a.flickr:hover i { background-color: #E474AF; }
.team-member .member-socail a.instagramm:hover i { background-color: #4D4F54; }

.team-member.modern .member-info { padding: 14px 0; }
.team-member.modern .member-photo {
	position: relative;
	padding: 0px;
	border: none;
	border-radius: 0;
}
.team-member.modern .member-photo:after {
	content: "";
	display: block;
	width: 100%;
	height: calc(100% + 1px);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9993;
	transition: all 0.6s ease-in-out;
}
.team-member.modern:hover .member-photo:after { opacity: 0.5; }
.team-member.modern .progress { height: 3px; border-width: 2px; margin-bottom: 6px; }
.team-member.modern .progress-label { font-size: 12px; line-height: 2em; font-weight: 700; }
.team-member.modern .progress span { display: none; }
.team-member.modern .member-socail { margin-top: 15px; }
.team-member.modern .member-socail a i { background-color: transparent; color: #666; }
.team-member.modern .member-socail a:hover i { color: #fff; }

/*************** Heading Titles ***************/

.classic-title {
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
    font-weight: 300;
}

.classic-title span {
	padding-bottom: 8px;
	border-bottom: 1px solid;
	font-weight: 400;
}

.big-title {
	margin-bottom: 20px;
}

.big-title h1, .big-title h2 {
	font-size: 26px;
	line-height: 32px;
	font-weight: 300;
}

.big-title h1 strong, .big-title h2 strong {
	font-weight: 400;
}

.big-title .title-desc {
	font-size: 16px;
	line-height: 22px;
	color: #666;
}

.big-title h2 + .title-desc, .big-title h1 + .title-desc {
	margin-top: 4px;
}

/*------------------------------------------*/
/*	        06 - Portfolio Styles
/*------------------------------------------*/

.portfolio-filter {
	margin-bottom: 30px;
}

.portfolio-filter li {
	display: inline-block;
	margin-right: 2px;
}

.portfolio-filter li a {
	color: #666;
	display: inline-block;
	padding: 5px 14px;
	border: 1px solid #eee;
	border-radius: 2px;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-filter li a:hover {
	border-color: #ddd;
}

.portfolio-filter li a.selected, .portfolio-filter li a.selected:hover {
	color: #fff;
}

.portfolio-item {
	margin-bottom: 30px;
}

.portfolio-4 {
	margin-left: 5px;
}

.portfolio-4 .portfolio-item {
	width: 24.99%!important;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 22px;
}

.portfolio-item .portfolio-border {
	padding: 3px;
	border: 1px solid #eee;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-border {
	box-shadow: 0 1px 3px #f8f8f8;
}

.portfolio-item .portfolio-thumb {
	position: relative;
	overflow: hidden;
}

.portfolio-item .portfolio-thumb .thumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0);
	transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-thumb .thumb-overlay {
	background: rgba(255,255,255,0.5);
}

.portfolio-item .portfolio-thumb .thumb-overlay i {
	color: rgba(255,255,255,0);
	position: absolute;
	top: 42%;
	left: 50%;
	display: block;
	margin-left: -27px;
	margin-top: -19px;
	font-size: 3em;
	transition: all 0.3s ease-in-out;
}

.portfolio-item:hover .portfolio-thumb .thumb-overlay i {
	top: 50%;
	color: #444;
}

.portfolio-item .portfolio-details {
	position: relative;
	padding: 9px 12px 6px 12px;
}

.portfolio-item .portfolio-details .like-link {
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -9px;
}

.portfolio-item .portfolio-details .like-link i, .portfolio-item .portfolio-details .like-link span {
	color: #666;
	transition: all 0.3s ease-in-out;
}

.portfolio-item .portfolio-details .like-link:hover i, .portfolio-item .portfolio-details .like-link:hover span {
	color: #F54B5C;
}
.portfolio-item .portfolio-details .like-link i {
	padding-right: 5px;
}

.portfolio-item .portfolio-details h4 {
	transition: all 0.3s ease-in-out;
}

.portfolio-item .portfolio-details a span {
	color: #666;
}

.portfolio-item .portfolio-details span:after {
	content: ", ";
	margin-right: 2px;
}

.portfolio-item .portfolio-details span:last-child:after {
	content: "";
}

/* progress bar */
.skill p { margin-bottom: 7px; }

.progress {
  overflow: visible;
  height: 18px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar {
  float: left;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  position: relative;
}

.progress-bar-span {
  opacity: 1;
  position: absolute;
  top: -5px;
  background: #ACB2B8;
  padding: 3px 10px;
  color: #FFF;
  border-radius: 0px;
  right: 0px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

/* Counter */
.counter-item {
  position: relative;
  text-align: center;
}

.counter-item h5 {
  text-align: center;
  margin-bottom: 0px;
  color: #fff;
  text-transform: uppercase;
}

.counter-item i {
  font-size: 40px;
}

.timer {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 80px;
}

.section-title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	color: #1a2942;
	margin-bottom: 14px;
}

/* ============================================================
   6. CARD BASE
============================================================ */
/* ── LV-CARD — City-site style vacancy card ────────────────── */
.lv-card {
	background: #fff;
	border-radius: var(--card-radius);
	box-shadow: var(--card-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	transition: var(--card-transition);
}
.lv-card:hover {
	transform: var(--card-lift);
	box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

/* Image wrapper */
.lv-card-img-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: var(--card-img-height);
	flex-shrink: 0;
	background-color: #cdd8e3;
}
.lv-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.lv-card:hover .lv-card-img-wrap img {
	transform: scale(1.05);
}

/* Unit badge — bottom-left of image */
.lv-card-unit {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background-color: #1D5999;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Nunito Sans', sans-serif;
	padding: 4px 12px;
	border-radius: 6px;
	letter-spacing: 0.5px;
	border: 2px solid rgba(255, 255, 255, 0.80);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
}

/* Card body */
.lv-card-body {
	padding: 14px 16px 12px;
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}

/* Space / building name */
.lv-card-title {
	font-size: 15px;
	font-weight: 700;
	font-family: 'Nunito Sans', sans-serif;
	color: #1a2942;
	margin: 0 0 2px;
	line-height: 1.35;
	width: 100%;
}

/* Meta rows (building, location, price) */
.lv-card-meta-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	font-size: 13px;
	font-family: 'Nunito Sans', sans-serif;
	color: #6b7a8d;
	line-height: 1.4;
	width: 100%;
}
.lv-card-meta-item i {
	font-size: 13px;
	flex-shrink: 0;
	line-height: 1;
}
.lv-card-meta-item span {
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.lv-icon-building  { color: #1D5999; }
.lv-icon-location  { color: #e53935; }
.lv-icon-price     { color: #2e7d32; }

/* Size / CTA pill bar at the bottom */
.lv-card-size-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--card-cta-bg);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Nunito Sans', sans-serif;
	padding: var(--card-cta-padding);
	text-decoration: none;
	width: 100%;
	margin-top: auto;
	transition: background-color 0.2s ease;
	border-bottom-left-radius: var(--card-radius);
	border-bottom-right-radius: var(--card-radius);
}
.lv-card-size-bar:hover {
	background-color: #174d87;
	color: #fff;
	text-decoration: none;
}
.lv-card-size-bar i {
	font-size: 14px;
	line-height: 1;
}

/* ============================================================
   7. VACANCY CARD
============================================================ */
/* ── Common box (legacy vacancy card) ──────────────────────── */
.common-box {
	transition: var(--card-transition);
}
.common-box:hover {
	transform: var(--card-lift);
	box-shadow: 0 14px 35px rgba(0,0,0,0.13) !important;
}

/* ============================================================
   8. REQUEST CARD
============================================================ */
/* ── Portfolio item (used for request cards) ────────────────── */
.portfolio-item {
	margin-bottom: 30px;
}

/* ============================================================
   9. BUILDING CARD
============================================================ */
/* ── BLC (Building Listing Card) ───────────────────────────── */
.blc {
	background: #fff;
	border-radius: var(--card-radius);
	box-shadow: var(--card-shadow);
	overflow: hidden;
	margin-bottom: 32px;
	transition: var(--card-transition);
}
.blc:hover {
	box-shadow: var(--card-shadow-hover);
	transform: var(--card-lift);
}

.blc-main-row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 260px;
}

.blc-img-panel {
	flex: 0 0 360px;
	width: 360px;
	position: relative;
	overflow: hidden;
	background-color: #cdd8e3;
	flex-shrink: 0;
}
.blc-img-link {
	display: block;
	width: 100%;
	height: 100%;
}
.blc-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}
.blc:hover .blc-img {
	transform: scale(1.04);
}

.blc-vacancy-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	background-color: #1D5999;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Nunito Sans', sans-serif;
	padding: 5px 13px;
	border-radius: 20px;
	border: 2px solid rgba(255,255,255,0.85);
	box-shadow: 0 2px 8px rgba(0,0,0,0.28);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	letter-spacing: 0.3px;
}
.blc-vacancy-badge--full {
	background-color: #5a6778;
}

.blc-content-panel {
	flex: 1;
	min-width: 0;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
}

.blc-name {
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	color: #1a2942;
	margin: 0;
	line-height: 1.25;
	font-family: 'Nunito Sans', sans-serif;
}
.blc-name a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}
.blc-name a:hover { color: #1D5999; }

.blc-location {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 7px;
	font-size: 13px;
	color: #6b7a8d;
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	line-height: 1.5;
	width: 100%;
}
.blc-icon-pin {
	color: #e53935;
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px;
	line-height: 1;
}

.blc-desc {
	font-size: 14px;
	color: #6b7a8d;
	margin: 0;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Nunito Sans', sans-serif;
	width: 100%;
}

.blc-stats-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.blc-stat-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background-color: #f0f4f9;
	color: #1a2942;
	font-size: 12px;
	font-weight: 600;
	font-family: 'Nunito Sans', sans-serif;
	padding: 5px 12px;
	border-radius: 20px;
	border: 1px solid #d4dde9;
	white-space: nowrap;
	letter-spacing: 0.2px;
}
.blc-stat-pill i {
	font-size: 12px;
	color: #1D5999;
	line-height: 1;
}
.blc-stat-pill--to {
	background-color: #fff8ec;
	border-color: #f0d080;
	color: #7a5c00;
}
.blc-stat-pill--to i { color: #c9910a; }
.blc-stat-pill--spaces {
	background-color: #eaf5ea;
	border-color: #a8d5a8;
	color: #1b5e20;
}
.blc-stat-pill--spaces i { color: #2e7d32; }

.blc-cta-wrap {
	margin-top: 4px;
}
.blc-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--card-cta-bg);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Nunito Sans', sans-serif;
	padding: 10px 22px;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease;
	letter-spacing: 0.3px;
}
.blc-cta-btn:hover {
	background-color: #174d87;
	color: #fff;
	text-decoration: none;
	transform: translateX(3px);
}
.blc-cta-btn i {
	font-size: 14px;
	line-height: 1;
	transition: transform 0.2s ease;
}
.blc-cta-btn:hover i {
	transform: translateX(3px);
}

.blc-spaces-section {
	border-top: 1px solid #e8eef5;
	background-color: #f5f8fc;
	padding: 20px 28px 26px;
}
.blc-spaces-header {
	margin-bottom: 16px;
}
.blc-spaces-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	font-family: 'Nunito Sans', sans-serif;
	color: #1a2942;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}
.blc-spaces-label i {
	color: #1D5999;
	font-size: 14px;
}
.blc-spaces-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #1D5999;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	border-radius: 10px;
	padding: 0 6px;
	line-height: 1;
}

.blc-empty-state {
	text-align: center;
	padding: 80px 20px;
	color: #6b7a8d;
}
.blc-empty-icon {
	font-size: 72px;
	color: #cdd8e3;
	display: block;
	margin-bottom: 20px;
	line-height: 1;
}
.blc-empty-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a2942;
	margin-bottom: 10px;
	font-family: 'Nunito Sans', sans-serif;
}
.blc-empty-text {
	font-size: 15px;
	color: #6b7a8d;
	max-width: 480px;
	margin: 0 auto;
	line-height: 1.75;
}
.blc-empty-text a {
	color: #1D5999;
	text-decoration: none;
	font-weight: 600;
}
.blc-empty-text a:hover { text-decoration: underline; }

/* ============================================================
  10. ADMIN HEADER
============================================================ */
#loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.loader {
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* ── Pro nav dropdown trigger ──────────────────────────────── */
.nav-user-trigger {
	display: flex !important;
	align-items: center;
	gap: 8px;
	padding: 6px 14px !important;
	border-radius: 50px;
	border: 1.5px solid #d1d5db;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
	text-decoration: none;
}
.nav-user-trigger:hover,
.nav-user-trigger.show {
	border-color: #1D5999;
	box-shadow: 0 0 0 3px rgba(29,89,153,0.10);
	text-decoration: none;
}
.nav-user-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #1D5999;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}
.nav-user-label {
	font-size: 14px;
	font-weight: 600;
	color: #374151;
}
.nav-user-chevron {
	font-size: 11px;
	color: #6b7280;
	transition: transform 0.2s;
}
.nav-user-trigger.show .nav-user-chevron { transform: rotate(180deg); }

/* ── Dropdown panel ────────────────────────────────────────── */
.nav-pro-dropdown {
	min-width: 240px;
	padding: 0 !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 14px !important;
	box-shadow: 0 10px 40px rgba(0,0,0,0.13) !important;
	overflow: hidden;
	margin-top: 8px !important;
}
.nav-dd-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: linear-gradient(135deg, #1D5999 0%, #154d88 100%);
}
.nav-dd-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.20);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	border: 2px solid rgba(255,255,255,0.40);
}
.nav-dd-name {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}
.nav-dd-role {
	font-size: 12px;
	color: rgba(255,255,255,0.72);
	font-weight: 500;
}
.nav-dd-section {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #9ca3af;
	padding: 10px 18px 3px;
}
.nav-dd-item {
	display: flex !important;
	align-items: center;
	gap: 11px;
	padding: 10px 18px !important;
	font-size: 14px !important;
	font-weight: 500;
	color: #374151 !important;
	text-decoration: none !important;
	transition: background 0.12s, color 0.12s;
}
.nav-dd-item i {
	font-size: 15px;
	color: #1D5999;
	width: 18px;
	text-align: center;
	flex-shrink: 0;
	transition: color 0.12s;
}
.nav-dd-item:hover {
	background: #f0f6ff !important;
	color: #1D5999 !important;
}
.nav-dd-item:hover i { color: #1D5999; }
.nav-dd-divider {
	height: 1px;
	background: #f0f2f5;
	margin: 5px 0;
}
.nav-dd-logout { color: #dc2626 !important; }
.nav-dd-logout i { color: #dc2626 !important; }
.nav-dd-logout:hover { background: #fef2f2 !important; color: #b91c1c !important; }
.nav-dd-logout:hover i { color: #b91c1c !important; }

/* ── Main navbar ────────────────────────────────────────────── */
.main-navbar {
	background: #fff !important;
	border-bottom: 1px solid #e8ecf2;
	box-shadow: 0 2px 20px rgba(0,0,0,0.07) !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	min-height: 66px;
}
.main-navbar .container {
	min-height: 66px;
	align-items: center;
}

/* ── Logo ───────────────────────────────────────────────────── */
.main-navbar .navbar-brand {
	display: flex !important;
	align-items: center;
	gap: 10px;
	font-size: 16px !important;
	font-weight: 800 !important;
	color: var(--color-primary) !important;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 !important;
	line-height: 1;
}
.main-navbar .navbar-brand:hover { color: var(--color-primary-dark) !important; text-decoration: none; }
.nav-logo-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #1D5999 0%, #0d9488 100%);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 17px;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(29,89,153,0.28);
}

/* ── Nav links ──────────────────────────────────────────────── */
.main-navbar .nav-link {
	font-size: 12.5px !important;
	font-weight: 600 !important;
	color: #6b7280 !important;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 8px 13px !important;
	border-radius: 7px;
	transition: color 0.15s, background 0.15s;
	margin: 0 1px;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-item:hover > .nav-link {
	color: #0f1e2e !important;
	background: #f3f4f6;
	text-decoration: none;
}
.main-navbar .nav-item.active > .nav-link {
	color: #1D5999 !important;
	font-weight: 700 !important;
	background: #eef3fb;
}

/* ── Divider between public links and user menu ─────────────── */
.nav-vdivider {
	width: 1px;
	height: 22px;
	background: #e5e7eb;
	margin: 0 10px;
	align-self: center;
	flex-shrink: 0;
}

/* ── Mobile toggler ─────────────────────────────────────────── */
.main-navbar .navbar-toggler {
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	padding: 6px 10px;
}
.main-navbar .navbar-toggler:focus { box-shadow: none; }

/* ============================================================
  11. ADMIN NAV BAR
============================================================ */
/* ── Admin gradient nav bar ──────────────────────────────────── */
.lnav-outer {
	background: linear-gradient(to right, #0d1b2e 0%, #0f2747 40%, #0a7a72 100%);
	border-radius: 12px;
	padding: 10px 14px;
	overflow-x: auto;
	scrollbar-width: none;
}
.lnav-outer::-webkit-scrollbar { display: none; }

.lnav-bar {
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.lnav-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.78);
	text-decoration: none;
	white-space: nowrap;
	border-radius: 8px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.10);
	transition: background .18s, color .18s, border-color .18s;
	flex-shrink: 0;
}
.lnav-item:hover {
	background: rgba(255,255,255,0.15);
	color: #fff;
	text-decoration: none;
	border-color: rgba(255,255,255,0.22);
}
.lnav-item.lnav-active {
	background: #3b7dd8;
	color: #fff;
	font-weight: 600;
	border-color: transparent;
	box-shadow: 0 2px 10px rgba(59,125,216,0.45);
}

.lnav-icon {
	font-size: 12px;
	color: inherit;
	opacity: 0.80;
}
.lnav-item:hover .lnav-icon,
.lnav-item.lnav-active .lnav-icon { opacity: 1; }

/* ============================================================
  12. ADMIN DASHBOARD
============================================================ */
/* ── Reset & base ────────────────────────────────────────── */
.lb-page { padding: 0 0 30px; background: transparent; }

/* ── Page header ─────────────────────────────────────────── */
.lb-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    padding-top: 10px;
}
.lb-page-title {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    letter-spacing: -0.3px;
}
.lb-page-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 2px 0 0;
}
.lb-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1D5999;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 10px rgba(29,89,153,0.25);
}
.lb-add-btn:hover {
    background: #154d88;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(29,89,153,0.30);
    text-decoration: none;
}

/* ── KPI strip ───────────────────────────────────────────── */
.lb-kpi-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.lb-kpi-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    border: 1px solid #e8ecf2;
}
.lb-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.lb-kpi-icon-blue  { background: #e8f0fc; color: #1D5999; }
.lb-kpi-icon-green { background: #e6f7ee; color: #1a8c4e; }
.lb-kpi-icon-amber { background: #fff8e8; color: #b45309; }
.lb-kpi-val  { font-size: 26px; font-weight: 800; color: #111827; line-height: 1; }
.lb-kpi-lbl  { font-size: 12px; color: #6b7280; margin-top: 3px; font-weight: 500; }

/* ── Toolbar ─────────────────────────────────────────────── */
.lb-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.lb-search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}
.lb-search-wrap .bi {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 15px;
    pointer-events: none;
}
.lb-search-input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.lb-search-input:focus {
    border-color: #1D5999;
    box-shadow: 0 0 0 3px rgba(29,89,153,0.12);
}
.lb-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
}
.lb-filter-btn:hover, .lb-filter-btn.active {
    border-color: #1D5999;
    color: #1D5999;
    background: #f0f5ff;
}
.lb-view-toggle {
    display: flex;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    margin-left: auto;
}
.lb-view-btn {
    padding: 8px 13px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.15s, color 0.15s;
}
.lb-view-btn.active { background: #1D5999; color: #fff; }
.lb-view-btn:hover:not(.active) { background: #f3f4f6; }

/* ── Result meta ─────────────────────────────────────────── */
.lb-results-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}
.lb-results-meta strong { color: #111827; }

/* ── Cards grid ──────────────────────────────────────────── */
.lb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lb-grid.lb-list-view {
    grid-template-columns: 1fr;
}

/* ── Building card ───────────────────────────────────────── */
.lb-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    border: 1px solid #e8ecf2;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.18s;
}
.lb-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    transform: translateY(-2px);
}

/* List view card overrides */
.lb-list-view .lb-card { flex-direction: row; }
.lb-list-view .lb-card-img-wrap { width: 200px; flex-shrink: 0; }
.lb-list-view .lb-card-img-wrap img { height: 100%; object-fit: cover; }
.lb-list-view .lb-card-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 575px) {
    .lb-list-view .lb-card { flex-direction: column; }
    .lb-list-view .lb-card-img-wrap { width: 100%; }
    .lb-list-view .lb-card-img-wrap img { height: 180px; }
}

/* image wrap */
.lb-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 188px;
}
.lb-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lb-card:hover .lb-card-img-wrap img { transform: scale(1.04); }

.lb-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.lb-badge-approved { background: #d1fae5; color: #065f46; }
.lb-badge-pending  { background: #fef3c7; color: #92400e; }

.lb-card-view-link {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D5999;
    font-size: 14px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.lb-card:hover .lb-card-view-link { opacity: 1; }

/* card body */
.lb-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.lb-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-card-address {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* action buttons */
.lb-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.lb-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.15s;
    white-space: nowrap;
}
.lb-action:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }
.lb-action-primary { background: #1D5999; color: #fff; }
.lb-action-teal    { background: #0d9488; color: #fff; }
.lb-action-slate   { background: #475569; color: #fff; }
.lb-action-red     { background: #fff; color: #dc2626; border: 1px solid #fca5a5; }
.lb-action-red:hover { background: #fef2f2; }

/* ── Empty state ─────────────────────────────────────────── */
.lb-empty {
    text-align: center;
    padding: 70px 20px;
    background: #fff;
    border-radius: 14px;
    border: 2px dashed #d1d5db;
}
.lb-empty-icon { font-size: 52px; color: #d1d5db; margin-bottom: 14px; }
.lb-empty-title { font-size: 18px; font-weight: 700; color: #374151; margin-bottom: 6px; }
.lb-empty-desc  { font-size: 14px; color: #6b7280; margin-bottom: 22px; }

/* ── Flash message ───────────────────────────────────────── */
.lb-flash {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #065f46;
}
.lb-flash i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.lb-flash-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #065f46;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
}

/* ============================================================
  13. FOOTER
============================================================ */
/* Populated from dist/box-style.css in Task 10 */

/* ============================================================
  14. RESPONSIVE
============================================================ */
/* Populated from responsive.css + scattered @media rules in Task 10 */
