/*
Theme Name: Enrique Olver
Theme URI: https://wordpress.org/themes/twentytwentytwo/
Author: JUNGLA
Author URI: JUNGLA
Description: Tema hecho a la medida para Enrique Olvera
Requires at least: 5.9
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentytwo
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments

Enrique Olver WordPress Theme, (C) 2021 WordPress.org
Enrique Olver is distributed under the terms of the GNU GPL.
*/

/*
 * Font smoothing.
 * This is a niche setting that will not be available via Global Styles.
 * https://github.com/WordPress/gutenberg/issues/35934
 */



body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: "Argesta Display"!important;
}

/*
 * Text and navigation link styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

main{
	min-height: 65vh;
}

a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25ch;
}

a:hover,
a:focus {
	text-decoration-style: dashed;
}

a:active {
	text-decoration: none;
}



.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
	text-decoration: underline;
	text-decoration-style: solid;
}

/*
 * Search and File Block button styles.
 * Necessary until the following issues are resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/36444
 * https://github.com/WordPress/gutenberg/issues/27760
 */

.wp-block-search__button,
.wp-block-file .wp-block-file__button {
	background-color: var(--wp--preset--color--primary);
	border-radius: 0;
	border: none;
	color: var(--wp--preset--color--background);
	font-size: var(--wp--preset--font-size--medium);
	padding: calc(.667em + 2px) calc(1.333em + 2px);
}

/*
 * Button hover styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

.wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
	opacity: 0.90;
}

/*
 * Alignment styles.
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Enrique Olver. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */

.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.is-root-container .wp-block[data-align="full"] > .wp-block-cover {
	padding-left: var(--wp--custom--spacing--outer);
	padding-right: var(--wp--custom--spacing--outer);
}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align="full"] {
	margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	width: unset;
}

/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
	margin-left: auto !important;
	margin-right: auto !important;
	width: inherit;
}

/*
 * Responsive menu container padding.
 * This ensures the responsive container inherits the same
 * spacing defined above. This behavior may be built into
 * the Block Editor in the future.
 */

.wp-block-navigation__responsive-container.is-menu-open {
	padding-top: var(--wp--custom--spacing--outer);
	padding-bottom: var(--wp--custom--spacing--large);
	padding-right: var(--wp--custom--spacing--outer);
	padding-left: var(--wp--custom--spacing--outer);
}



.anim{
    max-width: 80%;
    max-width: 700px;
    margin: auto;
    display: block;
}

.animate circle#circulo{
    -webkit-animation: circulo 3s normal forwards;
	-moz-animation: circulo 3s normal forwards;
	-o-animation: circulo 3s normal forwards;
	animation-delay: 1s;

    transform: translate(434.312px, 382.139px) rotate(-90deg);
}

.animate.animateReverse circle#circulo{
    -webkit-animation: circuloReverse 3s normal forwards;
	-moz-animation: circuloReverse 3s normal forwards;
	-o-animation: circuloReverse 3s normal forwards;
	animation-delay: 1s;

    transform: translate(120px, 382px) rotate(-90deg);
}

@keyframes circuloReverse {
	100% {
        transform: translate(434.312px, 382.139px) rotate(-90deg);
	}
	0% {
        transform: translate(120px, 382px) rotate(-90deg);
	}
}

@keyframes circulo {
	0% {
        transform: translate(434.312px, 382.139px) rotate(-90deg);
	}
	100% {
        transform: translate(120px, 382px) rotate(-90deg);
	}
}

.animate line#linea1 {
	-webkit-animation: linea 3s normal forwards;
	-moz-animation: linea 3s normal forwards;
	-o-animation: linea 3s normal forwards;
	animation-delay: 1s;

    transform: translate(37px, 364.5px) rotate(0deg);
}

.animate.animateReverse line#linea1{

    -webkit-animation: lineaReverse 3s normal forwards;
	-moz-animation: lineaReverse 3s normal forwards;
	-o-animation: lineaReverse 3s normal forwards;
	animation-delay: 1s;
    
    transform: translate(40px, 180px) rotate(-30deg);
}

@keyframes lineaReverse {
	0% {
        
        transform: translate(40px, 180px) rotate(-30deg);
	}
	99.8% {
        transform: translate(37px, 364.5px) rotate(0deg);
	}
	
	100% {
        transform: translate(37px, 364.5px) rotate(0deg);
	}
}

@keyframes linea {
	0% {
        transform: translate(37px, 364.5px) rotate(0deg);
	}
	.8% {
        transform: translate(37px, 364.5px) rotate(0deg);
	}
	100% {
        transform: translate(40px, 180px) rotate(-30deg);
	}
}

.animate #linea2 {
	-webkit-animation: linea2 3s normal forwards;
	-moz-animation: linea2 3s normal forwards;
	-o-animation: linea2 3s normal forwards;
	animation-delay: 1s;

    transform: translate(37px, 52.5px) rotate(0deg);
}

