/*
Theme Name: mallasdeseguridad
Theme URI: https://www.mallasdeseguridad.com.co
Author: Comercial Web
Author URI: https://www.comercialweb.com.co
Description: Mallas de Seguridad.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mallasdeseguridad

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

:root {
	/*Font*/
	--font-family: 'Raleway', sans-serif;

	/*Text sizes*/
	--xsm-text: 14px;
	--sm-text: 16px;
	--md-text: 23px;
	--lg-text: 28px;
	--xlg-text: 35px;

	--text-bold: 700;
	--text-bolder: 800;
	--text-black: 900;

	/*Colors*/
	--green: #00d900;
	--blue: #172480;
	--dark: #282e3f;
	--dark-md: #333a4d;
	--white: #fff;
	--white-dark: #f3f3f3;
	--gray-dark: #6a6a6a;
	--gray-md: #bcbcbc;
	--black: #141414;
	--red: #eb0a15;

	--gold: #c8ae40;

	/*Transitions*/
	--normal-transition: all 0.4s ease;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	overflow-x: hidden;
}
html, body {
	height: 100%;
	max-width: 100%;
	width: 100%;
}

body {
	color: var(--gray-dark);
	font-family: var(--font-family);
	font-weight: 400;
    font-style: normal;
}

/*Generic buttons*/
a.button,
.button,
input.button,
button.button {
	border-radius: 35px;
	border: 0px;
	display: inline-block;
	cursor: pointer;
	font-size: var(--sm-text);
	font-weight: 500;
	letter-spacing: 3px;
	padding: 15px 25px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: var(--normal-transition);
	-o-transition: var(--normal-transition);
	transition: var(--normal-transition);
}

	/*Primary*/
	a.button.primary,
	.button.primary,
	input.button.primary,
	button.button.primary {
		background-color:#ffae00 !important;
		color: var(--white);
	}
		a.button.primary:hover,
		.button.primary:hover,
		input.button.primary:hover,
		button.button.primary:hover {
			background-color: #6a6a6a !important;
			color: var(--white);
		}

	/*Dark*/
	a.button.dark,
	.button.dark,
	input.button.dark,
	button.button.dark {
		background-color: var(--dark);
		color: var(--white);
	}

	/*danger*/
	a.button.danger,
	.button.danger,
	input.button.danger,
	button.button.danger {
		background-color: var(--green);
		color: var(--white);
	}

	/*facebook*/
	a.button.facebook,
	.button.facebook,
	input.button.facebook,
	button.button.facebook {
		background-color: #21579f;
		color: var(--white);
	}

	/*twitter*/
	a.button.twitter,
	.button.twitter,
	input.button.twitter,
	button.button.twitter {
		background-color: #00b2e6;
		color: var(--white);
	}

/*Generic titles*/
.content-page .title,
.content-page .subtitle {
    color: #000000 !important;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: normal;
    margin-bottom: 20px;
   
    font-size: 25pt !important;
}

.content-page .title {
	font-size: var(--xlg-text);
}

.content-page .subtitle {
	font-size: var(--md-text);
}

/*Common texts*/
.text-left {
	text-align: left;
}

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

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.text-sm {
	font-size: var(--sm-text);
}
.text-md {
	font-size: var(--md-text);
}
.text-lg {
	font-size: var(--lg-text);
}
.text-xlg {
	font-size: var(--xlg-text);
}

.text-bold {
	font-weight: 600;
}
.text-bolder {
	font-weight: 800;
}

.main p {
	margin: 10px auto;
}

.main b,
.main strong {
	font-weight: var(--text-bold);
}

.main ul,
.main ol {
	margin-left: 20px;
}

.main a {
	color: var(--dark);
	font-weight: var(--text-bolder);
	text-decoration: none;
	-webkit-transition: var(--normal-transition);
	-moz-transition: var(--normal-transition);
	-ms-transition: var(--normal-transition);
	transition: var(--normal-transition);
}
	/*.main a:hover,
	.main a:active {
		color: #ffffff !important;
	}*/

