/* apply a natural box layout model to all elements, but allowing components to change */
html {
	box-sizing: border-box;
	font-size: 62.5%; /* 1rem = 10px*/
}
*,
*:before,
*:after {
	box-sizing: inherit;
	scroll-behavior: smooth;
}

@font-face {
	font-family: "Bauhaus Std Medium";
	src: url("../fonts/Bauhaus Std Medium.otf");
}

body {
	font-family: "Lato", sans-serif;
	font-size: 1.6rem;
	line-height: 2;
	min-height: 100%;
}

h2 {
	color: rgb(241, 133, 0);
	font-size: 3.4rem;
	text-align: center;
}

h3 {
	margin: 0;
}

img {
	max-width: 100%;
}

.contenedor {
	width: 100%;
	max-width: 120rem;
	margin-left: auto;
	margin-right: auto;
}
.flex-space-between {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}
.flex-space-between-row {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}
/**** header */

.site-header {
	background: linear-gradient(rgba(253, 194, 1, 0.2), rgba(255, 213, 135, 0.2)),
		url(../img/fondo.webp);
	background-size: cover;
	background-position: center center;
	height: 100%;
}

.site-header h1 {
	display: none;
}

.site-header .nube {
	display: none;
	visibility: hidden;
	margin: 0;
	max-height: 55vh;
}

.barra-header {
	/* background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)); */
	top: 0;
	background: rgba(0, 0, 0, 0.5);
	height: 10rem;
	vertical-align: center;
	transition: all ease-in-out 0.5s;
}
.barra-header.sticky {
	background-color: #000;
	position: fixed;
	width: 100%;
	height: 5rem;
	transition: all ease-in-out 0.5s;
	z-index: 5;
}
.barra-imagen {
	width: 100%;
}
/* .barra {
  color: #fff;
  align-items: center;
  padding:.8rem;
} */
.barra-nav {
	display: block;
	width: 100%;
	z-index: 10;
}

.barra-nav nav {
	width: 100%;
	text-align: center;
	display: none;
	background: #000;
}

.barra-nav nav a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 1rem;
}

.barra-nav nav a:hover {
	/* background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)); */
	background: rgba(0, 0, 0, 0.5);
	color: rgb(255, 191, 112);
}
#wsp-menu i {
	border-radius: 50%;
	background: radial-gradient(green 65%, transparent 1%);
	text-shadow: 3px 3px 20px rgba(255, 255, 255, 0.9);
	transition: all ease-in-out 0.5s;
}
#wsp-menu:hover i {
	color: #fff;
	transition: all ease-in-out 0.5s;
	transform: scale(150%);
}
.barra-imagen a img {
	height: 10rem;
	transition: all ease-in-out 0.5s;
}

.barra-header.sticky .barra-imagen img {
	height: 5rem;
	transition: all ease-in-out 0.5s;
}
.menu {
	display: block;
	margin: 0 0.1rem;
	text-align: center;
}

.menu a {
	text-decoration: none;
	color: #fff;
}

.menu i {
	font-size: 3.25rem;
	margin-left: 1rem;
}

.logo-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

#divNovedad {
	margin: 3%;
	background-color: orangered;
	border-radius: 10px;
	padding: 1%;
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}
#intWS {
	position: relative;
	width: 100%;
	min-height: 90vh;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin-top: 20px;
}
#imgWS {
	width: inherit;
	min-height: inherit;
	background-image: url("../img/argontech-wa-h-01.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.7));
	animation: aniWS 15s infinite alternate ease-in-out;
}
@media (orientation: landscape) and (max-width:768px) {
	#imgWS {
		width: 90%;
		background-image: url("../img/MEGA-WA-02.jpg");
		animation: none;
	}
}
@keyframes aniWS {
	33% {
		background-image: url("../img/argontech-wa-h-01.jpg");
	}
	66% {
		background-image: url("../img/argontech-wa-h-02.jpg");
	}
	100% {
		background-image: url("../img/argontech-wa-h-03.jpg");
	}
}

#divNovedad p {
	line-height: 2rem;
	text-align: center;
	color: #fff;
	transition: 0.5s;
}
#divNovedad p.titulo {
	font-size: 1.3em;
}
#divNovedad p strong {
	letter-spacing: 0.05rem;
	animation: animate 1.5s linear infinite;
}
@keyframes animate {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
	}
}
div#divNovedad p {
	margin: 5px 0;
	vertical-align: middle;
}
#divNovedad p em {
	vertical-align: middle;
	border-radius: 25px 5px;
	padding: 10px 5px;
	background-color: black;
}
#divNovedad p em i {
	background-color: orangered;
	border-radius: 50%;
}
#divNovedad p em span {
	display: none;
}
#divNovedad p span {
	font-weight: bolder;
}
#divNovedad ul {
	margin: 0;
}
#divNovedad li {
	color: #fff;
	font-weight: bolder;
}
#divNovedad p#extra {
	max-width: 400px;
	text-align: justify;
	margin-top: -100px;
	margin-bottom: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s, margin 0, 5s linear;
	font-size: small;
	padding: 0 5px;
}
#divNovedad:hover p#extra {
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
.linea-contacto {
	color: #333;
	font-size: 1.5rem;
	font-weight: bold;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	text-align: center;
	/* cursor: pointer; */
}

