/* =========================================================
   RESET GENERAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', arial, sans-serif;
}

body {
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 24px;
}

/* =========================================================
   BOTONES
   ========================================================= */

.primary-white-button a {
    display: inline-block;
    background-color: #ffffff;
    font-size: 13px;
    padding: 12px 22px;
    color: #121212;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease;
}

.primary-white-button a:hover {
    background-color: #0f2443;
    color: #ffffff;
}

.primary-blue-button a {
    display: inline-block;
    background-color: #0f2443;
    font-size: 13px;
    padding: 12px 22px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
}

/* =========================================================
   HEADER PRINCIPAL
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

/* Cuando hace scroll */

.header.active {
    background-color: #0f2443;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    margin: 0;
    border: none;
    background: transparent;
}

.navbar-brand {
    line-height: 80px;
    padding: 0;
}

.logo-navbar {
    height: 50px;
    transition: 0.3s ease;
}

/* Cambia logo cuando el header es azul */

.header.active .logo-navbar {
    content: url("../img/Metálica-blanco.png");
}

/* =========================================================
   LINKS NAVBAR
   ========================================================= */

.navbar-nav {
    float: right;
}

.navbar-nav > li {
    margin-left: 40px;
}

.navbar-nav > li > a {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 80px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.navbar-nav > li > a:hover {
    color: #c7a123 !important;
}

/* Links cuando hace scroll */

.header.active .navbar-nav > li > a {
    color: #ffffff !important;
}

/* Toggle móvil */

.navbar-toggle {
    margin-top: 22px !important;
    border-color: #0f2443;
    background-color: #0f2443;
}

/* =========================================================
   HERO / HOME
   ========================================================= */

.parallax-content {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
}

.baner-content {
    padding-top: 160px; /* Compensa header fijo */
    padding-bottom: 120px;
    text-align: center;
    background-image: url(../img/HomePage.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay claro */

.baner-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(255, 255, 255, 0.88),
        rgba(240, 240, 240, 0.85)
    );
    z-index: 1;
}

/* Contenido encima del overlay */

.baner-content .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   LOGO HOME GRANDE
   ========================================================= */

.home-logo {
    margin-bottom: 35px;
}

.home-logo img {
    max-width: 340px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
    transition: 0.3s ease;
}

.home-logo img:hover {
    transform: scale(1.05);
}

/* =========================================================
   TEXTO HERO
   ========================================================= */

.baner-content h2 {
    font-size: 40px;
    font-weight: 400;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.baner-content h2 span,
.baner-content h2 em {
    font-weight: 700;
    font-style: normal;
    color: #0f2443;
}

.baner-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.baner-content .small-text {
    margin-top: 18px;
    font-size: 15px;
    color: #555;
}

/* =========================================================
   SECCIONES GENERALES
   ========================================================= */

.page-section {
    padding: 100px 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .navbar-nav {
        float: none;
        text-align: center;
    }

    .navbar-nav > li {
        margin-left: 0;
    }

    .baner-content h2 {
        font-size: 30px;
    }

    .baner-content p {
        font-size: 16px;
        padding: 0 20px;
    }

    .home-logo img {
        max-width: 220px;
    }

    .header {
        height: 70px;
    }
}

@media (max-width: 480px) {

    .baner-content {
        padding-top: 130px;
    }

    .baner-content h2 {
        font-size: 24px;
    }

    .home-logo img {
        max-width: 180px;
    }
}

/* =========================================================
   HOME / HERO SECTION
   ========================================================= */

.baner-content {
    width: 100%;
    padding: 30vh 0 20vh 0;
    text-align: center;
	padding-top: 160px;
    background-image: url(../img/HomePage.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* =========================================================
   OVERLAY OSCURO
   ========================================================= */

.baner-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(116, 120, 126, 0.85),
        rgba(15, 36, 67, 0.85)
    );
    z-index: 1;
}

/* =========================================================
   CONTENIDO ENCIMA DEL OVERLAY
   ========================================================= */

.baner-content .container {
    position: relative;
    z-index: 2;
}

.baner-content .text-content {
    text-align: center;
}

/* =========================================================
   LOGO HERO
   ========================================================= */

.home-logo {
    margin-bottom: -90px;
}

.home-logo img {
    max-width: 800px;
    height: auto;
    opacity: 0.95;
    transition: 0.3s ease;
}

.home-logo img:hover {
    transform: scale(1.05);
}

/* =========================================================
   TITULO PRINCIPAL
   ========================================================= */

.baner-content .text-content h2 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.baner-content .text-content h2 span,
.baner-content .text-content h2 em {
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
}

/* =========================================================
   PÁRRAFO PRINCIPAL
   ========================================================= */

.baner-content .text-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================================
   TEXTO SECUNDARIO
   ========================================================= */

.baner-content .small-text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* =========================================================
   BOTÓN
   ========================================================= */

.baner-content .primary-white-button {
    margin-top: 30px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {
    .baner-content {
        padding: 22vh 0 15vh 0;
    }

    .baner-content .text-content h2 {
        font-size: 30px;
    }

    .baner-content .text-content p {
        font-size: 16px;
        padding: 0 20px;
    }

    .home-logo img {
        max-width: 140px;
    }
}




/* =========================================================
   ABOUT SECTION - INDUSTRIAL FULL TEXTURE
   ========================================================= */

#about {
    padding: 140px 0;
    background-image: url(../img/EstructuraMetalica.jpeg); /* imagen principal */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   OVERLAY AZUL CORPORATIVO
   ========================================================= */

#about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(116, 120, 126, 0.85),
        rgba(15, 36, 67, 0.85)
    );
    z-index: 1;
}

/* =========================================================
   TEXTURA METÁLICA COMPLETA
   ========================================================= */

#about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/texture-metal.png);
    background-size: cover;       
    background-position: center;
    background-repeat: no-repeat; 
    opacity: 0.08;                
    z-index: 2;
}