/*Common backgrounds and colors*/
.bg-white {
	background-color: var(--white);
}

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

.bg-black {
	background-color: var(--black);
}

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

.bg-gray-md {
	background-color: var(--gray-md);
}

.bg-green {
	background-color: var(--green);
}

.bg-red {
	background-color: var(--green);
}

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

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

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

.color-black {
	color: var(--black) !important;
}
	.color-black:hover {
		color: var(--black) !important;
	}

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

.color-green {
	color: var(--green) !important;
}
	.color-green:hover {
		color: var(--green) !important;
	}

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

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

/*Common separator*/
.separator {
	height: 2px;
	margin-bottom: 40px;
	margin-top: 40px;
	width: 100px;
}
	.separator:first-child {
		margin-top: 40px;
	}
	.separator:last-child {
		margin-bottom: 40px;
	}
	.separator.left {
		margin-left: 0px;
		margin-right: auto;
	}
	.separator.center {
		margin-left: auto;
		margin-right: auto;
	}
	.separator.right {
		margin-left: auto;
		margin-right: 0px;
	}

/*Generic forms*/
textarea,
textarea.form-control,
.main textarea {
	height: 100px;
}

/*Generic images*/
img.alignleft {
    display: block;
    margin-left: 0px;
    margin-right: auto;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.alignright {
    display: block;
    margin-left: auto;
    margin-right: 0px;
}

/*Top bar*/
.top-bar {
	background-color: #000000;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	padding: 0px 5%;
	width: 100%;
}
	.top-bar .top-menu {
		display: flex;
		flex-flow: row wrap;
		list-style: none;
		margin: 0px;
	}
	.top-bar .top-menu a {
		background-color: transparent;
		color: #ffffff;
		display: block;
		font-size: var(--xsm-text);
		font-weight: var(--text-bold);
		line-height: 50px;
		padding: 0px 15px;
		text-decoration: none;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}
		.top-bar .top-menu a:hover {
			background-color: #408ddc;
			color: var(--white);
		}

.top-bar .subitem.number a {
	font-weight: 400;
}

.top-bar .social a {
    font-size: var(--md-text);
    height: 50px;
    line-height: 50px;
    padding: 0px;
    width: 50px;
    text-align: center;
}

/*Header styles*/
.header {
	align-items: center;
	background-color: var(--white);
	border-right: 1px solid var(--white-dark);
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	left: 0px;
	/*overflow-y: auto;*/
	padding: 0px 38px !important;
	position: relative;
	top: 0px;
	width: 100%;
	z-index: 1000;
}
    .header.sticky {
    position: fixed !important;
}
	.header .logo {
		margin-bottom: 0px;
	}
		.header .logo img {
			display: block;
			max-height: 200px;
			height: auto;
			margin-left: auto;
			margin-right: auto;
			-webkit-transition: var(--normal-transition);
			-o-transition: var(--normal-transition);
			transition: var(--normal-transition);
		}

/*Nav menu*/
.nav {
	position: relative;
	text-align: center;
}
.nav ul.hmenu {
	align-items: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	list-style: none;
	margin: 0px;
}
	.nav ul.hmenu li {
		position: relative;
	}
		.nav ul.hmenu li a {
			color: var(--gray);
			cursor: pointer;
			display: inline-block;
			font-size: var(--xsm-text);
			font-weight: var(--text-bold);
			line-height: 40px;
			padding: 0px 15px;
			position: relative;
			text-decoration: none;
			/*text-transform: uppercase;*/
			-webkit-transition: var(--normal-transition);
			-o-transition: var(--normal-transition);
			transition: var(--normal-transition);
		}
			.nav > ul.hmenu > li > a:hover,
			.nav > ul.hmenu > li:hover > a,
			.nav > ul.hmenu > li.current-menu-item > a,
			.nav > ul.hmenu > li.current-menu-parent > a {
				background-color: var(--white);
				color:#ffbd00 !important;
			}
			
		.hmenu #menu-item-157 a {
            padding: 0px;
        }
        .hmenu #menu-item-157 img {
            width: 180px;
            height: auto;
        }

		.nav ul.hmenu li a span {
		    display: none;
			font-size: 22px;
			position: absolute;
			right: -10px;
			top: 8px;
		}

	.nav ul.hmenu ul {
		background-color: var(--green);
		list-style: none;
	}
		.nav ul.hmenu ul li {
			width: 100%;
		}
			.nav ul.hmenu ul li a {
				color: var(--gray);
				display: block;
				width: 100%;
			}

	.nav > ul.hmenu > li > ul {
		align-items: center;
		background-color: var(--white-dark);
		display: none;
		margin: 0px;
		position: relative;
		flex-flow: column wrap;
		width: 100%;
		    position: absolute;
	}

		.nav > ul.hmenu > li > ul > li:hover > a,
		.nav > ul.hmenu > li > ul > li > a:hover {
			color:#f4bf63 !important;
		}

		.nav > ul.hmenu > li > ul > li > ul {
			background-color: var(--dark-md);
			left: 100%;
			min-width: 400px;
			margin-left: 10px;
	    opacity: 0;
	    position: absolute;
	    top: 0px;
	    -webkit-transition: var(--normal-transition);
	    -o-transition: var(--normal-transition);
	    transition: var(--normal-transition);
			visibility: hidden;
		}
			.nav > ul.hmenu > li > ul > li:hover > ul {
				visibility: visible;
				margin-left: 0px;
				opacity: 1;
			}
			.nav > ul.hmenu > li > ul > li > ul > li {
				border-bottom: 1px solid var(--white);
				padding-bottom: 10px;
			}
			.nav > ul.hmenu > li > ul > li > ul > li > a {
				font-weight: bold;
				line-height: 40px;
				letter-spacing: 3px;
				text-transform: uppercase;
			}
			.nav > ul.hmenu > li > ul > li > ul ul {
				background-color: var(--dark-md);
				position: relative;
			}
				.nav > ul.hmenu > li > ul > li > ul ul li {
					width: 50%;
				}
					.nav > ul.hmenu > li > ul > li > ul ul li a {
						font-size: var(--xsm-text);
						line-height: 30px;
						padding-left: 35px;
						-webkit-transition: var(--normal-transition);
						-o-transition: var(--normal-transition);
						transition: var(--normal-transition);
					}
						.nav > ul.hmenu > li > ul > li > ul ul li a:hover {
							padding-left: 40px;
						}
						.nav > ul.hmenu > li > ul > li > ul ul li a:after {
							content: "\e606";
							color: var(--white);
							display: inline-block;
							font-family: 'simple-line-icons';
							font-size: 10px;
							font-variant: normal;
							font-weight: 400;
							letter-spacing: 0;
							position: absolute;
							speak: none;
							left: 20px;
							text-transform: none;
							top: 0px;
							vertical-align: middle;
						}

	/*Nav custom items styles*/
	.nav li#menu-item-20 > ul {
	    min-width: 450px;
	}


	
