/*!
Theme Name: urbanwormcompany
Theme URI: https://www.urbanwormcompany.com.com/
Author: Kosish Bhandari
Author URI: https://www.urbanwormcompany.com.com/
Description: Custom WordPress Framework and Theme developed by TechChart.io 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: urbanwormcompany
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.

urbanwormcompany 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,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
span,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    /*font-family: inherit;*/
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%;
    /* Corrects text resizing ospanly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll;
    /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%;
    /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%;
    /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

:root {
    --primary: #8ec640;
    --secondary: #360600;
    --text-color: #757575;
    --bg: #eeeeee;
    --light-bg: #f8f8f8;
    --footer-bg: #222222;
    --white: #fff;
    --black: #000;
    --heading-color: #201f1f;
    --primary-font: "Oswald", sans-serif;
    --para-font: "Open Sans", sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
}

blockquote {
    position: relative;
    margin: 20px 0;
    clear: both;
    border-radius: 8px;
    font-size: 25px;
    padding: 10px 0;
    display: inline-block;
    background: var(--bg);
    padding: 20px 25px;
    border-left: 6px solid var(--primary);
}

blockquote p {
    font-size: 25px;
    font-weight: 300;
    font-family: var(--primary-font) !important;
}

blockquote p:last-child {
    margin: 0;
}

.home blockquote {
    border: none;
}

.home blockquote::before {
    bottom: -21px;
    left: 0;
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    z-index: -1;
    border-top: 26px solid var(--bg);
    border-right: 35px solid transparent;
}

blockquote,
q {
    quotes: "" "";
}

a {
    color: var(--primary);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
    color: var(--secondary);
}

a img {
    border: 0;
}


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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #18152b;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

p,
li {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 18px;
}

p {
    line-height: 1.5;
    font-family: var(--para-font);
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

b,
strong {
    font-weight: bold;
}

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

address {
    margin: 0 0 15px;
}

pre {
    background: #eee;
    font-size: 15px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 15px;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-size: 15px;
    margin-bottom: 15px;
}

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

mark,
ins {
    background: #fff9c0;
    margin-bottom: 15px;
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: 0.5ex;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

caption,
th,
td {
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    padding: 5px;
    text-align: center;
}

caption {
    border: 1px solid #dedede;
    margin-bottom: 15px;
}

.gallery-caption {
    display: block;
}

.gallery {
    margin-bottom: 1.5em;
    margin-left: -15px;
    margin-right: -15px;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-item {
    display: inline-block;
    margin: 0 0 10px;
    padding: 15px;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery img {
    border: 0px;
    margin: 0px;
    padding: 0px;
}


/*--------------------------------------------------------------
 3.0 Elements
 --------------------------------------------------------------*/

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

ul,
ol {
    margin: 10px 0 15px 25px;
}

ul li {
    list-style: disc;
}

ol li {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 25px;
}

li {
    list-style-type: none;
}

dt {
    font-weight: bold;
}

img {
    height: auto;
    max-width: 100%;
    border-radius: 10px;
}

figure {
    margin: 0 auto 15px;
    position: relative;
}

table {
    width: 100%;
    margin: 15px 0;
    width: 100%;
    border-top: 1px solid #dedede;
    border-right: 1px solid #dedede;
}

th {
    font-weight: bold;
}


/*--------------------------------------------------------------
 4.0 Forms
 --------------------------------------------------------------*/

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

input::-webkit-input-placeholder {
    font-family: var(--primary-font);
}

input::-moz-placeholder {
    font-family: var(--primary-font);
}

input:-ms-input-placeholder {
    font-family: var(--primary-font);
}

input::-ms-input-placeholder {
    font-family: var(--primary-font);
}

input::placeholder {
    font-family: var(--primary-font);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    border-radius: 0;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    height: 55px;
    display: block;
    font-size: 16px;
    font-family: var(--primary-font);
    text-transform: uppercase;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /*opacity: 0.7;*/
}

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

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    /* Aspanresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield;
    /* Aspanresses appearance set to searchfield in S5, Chrome */
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
    /* Corrects inner padding displayed ospanly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

div.wpcf7-validation-errors {
    border: 2px solid #004a80;
    bottom: -51px;
    clear: both;
    color: #e90838;
    margin: 0;
    padding: 15px;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
    clear: both;
    color: #398f14;
    margin: 0;
    padding: 15px;
}

span.wpcf7-not-valid-tip {
    bottom: -16px;
    color: #ff0000;
    display: block;
    font-size: 14px;
    position: absolute;
}

input[type="text"],
input[type="password"],
textarea,
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
select {
    -moz-border-radius: 0;
    -webkit-appearance: none;
    border-radius: 6px;
    height: 40px;
    border: 1px solid #b9c5d1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
    padding: 10px;
    background: #f5f6f6;
    text-align: left;
}

textarea {
    width: 100%;
    height: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: #002d61;
}

span.wpcf7-form-control-wrap {
    display: block;
    margin-top: 5px;
}

.wpcf7 label {
    margin: 0px;
    width: 100%;
    text-transform: uppercase;
    color: #012c62;
}

.wpcf7 input {
    border: 1px solid #dde2ea;
}

.sidebar .wpcf7 input {
    background: #fff;
    padding-left: 12px;
}

::-webkit-input-placeholder {
    color: #8b8b8b;
    opacity: 1;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #8b8b8b;
    opacity: 1;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #8b8b8b;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #8b8b8b;
    opacity: 1;
}


/*--------------------------------------------------------------
 5.0 Navigation
 --------------------------------------------------------------*/


/*--------------------------------------------------------------
 5.1 Links
 --------------------------------------------------------------*/

a:focus {
    outline: none;
}

a {
    text-decoration: none;
}

a,
a:hover {
    text-decoration: none;
}


/*--------------------------------------------------------------
 5.2 Menus
 --------------------------------------------------------------*/


/*--------------------------------------------------------------
 Menu Start
 --------------------------------------------------------------*/

.main-navigation:before,
.main-navigation:after {
    clear: both;
    content: "";
    display: block;
}

.main-navigation ul ul ul {
    left: 100%;
    top: 0px;
}

.main-navigation li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.main-navigation li li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    float: none;
    padding: 0;
    text-align: left;
}

.main-navigation li:hover ul {
    display: block;
}

.main-navigation li:hover li ul {
    display: none;
}

.main-navigation li li:hover ul {
    display: block;
}

.main-navigation li li:hover li ul {
    display: none;
}

.main-navigation li li li:hover ul {
    display: block;
}

.main-navigation li li li:hover li ul {
    display: none;
}

.main-navigation li li li li:hover>ul {
    display: block;
}

.menu-top-menu-container>ul>li {
    margin: 0px 15px 0px;
}

.menu-top-menu-container>ul>li:last-child {
    margin-right: 0;
}

.main-navigation ul>li>a {
    color: var(--black);
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 0;
    font-size: 18px;
}

.main-navigation ul>li>a:hover,
.main-navigation ul>li.current-menu-item>a {
    color: var(--primary);
}

.main-navigation ul ul>li>a,
#masthead.site-header.sticky .main-navigation ul ul>li>a {
    padding: 10px 25px;
    color: var(--primary);
}

.main-navigation ul li ul li a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--primary);
    color: #fff;
}