/* =========================================================
   CONTENIDO ENCIMA
   ========================================================= */

#about .container {
    position: relative;
    z-index: 3;
}

/* =========================================================
   TITULO
   ========================================================= */

#about .text-center h3 {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

#about .text-center h3::after {
    content: "";
    width: 70px;
    height: 3px;
    background-color: #c59d5f;
    display: block;
    margin: 15px auto 0;
}

#about .text-center p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    padding-bottom: 90px;
}

/* =========================================================
   SECTORES
   ========================================================= */

#about .sectors-box {
    padding: 35px 25px;
    border-left: 3px solid #c59d5f;
}

#about .sectors-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#about .sectors-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#about .sectors-list li {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

#about .sectors-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #c59d5f;
    font-size: 16px;
}

/* =========================================================
   SERVICIOS - TARJETAS INDUSTRIALES
   ========================================================= */

#about .services-grid {
    display: flex;
    flex-wrap: wrap;
}

#about .services-grid > div {
    display: flex;
}

#about .service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 40px 25px;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    transition: all 0.35s ease;
    width: 100%;
    backdrop-filter: blur(4px);
}

#about .service-item:hover {
    transform: translateY(-8px);
    border-color: #c59d5f;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* ICONO */

#about .service-item .icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c59d5f;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.4);
}

#about .service-item .icon img {
    max-width: 45px;
}

/* TITULO SERVICIO */

#about .service-item h4 {
    margin: 10px 0 15px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* LINEA */

#about .service-item .line-dec {
    width: 40px;
    height: 2px;
    background-color: #c59d5f;
    margin: 15px auto;
}

/* TEXTO */

#about .service-item p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    #about {
        padding: 100px 0;
    }

    #about .sectors-box {
        margin-bottom: 50px;
        border-left: none;
        border-top: 3px solid #c59d5f;
        padding-top: 25px;
    }

    #about .text-center p {
        padding-bottom: 60px;
    }
}






/* =========================================================
   PORTFOLIO SECTION - INDUSTRIAL STYLE
   ========================================================= */

#portfolio {
    position: relative;
    padding: 140px 0;
    background-color: #eef2f7; /* gris técnico moderno */
}


/* =========================================================
   CONTENIDO ENCIMA
   ========================================================= */

#portfolio .container {
    position: relative;
    z-index: 3;
}

/* =========================================================
   PANEL IZQUIERDO
   ========================================================= */

#portfolio .section-heading {
    background-color: #0f2443 !important;
    padding: 120px 50px;
    height: 100%;
    color: #fff;
}


#portfolio .section-heading h4 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#portfolio .section-heading p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
}

#portfolio .line-dec {
    width: 80px;
    height: 2px;
    background-color: #c59d5f;
    margin: 15px 0 30px;
}

/* =========================================================
   FILTROS
   ========================================================= */

.filter-categories ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-categories ul li {
    margin-bottom: 14px;
}

