/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://tomusborne.com
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.3.1.1692733120
Updated: 2023-08-22 19:38:40

*/

/*****GLOBAL VARIABLES*****//*
@font-face {
  font-family: 'Sofia';
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/uploads/2023/08/SofiaSansSemiCondensed-Regular.woff);
}
@font-face {
  font-family: 'Sofia';
  font-style: normal;
  font-weight: 900;
  src: url(/wp-content/uploads/2023/08/SofiaSansSemiCondensed-Black.woff);
}
@font-face {
  font-family: 'Sofia';
  font-style: normal;
  font-weight: 200;
  src: url(/wp-content/uploads/2023/08/SofiaSansSemiCondensed-ExtraLight.woff);
}*/

:root{
    /***GLOBAL COLORS****/
    --primary: #35bb17;
    --scondary: #437033;
    --dark-green: #1c3e10;
    --white: #fff;
    --black: #000;
    --light-gray: #e8e8e8;

    /***GLOBAL FONT-SIZE****/
    --font-size--h1: clamp(21px, 3.4vw, 41px);
    --font-size--h2: clamp(20px, 2.5vw, 27px);
	--font-size--h3: clamp(17px, 4vw, 31px);
    --font-size--h4: clamp(16px, 2.5vw, 24px);
	--font-size--h5: clamp(15px, 2.2vw, 20px);
    --font-size--h6: clamp(16px, 1.9vw, 17px);
    --font-size--big: clamp(26px, 3.5vw, 36px);
    --font-size--body: 16px;
    --font-size--button: 18px;
	--font-size--little-text: 12px;
    /***GLOBAL FONT-WEIGHT****/
    --font-weight--h1: 900;
    --font-weight--h2: 900;
	--font-weight--h3: 900;
    --font-weight--h4: 900;
	--font-weight--h5: 900;
    --font-weight--h6: 900;
    --font-weight--button: ;
    /***GLOBAL FONT-FAMILY****/
    --font-family--h1: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family--h2: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	--font-family--h3: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family--h4: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	--font-family--h5: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family--h6: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family--button: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --font-family--body: Arial,Helvetica,sans-serif;
    /***GLOBAL MARGIN-TITLE****/
    --margin-bottom--title: 32px;
    --margin-top--title: 0;
    --margin-bottom--p: 16px;
}

/******STRUCTURE*******/
html {
  scroll-behavior: smooth;
}
body{
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-family--body);
    font-size: var(--font-size--body);
    background-color: white;
}
.section{
    display: flex;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    flex-wrap: wrap;
}
.one-col{
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	flex-direction:column
}
.two-col{
    width: 50%;
	  display: flex;
	  flex-wrap: wrap;
	flex-direction:column
}
.three-col {
    width: 33%;
    display: flex;
	  flex-wrap: wrap;
	flex-direction:column
}
.four-col {
    display: flex;
	flex-wrap: wrap;
	width: 25%;
	flex-direction:column
}
.three-quarters-col {
    display: flex;
	flex-wrap: wrap;
	width: 75%;
	flex-direction:column
}
.section-wrap{
	display: flex;
	justify-content: center;
	width:100%;
	max-width:1350px;
    flex-wrap: wrap;
}
.entry-content {
    overflow: hidden;
}
@media(max-width: 800px){
	.three-col,
	.four-col{
    width: 50%;
}
}
@media(max-width: 500px){
	.two-col,
	.three-col,
	.four-col{
    width: 100%;
}
}

/***BACKGROUND***/
.parallax{
    background-attachment: fixed;
}

/****BUTTONS*****/
a.btn,
input[type="submit"].btn{
    min-width: 118px;
    font-family: var(--font-family--button);
    display: flex;
    justify-content: center;
    width: fit-content;
    padding: 8px 16px;
    font-size: var(--font-size--button);
    font-weight: var(--font-weight--button);
}