/*Boton responsive*/
.btn-resp {
	cursor: pointer;
	display: none;
	height: 30px;
	position: relative;
	width: 40px;
}
	.btn-resp:before,
	.btn-resp span,
	.btn-resp:after {
	 background-color: #ffb016;
	border-radius: 5px;
	content: '';
	display: block;
		height: 4px;
		opacity: 1;
		position: absolute;
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
		width: 100%;
	}
		.btn-resp:before,
		.btn-resp:after {
			left: 10%;
			width: 80%;
		}
			.btn-resp:before {
				top: -webkit-calc(50% - 10px);
				top: -moz-calc(50% - 10px);
				top: calc(50% - 10px);
			}
			.btn-resp span {
				top: -webkit-calc(50% - 2px);
				top: -moz-calc(50% - 2px);
				top: calc(50% - 2px);
			}
			.btn-resp:after {
				bottom: -webkit-calc(50% - 10px);
				bottom: -moz-calc(50% - 10px);
				bottom: calc(50% - 10px);
			}
				.btn-resp.active:before {
					top: -webkit-calc(50% - 2px);
					top: -moz-calc(50% - 2px);
					top: calc(50% - 2px);
					-webkit-transform: rotate(45deg);
					-moz-transform: rotate(45deg);
					transform: rotate(45deg);
				}
				.btn-resp.active span {
					opacity: 0;
				}
				.btn-resp.active:after {
					bottom: -webkit-calc(50% - 2px);
					bottom: -moz-calc(50% - 2px);
					bottom: calc(50% - 2px);
					-webkit-transform: rotate(-45deg);
					-moz-transform: rotate(-45deg);
					transform: rotate(-45deg);
				}









