/*-----------------------------------------------------------------------------------
	ESTRUCTURAS METALICAS 24
	Author: iO AGENCIA PUBLICIDAD
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Group Styles */

.bloc-group{
	display:flex;
}
.bloc-tile-2{
	width:50%;
}
.bloc-tile-3{
	width:33.33333333%;
}
.bloc-tile-4{
	width:25%;
}
.bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
	width:100%;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-repeat{
	background-repeat:repeat!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-paper::before{
	background: url("img/texture-paper.png");
	background-size: 280px 280px;
}
.texture-fabric::before{
	background: url("img/texture-fabric.png");
}
.texture-diagonal-lines::before{
	background: url("img/texture-diag-lines.png");
	background-size: 10px 10px;
}
.texture-square::before{
	background: url("img/texture-square.png");
	background-size: 4px 4px;
}
.texture-square-lg::before{
	background: url("img/texture-square-lg.png");
	background-size: 8px 8px;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}
.texture-darken-strong::before{
	background: rgba(0,0,0,0.8);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


/* = NavBar
-------------------------------------------------------------- */

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
.fill-bloc-top-edge.sticky{
	background-color:rgb(33, 33, 33);
	width:100%;
	max-width: 100%;
	margin-top: 0;
	left:0;
	right:0;
}
.fill-bloc-top-edge.sticky .navbar{
	max-width: 1170px;
	margin: 0 auto;
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-sq{
	border-radius: 0px;
}
.btn-clean{
	border:1px solid rgba(0,0,0,.08);
	border-bottom-color:rgba(0,0,0,.1);
	text-shadow:0 1px 0 rgba(0,0,1,.1);
	box-shadow: 0 1px 3px rgba(0,0,1,.25), inset 0 1px 0 0 rgba(255,255,255,.15);
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.icon-spacer{
	margin-right:5px;
}
.btn .caret{
	margin:0 0 0 5px}.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}
.icon-lg{
	font-size:60px!important;
}
.icon-xl{
	font-size:100px!important;
}
.icon-square{
	margin:0 auto;
	border:2px solid transparent;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-round.icon-md,.icon-square.icon-md,.icon-rounded.icon-md{
	min-width: 92px;
}
.icon-round.icon-lg,.icon-square.icon-lg,.icon-rounded.icon-lg{
	min-width: 122px;
}
.icon-round.icon-xl,.icon-square.icon-xl,.icon-rounded.icon-xl{
	min-width: 162px;
}


/* = Text & Icon Styles
-------------------------------------------------------------- */
.sm-shadow{
	text-shadow:0 1px 2px rgba(0,0,0,.3);
}
/* = Text Widths
-------------------------------------------------------------- */
.text-w-80{
	max-width:80%;
}
.text-center.text-w-sm, .text-center.text-w-md, .text-center.text-w-lg, .text-center.text-w-90, .text-center.text-w-80, .text-center.text-w-70, .text-center.text-w-60, .text-center.text-w-50{
	margin-left: auto;
	margin-right: auto;
}


/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}

/* Additional Aspect Ratios */

.ratio-4x4::before{
	padding-top:100%}.ratio-9x16::before{
	padding-top:106.25%}

/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.close{
	color:#000;
	opacity:0.5;
}
.close:hover{
	opacity:1;
}
.modal-header > [data-bs-dismiss="modal"]{
	margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.10 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.5);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.sube{
	margin-top:-33px;
}
.menu-icon-0-stroke{
	stroke:#59ADC4!important;
	fill:#59ADC4!important;
}
.poiret{
	font-family:"Josefin Sans";
	font-weight:900;
	font-size:18px;
}
.btn-ver-videos-style{
	text-decoration:none;
	background-color:var(--swatch-var-4359);
	color:var(--swatch-var-6717)!important;
	font-size:21px;
}
.pegabordeordena2{
	position:relative;
	bottom:-18px;
}
.pegabordeordena{
	position:absolute;
	bottom:-20px;
	color:var(--swatch-var-6728)!important;
}
.encima-todo{
	z-index:9999999999999999999999999999;
}
.menu-icon-videomovil-stroke{
	stroke:var(--swatch-var-1701)!important;
	fill:var(--swatch-var-1701)!important;
}
.blackpoiret{
	font-size:18px;
	font-family:"Poiret One";
	color:var(--swatch-var-7376)!important;
}
.pegaborde2{
	position:relative;
	bottom:-18px;
}
.pegaborde{
	position:absolute;
	float:right;
	right:0px;
	bottom:-20px;
	color:var(--swatch-var-6728)!important;
}
.h1-aqui-h1-style{
	font-family:"Poiret One";
	font-size:32px;
}
.h1-style{
	font-size:40px;
	font-family:"Dosis";
	font-weight:500;
}
.img-14-style{
	width:91px;
}
.h3-13-style{
	font-family:"Dosis";
	font-size:26px;
	line-height:27px;
	font-weight:300;
}
.bajaunpoquin{
	margin-top:15px;
}
.p-1-style{
	font-size:40px;
	font-family:"Dosis";
}
.tipowhite{
	color:var(--swatch-var-6717)!important;
}
.btn-3-style{
	font-weight:bold;
}
.h3-style{
	font-size:32px;
	width:84.34%;
	font-family:"Dosis";
}
.divider-bloc-6-background-color{
	background-color:var(--swatch-var-1701);
	height:2px;
	margin-left:auto;
	margin-right:auto;
	width:50%;
}
.h3-2-style{
	font-size:18px;
}
.blupoiret{
	color:var(--swatch-var-1701)!important;
	font-size:20px;
	font-weight:bold;
	font-family:"Poiret One";
}
.subepoquito{
	margin-top:-20px;
}
.p-2-style{
	font-family:"Poppins";
	font-weight:500;
}
.p-3-style{
	font-family:"Montserrat";
	font-weight:500;
	font-size:18px;
}
.p-4-style{
	font-family:"Montserrat";
	font-weight:500;
	font-size:18px;
}
.p-bloc-6-style{
	font-family:"Poppins";
	font-weight:500;
}
.separadearriba{
	margin-top:20px;
}
.divider-style{
	width:50%;
	margin-left:auto;
	margin-right:auto;
	height:5px;
	background-color:var(--swatch-var-1701);
}
.p-bloc-7-style{
	font-family:"Poppins";
	font-weight:500;
}
.p-7-style{
	font-family:"Montserrat";
	font-weight:500;
	font-size:18px;
}
.p-8-style{
	font-family:"Montserrat";
	font-size:18px;
}
.p-9-bloc-7-style{
	font-family:"Poppins";
}
.img-bloc-9-style{
	width:368px;
}
.h3-48665-style{
	font-family:"Poiret One";
	font-size:32px;
}
.p-27638-style{
	font-size:26px;
}
.h2-feature-title-style{
	font-family:"Dosis";
	font-size:40px;
}
.h3-25-style{
	font-family:"Montserrat";
	font-size:23px;
	font-weight:300;
}
.separatedeabajao{
	margin-top:-10px;
}
.h3-5807-style{
	font-size:22px;
	font-family:"Poiret One";
}
.h3-196-style{
	font-size:22px;
	font-family:"Poiret One";
}
.h3- espacio-style{
	font-size:22px;
	font-family:"Poiret One";
}
.h3- seguridad-style{
	font-size:22px;
	font-family:"Poiret One";
}
.h3- modernización-style{
	font-size:22px;
	font-family:"Poiret One";
}
.h3-200-style{
	font-size:22px;
	font-family:"Poiret One";
}
.cuadradoblu{
	border-color:var(--swatch-var-1701)!important;
	border-style:solid;
	border-width:2px 2px 2px 2px;
}
.h3-bloc-8-style{
	font-size:40px;
	font-family:"Dosis";
}
.h3-16-style{
	font-size:28px;
	font-family:"Poiret One";
}
.h3-17-style{
	font-size:26px;
	font-family:"Montserrat";
}
.h3-18-style{
	font-size:30px;
	font-family:"Dosis";
}
.h3-19-style{
	font-size:28px;
	font-family:"Poiret One";
}
.img-bloc-17-style{
	width:138px;
}
.h3-33-style{
	font-family:"Dosis";
	font-size:37px;
}
.separamucho{
	margin-top:100px;
}
.h4-23440-style{
	font-family:"Montserrat";
	font-size:24px;
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
}
.img-bloc-24-style{
	width:146px;
}
.separabajomas{
	margin-bottom:10px;
}
.h3-29-style{
	font-family:"Poiret One";
	font-size:23px;
}
.h4-bloc-24-style{
	font-family:"Poiret One";
	font-size:24px;
}
.h3-35-style{
	font-size:40px;
	font-family:"Josefin Sans";
}
.divider-0-background-color{
	background-color:var(--swatch-var-1701);
	width:90%;
}
.link-0-bloc-36-style{
	text-decoration:none;
	font-weight:bold;
}
.h3-11-style{
	font-size:18px;
	width:100%;
}
.link-32328-style{
	text-decoration:none;
}
.h5-5-style{
	font-size:20px;
}
.link-0-bloc-37-style{
	text-decoration:none;
}
.link-bloc-37-style{
	text-decoration:none;
}
.link-916-21-42-12-style{
	text-decoration:none;
}
.divider-25087-background-color{
	background-color:var(--swatch-var-1701);
	width:50%;
	height:5px;
}
.text-white{
	font-size:14px;
	color:var(--swatch-var-6728)!important;
	font-weight:400;
}
.img-style{
	border-radius:8px 8px 8px 8px;
	width:200px;
	height:200px;
}
.bajapococ{
	margin-top:10px;
}
.linea-lateral{
	border-style:solid;
	border-width:0px 0px 0px 2px;
	border-color:var(--swatch-var-1701)!important;
}
.link-bloc-7-style{
	text-decoration:none;
}
.link-0-style{
	text-decoration:none;
}
.link-37841-style{
	text-decoration:none;
}
.link-30804-style{
	text-decoration:none;
}
.link-bloc-41-style{
	text-decoration:none;
	font-weight:bold;
}
.link-aviso-legal--style{
	text-decoration:none;
	font-weight:bold;
}
.link-0-bloc-41-style{
	text-decoration:none;
	font-weight:bold;
}
.navbar-brand img{
	height:130px;
}
.popins{
	font-family:"Dosis";
	font-weight:500;
	font-size:18px;
}
.h2-style{
	font-family:"Dosis";
}
.p-style{
	font-family:"Dosis";
	font-weight:300;
}
.h3-1-style{
	font-family:"Dosis";
	font-size:30px;
}
.h3-48662-style{
	font-family:"Dosis";
	font-size:30px;
}
.img-3-style{
	width:279px;
}
.p-6-style{
	font-family:"Montserrat";
	font-size:18px;
}
.p-5-style{
	font-family:"Montserrat";
	font-size:18px;
}
.h4-style{
	font-family:"Dosis";
	font-size:25px;
}
.h4-feature-title-style{
	font-family:"Dosis";
	font-size:25px;
}
.h4-4-style{
	font-family:"Josefin Sans";
	font-size:25px;
}
.h4-1-style{
	font-family:"Dosis";
	font-size:25px;
}
.h4-2-style{
	font-family:"Dosis";
	font-size:25px;
}
.h4-3-style{
	font-family:"Dosis";
	font-size:25px;
}
.h4-servicios-style{
	font-family:"Dosis";
}
.montse{
	font-family:"Montserrat";
	font-weight:600;
	color:var(--swatch-var-6717)!important;
	font-size:18px;
}
.h4-bloc-33-style{
	font-family:"Dosis";
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.josefin{
	font-family:"Dosis";
}
.link-bloc-40-style{
	text-decoration:none;
}
.link-0-bloc-7-style{
	text-decoration:none;
}
.link-48589-style{
	text-decoration:none;
}
.link-2781-style{
	text-decoration:none;
}
.link-21849-style{
	text-decoration:none;
}
.link-28934-style{
	text-decoration:none;
}
.link-16501-style{
	text-decoration:none;
}
.link-2631-style{
	text-decoration:none;
}
.h2-4-style{
	font-family:"Dosis";
	font-size:50px;
}
.p-30667-style{
	font-family:"Montserrat";
	font-size:18px;
}
.h3-15225-style{
	font-family:"Montserrat";
}
.h3-9-style{
	font-family:"Dosis";
	font-size:30px;
}
.h4-bloc-9-style{
	font-family:"Montserrat";
	font-size:20px;
}
.divider-bloc-5-background-color{
	background-color:var(--swatch-var-1701);
	height:5px;
	width:50%;
	margin-left:auto;
	margin-right:auto;
}
.h3-bloc-31-style{
	font-family:"Dosis";
	font-size:30px;
}
.dosis{
	font-family:"Dosis";
	font-size:18px;
}
.divider-0-style{
	width:50%;
	height:5px;
	background-color:var(--swatch-var-1701);
	margin-left:auto;
	margin-right:auto;
}
.h2-5-style{
	font-size:26px;
	font-family:"Montserrat";
}
.h1-3-style{
	font-family:"Dosis";
	font-size:45px;
}
.p-14-style{
	font-family:"Montserrat";
	font-size:18px;
}
.h3-7362-style{
	font-family:"Montserrat";
}
.h4-8-style{
	font-family:"Montserrat";
}
.h2-6-style{
	font-family:"Dosis";
}
.h1-4-style{
	font-family:"Dosis";
	font-size:40px;
}
.h3-27-style{
	font-family:"Montserrat";
	font-size:22px;
}
.h1-40239-style{
	font-family:"Dosis";
	font-size:40px;
}
.h3-26-style{
	font-family:"Montserrat";
	font-size:22px;
}
.divider-arquitectura-style{
	width:80%;
	margin-left:auto;
	margin-right:auto;
	height:5px;
	background-color:var(--swatch-var-1701);
}
.btn-style{
	font-weight:bold;
}
.h3-bloc-2-style{
	font-family:"Dosis";
}
.link-style{
	text-decoration:none;
}
.img-bloc-4-style{
	width:324px;
}
.h1-24647-style{
	font-family:"Dosis";
	font-weight:200;
}
.h3-49-style{
	font-family:"Dosis";
}
.p-43-style{
	font-family:"Montserrat";
	font-size:20px;
}
.h4-18-style{
	font-family:"Dosis";
}
.h4-19-style{
	font-family:"Dosis";
}
.h4-20-style{
	font-family:"Dosis";
}
.h4-21-style{
	font-family:"Dosis";
}
.h4-22-style{
	font-family:"Dosis";
}
.h4-23-style{
	font-family:"Dosis";
}
.img-28-style{
	width:334px;
}
.img-27-style{
	width:271px;
}
.h1-bloc-43-style{
	font-family:"Dosis";
	width:100%;
	font-size:38px;
}
.h3-bloc-43-style{
	font-family:"Montserrat";
	font-size:20px;
}
.btn-bloc-43-style{
	font-weight:bold;
}
.h2-10-style{
	font-family:"Dosis";
	font-weight:300;
	font-size:38px;
}
.h3-50-style{
	font-family:"Montserrat";
	font-size:18px;
}
.btn-40-style{
	font-weight:bold;
}
.h2-11-style{
	font-family:"Dosis";
	font-weight:300;
	font-size:38px;
}
.h3-52-style{
	font-family:"Montserrat";
	font-size:22px;
}
.btn-42-style{
	font-weight:bold;
}
.h2-34714-style{
	font-family:"Dosis";
	font-weight:300;
	font-size:38px;
}
.h3-24014-style{
	font-family:"Montserrat";
	font-size:22px;
}
.h1-6-style{
	font-family:"Dosis";
	font-weight:300;
	font-size:30px;
}
.h2-24873-style{
	font-size:22px;
	font-family:"Montserrat";
}
.h2-12-style{
	font-family:"Dosis";
	font-weight:300;
}
.p-45-style{
	font-family:"Montserrat";
}
.btn-50-style{
	font-weight:bold;
}
.h1-18498-style{
	font-family:"Dosis";
}
.h3-61-style{
	font-family:"Montserrat";
	font-size:22px;
}
.img-42-style{
	width:424px;
}
.divider-27890-style{
	height:5px;
	background-color:var(--swatch-var-1701);
}
.link-home-style{
	font-weight:bold;
}
.link-bloc-0-style{
	text-decoration:none;
}
.link-particulares-style{
	text-decoration:none;
}
.link-inicio-style{
	font-weight:bold;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-2869);
}
.h3-5-style{
	font-family:"Poppins";
	font-weight:300;
	font-size:20px;
}
.h3-6-style{
	font-family:"Poppins";
	font-weight:300;
	font-size:20px;
}
.h3-4-style{
	font-family:"Poppins";
	font-weight:300;
	font-size:20px;
}
.h3-48165-style{
	font-family:"Poppins";
	font-weight:500;
	font-size:26px;
	width:100%;
}
.video-frame video{
	border-radius:12px 12px 12px 12px;
}
.navbar-nav li a{
	font-weight:bold;
	text-transform:uppercase;
}
.h2-13-style{
	font-size:40px;
	font-family:"Dosis";
}
.h3-62-style{
	font-family:"Montserrat";
}
.blur{
	backdrop-filter:blur(7px);
	-webkit-backdrop-filter:blur(7px);
	border-radius:5px 5px 5px 5px;
	padding-top:10px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-6717:rgba(255,255,255,1.00);
	
	--swatch-var-854:#D5D5D5;
	
	--swatch-var-1701:rgba(255,56,22,1.00);
	
	--swatch-var-7376:#212121;
	
	--swatch-var-6728:#FFFFFF;
	
	--swatch-var-4359:rgba(255,255,255,0);
	
	--swatch-var-5421:#5E5E5E;
	
	--swatch-var-3127:#333333;
	
	--swatch-var-5905:#59ADC4;
	
	--swatch-var-2869:#000000;
	
	--swatch-var-7536:#FFFFFF;
	
	--swatch-var-2071:rgba(0,0,0,0.40);
	
	--swatch-var-196:#FEFFFF;
	
	--swatch-var-3662:#EAEAEA;
	
	--swatch-var-5988:#FEFFFF;
	
}


/* Background colour styles */

.bgc-7376{
	background-color:var(--swatch-var-7376);
}
.bgc-3127{
	background-color:var(--swatch-var-3127);
}
.bgc-1701{
	background-color:var(--swatch-var-1701);
}
.bgc-854{
	background-color:var(--swatch-var-854);
}
.bgc-5421{
	background-color:var(--swatch-var-5421);
}

/* Text colour styles */

.tc-6717{
	color:var(--swatch-var-6717)!important;
}
.tc-7536{
	color:var(--swatch-var-7536)!important;
}
.tc-854{
	color:var(--swatch-var-854)!important;
}
.tc-1701{
	color:var(--swatch-var-1701)!important;
}
.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.tc-6728{
	color:var(--swatch-var-6728)!important;
}
.tc-7376{
	color:var(--swatch-var-7376)!important;
}

/* Button colour styles */

.btn-c-1701{
	background:var(--swatch-var-1701);
	color:#FFFFFF!important;
}
.btn-c-1701:hover{
	background:#CC0500!important;
	color:#FFFFFF!important;
}
.btn-c-7376{
	background:var(--swatch-var-7376);
	color:#FFFFFF!important;
}
.btn-c-7376:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}
.btn-c-3127{
	background:var(--swatch-var-3127);
	color:#FFFFFF!important;
}
.btn-c-3127:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}
.wire-btn-c-7376{
	color:var(--swatch-var-7376)!important;
	border-color:var(--swatch-var-7376)!important;
}
.wire-btn-c-1701{
	color:var(--swatch-var-1701)!important;
	border-color:var(--swatch-var-1701)!important;
}
.wire-btn-c-6717{
	color:var(--swatch-var-6717)!important;
	border-color:var(--swatch-var-6717)!important;
}

/* Link colour styles */

.ltc-1701{
	color:var(--swatch-var-1701)!important;
}
.ltc-1701:hover{
	color:#CC0500!important;
}
.ltc-854{
	color:var(--swatch-var-854)!important;
}
.ltc-854:hover{
	color:#A2A2A2!important;
}
.ltc-7536{
	color:var(--swatch-var-7536)!important;
}
.ltc-7536:hover{
	color:#CCCCCC!important;
}
.ltc-6717{
	color:var(--swatch-var-6717)!important;
}
.ltc-6717:hover{
	color:#CCCCCC!important;
}
.ltc-6728{
	color:var(--swatch-var-6728)!important;
}
.ltc-6728:hover{
	color:#CCCCCC!important;
}

/* Icon colour styles */

.icon-1701{
	color:var(--swatch-var-1701)!important;
	border-color:var(--swatch-var-1701)!important;
}
.icon-854{
	color:var(--swatch-var-854)!important;
	border-color:var(--swatch-var-854)!important;
}
.icon-6717{
	color:var(--swatch-var-6717)!important;
	border-color:var(--swatch-var-6717)!important;
}

/* Bloc image backgrounds */

.bg-Logo-estructuras-de-metal-en-Madrid{
	background-image:url("img/Logo-estructuras-de-metal-en-Madrid.png");
}
.bg-cerrajeria-fabricante-de-Estructuras-metalicas-en-Madrid-pergola-bioclimatica-estructuras-de-metal-2{
	background-image:url("img/cerrajeria-fabricante-de-Estructuras-metalicas-en-Madrid-pergola-bioclimatica-estructuras-de-metal-2.JPG");
}
.bg-carpinteria-metalica-fabricacion-estructuras-metalicas-en-Madrid{
	background-image:url("img/carpinteria-metalica-fabricacion-estructuras-metalicas-en-Madrid.JPG");
}
.bg-cerrajeria-carpinteria-de-metal-en-Madrid{
	background-image:url("img/cerrajeria-carpinteria-de-metal-en-Madrid.JPG");
}
.bg-diseño-y-fabricacion-estructuras-metalicas-en-Madrid{
	background-image:url("img/disen%CC%83o-y-fabricacion-estructuras-metalicas-en-Madrid.JPG");
}
.bg-fabricante-de-estructuras-de-metal-en-Madrid{
	background-image:url("img/fabricante-de-estructuras-de-metal-en-Madrid.JPG");
}
.bg-cerrajeria--metalica-fabricacion-estructuras-metalicas-en-Madrid{
	background-image:url("img/cerrajeria--metalica-fabricacion-estructuras-metalicas-en-Madrid.JPG");
}
.bg-cerrajeria-fabricante-de-Estructuras-metalicas-en-Madrid-pergola-bioclimatica-estructuras-de-metal{
	background-image:url("img/cerrajeria-fabricante-de-Estructuras-metalicas-en-Madrid-pergola-bioclimatica-estructuras-de-metal.JPG");
}
.bg-cerrajeria-carpinteria-de-metal-en-Madrid-y-fabricante-de-Estructuras-metalicas-en-Madrid{
	background-image:url("img/cerrajeria-carpinteria-de-metal-en-Madrid-y-fabricante-de-Estructuras-metalicas-en-Madrid.JPG");
}
.bg-cerrajeria-carpinteria-de-metal-en-Madrid-fabricante-de-estructuras-de-metal-en-madrid{
	background-image:url("img/cerrajeria-carpinteria-de-metal-en-Madrid-fabricante-de-estructuras-de-metal-en-madrid.JPG");
}
.bg-fabricante-de-estructuras-20de-20metal-en-Madrid{
	background-image:url("img/fabricante-de-estructuras%20de%20metal-en-Madrid.jpg");
}
.bg-logo-20ok-20transparente-20CARRANQUE{
	background-image:url("img/logo%20ok%20transparente%20CARRANQUE.png");
}
.bg-NAVE-20EN-20SESTAO{
	background-image:url("img/NAVE%20EN%20SESTAO.png");
}
.bg--20Cenadores-20Metálicos-20a-20Medida-20en-20Madrid-Aceros-20carranque{
	background-image:url("img/%20Cenadores%20Meta%CC%81licos%20a%20Medida%20en%20Madrid-Aceros%20carranque.jpg");
}
.bg-Vallas-20Metálicas-20Decorativas-20en-20Madrid-20Aceros-20Carranque{
	background-image:url("img/Vallas%20Meta%CC%81licas%20Decorativas%20en%20Madrid%20Aceros%20Carranque.jpg");
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.separadearriba{
	}
	.separabajomas{
	}
	.img-42-style{
	}
	
}

@media (max-width: 767px){
	.sube{
		margin-top:-38px;
	}
	.menu-icon-stroke{
		stroke:transparent!important;
		fill:transparent!important;
	}
	.menu-icon-bloc-0-stroke{
		stroke:var(--swatch-var-854)!important;
		fill:var(--swatch-var-854)!important;
	}
	.h3-style{
		font-size:20px;
	}
	.separadearriba{
	}
	.img-style{
		width:354px;
	}
	.menu-icon-bloc-1-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.menu-icon-bloc-41-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	
}

@media (max-width: 575px){
	.menu-icon-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.h3-13-style{
		line-height:29px;
	}
	.bajaunpoquin{
		margin-top:14px;
	}
	.btn-3-style{
	}
	.h3-style{
		font-size:26px;
	}
	.separadearriba{
		margin-top:20px;
	}
	.separabajo{
		margin-bottom:15px;
	}
	.separatedeabajao{
		margin-bottom:18px;
	}
	.h3-5807-style{
		font-family:"Poiret One";
		font-size:20px;
	}
	.h3-196-style{
		font-size:20px;
		font-family:"Poiret One";
	}
	.h3- espacio-style{
		font-family:"Poiret One";
	}
	.h3- seguridad-style{
		font-size:20px;
		font-family:"Poiret One";
	}
	.h3- modernización-style{
		font-family:"Poiret One";
		font-size:20px;
	}
	.h3-200-style{
		font-family:"Poiret One";
		font-size:20px;
	}
	.img-bloc-24-style{
		width:115px;
	}
	.h4-bloc-24-style{
	}
	.link-0-bloc-36-style{
		font-weight:bold;
		text-decoration:none;
	}
	.h3-11-style{
		width:100%;
	}
	.text-white{
	}
	.img-style{
		width:176px;
	}
	.footer-link{
		text-align:center;
	}
	.navbar-logo{
		font-size:18px;
	}
	.menu-icon-18152-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.popins{
	}
	.menu-icon-bloc-16-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.menu-icon-bloc-22-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.menu-icon-23541-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.menu-icon-0-bloc-0-stroke{
		stroke:var(--swatch-var-1701)!important;
		fill:var(--swatch-var-1701)!important;
	}
	.p-45-style{
		font-size:22px;
	}
	.h2-12-style{
		font-size:38px;
	}
	.h1-18498-style{
		font-size:38px;
	}
	.h3-bloc-43-style{
		font-size:22px;
	}
	.h3-50-style{
		font-size:22px;
	}
	.h2-24873-style{
		font-size:22px;
	}
	.h1-6-style{
		font-size:38px;
	}
	.navbar-brand img{
	}
	
}

