/*!
Theme Name: Naoto_u
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: naoto
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

Naoto_u is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/


/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

body,
button,
input,
select,
optgroup,
textarea {
	color: black;
	font-family: "Verdana", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 22px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	/* font-weight: normal; */
}

h3 {
	font-size: 48px;
	margin-bottom: 35px;
	margin-top: 35px;
}

h4 {
	font-size: 28px;
}

p {
	font-size: 16px;
	margin-bottom: 16px;
	margin-top: 16PX;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
	margin: 0;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	width: 100%;
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Accordions  */

.accordion-persistant {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	cursor: pointer;
  	width: 100%;
  	outline: none;
  	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  	transition: 0.4s;
  	-webkit-transition: 0.4s;
  	-moz-transition: 0.4s;
  	-ms-transition: 0.4s;
  	-o-transition: 0.4s;
}

.accordion-hidden {
  	max-height: 0;
  	overflow: hidden;
  	transition: max-height 0.4s ease-out;
  	-webkit-transition: max-height 0.4s ease-out;
  	-moz-transition: max-height 0.4s ease-out;
  	-ms-transition: max-height 0.4s ease-out;
  	-o-transition: max-height 0.4s ease-out;
}

.accordion-hidden p {
	margin-bottom: 8px;
	margin-top: 0;
}

.accordion-home h4 {
	margin-top: 0;
	margin-bottom: 8px;
	font-weight: 500;
	font-size: 35px;
	padding-bottom: 8px;
	padding-top: 8px;
}

.accordion-persistant:after {
	content: '\02795';
	font-size: 13px;
	font-weight: normal;
	margin-left: 5px;
}

  .accordion-home .active:after {
	content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

/* Links
--------------------------------------------- */
a {
	color: black;
	text-decoration: none;
}

a:visited {
	color: black;
}

a:hover,
a:focus,
a:active {
	color: #0047AB;
}

a:focus {
	outline: unset;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	/* width: 100px;
	height: 100px; */
	/* border-radius: 50%; */
	background-color: white;
	color: black;
	border-color: black;
	/* display: flex;
	align-items: center;
	justify-content: center; */
	font-size: 18px;
	cursor: pointer;
	/* box-shadow: 15px 25px 25px rgba(0, 0, 0, 0.3); */
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: black;
	/* background-color: #CC0000; */
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: black;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: black;
	border: 1px solid black;
	border-radius: 0;
	padding: 3px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid black;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
/* Menu  */

.hidden-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 900;
}

.menu-overlay.active {
    display: block;
}

.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-menu-container ul li {
	line-height: 1.5;
	margin-bottom: 15px;
}

.menu-menu-english-container ul li {
	line-height: 1.5;
	margin-bottom: 15px;
}

@media screen and (max-width: 899px) {

	.menu-toggle-trigger {
		z-index: 899;
		position: relative;
		padding: 1rem;
		cursor: pointer;
		/* width: 50px;
		height: 50px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: -15px 25px 25px rgba(0, 0, 0, 0.3); */
	}

	.hidden-menu {
		position: fixed;
		top: 0;
		right: -80%;
		width: 80%;
		height: 100%;
		background: white;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
		transition: right 0.3s ease;
		z-index: 1000;
		/* padding: 2rem; */
	}

	.menu-menu-container ul {
		list-style-type: none;
		margin: 0;
		padding-left: 0;
		padding-top: 50%;
		text-align: right;
		padding-right: 25px;
		padding-left: 25px;
	}

	.menu-menu-english-container ul {
		list-style-type: none;
		margin: 0;
		padding-left: 0;
		padding-top: 50%;
		text-align: right;
		padding-right: 20%;
	}
	
}

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

	.menu-toggle-trigger {
		z-index: 899;
		position: relative;
		padding: 1rem;
		cursor: pointer;
		/* width: 100px;
		height: 100px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: -15px 25px 25px rgba(0, 0, 0, 0.3);
		background-color: gold; */
	}

	.hidden-menu {
		position: fixed;
		top: 0;
		right: -20%;
		width: 20%;
		height: 100%;
		background: white;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
		transition: right 0.3s ease;
		z-index: 1000;
		/* padding: 2rem; */
	}

	.menu-menu-english-container ul {
		list-style-type: none;
		margin: 0;
		padding-left: 0;
		padding-top: 50%;
		text-align: right;
		padding-right: 20%;
	}

	.menu-menu-container ul {
		list-style-type: none;
		margin: 0;
		padding-left: 0;
		padding-top: 50%;
		text-align: right;
		padding-right: 20%;
	}

}

/* Counter */

/* #primary-menu {
	counter-reset: menu-counter;
  }
  
  #primary-menu > li {
	position: relative;
	counter-increment: menu-counter;
  }
  
  #primary-menu > li::before {
	content: counter(menu-counter, decimal-leading-zero);
	position: absolute;
	left: -1.5em;   
	top: -0.3em;    
	font-size: 0.6em;
	opacity: 0.8;
	font-weight: normal;
	pointer-events: none;
  } */
  
  

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}