.linea-contacto a {
	color: #333;
	text-decoration: none;
	margin: 0 2rem;
}
.linea-contacto a:visited {
	color: #333;
}
.linea-contacto a:hover {
	color: orangered;
}

.linea-contacto i {
	margin-right: 1rem;
}

@media only screen and (min-width: 768px) {
	.site-header {
		min-height: 100vh;
	}
	#intWS {
		position: absolute;
		left: 25%;
		min-height: 70vh;
		width: 50%;
	}
	.site-header .nube {
		display: block;
		visibility: visible;
		/* position: absolute; */
	}
	#divNovedad {
		float: right;
	}
	#divNovedad p em span {
		display: inline;
	}
	#divNovedad p.titulo {
		font-size: 1.7em;
	}
	.flex-space-between {
		flex-direction: row;
	}

	.barra {
		display: flex;
		justify-content: space-between;
	}
	.barra-nav {
		display: flex;
		justify-content: right;
	}
	.barra-nav nav {
		width: 95%;
		display: block;
		background: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.barra-imagen {
		width: auto;
	}

	.barra-nav nav a {
		color: #fff;
		display: inline;
		/* margin-right: 2rem ; */
		/* background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)); */
	}

	.barra-nav nav a:hover {
		background: none;
		color: rgb(255, 191, 112);
	}

	.site-header .nube {
		margin: 4rem;
		max-height: 60vh;
	}
	.nube.acomodar {
		margin-top: 12rem;
	}
	.menu {
		display: none;
	}

	.linea-contacto {
    bottom: 0;
    position: absolute;
		margin: 0 auto;
		font-size: 2rem;
    width: 100%;
	}
}
@media only screeen and (min-width: 992px) {
	.contenedor {
		width: 95%;
		max-width: 120rem;
		margin-left: auto;
		margin-right: auto;
	}
	.barra-nav nav {
		width: 90%;
	}
}
/***** servicios *****/

.eservicios {
	text-align: center;
	border: darkorange 0.25rem solid;
	background: linear-gradient(#ffae00, #ffd079);
	color: #fff;
	margin: 1rem;
	border-radius: 0.5rem;
	/* height: 35rem; */
	padding: 0.75rem;
	margin-bottom: 2.5rem;
}

.eservicios p {
	color: #333;
}

.eservicios p span {
	font-weight: bold;
}

.eservicios h3 {
	text-shadow: 0.3rem 0.2rem 0 #7a7a7a;
}

@media (min-width: 480px) {
	.geservicios {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.eservicios {
		width: calc(50% - 2rem);
	}
}

@media (min-width: 768px) {
	.eservicios {
		width: calc(33.3% - 2rem);
	}
}

/**** quienes *****/
.quienes {
	background: linear-gradient(#f1f1f1, #ececec);
	text-align: center;
	padding: 0.25rem;
}

.quienes span {
	color: darkorange;
	text-align: center;
}

.equienes {
	border: darkorange 0.25rem solid;
	text-align: center;
	margin: 1rem;
	padding: 0.75rem;
	margin-bottom: 2.5rem;
	border-radius: 0.75rem;
}

.quienes iframe {
	width: 100%;
	height: 100%;
	padding: 1rem;
}

.quienes .marco-video {
	margin: 2rem 1rem;
	text-align: center;
	border: darkorange 0.25rem solid;
	padding: 1rem 0 0 0;
	background-color: rgba(128, 128, 128, 0.2);
	border-radius: 0.75rem;
	height: 40rem;
}

@media (min-width: 480px) {
	.gequienes {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.equienes {
		width: calc(50% - 2rem);
	}
}

@media (min-width: 768px) {
	.equienes {
		width: calc(25% - 2rem);
	}
}

/**** productos ****/
.productos {
	text-align: center;
}

.producto {
	border: #7a7a7a 0.1rem solid;
	text-align: center;
	width: calc(95% - 1rem);
	padding: 1rem;
	height: 45rem;
}

.productos .item .megas {
	border-top: #6cc2e7 2rem solid !important;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0)
		),
		url(../img/backmegas.jpg);
	background-size: cover;
}

.productos .item .megas:hover {
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.2)
		),
		url(../img/backmegas.jpg);
}

.productos .item .acopio {
	border-top: #ff9d00 2rem solid !important;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0.5)
		),
		url(../img/backacopio.jpg);
	background-size: cover;
}

.productos .item .acopio:hover {
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.8),
			rgba(255, 255, 255, 0.8)
		),
		url(../img/backacopio.jpg);
}