.main-navigation li li.current_page_item a:after,
.main-navigation ul li li a:hover:after {
    display: none;
}

.main-navigation .menu>li:hover:after,
.main-navigation li.current-menu-item:after,
.main-navigation .menu ul>li:hover:after,
.main-navigation li.current_page_item:after {
    width: 100%;
}


/* .main-navigation .menu>li:after,
 .main-navigation ul li:after,
 .main-navigation li.current-menu-item:after,
 .main-navigation .menu ul>li:after,
 .main-navigation li.current_page_item:after {
     bottom: 0px;
     content: "";
     display: block;
     height: 100%;
     left: 0;
     margin: 0 auto;
     position: absolute;
     -webkit-transition: width 0.25s ease 0s;
     -o-transition: width 0.25s ease 0s;
     transition: width 0.25s ease 0s;
     width: 0;
     z-index: 88;
 }*/

.main-navigation ul li li:after {
    display: none;
}

.main-navigation li.current-menu-item:after,
.main-navigation ul li.current_page_item:after {
    width: 100%;
}

.main-navigation ul li.menu-item-has-children>ul>li.menu-item-has-children>a:after {
    content: "\f0d7";
    display: inline-block;
    font-size: 12px;
    right: 5px;
    position: absolute;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 19px;
}

.main-navigation ul li.menu-item-has-children>a:after {
    content: "\f0d7";
    display: inline-block;
    font-size: 12px;
    font-family: FontAwesome;
    left: 5px;
    position: relative;
}

.main-navigation ul ul {
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    margin: 0;
    position: absolute;
    top: 56px;
    z-index: 999;
    background: #fff;
    min-width: 200px;
    -webkit-box-shadow: 1px 8px 16px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 1px 8px 16px 0 rgba(0, 0, 0, 0.4);
}

.main-navigation ul li:hover ul {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.main-navigation ul ul li {
    display: block;
}


/*--------------------------------------------------------------
 Menu End
 --------------------------------------------------------------*/


/*   -- "Inline Social Profiles" (These are the styles for the Social Site section) --   */

.inline-social-icons ul,
.block-social-icons ul,
.widget ul {
    margin: 0;
}

.inline-social-icon ul,
.menu-footer-social-menu-container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.global-social-icon {
    -webkit-box-pack: left !important;
    -ms-flex-pack: left !important;
    justify-content: left !important;
}

.wp-block-media-text .wp-block-media-text__media {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}

.inline-social-icon,
.menu-footer-social-menu-container {
    padding: 15px 0;
    text-align: center;
}

.inline-social-icon .entry-title,
.menu-footer-social-menu-container .entry-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 60px;
    color: var(--heading-color);
}

.inline-social-icon li,
.menu-footer-social-menu-container li {
    list-style: none;
}

.inline-social-icon li:last-child,
.menu-footer-social-menu-container li:last-child {
    margin-right: 0;
}

.inline-social-icon li:first-child,
.menu-footer-social-menu-container li:first-child {
    margin-left: 0;
}

.inline-social-icon li a[href*="facebook.com"]::before,
.menu-footer-social-menu-container li a[href*="facebook.com"]::before {
    content: "\f09a";
}

.inline-social-icon li a[href*="gmail.com"]::before,
.inline-social-icon li a[href*="yahoo.com"]::before,
.inline-social-icon li a[href*="hotmail.com"]::before,
.menu-footer-social-menu-container li a[href*="gmail.com"]::before,
.menu-footer-social-menu-container li a[href*="yahoo.com"]::before,
.menu-footer-social-menu-container li a[href*="hotmail.com"]::before {
    content: "\f0e0";
}

.inline-social-icon li a[href*="twitter.com"]::before,
.menu-footer-social-menu-container li a[href*="twitter.com"]::before {
    content: "\f099";
}

.inline-social-icon li a[href*="linkedin.com"]::before,
.menu-footer-social-menu-container li a[href*="linkedin.com"]::before {
    content: "\f0e1";
}

.inline-social-icon li a[href*="pinterest.com"]::before,
.menu-footer-social-menu-container li a[href*="pinterest.com"]::before {
    content: "\f0d2";
}

.inline-social-icon li a[href*="tumblr.com"]::before,
.menu-footer-social-menu-container li a[href*="tumblr.com"]::before {
    content: "\f173";
}

.inline-social-icon li a[href*="plus.google.com"]::before,
.menu-footer-social-menu-container li a[href*="plus.google.com"]::before {
    content: "\f0d5";
}

.inline-social-icon li a[href*="instagram.com"]::before,
.menu-footer-social-menu-container li a[href*="instagram.com"]::before {
    content: "\f16d";
}

.inline-social-icon li a[href*="youtube.com"]::before,
.menu-footer-social-menu-container li a[href*="youtube.com"]::before {
    content: "\f167";
}

.inline-social-icon li a,
.menu-footer-social-menu-container li a {
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: var(--bg);
    display: inline-block;
    font-size: 0px;
    line-height: 39px;
    text-align: center;
    margin-right: 20px;
    background: var(--white);
    min-width: 39px;
    height: 39px;
    border-radius: 6px;
    text-transform: uppercase;
}

.inline-social-icon li,
.menu-footer-social-menu-container li {
    margin-right: 25px;
}

.inline-social-icon li a::before,
.menu-footer-social-menu-container li a::before {
    font-family: "FontAwesome";
    color: var(--text-color);
    font-size: 15px;
    text-align: center;
}

.inline-social-icon li a:hover,
.menu-footer-social-menu-container li a:hover {
    background-color: var(--primary);
}

.inline-social-icon li a:hover::before,
.menu-footer-social-menu-container li a:hover::before {
    color: var(--white);
}


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


/* Text meant only for screen readers */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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


/*--------------------------------------------------------------
 7.0 Alignments
 --------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}


/*--------------------------------------------------------------
 8.0 Clearings
 --------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
 9.0 Widgets
 --------------------------------------------------------------*/

.widget {
    margin-bottom: 30px;
}


/* Make sure select elements fit in widgets */

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


/* Search widget */


/*--------------------------------------------------------------
 10.0 Content
 --------------------------------------------------------------*/

.entry-content img {
    margin-bottom: 15px;
}

.entry-content {
    margin-bottom: 15px;
}


/*--------------------------------------------------------------
 10.1 Posts and pages
 --------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

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

.single .byline,
.group-blog .byline {
    display: inline;
    margin: 0;
}

.page-content,
.entry-content,
.entry-summary,
.entry-header {
    /*margin:0 0 15px;*/
}

.primary-button,
.secondary-button {
    display: inline-block;
    text-transform: capitalize;
    color: var(--white);
    background-color: var(--primary);
    font-size: 16px;
    border-radius: 4px;
    padding: 10px 15px;
}

.primary-button:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.secondary-button {
    background-color: var(--secondary);
    padding: 0px 15px;
}

.secondary-button:hover {
    background: var(--primary);
    color: var(--white);
}

.entry-header {
    text-align: center;
    margin-bottom: 50px;
}

.entry-header .entry-title {
    /* font-size: 35px; */
    display: inline-block;
    text-align: center;
    color: var(--secondary);
    max-width: 800px;
}

.entry-header a .entry-title:hover {
    color: var(--primary);
}

.entry-header p {
    max-width: 795px;
    margin: 0 auto;
    text-align: center;
}