/****FONTS*****/
.h1-style{
    font-size: var(--font-size--h1);
    font-weight: var(--font-weight--h1);
    font-family: var(--font-family--h1);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h2-style{
    font-size: var(--font-size--h2);
    font-weight: var(--font-weight--h2);
    font-family: var(--font-family--h2);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h3-style{
    font-size: var(--font-size--h3);
    font-weight: var(--font-weight--h3);
    font-family: var(--font-family--h3);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h4-style{
    font-size: var(--font-size--h4);
    font-weight: var(--font-weight--h4);
    font-family: var(--font-family--h4);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h5-style{
    font-size: var(--font-size--h5);
    font-weight: var(--font-weight--h5);
    font-family: var(--font-family--h5);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h6-style{
    font-size: var(--font-size--h6);
    font-weight: var(--font-weight--h6);
    font-family: var(--font-family--h6);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
a {
	color:var(--primary);
}
.p-style{
    margin-bottom: var(--margin-bottom--p);
}
.textalign-center{
    text-align: center;
}
.aligncenter{
    margin-right: auto;
    margin-left: auto;
}
a{
    transition: 0.3s ease;
    text-decoration: none;
}


details summary::-webkit-details-marker {display: none;}
details summary{list-style:none!important;counter-increment: none!important;list-style-type: none!important;}

/*Header*/
.brg_mn>span {width: 100%; height: 4px; background: var(--primary);}
.brg_mn {display: flex; flex-direction: column; width: 30px; height: 25px; justify-content: space-between; cursor: pointer;}
.mobile_menu:has(> input:checked) .menu_tgl {left: 0; transition: all 0.3s ease-out; visibility: visible; width: 100%; padding: 82px 20px 45px;}
.menu_tgl {position: absolute;background: var(--color--dark-blue); width: 0; height: 100vh; top: 0; padding: 0;  overflow-y: scroll;  left: 100%;  transition: all 0.3s ease-out; visibility: hidden;}
.mobile_menu input[type="checkbox"] {display: none;}
.menu, .sub-menu {list-style: none;}
header .menu {display: flex; flex-wrap: wrap;gap: 42px;justify-content: flex-end;}
.sub-menu {display: none; position: absolute; background: red; color: white; flex-direction: column; margin: 0; padding: 10px;}
.menu>li:hover .sub-menu {display: flex;}
header.main_hdr {display: flex; justify-content: center; padding: 30px; position: absolute; width: 100%; z-index:100}
.hdr-wrap {width: 100%; max-width: 1740px; display: flex; flex-wrap: wrap; align-items: center;}
.phn-mn {font-size: clamp(20px, 2.4vw, 36px); color: black; font-weight: bold; font-family: var(--font-family--h1);}
.main_hdr .three-quarters-col {flex-direction: row; column-gap: 10px; max-width: 670px; margin-left: auto; justify-content: space-between;}
.hdr-mn-3 {width: 100%; border-top: 1px solid black; padding-top: 12px;}
.hdr-mn-1 {display: flex; align-items: center; gap: 20px; flex-grow: 1; padding-right: 16px;}
#menu-main-menu {margin: 0; flex-grow: 1;}
#menu-secondary-menu {margin: 0;  font-family: var(--font-family--h1);  font-weight: bold;  font-size: 22px;}
#menu-main-menu>li>a {color: #505250; font-family: var(--font-family--h1); font-weight: bold;}
#menu-main-menu>.roc-mn>a {color: black;text-shadow: 0 0 16px #fff;}
.brg_mn>span {height: 3px;}
.brg_mn {height: 22px; width: 32px;}
.hdr-mn-2 {border-left: 1px solid black; padding-left: 20px; padding-bottom: 5px; padding-top: 5px;}
.main_hdr .menu-main-menu-container {flex-grow: 1;}
.sub-menu {background: white;}
#menu-secondary-menu .sub-menu {font-weight: 400; font-size: 16px; gap: 5px; z-index: 1000;}
#menu-secondary-menu .sub-menu a {color: #505250;}
.main_hdr .three-quarters-col {position: relative;}
.menu_tgl {background: white; top: 58px; height: auto;}
.mobile_menu:has(> input:checked) .menu_tgl {padding: 0; box-shadow: 0 6px 19px 3px rgba(0,0,0,0.25);}
#menu-toggle-menu {margin: 0; flex-direction: column; gap: 0;}
#menu-toggle-menu>li {border-bottom: 2px solid var(--primary); padding: 5px 15px;}
#menu-toggle-menu>li:last-child {border: 0;}
#menu-secondary-menu .sub-menu, #menu-main-menu .sub-menu {border-left: 7px solid var(--primary); padding: 18px 10px;   box-shadow: 0 0 16px 2px rgba(0,0,0,0.45);}
#menu-secondary-menu .sub-menu>li::before, #menu-main-menu .sub-menu>li::before {content: '»';color: var(--primary);padding-right: 3px;font-size: 21px;position: absolute;}
#menu-secondary-menu .sub-menu a, #menu-main-menu .sub-menu a {padding-left: 12px; font-weight: bold; color: black;}
#menu-secondary-menu .sub-menu>li, #menu-main-menu .sub-menu>li {display: flex; align-items: center; position: relative; padding: 4px 10px;}
.roc-dt {text-align:right}
@media(max-width: 1140px) and (min-width: 1025px){
    .topbanner .topcol-2 img{
        margin-left: -7%!important;
    }
    .main_hdr .three-quarters-col{
        max-width: 560px!important
    }
}
@media (min-width:1025px) {
.menu-mobile-menu-container {display: none;}
.mobile_menu, .top_bar, .roc-mobile {display: none;}
}
@media (max-width: 1024px) {
.roc-dt{display:none;}
#menu-mobile-menu {margin: 0; flex-direction: column; gap: 0;}
#menu-mobile-menu>li {border-bottom: 2px solid var(--primary); padding: 5px 20px;}
#menu-mobile-menu>li:last-child {border: 0;}
header .menu-toggle-menu-container, header #menu-main-menu, .hdr-mn-2, .hdr-mn-3  {display: none;}
header.main_hdr {position: relative; background: black; box-shadow: 0 2px 15px 3px rgb(255 255 255 / 25%); padding: 18px 30px;}
header .four-col.logo-col {width: 84%;}
header .four-col.logo-col>a {max-width: 300px;}
.main_hdr .three-quarters-col {width: 16%; position: unset;}
#menu-mobile-menu {top: 15px;}
header .menu_tgl {top: 87px;}
#menu-mobile-menu .sub-menu {display: block; position: relative; /*border-left: 3px solid var(--primary);*/ padding: 5px 10px; display: flex; flex-direction: column;  gap: 10px;}
#menu-mobile-menu>li {padding: 5px 10px;}
#menu-mobile-menu .sub-menu>li::before {content: '»'; color: var(--primary); padding-right: 5px;}
#menu-mobile-menu .sub-menu>li>a {color: black; font-weight: bold; font-size: 15px;}
#menu-mobile-menu a {font-family: var(--font-family--h1); font-weight: bold;}
.top_bar {display: flex; justify-content: space-between;}
.topbnt>a {background: black; display: flex;    padding: 15px 20px;    width: 100%;    justify-content: center;    gap: 7px;    align-items: center;}
.topbnt {width: 100%;}
.topbnt svg {fill: white;    top: -2px;    position: relative;}
.topbnt>a span {font-size: clamp(15px, 4vw, 20px);   font-weight: bold;    font-family: var(--font-family--h1);    line-height: 1;}
.topbnt.phn-btn>a {background: var(--primary);    color: white;}
.roc-mobile>a {position: absolute;    background: var(--primary);    color: white;    display: flex;    padding: 2px 10px;    width: 100%;    max-width: 300px;   justify-content: center;    left: calc(50% - 150px);    border-radius: 0 0 10px 10px;    font-weight: 900;    font-family: var(--font-size--h1);    font-size:15px;}
}
@media (max-width: 400px) {
.topbnt>a {padding: 12px 10px;}
.roc-mobile>a {max-width: 200px;left: calc(50% - 100px);}
}
@media(max-width: 1200px) and (min-width: 1025px){
    .main_hdr .three-quarters-col{
        max-width: 590px
    }
}

/**Footer**/
.main-ftr {
	background-color:var(--black);
	color:white;
}
.main-ftr a {
	color:var(--white);
}
.main-ftr a:hover, .main-ftr .menu-toggle-menu-container a:hover {
	color:var(--primary);
}
.ftr-wrap {
	max-width:1395px;
    margin: 0 auto;
    padding: calc(1% + 20px) 20px 1px;
	display: flex;
    flex-wrap: wrap;
}
.ftr-col-2 {
	display:flex;
	justify-content: space-between;
	gap:10px;
	align-items: center;
}
.ftr-col-3, .ftr-col-4 {
	width:100%;
    border-top: 4px solid var(--primary);
	position:relative;
	text-align: center;
}
.ftr-col-3 {
	padding: calc(20px + 1%) 0;
	margin-top:20px;
}
.ftr-col-4 {
    padding-top: 20px;
}
.ftr-col-3:before, .ftr-col-3:after, .ftr-col-4:before, .ftr-col-4:after {
 	content:'';
 	position:absolute;
 	background-color:var(--primary);
	height:4px;
	width:calc((100vw - 100%) / 2 - 20px);
	max-width:177px;
	top:-4px;
}
.ftr-col-3:before, .ftr-col-4:before {
	right:100%;
}
.ftr-col-3:after, .ftr-col-4:after {
	left:100%;
}
.menu-footer-menu-container > .menu {
	gap: 10px;
    margin: 0;
    columns: 3 100px;
    column-gap: 36px;
}
.ftr-col-3 h5 {
 	font-size: var(--font-size--h3);
	color:var(--primary);
	font-weight:900;	
}
.footer-btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
	align-items: stretch;
}
.btn-ftr {   
    width: 477px;
    max-width: 100%;
    padding: 20px 15px;
    border: 5px solid #fff;
    border-radius: 100px;
    background-color: var(--primary);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}	
.btn-ftr:hover {   
	background-color:var(--dark-green);
}
.btn-ftr > span {
	display:block;
	font-size:13px;
}
.spe-tle {
	margin:0;
	font-weight:900;
	align-self: center;
}
.main-ftr .menu_tgl {
	width: calc(100vw - 30px) !important;
    max-width: 400px;
    left: auto !important;
    z-index: 1;
    right: -5px;
	overflow: auto;
}
.main-ftr .mobile_menu {
    position: relative;
}
.main-ftr .menu-toggle-menu-container .menu {
    margin: 0;
    padding: 20px;
}
.main-ftr .menu-toggle-menu-container .menu li {
    padding: 5px 0 0;
    border-bottom: 2px solid var(--primary);
}	
.main-ftr .menu-toggle-menu-container a {
    color: var(--black);
}
#menu-footer-menu>li.menu-2::before{
    content: '»';
    color: var(--primary);
    font-size: 21px;
    padding-right: 8px;
}
#menu-footer-menu>li{
    padding-left: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-family: var(--font-family--button)
}
#menu-footer-menu>li.menu-2{
    font-weight: 400;
}
#menu-footer-menu>li.menu-3 a{
color: var(--primary)
}
#menu-footer-menu>li:not(.menu-2){
    margin-bottom: 10px
}
@media (min-width:901px){
	.ftr-col-1 {
		width:40%;
	}
	.ftr-col-2 {
		width:60%;
	}
}
@media (max-width:900px){
	.footer-btn-container {
		flex-wrap: wrap;
	}
	.ftr-col-1 {
		margin-bottom:20px;
	}	
	.main-ftr .mobile_menu {position: unset;}
	.ftr-col-2 {position: relative;}
	.menu_tgl {top: calc(100% + 13px);}
    .ftr-wrap {
    justify-content:center
}
}