.header #flags {
	margin-left: 20px;
	width: auto !important;
}
	.header #flags ul {
		display: flex;
		flex-flow: row;
	}
		.header #flags li {
			float: none !important;
			line-height: 0px !important;
			margin: 0px 5px !important;
		}
		
.pse-btn {
    bottom: 20px;
    position: fixed;
    right: 70px;
    z-index: 1000;
}

/*Main*/
.main {
	margin-left: auto;
	margin-right: 0px;
	-webkit-transition: var(--normal-transition);
	-o-transition: var(--normal-transition);
	transition: var(--normal-transition);
	width: 100%;
}

.main .content-page {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.main .center-content {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

/*Common content header*/
.common-content-header {
	background-color: var(--green);
	color: var(--white);
	padding: 30px 2.5%;
	text-align: center;
}
	.common-content-header .title {
		margin: 0px;
		text-transform: uppercase;
	}

/*Woocommerce*/
div#image-gallery .modal-header {
	color: var(--green);
	font-size: var(--md-text);
	font-weight: 600;
	letter-spacing: 3px;
	text-align: center;
}
	div#image-gallery .modal-header h4 {
		text-align: center;
		width: 100%;
	}

div#image-gallery #image-gallery-image {
    max-height: 400px;
    width: auto;
    margin: auto;
    display: block;
}

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

.product-list li.item {
	margin-bottom: 20px;
    margin-top: 20px;
}

	.product-list .item .image-product {
	    border: 1px solid var(--white-dark);
	    border-radius: 7px;
	    overflow: hidden;
	    position: relative;
	    -webkit-transition: var(--normal-transition);
		-o-transition: var(--normal-transition);
		transition: var(--normal-transition);
	    z-index: 10;
	}
		.product-list .item:hover .image-product {
			border-color: var(--dark);
		}

		.product-list .item .image-product img {
			display: block;
			margin: auto;
		}

	.info-product {
	    margin-top: -7px;
		text-align: center;
	}

	.product-list .item .name-product {
		margin: 0px;
		padding: 22px 0px 15px 0px;
		text-align: center;
	}
		.product-list .item .name-product a {
			color: var(--dark);
			font-size: var(--sm-text);
			font-weight: 600;
			text-transform: capitalize;
		}

	.product-list .item .button-product {
		font-size: var(--sm-text);
		margin: 0px;
	}

/*Loop de videos*/
.videos-loop {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 100%;
}
	.videos-loop .item {
		margin: 20px;
		max-width: -webkit-calc(50% - 40px);
		max-width: -moz-calc(50% - 40px);
		max-width: -ms-calc(50% - 40px);
		max-width: calc(50% - 40px);
		width: 100%;
	}
		.videos-loop .item .video-wrapper {
			position: relative;
			padding-bottom: 56.25%; /* 16:9 */
			padding-top: 25px;
			height: 0;
		}
			.videos-loop .item .video-wrapper iframe {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
			}

/*Common header*/
.common-header {
	color: var(--white);
	font-size: 60px;
	font-weight: var(--text-black);
	padding-bottom: 120px;
	padding-top: 120px;
	position: relative;
	text-align: center;
	z-index: 1;
}
	.common-header:before {
		background-color: rgba(0,0,0,0.1);
		content: '';
		display: block;
		height: 100%;
		left: 0px;
		position: absolute;
		top: 0px;
		width: 100%;
		z-index: 1;
	}