.entry-content img,
.page-content img,
.entry-summary img {
    margin-bottom: 15px;
}

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


/*--------------------------------------------------------------
 10.2 Asides
 --------------------------------------------------------------*/

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    /*display: none;*/
}


/*--------------------------------------------------------------
 10.3 Comments
 --------------------------------------------------------------*/

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

.byblog-postauthor {
    display: block;
}


/*--------------------------------------------------------------
 11.0 Infinite scroll
 --------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .paging-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
 12.0 Media
 --------------------------------------------------------------*/

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


/* Make sure embeds and iframes fit their containers */

embed,
iframe,
object {
    width: 100%;
}


/*--------------------------------------------------------------
 12.1 Captions
 --------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

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

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

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}


/*--------------------------------------------------------------
 13 Miscellaneous
 --------------------------------------------------------------*/


/*-------------------------------------- 
 13.1 Basic Styles
 ----------------------------------------*/

body {
    color: #7d8185;
    font-size: 16px;
    font-style: normal;
    line-height: 1.3;
    font-family: var(--primary-font);
}


/*-------------------------------------- 
 14.0 Extra Styles
 ----------------------------------------*/

.back-to-top {
    bottom: 50px;
    position: fixed;
    right: 30px;
    z-index: 99;
}

.back-to-top a {
    border: 1px solid var(--white);
    border-radius: 3px;
    color: var(--white);
    display: block;
    font-family: "FontAwesome";
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: var(--secondary);
}

.back-to-top a:hover {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    color: #fff;
    background: #258bc6;
}

.back-to-top a::before {
    content: "\f106";
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.box-button,
input[type="submit"],
.wpcf7 input[type="submit"] {
    color: #18152b;
    display: inline-block;
    font-size: 16px;
    padding: 0 15px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    z-index: 1;
}

.box-button:hover,
.box-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.back-to-top a:hover {
    color: #fff;
}

.wpcf7 input[type="submit"],
input[type="submit"] {
    margin-bottom: 0;
    color: var(--white);
    background-color: #55555e;
}


/*............................main styling from here*/


/* header-section starts*/

.hgroup-wrap {
    background: var(--white);
}

.hgroup-content-wrap {
    padding: 20px 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: -webkit-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-wrap: -webkit-box;
    z-index: 9;
    justify-content: center;
    top: 0;
    position: relative;
}

.hgroup-content-wrap>div {
    padding: 0 15px;
}

.hgroup-right {
    width: 83%;
    width: calc(100% - 580px);
    width: -webkit-calc(100% - 580px);
    padding-left: 15px;
}

.hgroup-content-wrap .hgroup-right {
    padding-left: 170px;
}

.search-icon {
    width: 400px;
}

.search-icon p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
}

.search-icon p .secondary-button {
    line-height: 40px;
    border-radius: 0 6px 6px 0;
    text-transform: uppercase;
}

.search-icon p input {
    border-radius: 6px 0 0 6px;
}

.search-icon p input::-webkit-input-placeholder {
    text-align: left;
}

.search-icon p input::-moz-placeholder {
    text-align: left;
}

.search-icon p input:-ms-input-placeholder {
    text-align: left;
}

.search-icon p input::-ms-input-placeholder {
    text-align: left;
}

.search-icon p input::placeholder {
    text-align: left;
}

.call-button {
    width: 180px;
}

.menu-top-menu-container>ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: right;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-wrap: -webkit-box;
}

.hgroup-content-wrap .site-branding {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 125px;
}

.site-branding h1 {
    margin-bottom: 0;
}

.site-branding a:hover img {
    opacity: 0.6;
}

.navbar {
    min-height: auto;
    border: none;
    margin: 0;
    display: block;
    padding: 0;
}

.navigation {
    text-align: center;
    padding: 20px 0;
}

.hgroup-right .navigation {
    padding: 0;
}


/* page title styling from here */

.page-title-wrap {
    padding: 200px 0 170px;
    background-attachment: fixed !important;
    background-position: 50% 0;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    text-align: center;
}

.page-title-wrap::before {
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: rgba(24, 21, 43, 0.7);
}

.page-title-wrap * {
    position: relative;
}

.page-title {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.breadcrumbs a,
.breadcrumbs span {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.breadcrumbs a {
    opacity: 0.5;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumbs li {
    display: inline-block;
    margin: 0 10px 5px;
    position: relative;
}

.breadcrumbs li:first-child {
    margin-left: 0;
}

.breadcrumbs li:last-child {
    margin-right: 0;
}

.breadcrumbs li::before {
    position: absolute;
    display: block;
    content: "\f105";
    font-family: "FontAwesome";
    color: #fff;
    opacity: 0.4;
    right: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 23px;
    font-size: 18px;
}

.breadcrumbs li:last-child:before {
    display: none;
}


/* container stylings */

.container {
    width: 100%;
    max-width: 1171px;
    margin: auto;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
}

.order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
}

.order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
}

.order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
}

.order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
}

.order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
}

.order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
}

.order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
}

.order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
}

.order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
}

.order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
}

.order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
}

.order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
}

.order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
}


/* main styling style starts from here */

.site-content section {
    padding: 90px 0;
}

.home .site-content section:nth-child(even) {
    background: var(--bg);
}

.home .site-content section:nth-child(odd) {
    background: var(--white);
}

.site-content .widget section {
    padding: 0;
}

.banner {
    position: relative;
    margin-bottom: 60px;
}

.breadcum-wrapper {
    margin: 0 0 90px;
}

.banner figure {
    line-height: 0;
    margin-bottom: 0;
}

.banner img {
    width: 100%;
    /* filter: blur(4px);
    -webkit-filter: blur(4px); */
}

.banner .banner-content {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    z-index: 5;
}

section.banner:after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(142, 198, 65);
    background: linear-gradient(180deg, rgb(104 138 58 / 41%) 0%, rgb(54 6 0/87%) 100%);
}

.home section.banner:after {
    background: none;
}

.banner .banner-content .entry-header {
    margin-bottom: 0;
}

.banner .banner-content .entry-header .entry-title {
    padding: 10px 38px 15px;
    background: rgb(255 255 255 / 80%);
    border: 2px solid rgba(54, 6, 0, 0.2);
    border-radius: 7px;
}

.entry-header .subtitle {
    font-size: 24px;
    /* font-weight: bold; */
    text-transform: capitalize;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto;
}

.banner .banner-content .entry-header .subtitle {
    background: #8ec640;
    border: 3px solid rgba(54, 6, 0, 0.15);
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0;
    position: relative;
    color: var(--white);
    padding: 10px 25px;
    bottom: -8px;
    text-transform: uppercase;
}


/* services section starts here */

.site-content section.services {
    padding-top: 0;
}

.services {
    margin-top: -235px;
    padding-bottom: 123px;
}

.post li {
    font-family: var(--para-font);
}

.services-wrapper,
.latest-blog-wrapper,
.Vermicomposting-wrapper,
.featured-on-wrapper,
.starting-vermicomposting-wrapper,
.post-wrapper.tab-post-wrapper .post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.services-wrapper .service-item,
.post-wrapper .post,
.featured-on-wrapper .featured-on-item {
    position: relative;
    margin: 0 15px;
    width: 33.33%;
    width: calc(33.33% - 30px);
}

