/*!
Theme Name: sfc
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: sfc
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.

sfc 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
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */
/* Load fonts */

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Medium.eot');
    src: url('fonts/Nunito-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/Nunito-Medium.woff2') format('woff2'),
    url('fonts/Nunito-Medium.woff') format('woff'),
    url('fonts/Nunito-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-SemiBold.eot');
    src: url('fonts/Nunito-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Nunito-SemiBold.woff2') format('woff2'),
    url('fonts/Nunito-SemiBold.woff') format('woff'),
    url('fonts/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Bold.eot');
    src: url('fonts/Nunito-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Nunito-Bold.woff2') format('woff2'),
    url('fonts/Nunito-Bold.woff') format('woff'),
    url('fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-ExtraBold.eot');
    src: url('fonts/Nunito-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Nunito-ExtraBold.woff2') format('woff2'),
    url('fonts/Nunito-ExtraBold.woff') format('woff'),
    url('fonts/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    box-sizing: border-box;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
    font-size: 16px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
    font-family: 'Nunito', sans-serif;
    color: #7D7D7D;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(270deg, #7BD751 0%, #7BBEFF 100%);
    line-height: 1.3;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

@media screen and (min-width: 600px) {

    h1 {
        font-size: 3rem;
    }
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: 500;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    height: auto;
    max-width: 100%;
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* 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;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

button,
input,
select,
optgroup,
textarea {
	font-size: 1rem;
	line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h2 {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 16px;
}

/*h4 {*/
/*    font-size: 1.5rem;*/
/*    margin-top: 0;*/
/*    margin-bottom: 16px;*/
/*}*/

p {
	margin-bottom: 20px;
    margin-top: 0;
}

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 {
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul {
	list-style: disc;
    padding-left: 20px;
    margin: 0;
}

ol {
	list-style: decimal;
    padding-left: 20px;
    margin: 0;
}

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%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:hover,
a:focus,
a:active {
    color: inherit;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #e3e3e3;
    border-radius: 50px;
	background: #6AD2A3;
	color: #ffffff;
	line-height: 1;
	padding: 12px 32px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #e3e3e3;
}

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: #e3e3e3;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
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: #7D7D7D !important;
	border: 1px solid #E0E0E0 !important;
    border-radius: 50px !important;
    padding: 0 15px;
    font-weight: 600 !important;
    height: 50px !important;
}

textarea {
    height: 100% !important;
}

input[type="number"] {

}

input[type="search"] {

}

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 {
    border: 1px solid #7BD751;
	color: #7BD751;
    outline: none;
}

select {
	border: 1px solid #E0E0E0;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}


/* Posts and pages
--------------------------------------------- */
.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}


/* 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;
}




/*--------------------------*/
/* Coming Soon */
/*
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.content-wrapper {
    padding: 30px 0;
}

@media screen and (min-width: 950px) {
    .content-wrapper {
        width: 60%;
        padding: 100px 0 0;
    }
}

@media screen and (min-width: 1240px) {
    .content-wrapper {
        width: 50%;
        padding: 100px 0 300px;
    }
}

@media screen and (min-width: 1400px) {
    .content-wrapper {
        width: 60%;
        padding: 100px 0 300px;
    }
}

@media screen and (min-width: 1100px) {
    .front-page-background {
        background-image: url('assets/img/leaf-background.webp'), url('assets/img/green-leaves-background.webp');
        background-position: bottom 15% left, top right 15%;
        background-repeat: no-repeat, no-repeat;
        background-size: 300px 300px, contain;
        min-height: 100vh;
    }
}

.gradient-title {
    background: linear-gradient(270deg, #7BD751 0%, #7BBEFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    line-height: 1;
    margin: 32px 0;
    text-transform: uppercase;
}

@media screen and (min-width: 700px) {
    .gradient-title {
        font-size: 60px;
    }

}

@media screen and (min-width: 1400px) {
    .gradient-title {
        font-size: 72px;
    }

}

.pills-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding-left: 0;
    list-style: none;
    margin: 0 0 32px;
}

@media screen and (min-width: 700px) {
    .pills-list {
        grid-template-columns: repeat(2, 1fr);
    }

}

.pills-list li {
    padding: 16px 24px;
    border-radius: 10px;
    background: #D7F1E5;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.20);
    display: flex;
}

.pills-list li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.pills-list li a p {
    margin: 0;
}

.pills-list li a span {
    display: block;
}

.pills-list li a span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #008036;
    margin-bottom: 6px;
}

.pills-list li a span:last-child {
    color: #6B6C6F;
}

.socials-block {
    display: flex;
    gap: 20px;
    padding-left: 0;
    list-style: none;
}



.footer-front-page {
    padding: 20px;
}

.footer-front-page .front-page-links {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.footer-front-page .front-page-links li {
    margin-bottom: 10px;
}

.footer-front-page .front-page-links li a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}

@media screen and (min-width: 700px) {
    .footer-front-page .front-page-links {
        display: flex;
    }

    .footer-front-page .front-page-links li {
        margin-bottom: 0;
    }

    .footer-front-page .front-page-links li:first-child {
        padding-right: 20px;
    }
    .footer-front-page .front-page-links li:not(:first-child) {
        padding: 0 20px;
    }

    .footer-front-page .front-page-links li:not(:last-child) {
        border-right: 1px solid #6AD2A3;
    }
}

!* Pages General *!
.pages-content {
    padding-bottom: 30px;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 0;
}

.pages-content h1 {
    font-size: 30px;
    text-align: center;
    max-width: max-content;
    margin: 0 auto 48px;
    text-transform: uppercase;
}

@media screen and (min-width: 900px) {
    .pages-content h1 {
        font-size: 48px;
    }
}

.pages-content :not(h1)  {
    font-family: 'Montserrat', sans-serif;
}

.site-header {
    text-align: center;
    padding: 60px 0 70px;
}

.site-footer {
    background: linear-gradient(270deg, #7BD751 0%, #7BBEFF 100%);
}

.site-footer ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

@media screen and (min-width: 600px) {
    .site-footer ul {
        display: flex;
    }
}


@media screen and (min-width: 870px) {
    .site-footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-footer-grid > div:first-child {
    grid-column: span 2;
    display: flex;
    align-items: center;
}

.site-footer-grid > div:first-child ul li:not(:last-child) {
    margin-bottom: 15px;
}

@media screen and (min-width: 600px) {
    .site-footer-grid > div:first-child ul li:not(:last-child) {
        margin-bottom: 0;
    }
}

.site-footer-grid > div:last-child ul {
    display: flex;
    margin: 0;
    padding: 20px 0;
    gap: 20px;
}

@media screen and (min-width: 600px) {
    .site-footer-grid > div:last-child ul {
        gap: 40px;
    }
}

@media screen and (min-width: 870px) {
    .site-footer-grid > div:last-child ul {
        justify-content: end;
    }
}



.site-footer ul li a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
}



@media screen and (min-width: 600px) {
    .site-footer .site-footer-grid > div:first-child ul li:first-child {
        padding-right: 20px;
    }
    .site-footer .site-footer-grid > div:first-child ul li:not(:first-child) {
        padding: 0 20px;
    }

    .site-footer .site-footer-grid > div:first-child ul li:not(:last-child) {
        border-right: 1px solid #ffffff;
    }
}
*/



/* Subs form */

#subscribe-form {
    margin-bottom: 20px;
}

.input-button-container {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 4px;
    position: relative;
}

.input-button-container .subscribe-button {
    background-color: #F2994A;
    border-radius: 16px;
    border: 1px solid #ffffff;
    padding: 12px 20px 12px 50px;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    width: 120px;
    cursor: pointer;
}

.input-button-container input[type="email"] {
    width: calc(100% - 90px) !important;
    height: 53px !important;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    background: #ffffff;
    z-index: 2;
    padding: 0 20px;
}

.input-button-container input[type="email"]:focus-within,
.input-button-container input[type="email"]:focus-visible,
.input-button-container input[type="email"]:focus {
    outline: none;
    border: 1px solid #6AD2A3;
}