@keyframes linea2 {
	0% {
        transform: translate(37px, 52.5px) rotate(0deg);
	}
	100% {
        transform: translate(330px, 420px) rotate(-10deg);
	}
}

.animate.animateReverse #linea2 {
	-webkit-animation: linea2Reverse 3s normal forwards;
	-moz-animation: linea2Reverse 3s normal forwards;
	-o-animation: linea2Reverse 3s normal forwards;
	animation-delay: 1s;

    transform: translate(330px, 420px) rotate(-10deg);
}

@keyframes linea2Reverse {
	0% {
        transform: translate(330px, 420px) rotate(-10deg);
	}
	100% {
        transform: translate(37px, 52.5px) rotate(0deg);
       
	}
}


.animate #linea3 {
	-webkit-animation: linea3 3s normal forwards;
	-moz-animation: linea3 3s normal forwards;
	-o-animation: linea3 3s normal forwards;
	animation-delay: 1s;

    transform:  translate(37px, 205.5px) rotate(0deg);
    fill: none;
    stroke: rgb(0, 0, 0);
    stroke-width: 2;
    transform-origin: 0px 0px;
}

@keyframes linea3 {
	0% {
        transform:  translate(37px, 205.5px) rotate(0deg);
	}
	100% {
        transform: translate(400px, 20px) rotate(30deg);
	}
}

.animate.animateReverse #linea3 {
	-webkit-animation: linea3Reverse 3s normal forwards;
	-moz-animation: linea3Reverse 3s normal forwards;
	-o-animation: linea3Reverse 3s normal forwards;
	animation-delay: 1s;

    
    transform: translate(400px, 20px) rotate(30deg);

}

@keyframes linea3Reverse {
	0% {
        transform: translate(400px, 20px) rotate(30deg);
	}
	100% {
        transform:  translate(37px, 205.5px) rotate(0deg);
	}
}



.animate #linea4 {
	-webkit-animation: linea4 3.2s normal forwards;
	-moz-animation: linea4 3.2s normal forwards;
	-o-animation: linea4 3.2s normal forwards;
    animation-delay:.5s;
	transform: translate(216.021px, 52.5px) rotate(0deg);

}

@keyframes linea4 {
	0% {
		opacity: 1;
		transform: translate(216.021px, 52.5px) rotate(0deg);
	}
	99.8% {
		
		opacity: 1;
		transform: translate(316px, 21px) rotate(60deg);
	}
    
	100% {
		
		opacity: 0;
		transform: translate(316px, 21px) rotate(60deg);
	}
}



.animate.animateReverse #linea4 {
	-webkit-animation: linea4Reverse 3.2s normal forwards;
	-moz-animation: linea4Reverse 3.2s normal forwards;
	-o-animation: linea4Reverse 3.2s normal forwards;
    animation-delay:.5s;
	opacity: 0;
	transform: translate(316px, 21px) rotate(60deg);
}

@keyframes linea4Reverse {
	100% {
		opacity: 1;
		transform: translate(216.021px, 52.5px) rotate(0deg);
	}
   1% {
		transform: translate(316px, 21px) rotate(60deg);
		opacity: 1;
		
	}
	0% {
		transform: translate(316px, 21px) rotate(60deg);
		opacity: 0;
		
	}
}


@media (max-width: 600px) {
  .logo {
    max-width: 140px;
	margin-left: 20px;
  }
}

header{
	position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 9999;
	right: 0;
	left:0;
	height: 5.5rem;
	padding:0;
	width: 100%!important;
}



.header-eo{
	padding-bottom:0!important;
	padding-top: 2rem!important;
	max-width: calc(var(--wp--style--global--content-size) + 4rem);
	margin:auto;
	justify-content: space-between;
}


@media (max-width: 1170px ) {
	.header-eo{
		padding-left:2rem;
	}
}



.header-eo a:hover {
	text-decoration:none!important;
	opacity: .8;
   
}

.header-eo a{
	text-decoration:none!important;
	font-size: .9rem;
}

.header-eo .wp-container-3.wp-block-group a{
	text-decoration:none!important;
	font-size: .8rem;
}

.header-eo .wp-container-3.wp-block-group a:hover{
	text-decoration:none!important;
	opacity: .8;
}

.header-eo .eo-logo{
	opacity:0;
	-webkit-transition: all .3s ease-out;
	  -moz-transition: all .3s ease-out;
	  -o-transition: all .3s ease-out;
	  transition: all .3s ease-out;
}

body.showLogo .header-eo .eo-logo{
	opacity:1;
}

.header-eo .eo-logo img{

    max-width: 122px;
}

.eo-main-content{
	    margin-block-start: 5.5rem!important;
}

.eo-presskit .col-1 figure.wp-block-image.size-large{
	max-width: 400px;
}

.eo-presskit .col-2{
	flex-flow: column;
    justify-content: flex-end;
    display: flex;
}