.services-wrapper .service-item figure {
    margin-bottom: 0;
    line-height: 0;
}

.services-wrapper .service-item img {
    border-radius: 12px;
}

.service-content {
    padding: 0 35px;
    position: relative;
    z-index: 1;
}

.services-wrapper .service-item .entry-header {
    position: absolute;
    bottom: 16px;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.services-wrapper .service-item .entry-header .entry-title {
    font-size: 36px;
    color: var(--white);
}

.services-wrapper .service-item::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    opacity: 0;
    background: #360600;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    z-index: 1;
    border-radius: 12px;
}

.services-wrapper .service-item::after {
    position: absolute;
    display: block;
    content: "";
    width: 95%;
    opacity: 0;
    background: var(--primary);
    bottom: -6px;
    left: 0;
    right: 0;
    margin: auto;
    height: 6px;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    border-radius: 10px;
}

a.button-more {
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    color: var(--primary);
    text-transform: uppercase;
    background-image: url(assets/images/button-right-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 5px;
    padding-right: 13px;
}

a.button-more:hover {
    color: var(--secondary);
}

.services-wrapper .service-item a.button-more,
.post-wrapper .post a.button-more {
    position: absolute;
    bottom: -10px;
    opacity: 0;
}

.services-wrapper .service-item:hover::after,
.services-wrapper .service-item:hover a.button-more {
    opacity: 1;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    z-index: 1;
}

.services-wrapper .service-item:hover a.button-more {
    bottom: 36px;
}

a.button-more:hover {
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    padding-right: 20px;
}

.services-wrapper .service-item:hover::before {
    opacity: 70%;
}

.services-wrapper .service-item:hover .entry-header {
    bottom: 50px;
}


/* latest-blog style starts here */

.latest-blog,
.Vermicomposting {
    background: var(--bg);
}

.post-wrapper .post {
    background-color: var(--light-bg);
    border-radius: 6px;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    margin-bottom: 25px;
}

.latest-blog .post {
    min-height: 360px;
}

.post-wrapper .post:hover {
    background: var(--white);
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.post-wrapper .post img {
    border-radius: 6px;
    width: 100%;
}

.post-wrapper .post-content {
    padding: 0 20px 20px;
}

.post-wrapper .post .entry-header {
    text-align: left;
}

.post-meta {
    margin-bottom: 15px;
}

.post-meta>span {
    margin-right: 10px;
}

.author-name,
.comment-count,
.cat-links,
.entry-date {
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 18px;
}

.cat-links {
    background-image: url(assets/images/cat-link-icon.svg);
}

.entry-date {
    background-image: url(assets/images/calander-icon.svg);
}

.author-name {
    background-image: url(assets/images/author-icon.svg);
}

.comment-count {
    background-image: url(assets/images/comment-icon.svg);
}

.post-meta * {
    color: var(--text-color);
    text-transform: capitalize;
}

.post-wrapper .post:hover a.button-more {
    bottom: 15px;
    opacity: 1;
}

.post-wrapper .post .entry-header {
    margin-bottom: 20px;
}

.post-wrapper .post .entry-header .post-title a {
    /* color: var(--secondary); */
    /* font-size: 26px; */
    font-weight: 300;
}

.latest-blog .post:hover {
    -webkit-box-shadow: 0px 6px 34px 3px rgba(54, 6, 0, 0.1);
    box-shadow: 0px 6px 34px 3px rgba(54, 6, 0, 0.1);
}


/* Vermicomposting style starts here */

.Vermicomposting .post .entry-header .post-title {
    position: relative;
}

.Vermicomposting .contact-detail {
    text-align: center;
}

.Vermicomposting .contact-detail p {
    margin-top: 10px;
}

.Vermicomposting .post .entry-header .post-title:before {
    position: absolute;
    content: "";
    display: block;
    left: 1px;
    width: 4px;
    height: 80%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--primary);
    opacity: 0;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.Vermicomposting .post:hover .post-title a {
    color: var(--primary);
}

.Vermicomposting .post:hover .entry-header .post-title:before {
    opacity: 1;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.Vermicomposting .post-content {
    padding: 0;
}

.Vermicomposting .post-title {
    padding: 0 20px;
}


/* style for our shop */

.our-shop-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 10px auto 10px auto;
    grid-template-columns: auto auto auto;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.our-shop-item {
    position: relative;
}

.item-large {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
}

.our-shop .primary-button {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(54, 6, 0, 0.2);
    color: var(--secondary);
    display: inline-block;
}

.our-shop .primary-button {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(54, 6, 0, 0.2);
    color: var(--secondary);
    display: inline-block;
    font-size: 26px;
}

.our-shop-item:hover .primary-button {
    background: var(--primary);
    color: var(--white);
}

.our-shop-item:hover .primary-button:hover {
    background: var(--secondary);
}

.our-shop-btn-wrapper {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.our-shop .our-shop-item figure {
    margin-bottom: 0;
}


/* urban-worm-company styling starts here */

.urban-worm-team .designation p {
    color: var(--primary);
}


/* featured on section styling starts here */

.site-content section.featured-on {
    margin-top: -200px;
    background: var(--bg);
}

.featured-on-wrapper .featured-on-item {
    width: 20%;
    width: calc(20% - 30px);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    padding: 23px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 42px 45px -20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 42px 45px -20px rgba(0, 0, 0, 0.05);
}

.featured-on-wrapper .featured-on-item figure {
    margin: 0;
}


/* testimonialsection style stars header */

.site-content section.book-review {
    position: relative;
}

.site-content section.testimonial {
    padding-bottom: 30px;
}


/* .testimonial-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
} */

.testimonial .figure-wrapper .entry-header {
    line-height: 0;
    text-align: left;
}

.testimonial-wrapper .featured-slider .entry-header {
    text-align: left;
    margin-bottom: 10px;
}

.testimonial-wrapper .featured-slider .entry-header .entry-title {
    font-size: 52px;
}

.testimonial-wrapper .figure-wrapper {
    width: 50%;
}

.testimonial-wrapper figure img {
    width: 100%;
}

.testimonial-wrapper .slider-item {
    display: flex;
}

.testimonial-wrapper .featured-image,
.testimonial-wrapper .content-wrapper {
    width: 50%;
}

.testimonial-wrapper .figure-wrapper {
    /* margin-bottom: -160px; */
}

.testimonial-wrapper .featured-image {
    /* margin-top: 200px; */
}

.testimonial-wrapper .content-wrapper {
    padding-left: 20px;
}

.testimonial .detail {
    margin-top: 70px;
}

.testimonial .detail p {
    font-size: 26px;
    font-family: var(--heading-color);
    color: var(--black);
}

.testimonial .detail p span {
    color: var(--primary);
    padding-left: 10px;
}

.slider-item .entry-content p {
    font-size: 24px;
}

.slick-dots {
    text-align: left;
    width: 47%;
    right: 0;
}

.slick-dots li button:before {
    width: 12px;
    height: 12px;
    content: "";
    background: var(--black);
    border-radius: 50%;
    opacity: 1;
}

.slick-dots li button:hover:before {
    background: var(--secondary);
}

.slick-dots li.slick-active button:before {
    background: var(--primary);
    width: 30px;
    height: 12px;
    border-radius: 10px;
    left: -9px;
}

.entry-content p span {
    color: inherit !important;
}


/* starting-vermicomposting styling starts here */

.starting-vermicomposting-item {
    width: 50%;
    width: calc(50% - 30px);
    margin: 0 15px;
}

.interviews-with-experts {
    padding-left: 30px;
}

.accordion-item-wrap .accordion-content {
    display: none;
    padding: 20px;
    font-size: 18px;
    font-family: var(--para-font);
}

.accordion-item-wrap .accordion-content img {
    display: block;
    margin-bottom: 10px;
}

.accordion-item {
    border: 1px solid var(--bg);
    margin-bottom: 25px;
    border-radius: 7px;
}

.accordion-item a.toggle {
    background: var(--bg);
    display: block;
    padding: 15px 30px 15px 20px;
    position: relative;
    color: var(--secondary);
    font-size: 26px;
    font-weight: 300;
}

.interviews-with-experts .tab-links {
    background: var(--secondary);
}

.interviews-with-experts .tab-links a {
    color: var(--white);
}

.accordion-item a.toggle::before {
    position: absolute;
    display: block;
    content: "\f078";
    font-family: "FontAwesome";
    right: 17px;
    font-size: 8px;
    line-height: 15px;
    background: var(--secondary);
    color: var(--white);
    height: 15px;
    width: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    border-radius: 50%;
}

.accordion-item.current a.toggle::before {
    content: "\f077";
    background: var(--primary);
}

.accordion-item a.toggle:hover::before {
    background: var(--primary);
}

.accordion-item a.toggle:hover {
    color: var(--primary);
}

.accordion-item .secondary-button {
    margin: 30px 0;
    display: block;
}

.interviews-with-experts .entry-header {
    text-align: left;
    margin-bottom: 25px;
}

.interviews-with-experts .tab {
    display: none;
}

.interviews-with-experts .tab.active {
    display: block;
}

.interviews-with-experts .tab-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    justify-content: space-between;
    border-radius: 7px 7px 0 0;
}

.interviews-with-experts .tab-links li {
    list-style: none;
    width: 50%;
    margin: 0;
    text-align: center;
    padding: 22px;
}

.tabs .tab-content {
    background: var(--bg);
    padding: 20px;
    border-radius: 0 0 7px 7px;
}

.interviews-with-experts .tab-links li.active {
    background: var(--primary);
    border-radius: 7px 0 0 0;
}

.interviews-with-experts .tab-links li.active:last-child {
    border-radius: 0 7px 0 0;
}

.interviews-with-experts .tab-links li a {
    font-size: 26px;
    font-weight: 300;
}

.post-wrapper.tab-post-wrapper .post {
    width: 100%;
    background: transparent;
    margin: 0;
    display: flex;
    align-items: center;
}

.post>img,
.service-item img {
    width: 100%;
}

.post-wrapper.tab-post-wrapper .post figure {
    width: 25%;
    margin-bottom: 0;
}

.post-wrapper.tab-post-wrapper .post .post-content {
    width: 75%;
    padding-bottom: 0;
}

.post-wrapper .post .post-content .entry-title {
    font-size: 22px;
    font-weight: 300;
    text-align: left;
    margin: 0;
}

.post-wrapper.tab-post-wrapper .post .post-content .entry-header {
    margin-bottom: 0;
}


/* .post-wrapper .count p,.post-wrapper .count{
     position: absolute;
     padding-left: 20px;
     bottom: 10%;
 }
 .post-wrapper .post figure{
     margin-bottom: 0;
 }
 .post-wrapper .count p::before{
     position: absolute;
     content:"0" counter(counter-post);
     display: block;
     left:0;
 } */

.starting-vermicomposting a.secondary-button,
.urban-worm-team a.secondary-button,
.ultimate-guide .desc a.secondary-button,
.farming-alliance a.secondary-button,
.comment-form .submit,
.search-submit {
    /* background-image: url(assets/images/button-right-arrow-white.svg); */
    background-repeat: no-repeat !important;
    padding: 15px 40px;
    /* background-position: 90% !important; */
    text-transform: uppercase !important;
    margin-top: 30px !important;
    border-radius: 7px !important;
    text-align: center;
}

.comment-form-comment textarea {
    height: 171px;
}

.comment-form .submit,
.search-submit {
    background-color: var(--secondary) !important;
    margin-top: 10px !important;
}

.comment-form .submit:hover,
.search-submit:hover {
    background-color: var(--primary) !important;
}

.search-submit {
    height: 40px !important;
    border-radius: 0 6px 6px 0 !important;
    text-transform: uppercase !important;
}

input.search-field {
    border-radius: 6px 0 0 6px;
}

.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.search-submit {
    margin-top: 0 !important;
}


/* urban-worm-team-wrapper style starts here  */

.urban-worm-team {
    background: var(--white);
    text-align: center;
    padding-bottom: 30px;
}

.urban-worm-team-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 30px auto 30px auto;
    grid-template-columns: auto auto auto;
    gap: 30px;
}

.urban-worm-team-wrapper .urban-worm-team,
.urban-worm-team.hrizontal-team {
    background: #ffffff;
    border: 1px solid rgba(54, 6, 0, 0.2);
    border-radius: 10px;
    padding: 32px;
}

.urban-worm-team-wrapper .urban-worm-team * {
    text-align: left;
}

.urban-worm-team-wrapper .urban-worm-team .description p {
    font-size: 16px;
}

.urban-worm-team .inline-social-icon * {
    text-align: center;
}

.urban-worm-team-wrapper .urban-worm-team img,
.urban-worm-team.hrizontal-team img {
    width: 150px;
    height: 150px;
    border: 8px solid #eeeeee;
    border-radius: 50%;
}

.urban-worm-team .inline-social-icon {
    justify-content: left;
    padding: 0;
}

.urban-worm-team .inline-social-icon ul {
    margin-left: 0;
}

.urban-worm-team-wrapper .item-large {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.item-large .team-tag-wrapper {
    width: 27%;
}

.urban-worm-team-wrapper .item-large figure {
    width: 20%;
}

.urban-worm-team-wrapper .item-large .detail {
    width: 27%;
}

.urban-worm-team-wrapper .item-large .detail .name p {
    font-size: 26px;
    color: var(--black);
}

.urban-worm-team-wrapper .item-large .detail .designation p {
    font-size: 16px;
}

.description {
    text-align: left;
    padding-top: 15px;
    border-top: 2px solid var(--bg);
}

.item-large .team-tag-wrapper {
    padding: 0 15px;
}

.designation p {
    font-family: var(--heading-color);
}

.urban-worm-team-wrapper .item-large .description {
    width: 53%;
    padding-left: 32px;
    border-left: 2px solid var(--bg);
    border-top: none;
    padding-top: 0;
}

.urban-worm-team-wrapper .item-large img {
    width: 200px;
    height: 200px;
}

.urban-worm-team-wrapper .urban-worm-team .description p:last-child {
    margin-bottom: 0;
}

.urban-worm-team-wrapper .urban-worm-team .name p {
    color: var(--black);
    font-size: 26px;
    font-family: var(--heading-color);
}

.latest-blog-wrapper .post figure.featured-image,
.Vermicomposting .post figure.featured-image,
.our-shop .our-shop-item figure.featured-image {
    /* line-height: 0; */
}

.our-shop .our-shop-item figure img {
    width: 100%;
}

.latest-blog-wrapper .post figure.featured-image::before,
.Vermicomposting .post figure.featured-image::before,
.our-shop .our-shop-item figure.featured-image::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: #360600;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    border-radius: 6px;
}

.latest-blog-wrapper .post:hover figure.featured-image::before,
.Vermicomposting .post:hover figure.featured-image::before,
.our-shop .our-shop-item:hover figure.featured-image::before {
    /* opacity: 0.7; */
}


/* ABOUT US PAGE STARTS HEREE */


/* .who-we-are-wrapper style starts here */

.site-content section.who-we-are {
    padding: 0 0 100px;
}

.who-we-are-wrapper,
.vermiculture-conference-wrapper,
.mission-vission-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.who-we-are-image,
.who-we-are-description,
.vermiculture-description,
.vermiculture-images,
.mission-vission .mission-vission-img-desc,
.mission-vission figure {
    width: 50%;
    margin: 0 15px;
    width: calc(50% - 30px);
}

.who-we-are-image img {
    border-radius: 10px;
}

.who-we-are-image p {
    margin-top: 20px;
}


/* our-history style starts here */

.our-history {
    background: var(--bg);
}

.our-history-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 40px 70%;
    grid-template-columns: 30% 70%;
    text-align: left;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding-top: 40px;
}

.our-history-wrapper .our-history-description {
    padding-left: 40px;
}

.our-history-item a,
.vermiculture-conference p,
.mission-vission p,
.mission-vission ul li {
    text-align: center;
}

.our-history-item p,
.our-history-item p {
    max-width: 795px;
    margin: auto;
}

.our-history-figure {
    position: relative;
}

.our-history-item {
    text-align: center;
}

.our-history-item img,
.vermiculture-conference,
.vermiculture-conference img,
.mission-vission img {
    border-radius: 10px;
    width: 100%;
}

.our-history-item.item-figure {
    position: relative;
}

.our-history h3 {
    position: absolute;
    bottom: 40px;
    padding: 10px 3px;
    background: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(54, 6, 0, 0.2);
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    left: 0;
    right: 0;
    color: var(--secondary);
    margin: auto;
    width: 95%;
}

.our-history p span {
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.our-history-item a {
    color: var(--primary);
    font-family: var(--para-font);
}

.our-history-item a:hover {
    color: var(--secondary);
}

.vermiculture-image {
    position: relative;
}

.vermiculture-image h3 {
    bottom: 28px;
}

.vermiculture-image figure {
    margin-bottom: 0;
}

.vermiculture-image a {
    height: 82px;
    width: 82px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}


/* what-we-serve style starts heree */

.Vermicomposting.what-we-serve {
    background: var(--white);
    padding-bottom: 115px !important;
}

.Vermicomposting.what-we-serve .post-title a {
    font-weight: 400;
}

.Vermicomposting.what-we-serve .para-content-wrapper {
    padding: 0 20px;
}

.Vermicomposting.what-we-serve .para-content-wrapper a {
    color: var(--primary);
}

.Vermicomposting.what-we-serve .para-content-wrapper a:hover {
    color: var(--secondary);
}

.vermiculture-conference {
    background-color: var(--white);
    padding: 25px;
    margin-top: 50px;
}

.mission-vission {
    background: var(--bg);
}

.mission-vission-wrapper {
    padding-top: 30px;
}

.mission-vission-img-desc p {
    text-align: left;
}

.mission-vission ul {
    margin-left: 0;
}

.mission-vission ul li {
    text-align: left;
    list-style: none;
    position: relative;
    padding-left: 30px;
    font-family: var(--para-font);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.mission-vission ul li::before {
    position: absolute;
    content: "\f054 ";
    display: block;
    left: 0;
    top: 5px;
    height: 15px;
    line-height: 15px;
    width: 15px;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    font-family: "fontawesome";
    border-radius: 50%;
    font-size: 9px;
}


/* style blog-detil for */

.single #content #primary {
    width: 70%;
    padding-right: 50px;
    float: left;
}

.single #content #secondary {
    width: 30%;
    float: left;
}

.secondary-tiems,
.widget_block {
    background: var(--bg);
    margin-bottom: 50px;
    text-align: center;
}

.secondary-tiems .entry-header,
.widget_block .entry-header {
    /* background: rgba(36, 32, 32, 0.09); */
    margin-bottom: 0;
}

aside#table_of_content_wrapper ul.tocify-header,
aside#table_of_review_content_wrapper ul.tocify-header {
    background: #ffffff;
    padding: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 5px;
}