.filter-categories ul li span {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.filter-categories ul li.active span,
.filter-categories ul li span:hover {
    color: #c59d5f;
    padding-left: 8px;
}

/* =========================================================
   GALERÍA
   ========================================================= */

.projects-holder {
    padding: 40px 15px;
}

/* Ocultar hasta activar mix */
.projects-holder .mix {
    display: none;
}

.project-item {
    padding: 12px;
}

/* =========================================================
   TARJETAS INDUSTRIALES
   ========================================================= */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #ffffff;
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: #c59d5f;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Imagen */

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    #portfolio {
        padding: 100px 0;
        background-color: #eef2f7; /* mismo color siempre */
    }

    /* PANEL */
    #portfolio .section-heading {
        padding: 60px 30px;
        margin-bottom: 40px;
        border: none; /* quitamos bordes blancos */
        background-color: #0f2443; /* mismo azul */
        color: #fff;
    }

    /* Texto filtros coherente */
    .filter-categories ul li span {
        color: rgba(255,255,255,0.85);
    }

    .filter-categories ul li.active span,
    .filter-categories ul li span:hover {
        color: #c59d5f;
    }

    /* Galería */
    .projects-holder {
        padding: 20px 10px;
    }

    .gallery-card img {
        height: 220px;
    }
}




/* ======================================================
   BLOG / CONTENIDO INFORMATIVO
   ====================================================== */

#blog {
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 60px 0;
}

/* ======================================================
   GRID GENERAL
   ====================================================== */

#blog .wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

/* ======================================================
   COLUMNA IZQUIERDA – ARTÍCULOS
   ====================================================== */

#blog .tabgroup {
	position: relative;
	z-index: 2;
}

#first-tab-group {
	margin-top: 30px;
}

/* Cada tab */
#blog .tabgroup > div {
	margin-bottom: 30px;
}

#blog .tabgroup img {
	width: 100%;
	height: auto;
	display: block;
}

/* Contenido del artículo */
.tabgroup .text-content {
	background-color: #fff;
	padding: 25px;
	text-align: left;
}

/* ======================================================
   COLUMNA DERECHA – INFO TÉCNICA
   ====================================================== */

#blog .section-right {
	background-color: #0f2443;
	color: #fff;

	padding: 60px 40px;
	height: auto;           /* 🔑 elimina cortes */
	position: relative;
}

/* Texto */
#blog .section-right p {
	color: #fff;
	margin-bottom: 20px;
}

/* ======================================================
   ENCABEZADO
   ====================================================== */

#blog .section-heading h4 {
	margin-top: 0;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
}

#blog .section-heading .line-dec {
	width: 80px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 15px 0 20px;
}

/* ======================================================
   TABS / LISTADO DE ARTÍCULOS
   ====================================================== */

.tabs {
	list-style: none;
	margin-top: 30px;
	padding: 0;
}

.tabs li {
	margin-bottom: 15px;
}

.tabs a {
	display: block;
	padding: 12px 15px;
	background-color: #fff;
	color: #121212;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.tabs a:hover,
.tabs .active {
	background-color: #33c1cf;
	color: #fff;
}

/* ======================================================
   RESPONSIVE – TABLET
   ====================================================== */

@media (max-width: 991px) {
	#blog {
		padding: 40px 0;
	}

	#blog .wrapper {
		flex-direction: column;
	}

	#blog .section-right {
		margin-top: 40px;
	}
}

/* ======================================================
   RESPONSIVE – CELULARES
   ====================================================== */

@media (max-width: 767px) {

	#blog {
		background-attachment: scroll;
		padding: 30px 0;
	}

	/* Columnas full width */
	#blog .col-md-8,
	#blog .col-md-4 {
		width: 100%;
	}

	/* Ajustes texto */
	.tabgroup .text-content {
		padding: 20px;
	}

	#blog .section-right {
		padding: 30px 20px;
		text-align: left;
	}

	.tabs a {
		font-size: 14px;
		padding: 10px;
	}
}



/* ================================
   SECCIÓN CONTACTO
================================ */
#contact-us {
    background-color: #596065;
    padding: 80px 0;
}

/* ================================
   TARJETA CONTACTO
================================ */
.contact-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    max-width: 420px;
    margin: auto;
}

/* ================================
   FOTO CONTACTO
================================ */
.contact-header {
    background: #f1f1f1;
    
    text-align: center;
}

.contact-banner {
    width: 100%;
    height: 100%;
    object-fit: cover; /* clave */
    object-position: center;
}

.contact-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

/* ================================
   INFO CONTACTO
================================ */
.contact-info {
    padding: 30px;
    text-align: center;
}

.contact-info h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #232323;
}