.page-links {
	clear: both;
	margin: 0;
}

.site-main {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
}

/* Post index and archives
--------------------------------------------- */

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

.post-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	/* margin: 25px;
	padding: 50px; */
	/* background-color: gold; */
}

.post-list article {
	margin-bottom: 150px;
	margin-left: 50px;
	margin-right: 50px;
	/* width: 50%;
	margin-left: auto;
	margin-right: auto; */
	/* border: 5px solid white;
	padding: 15px; */
}

.post-list .post-thumbnail img {
	/* width: 50%; */
	height: auto;
	object-fit: cover;
}

.post-title,
.post-excerpt,
.post-meta {
	margin-left: 15px;
}

div.post-header {
	text-align: center;
	margin-bottom: 100px;
}

.post-meta a {
	font-size: 14px;
}

.post-meta span {
	font-size: 14px;
}
}

@media screen and (max-width: 899px) {

	.post-list {
	display: grid;
	grid-template-columns: 1fr;
	/* margin: 25px;
	padding: 50px; */
	/* background-color: gold; */
}

.post-list article {
	padding-bottom: 70px;
	margin-bottom: 70px;
	margin-left: 25px;
	margin-right: 25px;
	border-bottom: 1px solid black;
	/* width: 50%;
	margin-left: auto;
	margin-right: auto; */
	/* border: 5px solid white;
	padding: 15px; */
}

.post-list .post-thumbnail img {
	/* width: 50%; */
	height: auto;
	object-fit: cover;
}

.post-title,
.post-excerpt,
.post-meta {
	margin-left: 15px;
}

div.post-header {
	text-align: center;
	margin-bottom: 100px;
}

.post-meta a {
	font-size: 14px;
}

.post-meta span {
	font-size: 14px;
}

}
/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 15px;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 8px 0;
}

.wp-caption-text {
	text-align: left;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 15px;
	display: grid;
	grid-gap: 15px;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* .gallery {
  column-count: 3;
  column-gap: 50px;
  padding: 1rem;
}

.gallery .gallery-item {
  break-inside: avoid;
  margin-bottom: 50px;
  display: inline-block;
  width: 100%;
}

.gallery-columns-1 {
  column-count: 3 !important;
} */


/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 15px;
	margin-bottom: 15px;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

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

header.site-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 25px;
	padding-bottom: 25px;
	margin-left: 25px;
	margin-right: 25px;
	/* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
}

nav.main-navigation {
	display: flex;
	justify-content: end;
	align-items: center;
}

.site-header p.site-title {
	font-size: 28px;
	margin: 0;
}

.site-header p.site-description {
	font-size: 18px;
	margin: 0;
}


@media screen and (max-width: 899px) {
	div.mouse {
		display: none !important;
	}
}

@media screen and (min-width: 900px) {
	
	div.mouse {
	width: 35px;
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1500;
}

div.mouse p {
	text-align: center;
}

header.site-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 25px;
	padding-bottom: 25px;
	margin-left: 25px;
	margin-right: 25px;
	/* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
}

/* div.site-branding {
	text-align: center;
} */

}



/* Home page header
--------------------------------------------- */

/* <img src="/wp-content/uploads/2025/02/naoto-studio-image.png"/> */

header.header-initial p {
	margin: 0;
}

header.header-initial a {
	color: black;
}

header.header-initial a:hover {
	color: black;
	text-decoration: underline;
	text-underline-offset: 7px;
	/* border-bottom: 2px solid black; */
}