.secondary-tiems h3.entry-title,
.widget_block .widget-title,
.wp-block-search__label {
    background: var(--white);
    padding: 10px 15px;
    color: var(--secondary);
    border-radius: 7px;
    margin-bottom: 0;
    /* text-transform: capitalize; */
}

.widget_block .widget-title {
    display: inline-block;
}

.blog-detail-post-wrapper .entry-header {
    text-align: left;
    margin-bottom: 0;
}

.blog-detail-post-wrapper img {
    width: 100%;
}

.blog-detail-post-wrapper .post-meta {
    margin-bottom: 30px;
}

.table-of-content {
    margin-bottom: 50px;
}

.posted-user,
.secondary-tiems .item-content,
.secondary-tiems .tab-post-wrapper.post-wrapper,
ul.tocify {
    padding: 20px;
}

.posted-user {
    text-align: center;
}

.posted-user .name h4 {
    color: var(--secondary);
    font-size: 20px;
    text-align: center;
}

.posted-user p {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 14px;
}

.posted-user img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid #e9e8e8;
}

.posted-user .inline-social-icon {
    padding: 0;
}

.posted-user .inline-social-icon ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.posted-user .inline-social-icon ul li {
    margin-bottom: 0;
    margin-right: 0;
}

.posted-user .inline-social-icon ul li a {
    background: transparent;
    padding: 0;
    min-width: 25px;
    height: 31px;
}

