/*
Theme Name: WallRaff
Theme URI: https://wallraff.com.ar
Description: Plantilla exclusiva para WallRaff.
Author: Pixelarg
Author URI: https://pixelarg.com
Version: 0.9
License: BSD 2-Clause
License URI: http://opensource.org/licenses/bsd-license.php
*/

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {font: 13px Helmet, Freesans, sans-serif;}

html {
  scroll-behavior: smooth;
}

/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */

/* We like off-black for text. */
body, select, input, textarea {color: #333; font-family: "Roboto Slab", serif;}

a {color: #03f; 	    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #fcd700; color: #fff; text-shadow: none;}
::selection {background: #fcd700; color: #fff; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;}

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }


/* And here begins the WordPress fun.
-------------------------------------------------------------------------------*/

#wrapper {width: 100%; margin: 0 auto;}

.ir-arriba {
	display:none;
	padding:20px;
	background:#00ccff;
	font-size:20px;
	color:#fff;
	cursor:pointer;
	position: fixed;
	bottom:20px;
	right:20px;
	z-index: 999999;
}

.fa-arrow-alt-circle-up:before {
    content: "\f357";
}

/* Header
-------------------------------------------------------------------------------*/

#top-datanav {
	background: #000;
	width: 100%;
	display: block;
	color: #fff;
	font-size: 0.8rem;
	text-decoration: none;
	padding: 5px 10px;
	text-align: center;
	overflow: hidden;
}

#top-datanav ul {
    list-style: none;
}

#top-datanav li {
    display: inline-block;
    margin: 8px 20px 0;
}

#top-datanav li a {
    color: #fff;
    text-decoration: none;
}

#top-datanav li a:hover {
    color: #00ccff;
    text-decoration: none;
}

#top-datanav li i {
    color: #00ccff;
}

header {
    width: 100%;
    padding: 10px;
    overflow: hidden;
    margin: 0;
    display: flex;
	    flex-wrap: wrap;
    justify-content: space-around;
	align-items: flex-start;
}

#logo-header {
    width: 350px;
	    display: flex;
}

#menu-top {
    display: flex;
    min-width: 370px;
    max-width: 570px;
    align-self: center;
	text-align: center;

}

ul#menu-menu-top {
    display: inline-block;
}

ul#menu-menu-top li {
    display: inline-block;
	margin: 0 10px;
}

ul#menu-menu-top li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

ul#menu-menu-top li a:hover {
    color: #00ccff;
}


/* Slider
-------------------------------------------------------------------------------*/

/* Sections Home
-------------------------------------------------------------------------------*/

section.homesection {
    width: 100%;
    display: block;
    overflow: hidden;
	padding: 10px;
}

section.homesection.black {
    background: #000;
	color: #fff;
}

section.homesection.white {
    background: #fff;
	color: #000;
}

.home-cont {
    width: 100%;
    max-width: 1140px;
    margin: 50px auto;
}

p {
    font-size: 18px;
    margin: 0 0 20px;
}

h2 {
	font-size: 36px;
	text-transform: uppercase;
	margin: 0 0 20px;
}

h3 {
	font-size: 30px;
	text-transform: uppercase;
	margin: 0 0 20px;
}

h4 {
	font-size: 24px;
	text-transform: uppercase;
	margin: 0 0 20px;
}


h5 {
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 20px;
}

h5.black {
	color: #000;
}

h5.bold {
	font-weight: bold;
}

/* Quienes Somos
-------------------------------------------------------------------------------*/

.columnas-home {
    column-count: 3; /* número de columnas */
    column-gap: 150px; /* ancho de columnas */
    column-rule: 5px outset #202020; /* separación de columnas */
	margin: 60px 0;
}

/* Servicios
-------------------------------------------------------------------------------*/

#bloques-servicios-home {
    width: 100%;
    margin: 0 0 10px;
    overflow: hidden;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-evenly;
}