.productos .item .dolar {
	border-top: #69be74 2rem solid !important;
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0.5)
		),
		url(../img/backdolar.jpg);
	background-size: cover;
}

.productos .item .dolar:hover {
	background-image: linear-gradient(
			rgba(255, 255, 255, 0.7),
			rgba(255, 255, 255, 0.7)
		),
		url(../img/backdolar.jpg);
}

.owl-nav span {
	font-size: 4rem;
}

@media (min-width: 480px) {
	.productos h3 {
		font-size: 2rem;
	}

	.productos p {
		font-size: 1.7rem;
	}

	.producto {
		height: 32rem;
	}
}

@media (min-width: 768px) {
	.productos h3 {
		font-size: 3rem;
	}

	.productos p {
		font-size: 2rem;
	}

	.producto {
		height: 35rem;
	}
}

/****** contacto *****/
.formulario {
	margin: 0 auto;
	background-color: #ffd079;
	border-radius: 0.5rem;
	padding: 1rem;
}

.contenedor-form {
	text-align: center;
	margin-bottom: 5rem;
}

.contenedor-form h3 {
	color: #333;
}

.contenedor-form button {
	background-color: darkorange;
	color: #fff;
	width: 15rem;
	height: 3rem;
	border: none;
	border-radius: 0.25em;
	margin: 0.25rem;
}

.contenedor-form input,
textarea {
	display: block;
	width: 100%;
}

.contenedor-form .texto {
	text-align: left;
	margin: 0.5rem;
}

.contacto h3 {
	text-align: center;
	color: #ff9d00;
}

@media (min-width: 768px) {
	.formulario {
		width: 65%;
	}

	.contenedor-form label {
		width: 15%;
	}
}

/****** footer *****/

footer {
	background-color: #333;
	color: #fff;
	text-align: center;
}

footer h3,
hr {
	color: darkorange;
	margin: 0 auto;
}

footer hr {
	color: darkorange;
	margin: 0 auto 2rem;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer a:visited {
	color: #fff;
	text-decoration: none;
}

.efooter {
	padding: 1rem;
	text-align: left;
}

.efooter iframe {
	width: 100%;
}

.efooter i {
	margin-right: 1rem;
}

.flecha {
	background-color: #0065d2;
	width: 3rem;
	height: 3rem;
	text-align: center;
	align-items: center;
	border-radius: 0.25rem;
}

.flecha i {
	color: #fff;
	font-size: 2rem;
}

footer .copy {
	background-color: #000;
}

.qr-afip {
	margin-top: 3rem;
	text-align: right;
}

.qr-afip p {
	margin: 0;
}

.qr-afip img {
	width: 5rem;
}

@media (min-width: 480px) {
	.gefooter {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.efooter {
		width: calc(50% - 2rem);
	}
}

@media (min-width: 768px) {
	.efooter {
		width: calc(33.3% - 2rem);
	}
}

/* videos */
#videos-page {
	background: url(../img/fondo.webp);
	background-position: center;
	background-size: cover;
}

#videos-page section {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	min-height: 100%;
	/* padding-top: 20px; */
}
#gestion {
	position: relative;
	top: 0;
}
#videos-page h2 {
	letter-spacing: 0.5rem;
	text-transform: uppercase;
	font-size: 2rem;
	margin: 0;
	color: #cbf196;
}
#gestion h2 {
	font-size: 2rem;
	margin: 0;
}
#gestion.acomodar {
	position: relative;
	margin-top: 100px;
}

.contenedor-videos {
	min-height: 40rem;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.contenedor-videos div {
	width: 100%;
}

.menu-videos ul {
	margin: 0;
	padding: 10px;
	list-style: none;
}
.menu-videos ul li a {
	font-weight: bold;
	color: #e0effa;
	text-decoration: none;
}
.menu-videos ul li:hover a {
	color: orangered;
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	font-size: large;
	transition: all ease-in-out 0.3s;
}
.menu-videos ul li a.activo {
	color: orangered;
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	font-size: large;
}
.contenedor-videos .marco-video {
	text-align: center;
	border: #8c959c 0.25rem solid;
	padding: 1rem 0 0 0;
	background-color: rgba(128, 128, 128, 0.2);
	border-radius: 0.75rem;
	max-height: 40rem;
}

.contenedor-videos .marco-video iframe {
	width: 100%;
	height: 100%;
	padding: 1rem;
}
.barra-nav nav a.disabled {
	color: #7a7a7a;
	cursor: not-allowed;
}
@media only screen and (min-width: 768px) {
	.menu-videos {
		max-width: 33%;
	}
	.contenedor-videos {
		flex-direction: row;
	}
	.contenedor-videos div {
		width: 50%;
	}
	#videos-page h2 {
		font-size: 3rem;
	}
	.contenedor-videos .marco-video {
		margin: 0 1rem;
	}
}
p.copy {
	margin: 0;
}