/*!
Theme Name: plantstradecenter
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: plantstradecenter
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.

plantstradecenter 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
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

	 html {
		font-family: 'Varela Round', sans-serif;
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
	
	* {
		box-sizing: border-box;
	}
	
	h3 {
		font-size: 35px;
	}
	
	body {
		margin: 0;
		/* font-family: 'Roboto Slab', serif; */
		font-family: 'Josefin Sans', sans-serif;
	}
	
	article,
	aside,
	details,
	figcaption,
	figure,
	footer,
	header,
	main,
	menu,
	nav,
	section,
	summary {
		display: block;
	}
	
	.menu-toggle {
		display: none;
	}
	
	.site-branding img {
		width: auto;
		height: 130px;
		object-fit: cover;
	}
	
	ul {
		list-style: none;
	}
	
	a:hover {
		text-decoration: none;
	}
	
	.navbar-toggler {
		border: solid 1px #527521;
		background-color: #527521;
	}
	
	.main-navigation ul {
		display: flex;
		justify-content: flex-end;
	}
	
	.main-navigation li {
		padding-left: 10px;
		padding-right: 10px;
		text-align: center;
	}
	
	.main-navigation a {
		color: #fff;
		transition: 1s all;
		font-size: 20px;
	}
	
	.focus a::after {
		width: 100%;
		content: '';
		display: block;
		width: 0;
		height: 2px;
		background: #527521;
	}
	
	.main-navigation a:hover {
		opacity: .6;
		transition: .7s all;
	}
	
	.main-navigation a:hover::after {
		width: 100%;
		opacity: .6;
	}
	
	.main-navigation a::after {
		content: '';
		display: block;
		width: 0;
		height: 2px;
		background: #527521;
		transition: width .7s;
	}
	
	.color_green {
		color: #527521;
	}
	
	.background_green {
		background-color: #527521;
	}
	
	.color_blue {
		color: #243cc9;
	}
	
	.background_blue {
		background-color: #243cc9;
	}
	
	.color_babyblue {
		color: #4accdb;
	}
	
	.background_babyblue {
		color: #4accdb;
	}
	
	button {
		outline: none !important;
	}
	
	.bg_img {
		background-image: url(./imgs/cover_img.jpg);
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		background-position: center;
		background-size: cover;
		background-attachment: fixed;
		max-height: 90vh;
	}
	
	.overlay {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		opacity: .8;
		background: #1C1D21;
	}
	
	.home_wrapper {
		position: absolute;
		left: 0px;
		right: 0px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		text-align: center;
	}
	
	.home_wrapper h1 {
		color: #fff;
		width: 100%;
		font-size: 55px;
		text-align: center;
		font-weight: bold;
	}
	
	.home_wrapper p {
		color: #fff;
		font-size: 20px;
		text-align: center;
	}
	
	h3::after {
		content: "";
		display: block;
		height: 4px;
		width: 40px;
		background-color: #527521;
		text-align: center;
		margin: 10px auto 0px;
	}
	
	.img_bg {
		height: 500px;
		z-index: -999;
	}
	
	.img_bg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		z-index: -99;
		overflow: hidden;
	}
	
	.img_overlay {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		opacity: .8;
		background: #1C1D21;
		z-index: -99;
	}
	
	.card img {
		height: 220px;
		object-fit: cover;
	}
	
	.bold {
		font-weight: bold;
	}
	
	#mysticky-nav .myfixed {
		border-bottom: solid 2px #fae8e8 !important;
		height: 90px;
	}
	
	#mysticky-nav .myfixed .site-branding img {
		height: 80px;
		width: 25%;
		object-fit: cover;
	}
	
	#mysticky-nav .myfixed a {
		color: #527521;
		font-size: 18px;
	}
	
	#menu .active::after {
		width: 100%;
	}
	
	.md-margin {
		margin-bottom: 110px;
	}
	
	.contact_tools{
		place-content: space-around;
		
	}
	.contact_tools .fa{
		color: #527521;
		font-size: 36px;
		width: 100%;
		text-align: center;
	}
	.contact_tools p{
		color : #868F9B;
		font-size: 18px;
	}
	
	form {
		width: 60%;
		display: flex;
		flex-wrap: wrap;
	}
	
	form textarea {
		padding: 10px 10px;
		min-height: 80px;
		resize: vertical;
	}
	
	form #submit {
		display: inline-block;
		padding: 10px 35px;
		margin: 3px;
		border: 2px solid transparent;
		border-radius: 3px;
		-webkit-transition: 0.2s opacity;
		transition: 0.2s opacity;
		color: #fff;
		background-color: #527521;
		transition: .3s all;
	}
	
	form #submit:hover {
		color: #fff;
		background-color: #248d0a;
		transition: .3s all;
	}
	
	form textarea,
	form #f_name,
	form #f_Email,
	form #f_subject {
		height: 40px;
		width: 100%;
		border: none;
		background: #F4F4F4;
		border-bottom: 2px solid #EEE;
		color: #527521;
		padding: 0px 10px;
		opacity: 0.5;
		-webkit-transition: 0.2s border-color, 0.2s opacity;
		transition: 0.2s border-color, 0.2s opacity;
	}
	
	#menu {
		margin-right: -25px;
	}
	
	#why_choose_us {
		background-color: #FAFAFA;
	}
	
	.bg-grey {
		background-color: #FAFAFA;
	}
	
	#why_choose_us h3::after {
		margin: 5px;
	}
	
	#why_choose_us .fa {
		padding: 5px;
		border-radius: 50%;
		color: #248d0a;
		border: 1px solid #248d0a;
		margin-right: 5px;
	}
	
	#why_choose_us ul {
		padding: 0px;
	}
	
	#why_choose_us .slick_imgs img {
		object-fit: cover;
		width: 545px;
		height: 390px;
	}
	
	.slick-dots {
		display: flex;
		justify-content: center;
		margin-top: 10px;
		padding: 1rem 0;
		list-style-type: none;
	}
	
	.slick-dots li {
		margin: 0 0.25rem;
	}
	
	.slick-dots li button {
		display: block;
		width: 1rem;
		height: 1rem;
		padding: 0;
		border: none;
		border-radius: 100%;
		background-color: #999aa0;
		text-indent: -9999px;
	}
	
	.slick-dots li.slick-active button {
		background-color: #527521;
	}
	
	.slick-next {
		position: absolute;
		font-size: 35px;
		right: 15px;
		top: 50%;
		z-index: 999;
		background: #527521;
		color: #FFF;
		padding: 0px;
		width: 50px;
		height: 50px;
		border-radius: 3px;
		line-height: 50px;
		margin: 0;
		border: none;
		transform: translateY(-50%);
	}
	
	.slick-prev::before {
/* 		font-family: FontAwesome;
		content: "\f104";
		font-size: 22px; */
	}
	
	.slick-next::before {
/* 		font-family: FontAwesome;
		content: "\f105";
		font-size: 22px; */
	}
	
	.slick-prev {
		position: absolute;
		font-size: 35px;
		left: 15px;
		top: 50%;
		z-index: 999;
		z-index: 999;
		background: #527521;
		color: #FFF;
		padding: 0px;
		width: 50px;
		height: 50px;
		border-radius: 3px;
		line-height: 50px;
		margin: 0;
		border: none;
		transform: translateY(-50%);
	}
	
	.slick-next:hover {
		background: #248d0a;
		transition: .3s all;
	}
	
	.slick-prev:hover {
		background: #248d0a;
		transition: .3s all;
	}
	
	.slick-arrow {
		transition: 1s all;
	}
	
	.slick-slider .slick-arrow {
		display: none !important;
		transition: 1s all;
	}
	
	.slick-slider:hover .slick-arrow {
		display: block !important;
		transition: 1s all;
	}
	
	#footer {
		position: relative;
		background-color: #F4F4F4;
	}
	
	.footer-logo {
		text-align: center;
	}
	
	.footer-logo>a>img {
		width: 40%;
		mix-blend-mode: darken;
	}
	
	.footer-follow {
		text-align: center;
	}
	
	.footer-follow li {
		display: inline-block;
	}
	
	.footer-follow li a {
		display: inline-block;
	   width: 40px;
		height: 40px;
		line-height: 45px;
		text-align: center;
		border-radius: 3px;
		background-color: #527521;
		color: #FFF;
		transition: .3s all;
	}
	
	.footer-follow li a:hover {
		transition: .3s all;
		background-color: #248d0a;
	}
	
	.footer-copyright p {
		text-align: center;
		font-size: 14px;
		text-transform: uppercase;
		margin: 0;
	}
	
	.sm-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	
	#preloader {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		background-color: #FFF;
		z-index: 99999;
	}
	
	.preloader {
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	
	.preloader span {
		display: inline-block;
		background-color: #248d0a;
		width: 25px;
		height: 25px;
		-webkit-animation: 1s preload ease-in-out infinite;
		animation: preload 1s ease-in-out infinite;
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		border-radius: 50%;
	}
	
	.preloader span:nth-child(1) {
		-webkit-animation-delay: 0s;
		animation-delay: 0s;
	}
	
	.preloader span:nth-child(2) {
		-webkit-animation-delay: 0.1s;
		animation-delay: 0.1s;
	}
	
	.preloader span:nth-child(3) {
		-webkit-animation-delay: 0.15s;
		animation-delay: 0.15s;
	}
	
	.preloader span:nth-child(4) {
		-webkit-animation-delay: 0.2s;
		animation-delay: 0.2s;
	}
	
	.sm-margin{
		margin-bottom: 75px;
	}
	@-webkit-keyframes preload {
		0% {
			-webkit-transform: scale(0);
			transform: scale(0);
		}
		50% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
		100% {
			-webkit-transform: scale(0);
			transform: scale(0);
		}
	}
	
	@keyframes preload {
		0% {
			-webkit-transform: scale(0);
			transform: scale(0);
		}
		50% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
		100% {
			-webkit-transform: scale(0);
			transform: scale(0);
		}
	}
	
	.price_list {
		color: #527521;
		font-size: 18px;
	}
	
	@media only screen and (max-width: 991px) {
		a {
			font-size: 16px;
		}
		.home_wrapper {
			top: 55%;
		}
		#mysticky-nav .myfixed a {
			color: #fff;
		}
		.home_wrapper h1 {
			font-size: 25px;
		}
		.site-branding img {
			width: 70%;
			height: 70px;
			object-fit: cover;
		}
		#mysticky-nav .myfixed .site-branding img {
			width: 70%;
			height: 70px;
			object-fit: cover;
		}
		#menu {
			position: absolute;
			right: -9px;
			top: 55px;
			background: #527521;
			z-index: 999;
			border-radius: 10px;
			margin-right: 0px;
		}
		#main-menu {
			position: static;
		}
		form {
			width: 100%;
		}
		.card {
			margin-bottom: 20px;
		}
	}
	
	@media only screen and (max-width: 768px) {
		.home_wrapper h1 {
			font-size: 20px;
		}
		h3 {
			font-size: 25px;
		}
		.footer-copyright {
			margin-bottom: 15px;
		}
		.footer-copyright p {
			font-size: 11px;
		}
		.contact_tools{
			flex-direction: column;
		}
	}
	
	@media only screen and (max-width: 376px){
		 .site-branding img {
			width: 95% ;
			height: 70px;
			object-fit: cover;
		}
		#mysticky-nav .myfixed .site-branding img {
			width: 95% ;
			height: 70px;
			object-fit: cover;
		}
	}