.bloque-servicio-home {
    width: 30%;
	position: relative;
	padding: 20px;
    margin: 30px 10px;
}

.bloque-servicio-home:hover {
	background: rgba(32, 32, 32, 0.1);
	transition: 0.6s;
}

.bloque-servicio-home:before {
    border: 3px solid #202020;
    content: "";
    position: absolute;
    height: 50px;
    width: 50px;
	top: 0;
    left: 0px;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.bloque-servicio-home:after {
    border: 3px solid #202020;
    content: "";
    position: absolute;
    height: 50px;
    width: 50px;
    right: 0px;
    bottom: 0;
    border-top-color: transparent;
    border-left-color: transparent;
}

.bloque-servicio-home:hover::before {
    border: 6px solid #202020;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.bloque-servicio-home:hover::after {
    border: 6px solid #202020;
	border-top-color: transparent;
    border-left-color: transparent;
}

.bloque-servicio-home::before, .bloque-servicio-home::after {
	-webkit-transition: all 300ms linear 0s;
    -moz-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    -ms-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

span.black.bloquetext {
    font-size: 16px;
}

a.no-underline {
	text-decoration: none;
}


/* Contacto
-------------------------------------------------------------------------------*/

#map {
    max-height: 400px;
}

/* Contacto
-------------------------------------------------------------------------------*/


div.wpcf7 {
	color: #fff;
	margin: 30px 0 !important;
}

form.wpcf7-form p {
	text-align: center;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    max-width: 350px;
    min-width: 200px;
    width: 100%;
	margin-top: 10px;
}

div.wpcf7 .ajax-loader {display: none !important;}

input.wpcf7-form-control {
    max-width: 350px;
    min-width: 200px;
    width: 100%;
	margin-top: 10px;
}

.wpcf7-submit {
    width: 100%;
	max-width: 180px !important;
	    margin: 0 0 1%;
    padding: .5% 0;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    border: 0;
    font-weight: bold;
    background: #00ccff;
    color: #fff;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
}

.wpcf7-submit:hover {
	background: #00b9e9;
	color: #FFF;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    border-radius: 15px;
	font-size: 24px;
}

div.wpcf7 img.ajax-loader {
	display: none;
}

span.wpcf7-spinner {
    display: none;
}

/* Footer
-------------------------------------------------------------------------------*/

footer {
	background: #000;
	color: #fff;
	padding: 5px 10px;
	display: block;
    overflow: hidden;
}

footer small {
	float: right;
}

/* Print styles!
-------------------------------------------------------------------------------*/
@media print {

}


/* Media queries!
-------------------------------------------------------------------------------*/

@media only screen and  (max-width: 768px) {
	
#logo-header {
    margin: 20px 0;
}

/* Quienes Somos
-------------------------------------------------------------------------------*/

.columnas-home {
    column-count: 2; /* número de columnas */
    column-gap: 100px; /* ancho de columnas */
    column-rule: 5px outset #202020; /* separación de columnas */
	margin: 60px 0;
}
	
.bloque-servicio-home {
    width: 45%;
	position: relative;
	padding: 20px;
    margin: 30px 5px;
}
	
	h5 {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 20px;
}
	
}

@media only screen and  (max-width: 480px) {
	
#logo-header {
    width: 100%;
	text-align: center;
    margin: 10px 0;
}
	
/* Quienes Somos
-------------------------------------------------------------------------------*/

.columnas-home {
    column-count: 1; /* número de columnas */
    column-gap: 150px; /* ancho de columnas */
    column-rule: 5px outset #202020; /* separación de columnas */
	margin: 60px 0;
}
	
.bloque-servicio-home {
    width: 100%;
	position: relative;
	padding: 20px;
    margin: 30px 10px;
}
	
}

/* Always do mobile-first, and consider using em units: http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries-ftw

@media screen and (min-width: 480px) {

} */