header.header-initial {
	color: black;
	/* height: 100vh; */
	/* background-image: url("https://te.p-j.si/wp-content/uploads/2025/07/irv-4_3D_3-e1753271192205.png"); */
	/* background-image: url("/wp-content/uploads/2024/11/IMG_4194.jpeg"); */
	/* background-image: url("/wp-content/uploads/2024/11/IMG_6272-1-2048x1536.jpg"); */
	/* background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: black; */
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	/* align-content: space-between; */
    justify-content: space-between;
    /* align-items: center; */
    /* text-align: center;  */
}

img.custom-logo {
	width: 250px;
}



div.navigation-initial {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 25px;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 1500;
}

div.navigation-initial ul {
	list-style-type: none;
}


.header-initial p.site-title {
	font-size: 28px;
}

.header-initial p.site-description {
	font-size: 18px;
}

div.initial-info {
	width: 38%;
	align-self: flex-end;
	/* padding-top: 190px; */
	padding-bottom: 120px;
}

p.initial-paragraph {
	line-height: 1;
	font-size: 28px;
}

a.contact {
	display: inline-block;
	font-size: 16px;
	margin-top: 35px;
	border-bottom: 1px solid currentColor;
}

a.contact::after {
	content: "\2192";
	padding-left: 5px;
}

@media screen and (max-width: 899px) {

}

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


/* Home page
--------------------------------------------- */


main.home-page {
	margin-top: 0;
	padding-bottom: 100px;
}

/* div.section-2-home {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid rgb(234, 234, 234);
	margin-top: 160px;
	margin-bottom: 160px;
}

div.section-2-home {
	display: grid;
	grid-template-columns: .25fr .75fr;
}

div.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 35px;
}

.section-2-home-display {
	overflow: hidden;
} */

/* .section-2-home-display h2 {
	font-size: 100px;
	padding-left: 50px;
	margin-top: 100px;
	margin-bottom: 0;
	position: relative;
	will-change: transform;
	white-space: nowrap;
	transition: transform 0.2s linear;
	-webkit-transition: transform 0.2s linear;
	-moz-transition: transform 0.2s linear;
	-ms-transition: transform 0.2s linear;
	-o-transition: transform 0.2s linear;
}

.section-3-home {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 160px;
	padding-bottom: 320px;
}

.posts-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    row-gap: 50px;
}

p.post-title {
	margin-top: 8px;
	margin-bottom: 8px;
}

p.view-all {
	text-align: right;
	margin-top: 8px;
	margin-bottom: 8px;
	padding-right: 5px;
}

p.view-all a {
	border-bottom: 1px solid black;
	padding-bottom: 5px;
}

p.view-all a::after {
	content: "\2192";
	padding-left: 5px;
}

.section-4-home {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-bottom: 320px;
	column-gap: 70px;
}

.section-4-home h2 {
	font-size: 56px;
	margin-top: 16px;
	margin-bottom: 16px;
}


p.tehnike-p {
	width: 75%;
}

.section-5-home {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.section-5-home h2 {
	font-size: 56px;
}

.section-5-home-grid {
	width: 75%;
	margin-left: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 64px;
	row-gap: 64px;
	padding-bottom: 160px;
}

p.section-5-number {
	margin-top: 8px;
	margin-bottom: 8px;
}

.section-5-home-grid h4 {
	margin-top: 8px;
	margin-bottom: 8px;
	font-weight: 500;
}

.section-6-home img {
	height: 730px;
	object-fit: cover;
} */


/* Snap sections  */

/* div.snap-container {
	margin-left: 50px;
	margin-right: 50px;
	height: 700px;
	overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

section.snap-section {
	margin-bottom: 50px;
	scroll-snap-align: start;
} */

/* section.snap-like {
margin-left: 15px;
margin-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
  padding-top: 25px;
  position: relative;
} */

/* section.snap-like img {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
} */

.snap-like {
  color: black;
}

.snap-text {
	/* position: absolute;
	left: 15%;
	bottom: 15%;
	width: 40%; */
	/* margin-left: 15%; */
}