.posted-user .inline-social-icon li a:hover::before {
    color: var(--secondary);
}

.categories {
    text-align: left;
}

.categories li,
.wp-block-categories-list li.cat-item,
.post-wrapper.tab-post-wrapper .post {
    list-style: none;
    position: relative;
    padding: 16px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #d9d9d9;
    color: var(--secondary);
    font-weight: 300;
}

.post-wrapper.tab-post-wrapper .post:last-child {
    border-bottom: none;
}

.categories li a,
.wp-block-categories-list li.cat-item a {
    color: var(--secondary);
}

.categories li a:hover,
.wp-block-categories-list li.cat-item a:hover {
    color: var(--primary);
}

.wp-block-categories-list li.cat-item {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.categories li:last-child,
.wp-block-categories-list li.cat-item:last-child {
    border-bottom: none;
}

.categories li span,
.wp-block-categories-list li.cat-item span {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 23px;
}

.secondary-tab-post .post-wrapper .post .post-content .entry-header {
    background: none;
}

.secondary-tab-post .post-wrapper .post .post-content .entry-title {
    font-size: 17px;
    background-color: transparent;
    padding: 0 10px;
}

.secondary-tab-post .post-wrapper.tab-post-wrapper .post figure {
    width: 30%;
}

.secondary-tab-post .post-wrapper.tab-post-wrapper .post .post-content {
    width: 70%;
    padding: 0;
}

.secondary-tiems .tab-post-wrapper.post-wrapper {
    /* padding: 25px 10px 25px 25px; */
}

.widget_search form {
    padding: 11px 10px 25px 25px;
}

.wp-block-search__inside-wrapper {
    padding-top: 10px;
}

.site-footer .widget_block .widget-title {
    background: none;
    color: var(--white);
    margin-bottom: 0;
}

.blog .banner .banner-content,
.archive .banner .banner-content {
    top: 40%;
}

.search-no-results .search-form {
    justify-content: center;
}

.search-results .page-header {
    margin-top: 90px;
}

.search-results .page-title {
    color: var(--black);
}


/* resource detail-page style-starts here */

.growing-worm-farm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.entry-header h4.entry-title {
    text-align: left;
    font-size: 36px;
}

.growing-worm-farm figure,
.growing-worm-farm .figure-description {
    width: 50%;
}

.growing-worm-farm .figure-description {
    padding-left: 40px;
}

.growing-worm-farm .entry-header,
.worm-farming-objective .entry-header .use-resource-page .entry-header,
.subject .entry-header,
.ultimate-guide .entry-header,
.farming-alliance .entry-header {
    text-align: left;
    margin-bottom: 10px;
}

.learning-vermicomposting,
.growing-worm-farm,
.worm-farming-objective,
.worm-farming-objective,
.use-resource-page,
.subject,
.ultimate-guide,
.farming-alliance {
    padding: 20px 0 !important;
}

.objective-desc,
.worm-farming-objective-wrapper,
.use-resource-page-wrapper,
.subject-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.objective-desc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.worm-farming-objective {
    padding-top: 25px;
}

.worm-farming-objective ul li:hover,
.use-resource-page ul li:hover {
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-left: 12px;
}

.objective-desc p,
.objective-desc figure,
.objective-desc-wrapper,
.mission-vission.objective-points,
.use-resource-page .how-to-use-desc,
.use-resource-page .business-tool-navigation,
.subject-wrapper figure,
.subject-wrapper .desc {
    width: 50%;
    width: calc(50% - 30px);
    margin: 0 15px;
}

.objective-desc p {
    width: 50%;
    width: calc(50% - 30px);
}

.objective-desc {}

p:last-child {
    width: 100%;
}

.worm-farming-objective.objective_group-2 .objective-desc {
    display: block;
}

.worm-farming-objective.objective_group-2 .objective-desc p {
    width: 100%;
    padding-right: 15px;
    margin-left: 0;
}

.mission-vission.objective-points {
    background: none;
}

.mission-vission.objective-points p {
    text-align: left;
}

.use-resource-page .business-tool-navigation {
    padding: 25px;
}

.use-resource-page .business-tool-navigation ul li {
    padding: 20px 30px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 0;
}

.use-resource-page .business-tool-navigation ul li::before {
    top: 0;
    bottom: 0;
    margin: auto;
}

.subject-wrapper {
    background: var(--bg);
    border-radius: 10px;
    border: 2px solid rgba(54, 6, 0, 0.07);
}

.subject-wrapper figure {
    margin: 0;
    line-height: 0;
}

.subject-wrapper figure img {
    line-height: 0;
}

.subject-wrapper .desc {
    padding: 35px 10px 0;
}

.subject .subject-wrapper.image-right figure {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.ultimate-guide-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--bg);
    border: 2px solid rgba(54, 6, 0, 0.07);
    -webkit-backdrop-filter: blur(31px);
    backdrop-filter: blur(31px);
    border-radius: 10px;
}

