/* Table of Contents
==========================================================================
# Global 
# Header 
# Home 
# Services 
# Features
# Work Process
# Portfolio
# Team
# Testimonial
# Blog
# Clients
# Footer
# About Us Page
# Service Page
# Features Page
# Project Page
# Project Details page 
# Blog Page
# Blog Details Page
# Contact Page 
# Extras
===========================================================================*/

/* ========================================================================
 	Global
 ========================================================================== */

/**
 * Variables
 */
* {
    --white-color: #fff;
    --dark-color: #000;
    --primary-color: #E11C86;
    --secondary-color: #a3a3a3;
    --text-main-color: #6f6f6f;
    --dark-gray-color: #3d3d3d;
	--primary-yellow-color: #fbba00;
	--primary-dark-red-color: #8D004C;
	--primary-darkgray: #525252;
	--primary-lightgray: #F3F3F3;
	--primary-silver: #DCDCDC;
	--primary-gray: #D9D9D9;
	--primary-offwhite: #FAFAFA;
	--primary-magenta: #97004f;
	--primary-orange: #FF7012;
	--primary-pearl: #EDECEC;
	--primary-smoke: #E8E7E7;
	--primary-graywhite: #EAEAEA;
	--primary-midgray: #E0E0E0;
	--primary-charcoalgray: #797979;
	--red-alert: #EE4A4C;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal--visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

html,
body {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 11px;
	color: #6f6f6f;
	background-color: #fff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	letter-spacing: 1.5px;
}

/**
 * Lato Font Weight Classes
 */
.lato-thin {
	font-family: 'Lato', sans-serif;
	font-weight: 100;
}

.lato-light {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}

.lato-regular {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

.lato-bold {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

.lato-black {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
}

.lato-thin-italic {
	font-family: 'Lato', sans-serif;
	font-weight: 100;
	font-style: italic;
}

.lato-light-italic {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-style: italic;
}

.lato-regular-italic {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: italic;
}

.lato-bold-italic {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-style: italic;
}

.lato-black-italic {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-style: italic;
}

/* Override Bootstrap fw-* classes to work with Lato */
.fw-lighter {
	font-weight: 100 !important;
}

.fw-light {
	font-weight: 300 !important;
}

.fw-normal {
	font-weight: 400 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.fw-bolder {
	font-weight: 900 !important;
}

/**
 * Letter Spacing Utility Classes
 * ls-n3 = -3px, ls-0 = 0px, ls-1 = 1px ... ls-20 = 20px
 */
.ls-n3  { letter-spacing: -3px  !important; }
.ls-n2  { letter-spacing: -2px  !important; }
.ls-n1  { letter-spacing: -1px  !important; }
.ls-0   { letter-spacing:  0px  !important; }
.ls-1   { letter-spacing:  1px  !important; }
.ls-2   { letter-spacing:  2px  !important; }
.ls-3   { letter-spacing:  3px  !important; }
.ls-4   { letter-spacing:  4px  !important; }
.ls-5   { letter-spacing:  5px  !important; }
.ls-6   { letter-spacing:  6px  !important; }
.ls-7   { letter-spacing:  7px  !important; }
.ls-8   { letter-spacing:  8px  !important; }
.ls-9   { letter-spacing:  9px  !important; }
.ls-10  { letter-spacing: 10px  !important; }
.ls-11  { letter-spacing: 11px  !important; }
.ls-12  { letter-spacing: 12px  !important; }
.ls-13  { letter-spacing: 13px  !important; }
.ls-14  { letter-spacing: 14px  !important; }
.ls-15  { letter-spacing: 15px  !important; }
.ls-16  { letter-spacing: 16px  !important; }
.ls-17  { letter-spacing: 17px  !important; }
.ls-18  { letter-spacing: 18px  !important; }
.ls-19  { letter-spacing: 19px  !important; }
.ls-20  { letter-spacing: 20px  !important; }

ul {
	margin:0;
	padding:0;
    list-style:none;
}

ul.list-dot {
    list-style: disc;
    padding-left: 1.5rem;
}

a{
	color: white;
}
a:hover {
	color: var(--primary-color);
}

a, a:hover, a:active,
a:focus, button:focus, .btn:focus,
.form-control:focus {
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.text-dark{
    color: var(--dark-color) !important;
}

.text-main{
    color: var(--text-main-color) !important;
}

.text-white{
    color: white !important;
}

.text-yellow{
    color: var(--primary-yellow-color) !important;
}

.text-primary{
    color: var(--primary-color) !important;
}

.text-dark-red{
    color: var(--primary-dark-red-color) !important;
}

.text-darkgray{
    color: var(--primary-darkgray) !important;
}

.text-orange{
    color: var(--primary-orange) !important;
}

.text-red-alert{
    color: var(--red-alert) !important;
}

.bg-lightgray{
    background-color: var(--primary-lightgray) !important;
}

.bg-offwhite{
    background-color: var(--primary-offwhite) !important;
}

.bg-gray{
    background-color: var(--primary-gray) !important;
}

.bg-magenta{
    background-color: var(--primary-magenta) !important;
}

.bg-softgray{
    background-color: #F0F0F0 !important;
}

.bg-silver{
    background-color: var(--primary-silver) !important;
}

.text-silver{
    color: var(--primary-silver) !important;
}

.bg-dark-red{
    background-color: var(--primary-dark-red-color) !important;
}

.text-dark-red{
    color: var(--primary-dark-red-color) !important;
}

.bg-yellow-5    { background-color: rgba(251,186,0,0.05) !important; }
.bg-yellow-10   { background-color: rgba(251,186,0,0.10) !important; }
.bg-yellow-15   { background-color: rgba(251,186,0,0.15) !important; }
.bg-yellow-20   { background-color: rgba(251,186,0,0.20) !important; }
.bg-yellow-25   { background-color: rgba(251,186,0,0.25) !important; }
.bg-yellow-30   { background-color: rgba(251,186,0,0.30) !important; }
.bg-yellow-35   { background-color: rgba(251,186,0,0.35) !important; }
.bg-yellow-40   { background-color: rgba(251,186,0,0.40) !important; }
.bg-yellow-45   { background-color: rgba(251,186,0,0.45) !important; }
.bg-yellow-50   { background-color: rgba(251,186,0,0.50) !important; }
.bg-yellow-55   { background-color: rgba(251,186,0,0.55) !important; }
.bg-yellow-60   { background-color: rgba(251,186,0,0.60) !important; }
.bg-yellow-65   { background-color: rgba(251,186,0,0.65) !important; }
.bg-yellow-70   { background-color: rgba(251,186,0,0.70) !important; }
.bg-yellow-75   { background-color: rgba(251,186,0,0.75) !important; }
.bg-yellow-80   { background-color: rgba(251,186,0,0.80) !important; }
.bg-yellow-85   { background-color: rgba(251,186,0,0.85) !important; }
.bg-yellow-90   { background-color: rgba(251,186,0,0.90) !important; }
.bg-yellow-95   { background-color: rgba(251,186,0,0.95) !important; }
.bg-yellow-100  { background-color: rgba(251,186,0,1.00) !important; }

.bg-orange-5    { background-color: rgba(255,112,18,0.05) !important; }
.bg-orange-10   { background-color: rgba(255,112,18,0.10) !important; }
.bg-orange-15   { background-color: rgba(255,112,18,0.15) !important; }
.bg-orange-20   { background-color: rgba(255,112,18,0.20) !important; }
.bg-orange-25   { background-color: rgba(255,112,18,0.25) !important; }
.bg-orange-30   { background-color: rgba(255,112,18,0.30) !important; }
.bg-orange-35   { background-color: rgba(255,112,18,0.35) !important; }
.bg-orange-40   { background-color: rgba(255,112,18,0.40) !important; }
.bg-orange-45   { background-color: rgba(255,112,18,0.45) !important; }
.bg-orange-50   { background-color: rgba(255,112,18,0.50) !important; }
.bg-orange-55   { background-color: rgba(255,112,18,0.55) !important; }
.bg-orange-60   { background-color: rgba(255,112,18,0.60) !important; }
.bg-orange-65   { background-color: rgba(255,112,18,0.65) !important; }
.bg-orange-70   { background-color: rgba(255,112,18,0.70) !important; }
.bg-orange-75   { background-color: rgba(255,112,18,0.75) !important; }
.bg-orange-80   { background-color: rgba(255,112,18,0.80) !important; }
.bg-orange-85   { background-color: rgba(255,112,18,0.85) !important; }
.bg-orange-90   { background-color: rgba(255,112,18,0.90) !important; }
.bg-orange-95   { background-color: rgba(255,112,18,0.95) !important; }
.bg-orange-100  { background-color: rgba(255,112,18,1.00) !important; }

.bg-red-alert-5    { background-color: rgba(238,74,76,0.05) !important; }
.bg-red-alert-10   { background-color: rgba(238,74,76,0.10) !important; }
.bg-red-alert-15   { background-color: rgba(238,74,76,0.15) !important; }
.bg-red-alert-20   { background-color: rgba(238,74,76,0.20) !important; }
.bg-red-alert-25   { background-color: rgba(238,74,76,0.25) !important; }
.bg-red-alert-30   { background-color: rgba(238,74,76,0.30) !important; }
.bg-red-alert-35   { background-color: rgba(238,74,76,0.35) !important; }
.bg-red-alert-40   { background-color: rgba(238,74,76,0.40) !important; }
.bg-red-alert-45   { background-color: rgba(238,74,76,0.45) !important; }
.bg-red-alert-50   { background-color: rgba(238,74,76,0.50) !important; }
.bg-red-alert-55   { background-color: rgba(238,74,76,0.55) !important; }
.bg-red-alert-60   { background-color: rgba(238,74,76,0.60) !important; }
.bg-red-alert-65   { background-color: rgba(238,74,76,0.65) !important; }
.bg-red-alert-70   { background-color: rgba(238,74,76,0.70) !important; }
.bg-red-alert-75   { background-color: rgba(238,74,76,0.75) !important; }
.bg-red-alert-80   { background-color: rgba(238,74,76,0.80) !important; }
.bg-red-alert-85   { background-color: rgba(238,74,76,0.85) !important; }
.bg-red-alert-90   { background-color: rgba(238,74,76,0.90) !important; }
.bg-red-alert-95   { background-color: rgba(238,74,76,0.95) !important; }
.bg-red-alert-100  { background-color: rgba(238,74,76,1.00) !important; }

.bg-primary-5   { background-color: rgba(225,28,134,0.05) !important; }
.bg-primary-10  { background-color: rgba(225,28,134,0.10) !important; }
.bg-primary-15  { background-color: rgba(225,28,134,0.15) !important; }
.bg-primary-20  { background-color: rgba(225,28,134,0.20) !important; }
.bg-primary-25  { background-color: rgba(225,28,134,0.25) !important; }
.bg-primary-30  { background-color: rgba(225,28,134,0.30) !important; }
.bg-primary-35  { background-color: rgba(225,28,134,0.35) !important; }
.bg-primary-40  { background-color: rgba(225,28,134,0.40) !important; }
.bg-primary-45  { background-color: rgba(225,28,134,0.45) !important; }
.bg-primary-50  { background-color: rgba(225,28,134,0.50) !important; }
.bg-primary-55  { background-color: rgba(225,28,134,0.55) !important; }
.bg-primary-60  { background-color: rgba(225,28,134,0.60) !important; }
.bg-primary-65  { background-color: rgba(225,28,134,0.65) !important; }
.bg-primary-70  { background-color: rgba(225,28,134,0.70) !important; }
.bg-primary-75  { background-color: rgba(225,28,134,0.75) !important; }
.bg-primary-80  { background-color: rgba(225,28,134,0.80) !important; }
.bg-primary-85  { background-color: rgba(225,28,134,0.85) !important; }
.bg-primary-90  { background-color: rgba(225,28,134,0.90) !important; }
.bg-primary-95  { background-color: rgba(225,28,134,0.95) !important; }
.bg-primary-100 { background-color: rgba(225,28,134,1.00) !important; }

.bg-dark-5  { background-color: rgba(0,0,0,0.05) !important; }
.bg-dark-10 { background-color: rgba(0,0,0,0.10) !important; }
.bg-dark-15 { background-color: rgba(0,0,0,0.15) !important; }
.bg-dark-20 { background-color: rgba(0,0,0,0.20) !important; }
.bg-dark-25 { background-color: rgba(0,0,0,0.25) !important; }
.bg-dark-30 { background-color: rgba(0,0,0,0.30) !important; }
.bg-dark-40 { background-color: rgba(0,0,0,0.40) !important; }
.bg-dark-50 { background-color: rgba(0,0,0,0.50) !important; }
.bg-dark-60 { background-color: rgba(0,0,0,0.60) !important; }
.bg-dark-70 { background-color: rgba(0,0,0,0.70) !important; }
.bg-dark-80 { background-color: rgba(0,0,0,0.80) !important; }
.bg-dark-90 { background-color: rgba(0,0,0,0.90) !important; }

.bg-white-10{ background-color: rgba(255,255,255,0.10) !important; }
.bg-white-15{ background-color: rgba(255,255,255,0.15) !important; }
.bg-white-20{ background-color: rgba(255,255,255,0.20) !important; }

.bg-orange{
    background-color: var(--primary-orange) !important;
}

.bg-red-alert{
    background-color: var(--red-alert) !important;
}

.bg-dark{
    background-color: var(--dark-color) !important;
}

.bg-main{
    background-color: var(--text-main-color) !important;
}

.bg-white{
    background-color: white !important;
}

.bg-yellow{
    background-color: var(--primary-yellow-color) !important;
}

.bg-primary{
    background-color: var(--primary-color) !important;
}

.bg-darkgray{
    background-color: var(--primary-darkgray) !important;
}

.text-lightgray{
    color: var(--primary-lightgray) !important;
}

.text-offwhite{
    color: var(--primary-offwhite) !important;
}

.text-gray{
    color: var(--primary-gray) !important;
}

.text-magenta{
    color: var(--primary-magenta) !important;
}

.text-softgray{
    color: #F0F0F0 !important;
}

.text-gradient-warm {
    background: linear-gradient(to right, #FBBA00, #FF7012, #EE4776, #E83A98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: -12px;
    line-height: 1.2;
}

.bg-gradient-warm {
    background: linear-gradient(to right, #FBBA00, #FF7012, #EE4776, #E83A98) !important;
}

.bg-pearl{
    background-color: var(--primary-pearl) !important;
}

.bg-smoke{
    background-color: var(--primary-smoke) !important;
}

.text-pearl{
    color: var(--primary-pearl) !important;
}

.bg-graywhite{
    background-color: var(--primary-graywhite) !important;
}

.text-graywhite{
    color: var(--primary-graywhite) !important;
}

.bg-midgray{
    background-color: var(--primary-midgray) !important;
}

.text-midgray{
    color: var(--primary-midgray) !important;
}

.bg-charcoalgray{
    background-color: var(--primary-charcoalgray) !important;
}

.text-charcoalgray{
    color: var(--primary-charcoalgray) !important;
}

.border-primary    { border-color: var(--primary-color)          !important; }
.border-yellow     { border-color: var(--primary-yellow-color)   !important; }
.border-dark-red   { border-color: var(--primary-dark-red-color) !important; }
.border-darkgray   { border-color: var(--primary-darkgray)       !important; }
.border-lightgray  { border-color: var(--primary-lightgray)      !important; }
.border-silver     { border-color: var(--primary-silver)         !important; }
.border-gray       { border-color: var(--primary-gray)           !important; }
.border-offwhite   { border-color: var(--primary-offwhite)       !important; }
.border-magenta    { border-color: var(--primary-magenta)        !important; }
.border-orange     { border-color: var(--primary-orange)         !important; }
.border-red-alert  { border-color: var(--red-alert)             !important; }
.border-pearl      { border-color: var(--primary-pearl)          !important; }
.border-graywhite  { border-color: var(--primary-graywhite)      !important; }
.border-midgray    { border-color: var(--primary-midgray)        !important; }
.border-charcoalgray { border-color: var(--primary-charcoalgray) !important; }

.fsr-10{ font-size: 1.0rem !important; }
.fsr-11{ font-size: 1.1rem !important; }
.fsr-12{ font-size: 1.2rem !important; }
.fsr-13{ font-size: 1.3rem !important; }
.fsr-14{ font-size: 1.4rem !important; }
.fsr-15{ font-size: 1.5rem !important; }
.fsr-16{ font-size: 1.6rem !important; }
.fsr-17{ font-size: 1.7rem !important; }
.fsr-18{ font-size: 1.8rem !important; }
.fsr-19{ font-size: 1.9rem !important; }
.fsr-20{ font-size: 2.0rem !important; }
.fsr-21{ font-size: 2.1rem !important; }
.fsr-22{ font-size: 2.2rem !important; }
.fsr-23{ font-size: 2.3rem !important; }
.fsr-24{ font-size: 2.4rem !important; }
.fsr-25{ font-size: 2.5rem !important; }

.fse-10{ font-size: 1.0em !important; }
.fse-11{ font-size: 1.1em !important; }
.fse-12{ font-size: 1.2em !important; }
.fse-13{ font-size: 1.3em !important; }
.fse-14{ font-size: 1.4em !important; }
.fse-15{ font-size: 1.5em !important; }
.fse-16{ font-size: 1.6em !important; }
.fse-17{ font-size: 1.7em !important; }
.fse-18{ font-size: 1.8em !important; }
.fse-19{ font-size: 1.9em !important; }
.fse-20{ font-size: 2.0em !important; }
.fse-21{ font-size: 2.1em !important; }
.fse-22{ font-size: 2.2em !important; }
.fse-23{ font-size: 2.3em !important; }
.fse-24{ font-size: 2.4em !important; }
.fse-25{ font-size: 2.5em !important; }
.fse-26{ font-size: 2.6em !important; }
.fse-27{ font-size: 2.7em !important; }
.fse-28{ font-size: 2.8em !important; }
.fse-29{ font-size: 2.9em !important; }
.fse-30{ font-size: 3.0em !important; }
.fse-31{ font-size: 3.1em !important; }
.fse-32{ font-size: 3.2em !important; }
.fse-33{ font-size: 3.3em !important; }
.fse-34{ font-size: 3.4em !important; }
.fse-35{ font-size: 3.5em !important; }
.fse-36{ font-size: 3.6em !important; }
.fse-37{ font-size: 3.7em !important; }
.fse-38{ font-size: 3.8em !important; }
.fse-39{ font-size: 3.9em !important; }
.fse-40{ font-size: 4.0em !important; }
.fse-41{ font-size: 4.1em !important; }
.fse-42{ font-size: 4.2em !important; }
.fse-43{ font-size: 4.3em !important; }
.fse-44{ font-size: 4.4em !important; }
.fse-45{ font-size: 4.5em !important; }
.fse-46{ font-size: 4.6em !important; }
.fse-47{ font-size: 4.7em !important; }
.fse-48{ font-size: 4.8em !important; }
.fse-49{ font-size: 4.9em !important; }
.fse-50{ font-size: 5.0em !important; }
.fse-51{ font-size: 5.1em !important; }
.fse-52{ font-size: 5.2em !important; }
.fse-53{ font-size: 5.3em !important; }
.fse-54{ font-size: 5.4em !important; }
.fse-55{ font-size: 5.5em !important; }
.fse-56{ font-size: 5.6em !important; }
.fse-57{ font-size: 5.7em !important; }
.fse-58{ font-size: 5.8em !important; }
.fse-59{ font-size: 5.9em !important; }
.fse-60{ font-size: 6.0em !important; }
.fse-61{ font-size: 6.1em !important; }
.fse-62{ font-size: 6.2em !important; }
.fse-63{ font-size: 6.3em !important; }
.fse-64{ font-size: 6.4em !important; }
.fse-65{ font-size: 6.5em !important; }
.fse-66{ font-size: 6.6em !important; }
.fse-67{ font-size: 6.7em !important; }
.fse-68{ font-size: 6.8em !important; }
.fse-69{ font-size: 6.9em !important; }
.fse-70{ font-size: 7.0em !important; }
.fse-71{ font-size: 7.1em !important; }
.fse-72{ font-size: 7.2em !important; }
.fse-73{ font-size: 7.3em !important; }
.fse-74{ font-size: 7.4em !important; }
.fse-75{ font-size: 7.5em !important; }
.fse-76{ font-size: 7.6em !important; }
.fse-77{ font-size: 7.7em !important; }
.fse-78{ font-size: 7.8em !important; }
.fse-79{ font-size: 7.9em !important; }
.fse-80{ font-size: 8.0em !important; }

/* ── line-height rems ── */
.lhr-05{ line-height: 0.5rem !important; }
.lhr-06{ line-height: 0.6rem !important; }
.lhr-07{ line-height: 0.7rem !important; }
.lhr-08{ line-height: 0.8rem !important; }
.lhr-09{ line-height: 0.9rem !important; }
.lhr-10{ line-height: 1.0rem !important; }
.lhr-11{ line-height: 1.1rem !important; }
.lhr-12{ line-height: 1.2rem !important; }
.lhr-13{ line-height: 1.3rem !important; }
.lhr-14{ line-height: 1.4rem !important; }
.lhr-15{ line-height: 1.5rem !important; }
.lhr-16{ line-height: 1.6rem !important; }
.lhr-17{ line-height: 1.7rem !important; }
.lhr-18{ line-height: 1.8rem !important; }
.lhr-19{ line-height: 1.9rem !important; }
.lhr-20{ line-height: 2.0rem !important; }
.lhr-21{ line-height: 2.1rem !important; }
.lhr-22{ line-height: 2.2rem !important; }
.lhr-23{ line-height: 2.3rem !important; }
.lhr-24{ line-height: 2.4rem !important; }
.lhr-25{ line-height: 2.5rem !important; }
.lhr-26{ line-height: 2.6rem !important; }
.lhr-27{ line-height: 2.7rem !important; }
.lhr-28{ line-height: 2.8rem !important; }
.lhr-29{ line-height: 2.9rem !important; }
.lhr-30{ line-height: 3.0rem !important; }

/* ── min-height ── */
.min-h-50 { min-height:  50px !important; }
.min-h-100{ min-height: 100px !important; }
.min-h-150{ min-height: 150px !important; }
.min-h-200{ min-height: 200px !important; }
.min-h-250{ min-height: 250px !important; }
.min-h-300{ min-height: 300px !important; }
.min-h-350{ min-height: 350px !important; }
.min-h-400{ min-height: 400px !important; }
.min-h-450{ min-height: 450px !important; }
.min-h-500{ min-height: 500px !important; }
.min-h-550{ min-height: 550px !important; }
.min-h-600{ min-height: 600px !important; }

/* ── max-height ── */
.max-h-50 { max-height:  50px !important; }
.max-h-100{ max-height: 100px !important; }
.max-h-150{ max-height: 150px !important; }
.max-h-200{ max-height: 200px !important; }
.max-h-250{ max-height: 250px !important; }
.max-h-300{ max-height: 300px !important; }
.max-h-350{ max-height: 350px !important; }
.max-h-400{ max-height: 400px !important; }
.max-h-450{ max-height: 450px !important; }
.max-h-500{ max-height: 500px !important; }
.max-h-550{ max-height: 550px !important; }
.max-h-600{ max-height: 600px !important; }

/* ── min-width ── */
.min-w-50 { min-width:  50px !important; }
.min-w-100{ min-width: 100px !important; }
.min-w-150{ min-width: 150px !important; }
.min-w-200{ min-width: 200px !important; }
.min-w-250{ min-width: 250px !important; }
.min-w-300{ min-width: 300px !important; }
.min-w-350{ min-width: 350px !important; }
.min-w-400{ min-width: 400px !important; }
.min-w-450{ min-width: 450px !important; }
.min-w-500{ min-width: 500px !important; }

/* ── max-width ── */
.max-w-50 { max-width:  50px !important; }
.max-w-100{ max-width: 100px !important; }
.max-w-150{ max-width: 150px !important; }
.max-w-200{ max-width: 200px !important; }
.max-w-250{ max-width: 250px !important; }
.max-w-300{ max-width: 300px !important; }
.max-w-350{ max-width: 350px !important; }
.max-w-400{ max-width: 400px !important; }
.max-w-450{ max-width: 450px !important; }
.max-w-500{ max-width: 500px !important; }
.max-w-600{ max-width: 600px !important; }
.max-w-700{ max-width: 700px !important; }
.max-w-800{ max-width: 800px !important; }
.max-w-900{ max-width: 900px !important; }
.max-w-1000{ max-width: 1000px !important; }
.max-w-1200{ max-width: 1200px !important; }

/* ── Fixed width utilities (px) ── */
.w-px-50 { width:  50px !important; }
.w-px-100{ width: 100px !important; }
.w-px-150{ width: 150px !important; }
.w-px-200{ width: 200px !important; }
.w-px-250{ width: 250px !important; }
.w-px-300{ width: 300px !important; }
.w-px-350{ width: 350px !important; }
.w-px-400{ width: 400px !important; }
.w-px-450{ width: 450px !important; }
.w-px-500{ width: 500px !important; }

.img-semi-fluid {
    width: 80%;
    height: auto;
}

.image-bg {
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	z-index: 1;	
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.10);
	z-index: -1;
}

.no-padding {
	padding: 0;
}

/**
 * Buttons
 */

/**
 * Button Primary
 */
.btn.btn-primary {
	color: #fff;
	font-size:14px;
	border: none;
	border-radius: 0;
	padding: 15px 45px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

 .btn.btn-primary:hover {
	background-color:#fff;
	color:var(--primary-color)
 }

.btn-search {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: box-shadow 0.2s ease;
}

.btn-search:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(225, 28, 134, 0.5);
}
 
.section-padding {
	padding-top: 75px;
	padding-bottom: 100px;
}

.banner-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/**
 * Button Secondary
 */
.btn.btn-secondary {
	color: #fff;
	font-size:14px;
	border: none;
	border-radius: 0;
	padding: 15px 45px;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

 .btn.btn-secondary:hover {
	background-color:#fff;
	color:var(--secondary-color);
 }



.section-title {
	margin-bottom: 80px;
}

.section-title h1 {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing:2px;
}

.section-title h2 {
	margin-top: 0;
	letter-spacing:2px;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle {
    border-color: #283949;
}
.navbar-default .navbar-toggle, 
.navbar-default .navbar-toggle:hover, 
.navbar-default .navbar-toggle:focus {
	background-color:#283949;
}

.owl-prev, .owl-next {
    background-color: var(--primary-color) !important;
}


a, .portfolio-overlay, 
.owl-prev, .owl-next,
a:after, a:before, .btn.btn-primary i,
.features-info i {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}


/* ==========================================================================
 	Header
 ========================================================================== */

.main-menu {
	background-color: rgba(255,255,255,0.3);
	border: none;
	marin:0;
	padding:1.2em 0;
	position:absolute;	
	width: 100%;
} 

.btn-menu-contacto{
	padding: 0.9em 0.6em;
	background-color: var(--primary-yellow-color);
	color: var(--white-color) ;
	font-weight: bold;
	border-radius: 3px;
}

.img-menu-contacto{
	width:50px;
}

.menu-item{
	margin-right:1rem;
}

/* home */


.btn-header-cliente{
	padding: 0.4rem 1rem;
	border-radius: 15px;
	background-color:var(--primary-yellow-color);
}

.btn-header-cliente-white {
	padding: 0.6rem 1.2rem;
	border-radius: 15px;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.btn-header-cliente-white:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

/* SLIDER RED HOSPITALARIA */

.bg-slider-red-hosp{
	background-color: var(--primary-ligthgray);
}

.btn-slider-red-hosp{
	padding: 0.5rem 1.5rem;
	color: #6c757d;
	background-color: transparent;
	border: 1px solid #6c757d;
	border-radius: 15px;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s, font-weight 0.2s;
}

.btn-slider-red-hosp:hover{
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	font-weight: bold;
}

.btn-slider-red-hosp-llamar{
	padding: 0.5rem 1.5rem;
	color: #6c757d;
	background-color: transparent;
	border: 1px solid #6c757d;
	border-radius: 15px;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s, font-weight 0.2s;
}

.btn-slider-red-hosp-llamar:hover{
	background-color: var(--primary-yellow-color);
	border-color: var(--primary-yellow-color);
	color: white;
	font-weight: bold;
}

.slider-gama-hospitalaria{
	margin-bottom: 40px;
	position: relative;
}
.slider-gama-hospitalaria .slick-dots{
	bottom: -24px;
}
.slider-gama-hospitalaria .slick-dots li button:before{
	color: #666;
	font-size: 10px;
	opacity: 1;
}
.slider-gama-hospitalaria .slick-dots li.slick-active button:before{
	color: var(--primary-orange);
	opacity: 1;
}

/* NUESTROS SEGUROS */

.nuestros-seguros-header{
	background-color: rgba(255, 212, 212, 0.5);
	box-sizing: border-box;
	padding: 1rem 0;
	font-size: 3rem;
}

.nuestros-seguros-header-title{
	font-size: 2.7rem;
}

.nuestros-seguros-content{
	box-sizing: border-box;
	padding: 5rem 0;
}

.seguro-card{
	background-color: white;
	border-radius: 18px 0px 18px 0px;
	box-sizing: border-box;
	padding: 20px;
}

.seguro-img{
	border-radius: 15px 0px 15px 0px;
	height:450px;
	max-height:500px;
}

.nuestros-seguros-info-btn{
	padding: 1rem 1.5rem;
	color: white;
	background-color: #6c757d;
	border-radius: 15px;
}

.nuestros-seguros-info-btn:hover{
	color: white;
	background-color: #6c757d;
}

/* MAP - QUIENES SOMOS */

.quienes-somos-animacion{
	background-color: var(--primary-gray);
}

.quienes-somos-content{
	background-color: var(--primary-lightgray);
	box-sizing:border-box;
	padding: 50px;
}

/* Services */

.services {
	margin-top: 100px;
}

.services .service {
	padding:7px 12px;
	font-size: 13px;
	font-family: 'montserratregular';
	min-height:170px;
}

.crane-lifting,
.house-plans {
	position: relative;
}

.services .overlay {
	background-color: rgba(163, 163, 163, 0.85); /*Using secondary color*/
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.service:hover .overlay {
	background-color: rgba(189, 189, 189, 0.8);
}

.box-title {
	overflow: hidden;
}

.box-title h3 {
	font-size: 18px;
	text-transform: uppercase;
	color: var(--white-color) ;
	margin-top: 15px;
	margin-bottom: 20px;
	position: relative;
}

.box-title h3:after {
    position: absolute;
    content: "";
    left: 0;
    top: 110%;
    width: 60px;
    height: 3px;
    background-color:var(--primary-color);	
}	

.image-box {
 	float: left;
 	margin-top: 20px;
 	margin-right: 10px;
 	min-height: 100px;
 	position: relative;
}

.service-title {
	background-color: #333333;
	padding:25px;
	position: relative;
}

.service-title h4 {
	color: #fff;
	text-align: center;
	display:block;
	line-height: 24px;
	word-spacing: 5px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: 'montserratbold';
}

.service-title:after,
.service-title:before {
    position: absolute;
    content: "";
    bottom: 89px;
    z-index: 1;
}

.service-title:before {
    left: 0;
    border-right: 390px solid transparent;
    border-bottom: 26px solid #333333;
}

.service-title:after {
    right: 0;
    border-left: 390px solid transparent;
    border-bottom: 26px solid #333333;
}

/*=========Carousel animation==========*/
#home-slider .item h1, 
#home-slider .item h2, 
#home-slider .item h2 span, 
#home-slider .item .btn-primary{
	opacity:0;
	-moz-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

#home-slider .item.active h1, 
#home-slider .item.active h2, 
#home-slider .item.active h2 span, 
#home-slider .item.active .btn-primary{
	opacity:1;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

#home-slider .item h1{
	-webkit-transition: all 0.5s ease-in-out 0.15s;
	-moz-transition: all 0.5s ease-in-out 0.15s;
	-ms-transition: all 0.5s ease-in-out 0.15s;
	-o-transition: all 0.5s ease-in-out 0.15s;
	transition: all 0.5s ease-in-out 0.15s;
}

#home-slider .item h2{
	-webkit-transition: all 0.5s ease-in-out 0.30s;
	-moz-transition: all 0.5s ease-in-out 0.30s;
	-ms-transition: all 0.5s ease-in-out 0.30s;
	-o-transition: all 0.5s ease-in-out 0.30s;
	transition: all 0.5s ease-in-out 0.30s;
    font-size:40px;
}

#home-slider .item h2 span{
	-webkit-transition: all 0.5s ease-in-out 0.45s;
	-moz-transition: all 0.5s ease-in-out 0.45s;
	-ms-transition: all 0.5s ease-in-out 0.45s;
	-o-transition: all 0.5s ease-in-out 0.45s;
	transition: all 0.5s ease-in-out 0.45s;
}


#home-slider .item .btn-primary {
	-webkit-transition: all 0.5s ease-in-out 0.65s;
	-moz-transition: all 0.5s ease-in-out 0.65s;
	-ms-transition: all 0.5s ease-in-out 0.65s;
	-o-transition: all 0.5s ease-in-out 0.65s;
	transition: all 0.5s ease-in-out 0.65s;
}


.carousel-left i, 
.carousel-right i{
	position: absolute;
	top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    line-height: 50px;
    font-size: 32px;
	text-align: center;
	background-color: rgba(0,0,0,0.25);
	color:#fff;
	z-index: 9999;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-o-transition: 300ms;
	-ms-transition: 300ms;
	transition: 300ms;
	opacity: 0;
	border-radius: 5px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.carousel-left i {
	left:-100px;
}

.carousel-right i {
	right:-100px;
}

.carousel-left i:hover, .carousel-right i:hover {
	background-color: rgba(239, 187, 32, 0.85);
}

.home-section:hover .carousel-left i {
	opacity: 1;
}

.home-section:hover .carousel-right i {
	opacity: 1;
}

/*=========Carousel Fade==========*/

.carousel-fade .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
	background-repeat: no-repeat;
	background-size: cover;
}

.carousel-fade .carousel-inner .active {
	opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

.carousel-fade .carousel-control {
	z-index: 2;
}

/* Featured Section */

.features-section {
	background-color: #f4f4f4;
}

.features-section.section-padding {
	padding-bottom: 50px;	
}

.features {
    min-height: 100px;
	margin-bottom: 60px;
}

.feature-icon {
	height:70px;
	width:70px;
	background-color: var(--primary-color);
	font-size:30px;
	float: left;
	margin-right: 22px;
	text-align: center;
	color: #fff;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.feature-icon  i {
	line-height: 67px;
}

.feature-text {
	overflow: hidden;
}
.feature-text h4 {
	margin-top: 0;
}

.features:hover .feature-icon {
	background-color: #2c3e50;
}

.features:hover .feature-text h4{
	color: #34404e
}
/* Work Process */

.work-process .overlay {
	background-color:rgba(00,00,00, 0.15);
}

.work-process .section-title {
    color:#fff;
}

.work-proces {
	padding: 0 35px;
    min-height:150px;
}

.process-image {
	margin-top: -80px;
	text-align:center;
}

.process-icon {
	float: left;
	margin-right: 30px;
	margin-top:35px;
}

.left-content .process-icon {
	float: right;
	margin-right: 0;
	margin-left: 35px;
}

.work-process .process-info {
	color: #fff;
	padding-top: 20px;
	padding-bottom: 15px;
	overflow: hidden;
}

.process-info h4 {
	font-family: 'montserratsemi_bold';	
}

.process-info p {
    margin-bottom: 0;
    font-size: 17px;
}

/* Service Section  */

.service-section  {
	background-color: #f9f9f9;
}

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

.service-section .services{
	margin-top: 0;
}

.service-section .service {
	margin-bottom: 30px;
    height: auto;
    min-height: 210px;
}

.service-section .services .overlay {
	background-color: #fff;
}

.service-section .service,  
.service-section .service h3, .service-section .service:hover .overlay {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.service-section .service h3 {
	color: var(--primary-color);
}

.service-section .service:hover .overlay {
	background-color: var(--secondary-color);
}

.service-section .service:hover h3 {
	color: #fff;
}

.service-section .service:hover p {
	color: #fff;
}

/* Portfolio Section */

.portfolio-title {
	color: #fff;
	padding-top: 55px;
	padding-bottom: 60px;
	position: relative;
	background-image: url(../images/bg/4.jpg);	
	background-position:center center;
}

.portfolio-section .owl-nav {
	position: absolute;
	right: 20%;
	top: -116px;
}

.portfolio-section .owl-prev,
.portfolio-section .owl-next {
	position: absolute;
	right: 0;
	width: 40px;
	height: 40px;
	font-size: 25px;
	line-height: 40px;
	display:block;
	text-align: center;
	color: #fff;
	background-color: ##fe2514;
}

.portfolio-section .owl-prev {
	right: 41px;
}

.portfolio-section .owl-prev:hover,
.portfolio-section .owl-next:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.portfolio-title .section-title {
	margin-bottom: 0;
}

.portfolio-title .overlay {
	background-color: rgba(54, 72, 89, 0.1);
}
.project-content {
	margin-bottom:30px;
}

.project-content .project-title {
    min-height:100px;
    display: flex;
    align-items:start;
} 



.project-content .project-title, 
.project-content .project-info {
	padding:5px 8px 5px 8px;
	background-color:#fff;
	border:1px solid #d7d7d7;
	box-shadow: 0 0 3px 1px #d7d7d7;
	webkit-box-shadow: 0 0 3px 1px #d7d7d7;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
} 

.project-content:hover .project-title, 
.project-content:hover .project-info  {
	box-shadow:none;
	webkit-box-shadow:none;
}

.project-content .project-title h3{
	font-weight: 700;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    color:var(--secondary-color) !important;
}

.project-content .project-title h3 a{
	color: inherit;
}

.project-content:hover .project-title h3 a{
	color:var(--primary-color);
}

.project-content .project-info {
	border-top:0;
	border-bottom:1px solid #d7d7d7;
	color:#6d6d6d;
    min-height:105px;
}

.project-content .project-item {
	position:relative;
	background-color:#fff;
}

#project-menu {
	text-align:center;
	margin-bottom: 50px;
	border:1px solid #e5e5e5;
	display: block;
	overflow: hidden;
}

#project-menu li {
	float: left;
	font-size: 18px;
	border-left: 1px solid #e5e5e5;
	padding:20px 25px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
#project-menu li:hover, 
#project-menu li.cbp-filter-item-active {
	color:var(--primary-color);
	background-color:#f1f1f1;
}
#project-menu li:first-child {
	border-left:0;
}

#projects .project-content {
	width: 33%;
	float: left;
	min-height: 430px;
	margin-bottom: 30px;
}

/* Team Section */


.team-member:hover h4{
	color: var(--primary-color);
}

.team-member img {
	display: inline-block;
}

.team-member h4 {
	margin-bottom: 2px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.member-info {
	margin:20px 0 15px;
}

.team-social {
	margin-top: 15px;
}

.team-social li {
	margin-right: 10px;
}

.team-social li a{
	display: block;
	font-size: 16px;
	color:#6f6f6f;
}

.team-social li a:hover{
	color: var(--primary-color);
}




/* Testimonial Section */


.testimonial {
	color: #fff;
	font-size: 13px;
	line-height: 30px;
	margin-right: 10px;
	margin-left: 10px;
	position: relative;
	border-bottom: none;
	position: relative;
}


.testimonial-image {
	margin-bottom: 15px;
}

.testimonial-image img {
	display: inline-block !important;
	border-radius: 50%;
	height: 85px !important;
	width:85px !important;
}

.testimonial h5 {
	color: ##fe2514;
	font-size: 13px;
	margin-top: 15px;
}

.testimonial-info {
	padding: 20px;
}

.left-content .testimonial-info {
	margin-left: 70px;
}

.right-content .testimonial-info {
	margin-right: 70px;
}
 
.left-content .testimonial .testimonial-icon {
	left: 15px;
}
 


.testimonial-slider .owl-dots {
	text-align: center;
    z-index: 99;
    position: absolute;
    left: 50%;
    bottom: -110px;
    margin-left: -30px;
}

.testimonial-slider .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
}

.testimonial-slider .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 5px;
	background-color: transparent;
	border: 1px solid #fff;
	display: block;
	border-radius: 50px;
}

.testimonial-slider .owl-dots .owl-dot.active span, 
.testimonial-slider .owl-dots .owl-dot:hover span {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}


/* Blog Section */
.blog-section.section-padding {
	padding-bottom: 70px;
}

.blog-image,
.entry-post {
	position: relative;
}

.blog-post {
	margin-bottom: 30px;
}

.blog-content {
	margin-bottom: 8px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.entry-thumbnail {
	position: relative;
}

.blog-content .time {
	position: absolute;
	bottom:50%;
	margin-bottom: -41px;
	left:0;
	padding: 15px;
	max-width: 85px;
	text-align: center;
	color: #fff;
	background-color: ##fe2514;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.entry-header:hover .time {
	bottom:0;
	margin-bottom:0px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}


.blog-content .time span {
	font-size: 18px;
}

.blog-content .time h2 {
	margin: 0;
	line-height: 24px;
	text-transform: uppercase;
}

.entry-title {
	margin-bottom: 17px;
	letter-spacing:1.5px;
	font-family: 'montserratsemi_bold';
}

.entry-title a {
	color: #2c3e50;
}

.blog-content .entry-meta {
	margin-top: 25px;
	margin-bottom:20px;
	border-top: 1px solid #d6d6d6;
	border-bottom: 1px solid #d6d6d6;
}

.blog-content .entry-meta i {
	font-size: 14px;
	margin-right: 5px;
}


.post-content li{
	margin-left: 5px;
}

.post-content li:first-child {
	margin-left:0;
}

.blog-content li a {
	color: #777;
	font-size: 12px;
}

.entry-title a:hover,
.blog-content li a:hover {
	color: ##fe2514;
}

.blog-content .entry-post {
	padding-top: 25px;
	color: #6f6f6f;
	font-size: 13px;
	line-height: 30px;
} 

.pagination {
	margin-top: 30px;
}

.pagination>li>a, .pagination>li>span {
    padding: 12px 28px;
    color: #999;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: bold;
}

.pagination>li>a:hover, .pagination>li>span:hover, 
.pagination>li>a:focus, .pagination>li>span:focus, 
.pagination>li.active>a, 
.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover, 
.pagination>.active>span, 
.pagination>.active>span:focus, 
.pagination>.active>span:hover{
	background-color: var(--primary-color);
	color: #fff;
	border-color:var(--primary-color);
}

/* Clients Section */

.cta-section {
	background-image: url(../images/bg/brand-bg.jpg);	
}

.clients-section .overlay {
	background-color: rgba(229, 229, 229, 0.90);
}

.brand-item  {
	padding: 70px 50px;
}

.brand-image{
	background-color:rgba(255,255,255,0.40);
	margin:0 15px;
	border:1px solid #babfc4;
	text-align:center;
}

.brand-image img {
	display:inline-block;
}

.call-to-action {
	font-size: 14px;
	color: #676a73;
    padding-top: 35px;
    padding-bottom: 10px;	
	background-color: rgba(229, 229, 229, 0.97);
}

.call-to-action h3 {
	color:#6f6f6f;
	text-transform: uppercase;
	font-family: 'montserratbold';
	font-size: 26px;
	margin-bottom: 45px;
	float: left;
    width:100%;
}

.call-to-action .btn.btn-primary {
	margin-top: 8px;
	float: right;
}




/* ==========================================================================
 	Footer
 ========================================================================== */

.contact-section {
	background-color: var(--secondary-color);
	padding: 50px 0;
	color: var(--white-color);
}

.contact-section h3 {
	color: #fff;
	margin-bottom: 25px;
}


.footer-social li+li {
	margin-left: 15px;
}

.contact-widget {

}

.contact-widget ul {
	float: left;
	width: 48%;
}


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

.contact-widget a {
	color: var(--white-color);
}

.contact-widget .footer-social li {
	margin: 0;
	margin-right: 10px;
}

.footer-social a {
	font-size: 20px;
	color: var(--primary-color);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.footer-social a:hover, .contact-widget a:hover, .contact-widget span {
	color: var(--primary-color);
}

.contact-widget span {
	font-family: 'montserratsemi_bold';
}

.contact-widget address ul, 
.contact-widget ul.footer-social {
	float: none;
	width: 100%;
}
.contact-widget .address {
	overflow: hidden;
	display: block;
}
.contact-widget address {
	margin-bottom: 5px;
}
.contact-widget address span {
	
	color: var(--white-color);
	font-weight: bold;
}

.copyright-text {
	padding: 15px 0 5px;
}

.copyright-text a{
	color: #34404e;
	font-weight: bold;
}

.copyright-text a:hover {
	color: var(--primary-color);
}

/* ==========================================================================
 	About Us Page Css
 ========================================================================== */


.breadcrumb-section {
	background-position:center center;
	padding-top: 60px;
	padding-bottom: 55px;
	margin: 0;
	border-radius: 0;
}

.breadcrumb-section .overlay {
	background-color:rgba(0,0,0,0.10);
}

.breadcrumb-content {
	color: #fff;
	font-size: 15px;
}

.breadcrumb-content h1 {
	margin-top: 0;
	text-transform: uppercase;
	font-family: 'montserratsemi_bold';
	letter-spacing:2px;
	float: left;
}

.breadcrumb-content h1 span,
.breadcrumb-content h2 span {
	color: #f2cd27;
	font-family: 'montserratextra_bold';
}

.breadcrumb {
	background-color: transparent;
	float: right;
}
.breadcrumb a {
	color: #fff;
}
.breadcrumb a:hover {
	color: var(--primary-color);
}

.about-section {
	background-color: #f9f9f9;
}
.about-section-content {
	line-height: 24px;
}
.about-section-content h2 {
	margin-bottom: 25px;
}
.about-section-content p {
	margin-bottom: 20px;
}
.about-us-image {
	margin-top: 78px;
}
.about-info {
	font-size: 13px;
	line-height: 30px;
	margin-left:30px;
}

.about-content {
	overflow: hidden;
}

.about-info h1 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.about-info h1 span {
	color: ##fe2514;
}

.about-info .info-list {
	margin-top: 30px;
	margin-bottom: 35px;
	font-family: 'montserratsemi_bold';
	font-size:13px;
}

.about-info .info-list li {
	margin-bottom: 15px;
}

.about-info .info-list i {
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
	margin-right: 20px;
	padding-left: 2px;
	font-size: 10px;
	color: #fff;
	background-color: ##fe2514;
}

.about-info .btn.btn-primary {
	color: #2c3e50;
}

.about-info .btn.btn-primary:hover {
	color:#fff;
}

.about-info .btn.btn-primary i {
	background-color: #2c3e50;
	color: #fff;
}

.about-info .btn.btn-primary:hover i {
	background-color: ##fe2514;
	color: #2c3e50;
}

.timline-section {
	padding-bottom:0;
}

.timline-panel {
	float:right;
	border: 5px solid #f5f6f7;
	padding: 15px;
	font-size: 13px;
	line-height: 24px;
	color: #6f6f6f;
	position: relative;
	text-align:center;
	max-width:310px;
	z-index: 2;
	background-image: url(../images/others/timline.jpg);	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.timline-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#e8e8e8;
	z-index:1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.timline-panel:hover {
	color: #fff;
}

.timline-panel:hover .timline-overlay {
	opacity: 1;
	background-color:rgba(44, 62, 80, 0.90);
}

.timline-panel:after {
	position: absolute;
	content: "\f063";
	bottom: -23px;
	margin-left: -6px;
	left: 50%;
	color: #ccc;
	font-family: fontawesome;
}

.timline-bottom .timline-panel:after {
	top: -23px;
	content: "\f062";
}

.timline-panel:hover:after  {
	color: #2c3e50;
}


.timline-panel h4 {
	text-align: center;
	text-transform: uppercase;
	color: #2c3e50;
	font-family: 'montserratsemi_bold';
}

.timline-panel:hover h4 {
	color: #fff;
}

.timline-panel h4, .timline-panel p {
	position:relative;
	z-index:2;
}

.posted-date {
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	z-index: 9999;
}

.posted-date .posted {
	margin:0;
}

.posted-date:before {
	position: absolute;
	content: "";
	top: 20px;
	left: -3px;
	width: 99%;
	height: 7px;
	background-color: #fcd846; 
	z-index: 1;
}

.posted-date:after {
    position: absolute;
    content: "";
    bottom: 15px;
    right: 12px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #fcd846;	
}

.posted-date .posted:after {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    top: 4px;
    right: 0;
    border: 5px solid #fcd846;
    z-index: -1;	
}

.posted-date .posted:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 14px;
    top: 16px;
    right: 20px;
    background-color: #fff;
}

.posted-date li+li {
	margin-left: 25%;
}

.posted-date li {
	position: relative;
	z-index: 1;
}

.posted-date .year {
	border: 4px solid #d5d8dc;
	padding: 2px 30px ;
	background-color: #fcd846;
	font-size: 24px;
	font-family: 'montserratsemi_bold';
}

.posted-date li:before,
.posted-date li:after {
	position: absolute;
	content: "";
	top: 8px;	
	width: 20px;
	height: 20px;	
	background: radial-gradient(circle, #f3ad0e, #f3d10d, #f3d10d);
	background: -webkit-radial-gradient(circle, #f3ad0e, #f3d10d, #f3d10d);
	background: -noz-radial-gradient(circle, #f3ad0e, #f3d10d, #f3d10d);
	background: -ms-radial-gradient(circle, #f3ad0e, #f3d10d, #f3d10d);
	background: -o-radial-gradient(circle, #f3ad0e, #f3d10d, #f3d10d);
	border-radius: 50%;
	border: 2px solid #fff;		
} 

.posted-date li:before {
	right: -75px;
}

.posted-date li:first-child:before {
	right: -92px;
}

.posted-date li:last-child:before {
	right: -55px;
}

.posted-date li:first-child:after {
	right: -195px;	
}

.posted-date li:after {
	right: -172px;	
}

.posted-date li:last-child:after {
	display: none;
}



/* ==========================================================================
 	Features Page Css
 ========================================================================== */


/* Skills Section */

.skills-section {
	background-color: #eeeeee;
	max-height:620px;
	overflow:hidden;
}

.skills-image img {
	width:100%;
}

.skills-info .section-title {
	font-size: 13px;
	line-height: 30px;
	margin-bottom: 30px;
}

.skills-info .section-title h2 {
	margin-bottom: 25px;
}

.skills-info {
	max-width: 600px;
	padding: 50px 30px;
}

.skills-info label {
	font-size: 15px;
	margin-bottom: 20px;
	font-family: 'montserratsemi_bold';
}

.skills-info .progress {
	height: 9px;
	border-radius: 0;
	background-color: #fff;
	margin-bottom: 30px;
}

.progress-bar {
	background-color: #fcd846;
	box-shadow:none;
}


/* ==========================================================================
 	Services Page Css
 ========================================================================== */

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

.services-section .item {
	background-color: #2c3e50;
	padding: 50px;
}

.services-section .item h4 {
	color: #fff;
	margin-top: 45px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.services-section .item img {
	display: inline-block;
}

.services-section .item.item-middle {
	border: 10px solid #415161;
	margin-right: 1px;
	margin-left: 1px;
	margin-top: -10px;
}

.services-section .item:hover h4 {
	color: ##fe2514;
}

.services-section .item.item-left,
.services-section .item.item-right {
	position: relative;
}

.services-section .item.item-left:before,
.services-section .item.item-left:after, 
.services-section .item.item-right:before,
.services-section .item.item-right:after {
    position: absolute;
    content: "";
}

.services-section .item.item-left:before,
.services-section .item.item-left:after {
	border-left: 390px solid transparent;	
	right: 0;
}

.services-section .item.item-left:before {
    top: -10px;    
    border-bottom: 10px solid #2c3e50;
}

.services-section .item.item-left:after {
    bottom: -10px;    
    border-top: 10px solid #2c3e50;
}

.services-section .item.item-right:before,
.services-section .item.item-right:after {
    left: 0;
    border-right: 390px solid transparent;	
}

.services-section .item.item-right:before {
    top: -10px;    
    border-bottom: 10px solid #2c3e50;    	
}

.services-section .item.item-right:after {
    bottom: -10px;    
    border-top: 10px solid #2c3e50;    	
}



/* ==========================================================================
 	Project Page Css
 ========================================================================== */


.portfoli-menu {
	margin-bottom: 80px;
	overflow: hidden;
}

.portfoli-menu li {
	float: left;
}

.portfoli-menu li+li {
	margin-left: 1px;
}

.portfoli-menu a {
    color: #fff;
    display: block;
    font-size: 15px;
    background-color: ##fe2514;
    padding: 20px 50px;
    text-transform: capitalize;
}

.portfoli-menu a.active,
.portfoli-menu a:hover {
	background-color: #2c3e50;
}

.portfoli-menu li:first-child,
.portfoli-menu li:last-child {
	position: relative;
}

.portfoli-menu li:first-child:after,
.portfoli-menu li:last-child:after {
	position: absolute;
	content: "";
    bottom: 0;
}

.portfoli-menu li:first-child:after {
	left: 0;
    border-right: 180px solid transparent;
    border-bottom: 10px solid #fff;	
}

.portfoli-menu li:last-child:after {
    right: 0;
    border-left: 180px solid transparent;
    border-bottom: 10px solid #fff;
}

.portfolio-two {
	margin-bottom: 50px;
}

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


/* ==========================================================================
 	Project Details Page Css
 ========================================================================== */

#product-carousel {
	margin-top: 20px;
}

#product-carousel .carousel-controls {
	position:relative;
	top:100%;
	left:0;
	width:100%;
	margin-top:21px;
}

.carousel-controls .carousel-indicators {
	display:block;
	left: 0;
	margin-left: 0;
	text-align: left;
	width: 100%;
	background-color: #f6f6f6;	
	padding: 12px;
	border: 1px solid #e5e5e5;
	bottom:inherit;
}

#product-carousel .carousel-indicators li,
#product-carousel .carousel-indicators li.active {
	width: 105px;
	height: 100px;
	border-radius: 0;
	margin: 6px;
}

#product-carousel .carousel-indicators li {
	border: 2px solid #f6f6f6;
	position: relative;
}

#product-carousel .carousel-indicators li:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(49, 49, 49, 0.6);
	opacity: 0;
}

#product-carousel .carousel-indicators li:hover:before,
#product-carousel .carousel-indicators li.active:before {
	opacity: 1;
}

#product-carousel .carousel-indicators li:hover,
#product-carousel .carousel-indicators li.active {
	border: 2px solid ##fe2514;
}

.carousel-controls .carousel-arrow {
	position: absolute;
	width: 100%;
	bottom: -57px;
	z-index: 100;
}
.carousel-controls .carousel-arrow .left, 
.carousel-controls .carousel-arrow .right{
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	bottom:inherit;
	top:0;
	font-size:22px;
	color: #374758;
	background-color: #cccccc;
	color:#374758;
	background-image:inherit;
	opacity:0.9;
}

.carousel-controls .carousel-arrow .left {
	left:0;
}
.carousel-controls .carousel-arrow .right {
	right:0;
}

.carousel-controls .carousel-arrow .left:hover, 
.carousel-controls .carousel-arrow .right:hover {
	background-color: ##fe2514;
}

.details-info {
	line-height: 28px;
	color:#6f6f6f;
}

.details-info h2 {
	font-size: 22px;
	margin-bottom:20px;
	text-transform: capitalize;
	font-family: 'montserratbold';
	color:#2c3e50;
}

.details-list {
	margin-top: 20px;
	margin-bottom:20px;
}

.details-list li {
	margin-top: 10px;
	font-size: 16px;
	color:#2c3e50;
	letter-spacing:1px;
	font-family: 'montserratregular';
}

.details-list li p {
	margin-bottom:0;
}

.details-list li span {
	display: block;
	font-size: 13px;
	font-family: 'montserratregular';
	color:#6f6f6f;
}

.details-list li span.cateagory {
	display:inline-block;
	margin-right:3px;
}

.details-list li span.cateagory a {
	color:#6f6f6f;
}

.details-list li span.cateagory a:hover {
	color:##fe2514;
}

.share-project {
	float: left;
	margin-right: 25px;
	margin-top:10px;
}

.details-social {
	margin-top:10px;
}

.details-social li+li {
	margin-left: 20px;
}

.details-social li {
	border-left: 0;
	margin-top:0;
	padding: 0;
	letter-spacing:0;
}

.details-social i {
	color: #999;
	font-size: 14px;
}

.details-social i:hover {
	color: #69f;
}

.details-info .btn.btn-primary {
	color: #2c3e50;
	width:100%;
}

.details-info .btn.btn-primary:hover {
	color:#fff;
}

.details-info .btn.btn-primary i {
	font-size: 24px;
	color: #fff;
	width: 70px;
	background-color: #2c3e50;
}

.details-info .btn.btn-primary:hover i {
	color: #2c3e50;
	background-color: ##fe2514;
}

.details-slider {
	border-top:1px solid #ececec;
	margin-top: 50px;
	padding-top: 20px;
}

.details-section {
	background-color: #f1f1f1;
}

.details-section .owl-prev,
.details-section .owl-next {
	position: absolute;
	top: 0;	
}

.prev-next {
	border-top: 2px solid #ececec;
	overflow: hidden;
	margin-top: 40px;
	text-transform:capitalize;
}

.prev-next a {
	color: #999;
	font-size: 15px;
}

.prev-next a i {
	font-size: 14px;
}

.prev-next a:hover {
	color: ##fe2514;
}

.prev-next .prev {
	display: inline-block;
	float: left;
}

.prev-next .next {
	float: right;
}

.prev-next .next i {
	margin-left: 10px;
}

.prev-next .prev i {
	margin-right: 10px;
}

.prev-next {
	padding-top: 30px;
}

.indicator-icon i {
	border:2px solid #e5e5e5;
	color:#ccc;
	padding:8px;
	font-size:16px;
	display:inline-block;
	margin-top:-8px;
}

/* ==========================================================================
 	Blog Page Css
 ========================================================================== */

.blogNnews .blog-content{
	margin-top:100px;
}

.blogNnews .prev-next {
	margin-bottom: 100px;
    margin-top: 80px;
}


/* ==========================================================================
 	Blog Details page CSS
 ========================================================================== */

.blog-details {
	padding-top:85px;
	padding-bottom:70px;
}

.blog-details .entry-meta {
	padding:10px 0;
}

.blog-details .entry-meta li {
	margin-right: 10px;
}

.blog-details .entry-title {
	margin-top: 45px;
	margin-bottom: 20px;
	font-family: 'montserratsemi_bold';
	color:#2c3e50;
}

.blog-details .post {
	border: 0;
	padding: 0;
	padding-bottom: 15px;
}

.blog-details .post li+li {
	margin-left: 5px;
	padding-left: 15px;
	border-left: 2px solid #999;
}

.blog-details .post a {
	color: #999;
}

.blog-details .post-content {
	font-size: 13px;
	line-height: 30px;
}

.post-content blockquote {
	font-size: 16px;
	color: #34404e;
	border-left:0;
	padding: 20px 0;
	padding-left: 40px;
	margin: 25px 0;
	position: relative;
}

.post-content blockquote i {
	font-size: 24px;
	color: ##fe2514;
	position: absolute;
	top: 20px;
	left: 0;
}


.blog-details .share-social li {
	font-size: 15px;
}

.blog-details .share-social {
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	padding: 15px 0;
	margin-top: 40px;
}

.blog-details .post-tags {
	display: inline-block;
	float: left;
	padding-left: 10px;
}

.blog-details .post-tags a {
	color:#2c3e50;
}

.blog-details .post-tags a:hover {
	color:##fe2514;
}

.blog-details .share-social a {
	font-size: 13px;
	color: #2c3e50;
}

.blog-details .share-social i {
	margin-right: 10px;
	color: ##fe2514;
	font-size: 18px;
}

.share-social .social i {
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #fdb251;
} 

.share-social .social li {
	display: inline-block;
}

.share-social .social li:first-child {
	margin-right: 20px;
}

.share-social .social .fa-facebook {
	background-color: #617fc0;
} 

.share-social .social .fa-tumblr {
	background-color: #74bde0;
} 

.share-social .social .fa-pinterest-p {
	background-color: #cd4951;
} 

.share-social .social .fa-flickr {
	background-color: #ff0084;
} 

.share-social .social .fa-vimeo {
	background-color: #70b1bf;
}

.comments-area {
	margin-bottom: 75px;
}

.comments-area> h4, 
.replay-box> h4{
	color:#2c3e50;
	font-family: 'montserratsemi_bold';
}

.replay-box> h4 {
	margin-bottom:25px;
}

.post-author, .post-comment {
	font-size: 13px;	
	color: #666;
	line-height: 24px;
	background-color: #f7f7f7;
	box-shadow: 0 2px 0 0 #f0f0f0;
	padding: 30px;
	margin-top: 50px;
	margin-bottom: 50px;
	position: relative;
}

.post-author h4 {
	font-size: 15px;
}

.post-author h5 {
	font-size: 13px;
	margin-bottom: 15px;
	font-family: 'montserratregular';
}

.author-image {
	float: left;
	margin-right: 30px;
}

.post-author-info {
	overflow: hidden;
}

.commenter-info {
	font-size: 13px;
	line-height: 30px;
	overflow: hidden;
}
}

.commenter-avatar {
	float: left;
	margin-right: 30px;
	margin-top: 10px;
}

.media-body .btn.btn-primary {
	float: right;
	font-size: 12px;
	color: #2c3e50;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-right: 70px;
	padding-left: 25px;
}

.media-body .btn.btn-primary i {
	background-color: #2c3e50;
	color: #fff;
}

.media-body .btn.btn-primary:hover i {
	color: #2c3e50;
	background-color: ##fe2514;
} 

.media-inner {
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
	font-family: 'montserratbold';
}

.post-comment .post-nfo h5 {
	color:#333;
	margin-top:0;
	margin-bottom: 0;
}

.post-comment .post-nfo a {
	float: right;
	color:var(--primary-color);
	opacity: 0;
}

.post-comment:hover .post-nfo a {
	opacity: 1;
}

.post-comment .post-nfo a:hover{
	color: #34404e;
}

.media-inner .date {
	color: #999;
	font-size: 12px;
	font-family: 'montserratregular';
}

.comments-area > h4 {
	margin-bottom:-20px;
}
/* ==========================================================================
 	Contact Page Css
 ========================================================================== */

.contact-form-section {
	
}

#gmap {
    width: 100%;
    height: 450px;
}

.contact-form-section .contact-info {
	
   
}

.contact-form-section .contact-info h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
	font-family: 'montserratregular';
}

.contact-form-section .btn.btn-primary {
	margin-top: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.contact-form .btn.btn-primary:hover {
	box-shadow:none;
	color:#2c3e50;
	background-color: var(--primary-color);
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
	height: 55px;
	border-radius: 0;
	font-size: 15px;
	border: 1px solid #dddddd;
	margin-bottom: 20px;
	box-shadow: none;
}

.form-control-xs {
	height: auto !important;
	padding-top: 4px !important;
	padding-bottom: 4px !important;
}

.contact-form input,
.contact-form textarea {
	padding:0 50px;
}

.contact-form textarea {
	min-height: 238px;
	padding-top: 15px;
	resize:none;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
	background-repeat: no-repeat;
	background-position: left 20px center;	
}

.form-group {
	position:relative;
}

.form-group i {
	position: absolute;
	top: 20px;
	font-size: 18px;
	text-align: center;
	line-height: 18px;
	left: 20px;
	color:##fe2514;
}


.form-group input:focus, .form-group textarea:focus {
	border-color:##fe2514;
}




/* ==========================================================================
 	Extra Css
 ========================================================================== */


#scrollUp {
	bottom: 15px;
	right: 50px;
	padding: 10px;
	text-align: center;
	color: ##fe2514;
	font-size: 22px;
}


@font-face {
    font-family: 'montserratregular';
    src: url('../fonts/montserrat-regular-webfont.eot');
    src: url('../fonts/montserrat-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-regular-webfont.woff') format('woff'),
         url('../fonts/montserrat-regular-webfont.ttf') format('truetype'),
         url('../fonts/montserrat-regular-webfont.svg#montserratregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratsemi_bold';
    src: url('../fonts/montserrat-semibold-webfont.eot');
    src: url('../fonts/montserrat-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-semibold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-semibold-webfont.woff') format('woff'),
         url('../fonts/montserrat-semibold-webfont.ttf') format('truetype'),
         url('../../fonts/montserrat-semibold-webfont.svg#montserratsemi_bold') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'montserratbold';
    src: url('../fonts/montserrat-bold-webfont.eot');
    src: url('../fonts/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-bold-webfont.woff') format('woff'),
         url('../fonts/montserrat-bold-webfont.ttf') format('truetype'),
         url('../fonts/montserrat-bold-webfont.svg#montserratbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserratextra_bold';
    src: url('../fonts/montserrat-extrabold-webfont.eot');
    src: url('../fonts/montserrat-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-extrabold-webfont.woff') format('woff'),
         url('../fonts/montserrat-extrabold-webfont.ttf') format('truetype'),
         url('../fonts/montserrat-extrabold-webfont.svg#montserratextra_bold') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*Magnific-popup overwrite CSS*/

.mfp-figure {
    background-color: #fff;
}

img.mfp-img {
	padding:12px;
}

.mfp-image-holder .mfp-close {
	top:-35px;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor:pointer;
}

.mfp-counter {
	right: 50%;
    color: #fff;
    top: 50px;
    margin-right: -20px;
}


/*
 * HELPERS
 * */
.d-flex{
    display:flex;
}

.align-items-center{
    align-items:center;
}

.justify-content-center{
    justify-content:center;
}

.justify-content-around{
    justify-content:space-around;
}

.justify-content-between{
    justify-content:space-between;
}

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

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.bg-gradient-1 {
	background: linear-gradient(to right, #8D004C, #E83A98, #8D004C);
}

.plenit-shadow-sm {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25) !important;
}

.plenit-shadow-md {
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25) !important;
}

/* ── Anchor variants ── */
a.plenit-link-primary {
    color: var(--dark-color);
}
a.plenit-link-primary:hover {
    color: var(--primary-color);
}

/* ── Custom width utilities (5% steps) ── */
.w-5   { width:  5% !important; }
.w-10  { width: 10% !important; }
.w-15  { width: 15% !important; }
.w-20  { width: 20% !important; }
.w-25  { width: 25% !important; }
.w-30  { width: 30% !important; }
.w-35  { width: 35% !important; }
.w-40  { width: 40% !important; }
.w-45  { width: 45% !important; }
.w-55  { width: 55% !important; }
.w-60  { width: 60% !important; }
.w-65  { width: 65% !important; }
.w-70  { width: 70% !important; }
.w-75  { width: 75% !important; }
.w-80  { width: 80% !important; }
.w-85  { width: 85% !important; }
.w-90  { width: 90% !important; }
.w-95  { width: 95% !important; }

/* ==========================================================================
								THE END OF CSS
 ========================================================================== */
