/*
Theme Name: Inmobiliaria Valdebebas
Theme URI: #
Author: Squembri | Juan M.
Author URI: https://squembri.com
Description: Theme a medida para el proyecto Inmobiliaria Valdebebas
Version: 1.2.2
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.2
License: GPL version 2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0
Text Domain: Inmobiliaria Valdebebas
*/
/* 

TOC

1. Variables
2. General	
	.container
	.container.medio
	.section-separator
	.page-wrapper
	.text-content
		.text-content h1
		.text-content h2
		.text-content h3
		.text-content h4
		.text-content h5
		.text-content h6
		.text-content p
		.text-content ul
		.text-content ol
		.text-content li
		.text-content blockquote
		.text-content cite
3. Botones
	thm-btn
	thm-btn.transparente
	thm-btn.transparente.small
4. Botón editar post y WP

*/
/* --------------------------------------------- */
/* Variables */
:root {
  --theme-font: 'Open Sans', sans-serif;
  --theme-font-two: 'Unna', sans-serif;
  --theme-font-three: 'Unna', sans-serif;
  --theme-font-four: 'Unna', sans-serif;
  --theme-gray: #F1EDE7;
  --theme-gray-rgb: 241, 237, 231;
  --theme-white: #ffffff;
  --theme-white-rgb: 255, 255, 255;
  --theme-base: #B0A083;
  --theme-base-rgb: 176, 160, 131;
  --theme-black: #2A2A2A;
  --theme-btn-light: #DFD7C9;
  --theme-btn-medium: #B0A083;
  --theme-btn-dark: #2A2A2A;
}
/* --------------------------------------------- */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* General */
html {
  scroll-padding-top: 120px;
}
body {
  font-family: var(--theme-font);
  color: var(--theme-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.52px;
}
body.locked {
  overflow: hidden;
}
a {
  text-decoration: underline;
}
a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  transition: all 500ms ease;
}
a:hover {
  text-decoration: underline;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::placeholder {
  color: inherit;
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-font-two);
  color: var(--theme-black);
  margin: 0;
}
p {
  margin: 0;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::placeholder {
  color: inherit;
  opacity: 1;
}
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
::placeholder {
  color: inherit;
  opacity: 1;
}
.section-separator {
  border-color: var(--theme-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}
h1 {
  font-size: 29px;
  font-weight: bold;
  line-height: 33px;
  letter-spacing: 1.4px;
}
h2 {
  font-size: 29px;
  font-weight: bold;
  line-height: 38.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0px;
}
h4 {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
h5 {
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
h6 {
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
blockquote {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #f9f9f9;
  border-left: 5px solid #ccc;
  font-style: italic;
}
cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-align: right;
  color: #666;
}
/* --------------------------------------------- */
/* Botones */
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--theme-base);
  color: var(--theme-black);
  font-family: var(--theme-font-two);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 16px 50px 17px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
  text-decoration: none;
}
.thm-btn::before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: var(--theme-black);
  content: "";
  transform: scaleY(0) rotateX(0deg);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}
.thm-btn:hover {
  color: var(--theme-white);
  text-decoration: none;
}
.thm-btn:hover:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
/* btn Verson 2 */
.thm-btn.v2,
.thm-btn.transparente {
  background-color: var(--theme-black);
  color: var(--theme-white);
}
.thm-btn.v2:before,
.thm-btn.transparente:before {
  background-color: var(--theme-base);
}
.thm-btn.v2:hover,
.thm-btn.transparente:hover {
  color: var(--theme-black);
}
/* btn v2 y v3 */
.thm-btn.v3,
.thm-btn.small {
  padding: 8px 25px 8px;
}
/* Botón editar post y WP */
.sq_edit_post {
  position: fixed;
  z-index: 9999999;
  bottom: 210px;
  left: 30px;
  border-radius: 100%;
  background: #333;
  border: 3px #e00034 solid;
  box-shadow: 0 1px 16px 0px rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}
.sq_edit_post a {
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sq_edit_post a svg {
  width: 25px;
  height: 20px;
}
.sq_edit_post a svg path {
  fill: #fff;
  transition: 0.3s;
}
.sq_edit_post.sq_wp_link {
  bottom: 90px;
}
.sq_edit_post.sq_info_link {
  bottom: 150px;
}
.sq_edit_post:hover {
  border: 3px #000 solid;
}
.sq_edit_post:hover a svg path {
  fill: #ebebeb;
}
figure.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
}