@media(max-width: 500px){
    .menu-footer-menu-container > .menu{
        columns: 1
    }
    #menu-footer-menu>li:not(.menu-2){
        margin-top: 8px;
        margin-bottom: 6px;
    }
}
@media (max-width: 375px) {
.ftr-col-2 {flex-direction: column;}
.ftr-col-3 h5 {font-size: 18px;}
.btn-ftr {font-size: 14px; padding: 10px; border-width: 2px;}
}

/*Blog shortcode*/
.recent-post-list-tle {list-style: none; margin: 0;}
.recent-post-list-tle>li {display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px;}
.recent-post-list-tle h4 {font-size: 18px; margin-bottom: 0;}
.recent-post-list-tle>li>svg {fill: var(--scondary);}
.recent-post-list {display: flex; list-style: none; margin: 0; gap: 84px;}
.recent-post-list>li {display: flex; flex-direction: column;}
.recent-post-list .text {order: 1;background: white;padding: 20px;}
.recent-post-list .featured-image img {width: 100%; object-fit: cover; object-position: center;}
.recent-post-list .text h4 {font-size: 20px;margin-bottom: 13px;}
.recent-post-list .text .read-more {color: var(--primary);font-weight: bold;}
.recent-post-list .text h4>a {color: black; font-weight: bold; line-height: 1.1;}
.recent-post-list-tle a {color: black;    font-weight: bold;}
.recent-post-list-tle>li:last-child {margin: 0;}
@media (max-width: 1200px) {
.recent-post-list {gap: 30px; width: 100%;}
}
@media (max-width: 1024px) {
.recent-post-list .text h4 {font-size: 16px;}
}
@media (max-width: 800px) {
.recent-post-list-tle {max-width: 500px; margin-left: auto; margin-right: auto;}
}
@media (max-width: 500px) {
.recent-post-list {flex-wrap: wrap; gap: 20px;}
}

input, textarea{color:white!important}
.gform_confirmation_message{margin-top:32px;text-align:center}