.ultimate-guide-wrapper .ultimate-guide-left,
.ultimate-guide-wrapper .ultimate-guide-right {
    padding: 35px 25px;
    text-align: left;
    width: 50%;
}

.ultimate-guide-wrapper .ultimate-guide-left {
    padding-right: 0;
}

.company-classroom .ultimate-guide-wrapper .ultimate-guide-left {
    padding-left: 0;
}

.ultimate-guide-wrapper .ultimate-guide-right .entry-header,
.ultimate-guide-wrapper .ultimate-guide-right .desc p {
    text-align: left;
}

.company-classroom .ultimate-guide-wrapper {
    background: var(--white);
    border: none;
}

.farming-alliance .urban-worm-team-wrapper {
    -ms-grid-columns: 47% 47%;
    grid-template-columns: 47% 47%;
}

.farming-alliance .urban-worm-team-wrapper .urban-worm-team {
    padding: 32px 20px;
}

.farming-alliance .urban-worm-team-wrapper .urban-worm-team * {
    text-align: center;
}

.farming-alliance .urban-worm-team-wrapper .urban-worm-team a.button-more {
    font-size: 15px;
}

.urban-worm-team.hrizontal-team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.urban-worm-team.hrizontal-team figure {
    width: 30%;
}

.urban-worm-team.hrizontal-team .team-detail {
    width: 70%;
    text-align: left;
    padding-left: 40px;
}

ul.tocify li,
ul.wp-block-categories-list li {
    list-style: none;
    margin: 0;
}

ul.tocify {
    text-align: left;
    /* background: rgba(36, 32, 32, 0.09); */
    border-radius: 0 0 10px 10px;
}

ul.tocify .tocify-subheader li a {
    font-family: var(--para-font);
    color: var(--text-color);
}

ul.tocify>ul li a {
    color: var(--secondary);
}

ul.tocify ul ul li {
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

ul.tocify ul ul li:hover {
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

ul.tocify li a:hover {
    color: var(--primary);
}

ul.tocify ul ul li:first-child {
    padding-top: 10px;
    border-top: 1px solid #d9d9d9;
    margin-top: 15px;
}

ul.tocify ul ul li:last-child {
    border: none;
    margin-bottom: 0
}

.blog-detail-post-wrapper .entry-content h2,
.blog-detail-post-wrapper .entry-content h3 {
    margin-top: 20px;
}

aside#table_of_content_wrapper ul.tocify-header>li {
    padding: 2px 0;
}

.header {
    background-color: #fff;
    position: relative;
}

.header__wrapper {
    margin-top: 0;
}

#wp-megamenu-primary #menu-main-nav>li>a {
    color: #3e316b;
    font-size: 16px;
}

#wp-megamenu-primary #menu-main-nav>li.donate a {
    color: #fff;
}

.urban-widget-add-post,
.urban-widget-add-post .widget {
    margin-bottom: 0;
}

.site-content section.widget_block,
.site-content section.urban-widget-add-post,
.site-content section.urban-widget-related-post {
    padding: 0;
}

.inline-social-icon .share-text h3 {
    margin-bottom: 0;
}

.inline-social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inline-social-icon li {
    margin: 0;
}

.inline-social-icon li a {
    background: var(--bg);
}

.comment-field-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 10px auto;
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 10px;
    margin: 0 -10px;
}

.comment-field-wrapper p:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1 / 5;
}

.fa-phone-alt {
    -webkit-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    transform: rotate(100deg);
}

.counter {
    width: 30px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    background: var(--primary);
    top: 10px;
    font-size: 12px;
    left: 10px;
    border-radius: 5px;
    text-align: center;
    color: var(--white);
}

.breadcum-wrapper {
    background: var(--bg);
    padding: 10px 0;
}

.page .breadcum-wrapper {
    margin: 0;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 150px;
}