@media screen and (max-width: 899px) {

	section.snap-like {
		margin-left: 15px;
		margin-right: 15px;
		display: flex;
		flex-direction: column;
		/* align-items: center; */
		justify-content: center;
		font-size: 2rem;
		margin-bottom: 50px;
		position: relative;
		padding-top: 25px;
		position: relative;
		}

		section.snap-like img {
			width: 90%;
			margin-left: auto;
			margin-right: auto;
			height: 60vh;
			object-fit: cover;
    		display: block;
		}

		.snap-text {
			/* position: absolute;
			left: 15%;
			bottom: 15%;
			width: 40%; */
			margin-left: 15%;
		}

}

@media screen and (min-width: 900px) {
	
		section.snap-like {
			margin-left: 30px;
			margin-right: 30px;
			/* display: flex;
			flex-direction: column; */
			display: grid;
			grid-template-columns: 0.7fr 0.3fr;
			column-gap: 50px;
			/* align-items: center; */
			justify-content: center;
			font-size: 2rem;
			margin-bottom: 150px;
			position: relative;
			padding-top: 150px;
			}

		section.snap-like img {
			/* width: 90%; */
			margin-left: auto;
			margin-right: auto;
		}

		section.snap-like video {
			width: 90%;
			margin-left: auto;
			margin-right: auto;
		}

		.snap-text {
			display: flex;
			flex-direction: column;
			justify-content: center;	
			/* 	margin-right: 50px; */
		}

		.snap-text button {
			width: 150px;
		}
}




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

footer.site-footer {
	padding-top: 50px;
	/* width: 96%;
	margin-left: auto;
	margin-right: auto; */
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 15px;
	/* border-top: 1px solid #111; */
	background-color: #66CC66;
	/* 190482  #7752FE */
}

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

.footer-contact a {
	font-size: 48px;
	font-weight: 500;
}

.footer-contact a:hover {
	border-bottom: 3px solid rgba(0, 0, 0);
}

.footer-contact a::after {
	content: "\2192";
	padding-left: 5px;
}

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

	footer.site-footer {
	padding-top: 50px;
	/* width: 96%;
	margin-left: auto;
	margin-right: auto; */
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 15px;
	/* border-top: 1px solid #111; */
	/* background-color: #66CC66; */
}

	.footer-first h3 {
	font-size: 48px;
	font-weight: 500;
	margin-top: 8px;
	margin-bottom: 8px;
	width: 60%;
}

.footer-menu {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 50px;
	/* width: 80%; */
	padding-top: 35px;
	padding-bottom: 50px;
}

.footer-menu p {
	font-size: 20px;
}

.footer-menu ul {
	margin: 0;
	padding-left: 0;
}

.footer-menu ul li {
	list-style-type: none;
	font-size: 28px;
	margin-bottom: 16px;
}
}

@media screen and (max-width: 899px) {

	footer.site-footer {
	padding-top: 50px;
	/* width: 96%;
	margin-left: auto;
	margin-right: auto; */
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 15px;
	/* background-color: #66CC66; */
}

	.footer-first h3 {
	font-size: 25px;
	font-weight: normal;
	margin-top: 8px;
	margin-bottom: 8px;
	width: 90%;
}

	.footer-menu {
		display: block;
		grid-template-columns: 1fr;
		column-gap: 50px;
		/* width: 80%; */
		padding-top: 35px;
		padding-bottom: 50px;
	}

	.footer-menu p {
		color: black;
		font-size: 18px;
	}

	.footer-menu ul {
		margin: 0;
		padding-left: 0;
		padding-bottom: 15px;
	}

	.footer-menu ul li {
		list-style-type: none;
		font-size: 22px;
		margin-bottom: 8px;
	}
}

button.back-to-top {
	width: 70px;
}

.site-info {
	border-top: 1px solid #111;
}


/* email forma
--------------------------------------------- */

input[type="text"],
input[type="email"] {
	border: unset;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid black;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	width: unset;
}

form.wpcf7-form.init p {
	margin-top: 32px;
	margin-bottom: 32px;
}

/* form input {
	font-size: 18px;
} */


/* Posts cursor  */

/* .section-3-home .post img:hover {
    cursor: none;
    position: relative;
} */


/* .post img:hover {
    cursor: none;
    position: relative;
} */

/* .custom-cursor {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(234, 221, 50, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    z-index: 100;
    user-select: none;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
} */













/* end ////  */