.contact-info .role {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* ================================
   DETALLES
================================ */
.contact-details {
    text-align: left;
    font-size: 13px;
    color: #444;
    margin-bottom: 25px;
}

.contact-details div {
    margin-bottom: 8px;
}

/* ================================
   BOTÓN WHATSAPP
================================ */
.whatsapp-btn {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* ================================
   MAPA
================================ */
.map-wrapper {
    width: 100%;
    height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .map-wrapper {
        margin-top: 30px;
        height: 300px;
    }
}



footer {
	margin-top: -6px;
	background-color: #373a3c;
	padding: 50px 0px;
}
footer .logo em {
	font-style: normal;
	font-size: 28px;
	color: #f7c552;
}
footer .logo-ft {
	display: inline-block;
	margin-top: 15px;
	text-decoration: none;
	color: #fff!important;
	font-size: 21px;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: none;
	letter-spacing: 1px;
}

footer .logo p {
	font-weight: 300;
	font-size: 12px;
	color: #fff;
	margin-bottom: -10px;
	letter-spacing: 0.5px;
}

footer .logo span {
	font-weight: 600;
	color: #f7c552;
}

footer .logo a {
	color: #FFF;
}

footer .logo a:hover {
	color: #9F0;
}

footer .location h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

footer .location ul li {
	font-size: 13px;
	color: #fff;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 0.5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

footer .location ul li:first-child {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(250, 250, 250, 0.1);
}

footer .contact-info h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

footer .contact-info ul li {
	font-size: 13px;
	color: #fff;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 0.5px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: 300;
	margin-bottom: -15px;
}

footer .contact-info ul li em {
	font-style: normal;
	font-weight: 500;
}

footer .connect-us h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 35px;
}

footer .connect-us ul li {
	display: inline-block;
	margin-right: 2px;
}

footer .connect-us ul li a {
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
	color: #373a3c;
	font-size: 15px;
	transition: all 0.3s;
}
footer .connect-us ul li a:hover {
	background-color: #f7c552;
}

/* ===== LOGO NAVBAR ===== */
.navbar-brand {
    padding: 6px 15px;
    height: auto;
}

.logo-navbar {
    height: 75px;
    width: auto;
    display: block;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .logo-navbar {
        height: 30px;
    }
}

@media (max-width: 991px){

	.baner-content .text-content p {
		padding: 0px 15%;
	}


	#about .service-item {
		margin-bottom: 80px;
	} 

	#portfolio .section-heading {
		text-align: center;
		padding-top: 100px;
		padding-bottom: 100px;
		background-color: #33c1cf;
		height: 505px;
		margin-left: -15px;
		padding-left: 0vh;
		margin-right: -15px;
		padding-right: 0vh;
		overflow: hidden;
	}

	#portfolio .section-heading .line-dec {
		margin: 20px auto 15px auto;
	}

	#portfolio .section-heading p {
		padding: 0px 20px;
	}

	.projects-holder {
		text-align: center;
		padding: 15px 0px;
	}

	#portfolio .project-item {
		margin: 15px 0px;
	}

	#blog .section-heading {
		text-align: center;
		padding-top: 100px;
		padding-bottom: 100px;
		background-color: rgba(0, 0, 0, 0.5);
		margin-left: -15px;
		padding-left: 0vh;
		margin-right: -15px;
		padding-right: 0vh;
		overflow: hidden!important;
	}

	#blog .section-heading .line-dec {
		margin: 20px auto 15px auto;
	}

	#blog .section-heading p {
		padding: 0px 30px;
	}

	.tabs {
		padding: 0px 45px;
	}

	#first-tab-group {
		margin-bottom: 30px;
	}

	#contact-us .section-heading p {
		padding: 0px 10%;
	}

	footer {
		text-align: center;
	}

	footer .logo {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(250, 250, 250, 0.1);
	}

	footer .location {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(250, 250, 250, 0.1);
	}

	footer .contact-info {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(250, 250, 250, 0.1);
	}

	footer .contact-info ul li {
		margin-right: 10px;
		margin-left: 10px;
	}

}

@media (max-width: 768px){
	.baner-content .text-content p {
		padding: 0px 10%;
	}
	#main-nav {
		margin-left: -15px;
		margin-right: -15px;
		border-top: none;
		margin-top: 15px;
		background-color: rgba(250, 250, 250, 0.95);
	}

	.navbar-nav {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.navbar-inverse .navbar-nav>li {
		margin-left: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.navbar-inverse .navbar-nav>li:last-child {
		border-bottom: none;
	}


	.navbar-inverse .navbar-nav>li>a {
		font-family: 'Roboto', sans-serif!important;
		line-height: 55px;
		color: #343434!important;
	}

}

@media (max-width: 385px){

	footer .location ul li {
		display: block;
	}

	footer .location ul li:first-child {
		margin-right: 0px;
		padding-right: 0px;
		border-right: none;
	}

}