.breadcrumb li {
    margin-bottom: 0;
    list-style: none;
    margin-right: 15px;
    position: relative;
}

.breadcrumb li::after {
    position: absolute;
    display: block;
    content: ">";
    right: -11px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.breadcrumb li:last-child::after {
    display: none;
}

.single .entry-title {
    /* text-align: left; */
    /* font-weight: 600; */
}

.article-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.archive article,
.search article,
.blog article {
    width: 33.33%;
    width: calc(33.33% - 30px);
    margin: 20px 15px;
}

.article-wrapper article .entry-header {
    margin-bottom: 0;
    text-align: left;
}

.article-wrapper article .entry-header .entry-title {
    /* font-size: 24px; */
    text-align: left;
}

input.search-submit {
    background-image: url(assets/images/search-icon.png);
    background-repeat: no-repeat;
    background-size: 0;
}

.pagination .nav-links,
.search-results .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wp-block-media-text .wp-block-media-text__content {
    padding: 0 6%;
}

.custom-pagination {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.custom-pagination span,
.custom-pagination a {
    margin: 0 5px;
    padding: 3px 5px;
    border-radius: 5px;
    background: var(--secondary);
    color: var(--white);
}

.custom-pagination span:hover,
.custom-pagination a:hover,
.custom-pagination .page-numbers.current {
    background: var(--primary);
    color: #fff;
}

.single .nav-previous a,
.single .nav-next a {
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

.single .nav-next a {
    padding-right: 20px;
    display: block;
}

.single .nav-previous a::before {
    position: absolute;
    display: block;
    content: "\f053";
    font-family: "FontAwesome";
    left: 0;
    top: 3px;
}

.single .nav-next a::after {
    position: absolute;
    display: block;
    content: "\f054 ";
    font-family: "FontAwesome";
    right: 0;
    top: 3px;
    /* transform: rotateY(45deg); */
}

.tocify-extend-page {
    display: none;
}


/*footer section starts*/

.site-footer .widget_block {
    background: none;
}

.site-footer .menu-footer-social-menu-container ul {
    justify-content: left;
}

.comment-list li {
    list-style: none;
}

.comment-list {
    margin-left: 0;
}

.comment-list article {
    background: var(--bg);
    padding: 15px;
    margin: 10px 0;
    border-radius: 11px;
}

.color-present {
    padding: 20px 15px;
    border-radius: 11px;
}

.comment-author.vcard,
.comment-metadata {
    padding: 15px 0px;
}

.comment-author img {
    border-radius: 50%;
}

.site-footer {
    position: relative;
    background: var(--footer-bg);
}

.mean-container .meanmenu-reveal span:before,
.mean-container .meanmenu-reveal span:after,
.mean-container .meanmenu-reveal span {
    background: var(--primary);
}

.widget-area * {
    color: #fff;
}

.site-footer ul li,
.site-footer p {
    list-style: none;
    opacity: 0.7;
    font-weight: 300;
    font-size: 22px;
    font-family: var(--primary-font);
}

.site-footer .inline-social-icon li {
    opacity: 1;
}

.site-footer ul,
.site-header ul,
.team-item ul {
    margin: 0;
}

.widget-area {
    padding: 85px 0 45px;
    position: relative;
}

.site-footer .widget-title {
    font-size: 26px;
    margin-bottom: 35px;
    text-align: left;
}

.site-generator {
    background: var(--black);
}

.site-footer li {
    line-height: 1;
}

.site-footer .copy-right {
    display: block;
    padding: 16px 7px 16px;
    text-align: center;
    text-transform: uppercase;
}

.site-footer .copy-right,
.site-footer .copy-right a {
    color: var(--white);
}

.site-footer a:hover {
    color: var(--primary);
}

.site-footer .address,
.site-footer .email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-footer .address {
    margin-bottom: 25px;
}

.site-footer .wp-block-media-text__media {
    position: relative;
    border: 1px solid var(--secondary);
    background: var(--primary);
    margin-bottom: 0;
    margin-left: 0;
    text-align: center;
    height: 63px;
    line-height: 63px;
    width: 63px;
    border-radius: 50%;
    margin-right: 15px;
    border: 5px solid rgba(34, 34, 34, 0.2);
}

.site-footer .wp-block-media-text__media img {
    border-radius: 0;
    width: 25px;
    vertical-align: inherit !important;
}

.site-footer .wp-block-media-text__content p {
    text-align: left;
}

.site-footer .mc4wp-form-basic input[type="submit"] {
    width: 100%;
    color: var(--white);
    background: #555555;
    border-radius: 5px;
    height: 40px;
    /* line-height: 42px; */
    margin-top: 20px;
    padding: 0;
}

.site-footer .mc4wp-form-basic input[type="submit"]:hover {
    background: var(--primary);
}

.site-footer .mc4wp-form-basic p,
.menu-footer-social-menu-container ul li,
.mc4wp-form-fields p,
.mc4wp-form-fields input {
    opacity: 1;
}


/* .site-footer .address figure::before, .site-footer .email figure::before{
     position: absolute;
     content: "";
     display: block;
     height: 100%;
     width: 100%;
 
 } */


/*footer-section ends*/

.secondary-tiems h3.entry-title,
.widget_block .widget-title,
.wp-block-search__label {
    width: 100%;
    background: var(--black);
    color: var(--white);
    text-align: center;
    border-radius: 5px 5px 0 0;
    padding: 15px;
}


/* ul.tocify ul ul li{
    border: none;
} */

ul.tocify ul ul li:first-child {
    padding-top: 10px;
    border-top: 1px solid #d9d9d9;
    margin-top: 15px;
}

#secondary .sticky-wrap {
    position: sticky;
    top: 40px;
}

aside#table_of_content_wrapper ul li.tocify-item.active a {
    color: var(--primary);
    position: relative;
}

ul ul li.tocify-item.active a:before,
ul ul ul li.tocify-item.active a:before {
    content: "";
    height: 25px;
    width: 4px;
    position: absolute;
    background: var(--primary);
    top: 0;
    left: -10px;
}

.subject .subject-wrapper.image-right figure,
.subject .subject-wrapper.image-left figure {
    text-align: center;
    margin: auto;
}

.feature-slider-wrapper .content-wrapper {
    width: 100%;
    padding: 0;
}

.testimonial-wrapper .featured-image {
    margin: 0;
}

.testimonial-wrapper .featured-image img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    padding: 3px;
}

.testimonial .detail {
    margin-top: 10px;
}

.go3710136913 span {
    font-size: 16px !important;
    text-align: left;
}

.go3710136913 p {
    margin: 0px;
    text-align: left !important;
    margin-top: 10px !important;
}

.our-shop .our-shop-item figure {
    box-shadow: 0px 5px 4px #d9d9d9;
    border: 1px solid var(--secondary);
    padding: 3px;
    border-radius: 5px;
}

.starting-vermicomposting+section.featured-on {
    margin-top: 0px;
}

.secondary-button {
    padding: 10px 15px;
    margin: 5px 0;
}

.mission-vission ul li:hover {
    margin-left: 0;
}

.custom-pagination span,
.custom-pagination a {
    padding: 10px 15px;
}

.archive article,
.search article,
.blog article {
    border: 1px solid var(--bg);
    padding: 10px;
    border-radius: 5px;
}

.custom-pagination {
    margin: 30px 0;
}