.trp-language-switcher > div {
    box-sizing: border-box;
    padding: 3px 20px 3px 5px;
    border: 0px solid transparent;
    border-radius: 3px;
    background-image: none;
    background-position: calc(100% - 8px) calc(1em + 0px), calc(100% - 3px) calc(1em + 0px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    background-color: #fff;
}

.trp-language-switcher > div {
    box-sizing: border-box;
    padding: 0;
    border: 0px solid transparent;
    border-radius: 3px;
    background-image: none;
    background-position: calc(100% - 8px) calc(1em + 0px), calc(100% - 3px) calc(1em + 0px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    background-color: #fff;
}

.trp-language-switcher > div > a {
    display: block;
    padding: 2px;
    border-radius: 3px;
    color: rgb(0 0 0);
}

.header-eo .trp-language-switcher .trp-ls-shortcode-language {
    visibility: visible;
    max-height: 250px;
    height: auto;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: 0;
    display: flex !important;
    min-height: auto;
}
.trp-language-switcher {
    position: relative;
    display: flex;
    padding: 0;
    border: 0;
    justify-content: center;
    margin: 2px;
    box-sizing: border-box;
}





.header-eo .trp-language-switcher > div > a {
    cursor: default;
    text-transform: lowercase;
	min-width: 20px;
}

.header-eo .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language {
    cursor: default;
    text-transform: lowercase;
	text-decoration:underline!important;
}

.trp-language-switcher > div > a:hover {
    background: transparent;
}




.eo-post-container{
	display:flex;
	flex-flow:wrap;
	width:100%;
	justify-content: space-between;
}

.eo_post{
	display:flex;
	flex-flow:column;
	width: calc((100% / 3) - 1.5rem);
	min-width: 300px;
	max-width: 300px;
	margin-block-start: 0!important;
	
	-webkit-transition: all .3s ease-out;
	  -moz-transition: all .3s ease-out;
	  -o-transition: all .3s ease-out;
	  transition: all .3s ease-out;
	
}


.eo_post:hover{
	transform: translate(0, 10px);
}

.eo_post figure{
	display: inline-block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    max-width: unset;
    position: relative;
    width: 300px;
    height: 430px;
    overflow: hidden;
}

.eo_post figure img{
	width:auto;
	height:110%;
}

@media (max-width: 1000px) {
	.eo-post-container{

		justify-content: space-around;
	}
	.eo_post{
		min-width: 280px;
		padding-bottom: 2rem;
	}
	
	.eo_post figure{
		width: 280px;
    	height: 400px;
	}
}

.eo_post-info {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
	padding:1rem 0 .2rem;
}

.eo_post-info p.eo_post-share, a.eo_post-more {
    text-decoration-thickness: unset;
    text-underline-offset: unset;
    text-decoration: none;
    font-size: .85rem;
	color:var(--wp--preset--color--foreground);
	margin-block-start: 0;
    margin-block-end: 0;
}

a.eo_post-more{
	font-size: 1.2rem;
    margin: 0 0.5rem;
    line-height: .5rem;
}

a.eo_post-title {
    font-family: var(--wp--preset--font-family--source-serif-pro);
    text-decoration: none;
    font-size: 1.3rem;
    word-break: break-word;
}

ul.eo_post-tags {
    display: flex;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    width: calc(100% - 100px);
	flex-flow:row;
}

ul.eo_post-tags li{
	display: flex;
	flex-flow:row;
	font-size: .85rem;
	margin-right:.5rem;
}

.eo-footer p, .eo-footer a{
	text-decoration-thickness: unset;
    text-underline-offset: unset;
    text-decoration: none;
    font-size: .95rem;
	color:var(--wp--preset--color--foreground);
}

.post-password-form{
	text-align:center;
}

.post-password-form label{
	font-size:0;
}

.post-password-form input {
    min-height: 1rem;
    padding: .5rem;
    border-width: 1px;
    border-style: solid;
    border-color:  #fff;
    border-image: initial;
    border-color: var(--wp--preset--color--foreground);
    min-width: 250px;
	font-family:var(--wp--preset--font-family--system-font);

}

input[type="submit" i]{
	background-color: var(--wp--preset--color--foreground);
    color: #fff;
    width: 100px;
    min-width: inherit;
	cursor:pointer;
}

input[type="submit" i]:hover{
	opacity:.7;
}

.post-password-form input:focus-visible {
    outline: none;
	border-radius:0;
}

.eo-projects-list{
	list-style-type: "/";
    display: flex;
    text-align: center;
    padding-inline-start: 0;
	max-width: 500px!important;
    flex-flow: wrap;
}

.eo-projects-list li{
	padding: .5rem .5rem 0;
	-webkit-transition: all .3s ease-out;
	  -moz-transition: all .3s ease-out;
	  -o-transition: all .3s ease-out;
	  transition: all .3s ease-out;
	opacity: 1;
	justify-content: center;
	
}

.eo-projects-list li:hover{
	opacity:.8;
}

.eo-projects-list li:first-child {
    list-style-type: "";
}

.eo-descargar{
	
}