.productos .subtitle {
	margin-top: 15px;
}
	.productos .subtitle,
	.productos .subtitle a {
		color: var(--dark);
		font-size: var(--sm-text);
		letter-spacing: 0px;
		text-align: center;
	}

/*seo-footer*/
#seo {
	background-color: var(--green);
	color: var(--white);
	padding: 15px 2.5%;
	text-align: center;
}
	#seo * {
		font-size: 10pt;
		margin: 0px;
	}

/*Pie de pagina*/
.footer {
	align-items: center;
	border-top: 1px solid var(--gray-md);
	color: var(--gray);
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	padding: 5px 5%;
	text-align: center
}
	.footer ul {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		list-style: none;
		margin: 0px;
	}
		.footer ul li {
			padding: 0px 25px;
			position: relative;
		}
			.footer ul li:first-child {
				padding-left: 0px;
			}
			.footer ul li a {
				color: var(--gray);
				display: inline-block;
				font-size: var(--sm-text);
				line-height: 33px;
				text-decoration: none;
			}
				.footer ul li a:after {
				    content: "\e606";
				    color: var(--white);
				    display: inline-block;
				    font-family: 'simple-line-icons';
				    font-size: var(--xsm-text);
				    font-variant: normal;
				    font-weight: 400;
				    height: 100%;
				    letter-spacing: 0;
				    line-height: 33px;
				    position: absolute;
				    speak: none;
				    right: -5px;
				    text-transform: none;
				    top: 0;
				    vertical-align: middle;
				}
				.footer ul li:last-child a:after {
					display: none;
				}

			.footer ul ul {
				display: none !important;
			}

	.footer .title {
		font-size: var(--sm-text);
		font-weight: var(--text-bold);
		letter-spacing: 2px;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.footer .item {
		margin: 10px auto;
	}

	.footer .item p {
		font-size: var(--sm-text);
		margin: 0px;
	}

	.footer .item.copy {
		font-size: var(--xsm-text);
	}
		.footer a {
			color: var(--gray);
		}
			.footer a:hover {
				color: var(--green);
			}

	.footer .item.copy {
		margin-top: 30px;
	}
		.footer .item.copy p {
			font-size: var(--xsm-text);
		}
		.footer .item.copy .sitename,
		.footer .item.copy a {
			font-weight: var(--text-bold);
		}

.search .post-title {
    font-size: var(--md-text);
    text-align: center;
    padding: 20px;
    background-color: var(--white-dark);
}

.search .post-title span {
    font-weight: var(--text-bolder);
}

/*Loop de videos*/
.videos-loop {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 100%;
}
	.videos-loop .item {
		margin: 20px;
		max-width: -webkit-calc(33.3333% - 40px);
		max-width: -moz-calc(33.3333% - 40px);
		max-width: -ms-calc(33.3333% - 40px);
		max-width: calc(33.3333% - 40px);
		width: 100%;
	}
		.videos-loop .item .video-wrapper {
			position: relative;
			padding-bottom: 56.25%; /* 16:9 */
			padding-top: 25px;
			height: 0;
		}
			.videos-loop .item .video-wrapper iframe {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
			}

.contact-home .form-group.buttons {
	text-align: center;
}

.ir-buttons {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
	.ir-buttons .item {
    align-items: center;
    border-radius: 14px;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    margin: 10px;
    overflow: hidden;
    padding: 0px;
    position: relative;
    -webkit-transition: var(--normal-transition);
    -o-transition: var(--normal-transition);
    transition: var(--normal-transition);
    width: -webkit-calc(33.33% - 20px);
    width: -moz-calc(33.33% - 20px);
    width: -ms-calc(33.33% - 20px);
    width: calc(33.3% - 20px);
}
		.ir-buttons .item:hover {
			background-color: #109138;
		}

		.ir-buttons .item .ir-link {
			height: 100%;
			left: 0px;
			position: absolute;
			top: 0px;
			width: 100%;
			z-index: 10;
		}

		.ir-buttons .item .ir-icon {
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			height: 100px;
			padding-left: 20px;
			padding-right: 20px;
			text-align: center;
			width: 30%;
		}

		.ir-buttons .item .ir-title {
			background-color: transparent;
			padding-left: 20px;
			padding-right: 20px;
			-webkit-transition: var(--normal-transition);
			-o-transition: var(--normal-transition);
			transition: var(--normal-transition);
			width: 70%;
		}

		.ir-buttons .item h1,
		.ir-buttons .item h2,
		.ir-buttons .item p {
			color: #3a3a3a;
			font-size: 22px;
			font-weight: 900;
			margin: 0px;
		}
			.ir-buttons .item:hover h1,
			.ir-buttons .item:hover h2,
			.ir-buttons .item:hover p {
				color: var(--white);
			}
		.ir-buttons .item .ir-title a  {
			font-size: 14px;
			margin-top: 5px;
		}
			.ir-buttons .item:hover .ir-title a {
				color: var(--white);
			}
/*Botones de nuestro equipo*/
.our-team-buttons {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.our-team-buttons .item {
	background: #fff;
    padding: 10px;
    position: relative;
    border-bottom: 2px solid #dddfe4;
	margin: 10px;
  	max-width: -webkit-calc(33% - 20px);
  	max-width: -moz-calc(33% - 20px);
  	max-width: -ms-calc(33% - 20px);
    max-width: calc(33% - 20px);
    text-align: center;
}
.our-team-buttons .item .img-holder {
	margin: 0 0 23px;
}
.our-team-buttons .item .name {
    font-weight: 700;
    font-size: 21px;
    color: #252626;
    display: block;
    line-height: 26px;
    margin: 0 0 13px;
    padding: 0 0 15px;
    position: relative;
    text-transform: uppercase;
}
	.our-team-buttons .item .name:after {
	    width: 40px;
	    height: 1px;
	    background: #adadb3;
	    position: absolute;
	    top: 100%;
	    left: 44%;
	    content: '';
	}
.our-team-buttons .item .designation {
    font-size: 16px;
    line-height: 20px;
    display: block;
    font-style: italic;
    color: #0b578e;
}

.our-team-buttons .item .hover-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2f7fd2;
    color: #f3f3f3;
    padding: 0 25px;
    opacity: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border: 10px solid #fff;
}
	.our-team-buttons .item:hover .hover-state {
	    opacity: 1;
	}

.our-team-buttons .item .hover-state .table {
    display: table;
    height: 100%;
  	width: 100%
}
	.our-team-buttons .item .hover-state .tabel-row {
	    display: table-row;
	}
		.our-team-buttons .item .hover-state .tabel-cell {
		    display: table-cell;
		    height: 100%;
		    vertical-align: middle;
		}

	.our-team-buttons .item .hover-state .name {
	    color: #f8ffff;
	}
		.our-team-buttons .item .hover-state .name:after {
		    background: #efeff6;
		}
	.our-team-buttons .item .hover-state .designation {
	    color: #d5edff;
	}

/*#menu-item-368 {
    position: absolute;
    display: grid;
    margin-left: -144px;
    margin-top: 35%;
    width: 17%;
}*/


.bloque.text-center {
    color: #fff;
    font-size: 15pt;
    font-weight: 600;
}

.zoom{
        /* Aumentamos la anchura y altura durante 2 segundos */
        transition: width 0.2s, height 0.2s, transform 0.2s;
        -moz-transition: width 0.2s, height 0.2s, -moz-transform 0.2s;
        -webkit-transition: width 0.2s, height 0.2s, -webkit-transform 0.2s;
        -o-transition: width 0.2s, height 0.2s,-o-transform 0.2s;       
    }
    .zoom:hover{
        /* tranformamos el elemento al pasar el mouse por encima al doble de
           su tama?o con scale(2). */
        transform : scale(1.1);
        -moz-transform : scale(1.1);      /* Firefox */
        -webkit-transform : scale(1.1);   /* Chrome - Safari */
        -o-transform : scale(1.1);        /* Opera */
    opacity: 0.8;
    }

.wpb_text_column.wpb_content_element.spac {
    padding-top: 50px;
    padding-bottom: 50px;
}



.botonW {
        position: fixed;
    left: 0;
    bottom: 36px;
    z-index: 2000;
    border-radius: 155px !important;
    background: #ffae00;
   padding: 12px 5px;
    margin-left: 7px;
	border: solid 1px #ffffff;

}

.botonW a {
   color: #ffffff;
   font-size: 14px;
   text-decoration: none;
   letter-spacing: 1px;
   font-weight: 600;
}


.fondo-malla{    background-image: url(https://www.mallasdeseguridad.com.co/wp-content/uploads/2020/06/malla.png);
    position: relative;
    background-size: 3%;

}


.bg-circulo{
    background-color: #ffad00 !important;
}


p.parrafo-trabajamos{        font-size: 10pt !important;
    color: #000000 !important;
    font-weight: 500;}


p.subtitle2{
	font-size: 11pt !important;
    text-transform: uppercase !important;
    color:#000000 !important;
    padding: 2% 4%;
  
    font-weight: bold;
}


/****** Espacio de los botones cómo trabajamos*******/

.espacio-p{padding:0 5%;}



.name {
    font-weight: 700;
    font-size: 21px;
    color: #252626;
    display: block;
    line-height: 26px;
    margin: 0 0 13px;
    padding: 0 0 15px;
    position: relative;
   
}


p.title.text-left.color-amarillo{
	color:#ffb300 !important;
	
}

::marker {
    color: #ffae00;
}

.services-loop > .wpb_column  {
    border: 1px solid #858585;
    margin: 13px;
    padding-bottom: 0px;
    padding: 20px 25px;
    -webkit-transition: var(--normal-transition);
    -o-transition: var(--normal-transition);
    transition: var(--normal-transition);
    /*max-width: -webkit-calc(38.33% - 38px);
    max-width: -moz-calc(38.33% - 38px);
    max-width: -ms-calc(38.33% - 38px);*/
    max-width: 360px;
}
	.services-loop > .wpb_column.no-border {
		border-color: transparent;
		max-width: -webkit-calc(16.665% - 40px);
		max-width: -moz-calc(16.665% - 40px);
		max-width: -ms-calc(16.665% - 40px);
		max-width: calc(16.665% - 40px);
	}
	.services-loop > .wpb_column:hover {
		box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
	}
		.services-loop > .wpb_column.no-border:hover {
			box-shadow: 0px 0px 15px rgba(0,0,0,0);
		}

	.service-item {
	    font-size: var(--xsm-text);
		text-align: center;
	}
		.service-item img {
			height: auto;
    /* -webkit-filter: grayscale(1); */
    /* filter: grayscale(1); */
    /* opacity: 0.5; */
    /* width: 100px; */
    /* -webkit-transition: var(--normal-transition); */
    -moz-transition: var(--normal-transition);
    -ms-transition: var(--normal-transition);
    /* transition: var(--normal-transition); */
		}
			.service-item:hover img {
				-webkit-filter: grayscale(0);
				filter: grayscale(0);
				opacity: 1;
			}
		.service-item h1 {
    color: #002c1a;
    font-size: 12pt;
    font-weight: bold;
}
		.service-item a.button {
			font-size: var(--xsm-text);
			margin-top: 15px;
			padding: 10px 20px;
		}

.opacity-layer-bg {
	position: relative;
}
	.opacity-layer-bg:before {
		background-color: rgba(0, 0, 0, 0.52);
		bottom: 0px;
		content: '';
		display: block;
		left: 0px;
		position: absolute;
		right: 0px;
		top: 0px;
		z-index: 1;
	}

@media (max-width: 767px) 
 .services-loop > .wpb_column  {
	max-width: calc(82.33% - 38px);
}

.modula-items .figc .jtg-title {
    color: #000000 !important;
    background: #fff !important;
    margin-top: 60% !important;
	font-size: 14px !important;
	font-weight: 500 !important;
    text-align: center !important;
text-transform: uppercase !important;
}