@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Poiret+One&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #666666;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #C0C0C0;
}

a:hover,
a:active,
a:focus {
    color: #C0C0C0;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 0px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color: #363f45;
}

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

/* Prelaoder */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.back-to-top:focus {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: #C0C0C0;
    color: #fff;
}

/*****  Google map *********/

#novadagarsa-map {
    padding-top: 30px;
    transition: all 0.5s;
}

#novadagarsa-map .social-links {
    padding-bottom: 10px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 100px;
}

#novadagarsa-map .social-links a {
    font-size: 22px;
    display: inline-block;
    background: #4d565e;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 10%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#novadagarsa-map .social-links a:hover {
    background: #6a7a84;
    color: #fff;
}

.map-filter {
    background-color: #F7F7F7;
    color: #343B40;
}

.map-filter-form {
    margin-top: 38px;
    margin-bottom: 20px;
}

.map-nav {
    background-color: #fff;
    color: #3e3e3e;
    /*border-bottom: 4px solid #ffffff;*/
}

#ggmap {
    width: 100%;
    background-color: #378ac8;
    height: 97%;
    min-height: 450px;
}

.form-navigation {
    margin-left: 140px;
}

.map-nav .nav li {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

.map-nav .nav li a {
    color: #343B40;
}

.map-nav .nav li.active a {
    background-color: #4d565e;
    color: #ffffff;
    border-bottom: 2px solid #9d0909;
}

#gmap-container,
#products-list {
    margin-top: -40px;
}

#ggmap-container {
    height: 80vh;
    max-height: 100em;
}

/* Public Product list */
#client-product-list tbody tr:hover {
    cursor: pointer;
}

#client-product-list tbody td.image img {
    height: 3em;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 1;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: inline;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
    float: right;
    margin: 0;
}

/* Nav Meu Styling */
.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 15px;
    outline: none;
}

.nav-menu>li {
    margin-left: 10px;
}

.nav-menu>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #C0C0C0;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .menu-active>a:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.nav-menu ul {
    margin: 4px 0 0 0;
    border: 1px solid #e7e7e7;
}

.nav-menu ul li {
    background: #fff;
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li a:hover {
    background: #C0C0C0;
    color: #fff;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #C0C0C0;
}

#mobile-nav ul .menu-item-active {
    color: #C0C0C0;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-line-top {
    background-image: url('../img/Garsa/backgroud-jostax60.png');
    background-repeat: repeat-x;
    background-position: top left;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
}

.section-line-top2 {
    background-image: url('../img/Garsa/backgroud-jostax60s2.png');
    background-repeat: repeat-x;
    background-position: top left;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
}

.section-line-bottom {
    background-image: url('../img/Garsa/backgroud-jostax60.png');
    background-repeat: repeat-x;
    background-position: top left;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
}

.section-header .section-title {
    font-size: 32px;
    color: #353B40;
    text-align: left;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: #999;
}

h3.section-title {
    width: 100%;
    color: #384654;
    /*text-shadow: 1px 1px 1px #bdc1c8;*/
    border-bottom: 1px solid #e9ebed;
    line-height: 1.5em;
    margin-top: 20px;
}

/* news category nav */
.news-category-nav,
.news-category-nav .nav {
    margin-left: 0px;
    margin-right: 0px;
}

.news-category-nav a {
    color: #343B40;
    background-color: #fafafa;
    border-radius: 2px;
    margin: 2px;
    border: 1px solid #d5d7db;
    /*border-bottom:1px solid #820404;*/
    border-bottom: 3px solid #aeb8bf;
}

.news-category-nav a:hover {
    background-color: #ffffff;
    border-bottom: 3px solid #596473;
}

.news-category-nav li.active a {
    color: #343B40;
    background-color: #fafafa;
    border-radius: 2px;
    margin: 2px;
    border: 1px solid #d5d7db;
    border-bottom: 3px solid #820404;
    /*border-bottom:3px solid #aeb8bf;*/
}

.news-category-nav li.nav-title {
    width: 100%;
}

.news-category-nav li.nav-title span {
    color: #fbfbfb;
    background: rgb(52, 59, 64);
    background: linear-gradient(21deg, rgba(52, 59, 64, 1) 0%, rgba(154, 154, 154, 1) 100%);
    border-radius: 2px;
    margin: 2px;
    /*border: 1px solid #d5d7db;*/
    border-bottom-color: rgb(213, 215, 219);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom: 1px solid #820404;
    border-bottom: 6px solid #aeb8bf;
    display: block;
    padding: .5rem 1rem;
    font-weight: bold;
}

.news-category-nav li.nav-title.blue span {
    background: rgb(0, 99, 255);
    background: linear-gradient(18deg, rgba(0, 99, 255, 1) 0%, rgba(42, 132, 255, 1) 50%, rgba(105, 196, 255, 1) 100%);
}

.news-category-nav li.nav-title.orange span {
    background: rgb(255, 102, 0);
    background: linear-gradient(18deg, rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 0%, rgba(255, 110, 42, 1) 50%, rgba(254, 146, 38, 1) 100%);
}

.news-category-nav li.nav-title.purple span {
    background: rgb(155, 28, 228);
    background: linear-gradient(18deg, rgba(155, 28, 228, 1) 0%, rgba(204, 51, 223, 1) 50%, rgba(238, 225, 244, 1) 100%);
}

.news-category-nav li.nav-title.red span {
    background: rgb(161, 0, 0);
    background: linear-gradient(18deg, rgba(161, 0, 0, 1) 0%, rgba(195, 0, 0, 1) 52%, rgba(254, 38, 38, 1) 100%);
}


.profile-side>.news-category-nav .nav-item a {
    color: #343B40;
    /*background: rgb(255,255,255);
   background: linear-gradient(18deg, rgba(255,255,255,1) 0%, rgba(233,236,237,1) 50%, rgba(255,255,255,1) 100%); */

    background-image: linear-gradient(to right, #e4eaf2, #eaeef5, #eff1f7, #f4f5fa, #f9f9fc, #fbfbfd, #fcfcfe, #fefeff, #fdfdff, #fcfcfe, #fafcfe, #f9fbfd);
    border-radius: 2px;
    margin: 2px;
    border: 1px solid #d5d7db;
    border-left-style: solid;
    border-left-width: 1px;
    border-left: 3px solid #aeb8bf;
}

.profile-side>.news-category-nav .nav-item a:hover {
    border: 1px solid #d5d7db;
    border-left-style: solid;
    border-left-width: 1px;
    border-left: 4px solid #a00a0a;
}

.profile-side>.news-category-nav .nav-item.active a {
    border: 1px solid #4370cd;
    border-left-style: solid;
    border-left-width: 1px;
    border-left: 4px solid #4370cd;
}

.profile-side .nav-item a i {
    color: #666f75;
}

.profile-side>.news-category-nav .nav-item a:hover i {
    color: #292e30;
}

.news-title {
    font-size: 21px;
    padding-top: 12px;
}

.farm-item h2.news-title {
    margin-bottom: 0px;
}

.news-bottom a {
    color: #485157;
}

.farm-item .farm-quality-mark.news-bottom {
    height: 36px;
    text-align: left;
    font-size: 14px;
}

.cat-title-foot {
    font-style: italic;
}

.container-news {
    background-color: rgba(250, 250, 250, 0.5);
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -20px;
    margin-bottom: 0px;
    -webkit-box-shadow: 0px 6px 20px -4px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 6px 20px -4px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 10px 20px -4px rgba(0, 0, 0, 0.30);
}

.container.container-news {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1400px;
}

.container-profiles {
    background-color: rgba(250, 250, 250, 0.5);
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: -20px;
    margin-bottom: 0px;
    -webkit-box-shadow: 0px 6px 20px -4px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 6px 20px -4px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 10px 20px -4px rgba(0, 0, 0, 0.30);
}

.container.container-profiles {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1400px;
}


.container-text-page {
    padding: 30px;
    border-bottom: 1px solid #d0d5d9;
    color: #444d53;
}

.container-text-page a {
    color: #4067b9;
}

.container-text-page a:hover {
    color: #325192;
    text-decoration: underline;
}

.container-text-page-footer {
    padding: 14px;
    border-top: 1px solid #ffffff;
    background-color: #ebeced;
}

.container-text-page-footer .cat-foot-link {
    color: #566169;
}

.container-text-page-footer .add-date {
    color: #566169;
    font-style: italic;
}

.news-left-side {
    padding-top: 60px;
    padding-bottom: 120px;
    background-color: #EBEDEF;
    border-right: 1px solid #ffffff;
    position: relative;
}

.news-left-side.profile-side {
    padding-top: 30px;
}

.news-body-side {
    padding-top: 60px;
    padding-bottom: 120px;
    border-left: 1px solid #e3e7ea;
    position: relative;
    /*padding-left: 40px;*/
}

.profile-body-side {
    padding-top: 33px;
    padding-bottom: 120px;
    border-left: 1px solid #e3e7ea;
    position: relative;
    /*padding-left: 40px;*/
}

.vertical-decoration {
    background-image: url('../img/Garsa/backgroud-jostaVert30.png');
    background-repeat: repeat-y;
    background-position: top left;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 30px;
    height: 100%;
}

/* Profili */

.tab-content {
    background-color: white;
    padding: 10px;
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

/* Call To Action Section
--------------------------------*/

.light {
    background-color: #C0C0C0;
}

.calendar {
    padding: 30px;
    margin-bottom: 50px;
    text-align: left;
    border: 0px solid #e6e6e6;
    height: 100%;
    position: relative;
    box-shadow: 0px 0px 35px -16px rgba(0, 0, 0, 0.75);
    font-family: 'Roboto', sans-serif;
    color: white;
    display: inline-block;
    background: white;
}

.calendar_header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.header_copy {
    font-size: 20px;
}

.calendar_plan {
    margin: 20px 0 40px;
}

.cl_plan {
    width: 100%;
    height: 140px;
    background-image: linear-gradient(-222deg, #e66465, #9198e5);
    box-shadow: 0px 0px 52px -18px rgba(0, 0, 0, 0.75);
    padding: 20px;
    color: #fff;
}

.cl_title {
    font: normal normal bold 19px arial;
}

.cl_copy {
    font-size: 15px;
    margin: 20px 0;
    display: inline-block;
}

.cl_add {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 0px;
    text-align: center;
    width: 100%;
}

.ce_title {
    font-size: 14px;
}

.event_item {
    margin: 0;
    padding: 0px;
    cursor: pointer;
    position: relative;
}


.ei_Dot,
.ei_Title {
    display: inline-block;
}

.ei_Dot {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    box-shadow: 0px 0px 52px -18px rgba(0, 0, 0, 0.75);
}

.dot_active {
    background-color: #FF8494;
}

.ei_Title {
    margin-left: 0px;
    color: white;
    font-size: 13px;
    font-weight: 0;
}

.ei_Copy {
    font-style: italic;
    font-size: 11px;
    margin-left: 27px;
    color: black;
}

.dark {
    background-image: linear-gradient(-222deg, #646464, #454545);
    color: #fff;
}

.header_title,
.ei_Title,
.ce_title {
    color: black;
    font-size: 12px;
}

/*********** qrcode *************/

.qrcode {
    margin-top: 30px;
}

/* farm Company Section
--------------------------------*/

#company {
    background: #ebedef;
    /*padding: 90px 0 0 0;*/

    border-top: 1px solid #ffffff;
    -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.30);
    box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.30);
    font-family: "Poppins", sans-serif;
}

.company-title h1 {
    border-bottom: 3px solid #9d0909 !important;
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.company-title h1::after {
    bottom: -8px;
    left: 6%;
    content: "";
    height: 14px;
    width: 14px;
    position: absolute;
    transform: rotate(45deg);
    background: #ffffff;
    border: 3px solid #9d0909;
}

.comapny-sidebar-title {
    font-size: 22px;
    color: #343b40;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.company-container {
    width: 100%;
}

.company-sidebar {
    /*padding-top: 60px;*/
    font-size: 14px;
    padding-bottom: 40px;
    padding-left: 20px;
}

.comapny-content {
    padding-top: 60px;
    background-color: #ffffff;
}

.comapny-logo {
    margin-bottom: 20px;
}

.comapny-logo img {
    width: 80%;
    height: auto;
}

.comapny-item-list {
    margin-bottom: 4px;
}

.comapny-item-list a {
    color: #3272dc;
}

.comapny-item-list a:hover {
    color: #5c429b;
}

.company-work-time {
    margin-top: 20px;
}

.company-work-time .week-day {
    width: 86px;
    display: inline-block;
}

.company-work-time .fa-clock-o {
    color: #5277cd;
}

.company-work-time .info-text p {
    padding: 0px;
    margin: 0px;
}

.company-work-time ul {
    list-style-position: inside;
    padding-left: 14px;
    margin-top: 6px;
}

.company-work-time ul li {
    font-size: 13px;
    margin: 0px;
    padding: 0px;
}

.company-work-time .info-title {
    color: #343B40;
    font-size: 18px;
}

/* Company products
---------------------------------*/

.product-item {
    margin-bottom: 14px;
    margin-left: 0px;
    margin-right: 0px;
}

.availability_curent {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #5bb748;
    color: #ffffff;
    padding: 4px;
    border-bottom-left-radius: 6px;
    font-size: 12px;
}

.product-item .card {
    height: 100%;
    box-shadow: 2px 2px 4px #d5d8db;
}

.product-item .farm-quality-mark {
    margin-top: 6px;
}

.product-item .farm-quality-mark .qmark {
    height: 30px;
    width: auto;
    float: none;
}

.card .card-body img {
    width: 25%;
    height: auto;
    float: left;
    margin-right: 14px;
    margin-bottom: 10px;
}

.item-mark-silver {
    font-size: 12px;
    padding: 4px;
    background-color: #bbc1c8;
    color: #ffffff;
    border-radius: 3px;
    padding-left: 6px;
    padding-right: 6px;
}

.item-mark-pak {
    font-size: 12px;
    padding: 4px;
    background-color: #ef8503;
    color: #ffffff;
    border-radius: 3px;
    padding-left: 6px;
    padding-right: 6px;
    margin-right: 6px;
}

.item-mark-p {
    font-size: 12px;
    padding: 4px;
    background-color: #58a75c;
    color: #ffffff;
    border-radius: 3px;
    padding-left: 6px;
    padding-right: 6px;
}

.item-mark-d {
    font-size: 12px;
    padding: 4px;
    background-color: #5256ad;
    color: #ffffff;
    border-radius: 3px;
    padding-left: 6px;
    padding-right: 6px;
}

.mark-lg {
    font-size: 16px;
    padding: 6px;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    display: inline-block;
    margin-bottom: 4px;
}

a.mark-lg {
    box-shadow: 2px 2px 1px #dadada;
}

a.mark-lg:hover {
    color: #fdfdfd;
    filter: contrast(130%);
}

.fas.fa-shopping-cart.green {
    font-size: 21px;
    color: #559b58;
}

.card-title {
    font-size: 22px;
}

.card-subtitle {
    font-size: 18px;
}

.card-body {
    padding: 1rem;
}

.card {
    border: none;
    border-left: 3px solid #9D0909;
    background-color: #f9f9f9;
    border-radius: 0px;
}

.partners-item-card {
    border: none;
    background-color: #f9f9f9;
    border-radius: 0px;
    margin: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 100%;
    box-shadow: 2px 2px 4px #d5d8db;
}

.partners-item-card img {
    width: 100%;
    height: auto;
}

.partners-item-card a.title {
    color: #444e55;
}

.partners-item-card a {
    color: #647077;
}

/* company gallery */

.company-gallery {
    margin-bottom: 40px;
}

.gallery-item {
    display: inline-block;
    height: 150px;
    width: 150px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 6px solid #ffffff;
    box-shadow: 2px 2px 4px #d5d8db;
}

.gallery-item img {


    width: 100%;
    height: auto;
}

.image-center {
    height: 100%;
    line-height: 6em;
}

/* farm Section
--------------------------------*/
#farmlist,
#map-list-container {
    background: #ebedef;
    /*padding: 95px 0 60px 0;*/

    border-top: 1px solid #ffffff;
    -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.30);
    box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.30);
    position: relative;
}

h1.section.title {
    border-bottom: 3px solid #9d0909 !important;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

h1.section.title::after {
    bottom: -8px;
    left: calc(50% - 7px);
    content: "";
    height: 14px;
    width: 14px;
    position: absolute;
    transform: rotate(45deg);
    background: #ffffff;
    border: 3px solid #9d0909;
}

h1.section.title-rofile {
    border-bottom: 3px solid #9d0909 !important;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

h1.section.title-rofile::after {
    bottom: -8px;
    left: calc(50% - 7px);
    content: "";
    height: 14px;
    width: 14px;
    position: absolute;
    transform: rotate(45deg);
    background: #ffffff;
    border: 3px solid #9d0909;
}

.farmlist-container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

#farmlist .section-header {
    margin-bottom: 30px;
}

#farmlist .sponsorsLogo {
    text-align: center;
    margin-bottom: 50px;
}

#farmlist .sponsorsLogo .pic {
    margin-bottom: 30px;
}

#farmlist .sponsorsLogo .pic img {
    width: 100%;
    height: auto;
}

#farmlist .sponsorsLogo h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#farmlist .sponsorsLogo span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

#farmlist .member .social {
    margin-top: 15px;
}

#farmlist .member .social a {
    color: #b3b3b3;
}

#farmlist .member .social a:hover {
    color: #C0C0C0;
}

#farmlist .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* Farm item */

.farm-item {
    -webkit-box-shadow: 0px 1px 2px 0px rgba(205, 214, 222, 0.75);
    -moz-box-shadow: 0px 1px 2px 0px rgba(205, 214, 222, 0.75);
    box-shadow: 0px 1px 2px 0px rgba(205, 214, 222, 0.75);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background-color: #ffffff;
    height: 100%;
    border-bottom: 1px solid #bd1717;
    position: relative;
}

.col-item {
    padding-bottom: 24px;
}

.farm-item:hover {
    -webkit-box-shadow: 0px 16px 20px 0px rgba(216, 216, 216, 0.75);
    -moz-box-shadow: 0px 16px 20px 0px rgba(216, 216, 216, 0.75);
    box-shadow: 0px 16px 20px 0px rgba(216, 216, 216, 0.75);
}

.farm-item h3:hover a {
    color: #139e81;
}

.farm-item .image {
    height: 300px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.farm-item .image img {
    width: 100%;
    height: auto;
}

.image-decor {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

.farm-item h2 {
    margin: 12px;
}

.farm-item h2 a {
    color: #272d36;
}

.farm-item h2 a:hover {
    color: #4b5b67;
}

.farm-item .farm-description {
    padding: 4px 12px;
    display: block;
    margin-bottom: 70px;
}

.farm-item .farm-quality-mark {
    padding: 4px 12px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #f4f5f7;
    text-align: center;
}

.farm-quality-mark img {
    height: 50px;
    width: auto;
}

.read-more i {
    font-size: 21px;
    position: absolute;
    top: 0px;
    right: 1px;
    color: #ffffff;
}

a.read-more {
    line-height: 21px;
    padding-left: 4px;
    padding-right: 24px;
    position: relative;
    background-color: #75848e;
    margin-left: 12px;
    border-radius: 3px;
    color: #ffffff;
}

a.read-more:hover {
    background-color: #840c02;
}

a.float-right.read-more.back {
    padding-left: 26px;
    padding-right: 4px;
    font-size: 14px;
    line-height: 24px;
}

a.float-right.read-more.back i {
    font-size: 24px;
    position: absolute;
    top: 0px;
    left: 1px;
    color: #ffffff;
}

/* Contact Section
--------------------------------*/
#contact {
    background: #ffffff;
    padding: 15px 0 40px 0;
}

.contact-line {
    position: relative;
    box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.20);
    border-top: 1px solid #ffffff;
}

#contact #google-map {
    height: 300px;
    margin-bottom: 20px;
}

#contact .info {
    color: #333333;
}

#contact .info i {
    font-size: 32px;
    color: #C0C0C0;
    float: left;
}

#contact .info p {
    padding: 0 0 10px 50px;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
}

#contact .info a {

    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
    color: #333333;
}

#contact .info .email p {
    padding-top: 5px;
}

#contact .social-links a {
    font-size: 12px;
    display: inline-block;
    background: #465057;
    color: #fff;
    line-height: 1;
    padding: 6px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#contact .social-links a i {
    font-size: 24px !important;
    float: none;
    color: #e8eaec;
}

#contact .social-links a:hover {
    background: #e8eaec;
}

#contact .social-links a:hover i {
    color: #465057;
}

#contact .form #sendmessage {
    color: #C0C0C0;
    border: 1px solid #C0C0C0;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contact .form button[type="submit"] {
    background: #C0C0C0;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
    background: #51d8ad;
}

/* --- Basket --------------------- */

section#basket,
section#basket-user,
section#basket-status {
    position: relative;
    margin-top: 64px;
    padding-top: 92px;
    transition: all 0.5s;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#footer .container {
    position: relative;
}

#footer .copyright {
    text-align: center;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
}



.left-line-footer {
    position: absolute;
    top: 0px;
    left: 0px;
    display: inline;
}

.right-line-footer {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline;
}

.left-line-footer img,
.right-line-footer img {
    height: 72px;
    width: auto;
    transition: all 0.5s;
}

/****** Product search filter **********/

#productCategory2 a {
    color: #333;
}

#productCategory2 a:hover {
    color: #000;
}

#productCategory2 .nav-link {
    margin-bottom: 0.3rem;
    padding: 0.3rem 0.3rem;
    background-color: #fff;
}

#productCategory2 .nav-link:hover {
    background-color: #e5e5e5;
}

#productCategory2>.nav-item.active>.nav-link {
    background-color: #4d565e !important;
    color: #ffffff !important;
    border-bottom: 2px solid #9d0909 !important;
}

.productSubCategory2 a {
    color: #666;
}

.productSubCategory2 a:hover {
    color: #333;
}

#productCategory2 .productSubCategory2 .nav-link {
    margin-bottom: 0.1rem;
    padding: 0.1rem 1rem;
    background-color: #e5e5e5;
}

#productCategory2 .productSubCategory2 .nav-link:hover {
    background-color: #d5d5d5;
}

.productSubCategory2>.nav-item.active>.nav-link {
    background-color: #ccc !important;
    border-bottom: 1px solid #9d0909 !important;
}

#quality-mark-filter label img {
    height: 1.5rem;
}

/****** Bootstrap form redesign ********/

.btn {
    border: 0px;
    border-radius: 0px;
}

.btn-brand {
    background-image: url('../img/Garsa/backgroud-jostax60s2.png');
    background-size: cover;
    background-color: #EAECEF;
    background-position: center;
    color: #545c61;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b4b9be;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
}

.btn-brand:hover,
.btn-brand:active {

    box-shadow: 0px 0px 6px #5f6972;
}

.custom-select,
.input-group-text,
.form-control {
    border-radius: 0px;
    background-color: #ffffff;
    color: #31343c;
    border: 0px;
    border-bottom: 1px solid #9d0909;
}

.input-group-text::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.custom-select::-webkit-input-placeholder,
.input-group-text:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.custom-select:-ms-input-placeholder,
.input-group-text::placeholder,
.form-control::placeholder,
.custom-select::placeholder {
    color: #3e434d;
}

.swal2-input::placeholder {
    color: #3e434d !important;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0px;
}

/*********** GOOGLE info Windows *************/
.google-info {
    font-size: 14px;
    line-height: 18px;
}

.google-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.google-info a {
    color: #254d8d;
}

.google-info a:hover {
    color: #356dca;
}

.google-info-address i {
    color: #EA4335;
}

.google-info img {
    height: 100px;
    width: auto;
    float: left;
    margin-right: 10px;
}

/****************** lpp bootstrap *******************/

ul.pagination {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

ul.pagination li.page-item .page-link {
    color: #ffffff;
    background-color: #343B40;
    cursor: pointer;
}

ul.pagination li.page-item.disabled .page-link {
    color: #ffffff;
    background-color: #5f6b74;
}

ul.pagination li.page-item.active .page-link {
    color: #ffffff;
    background-color: #40474d;
    border: 1px solid #30363a;
    border-bottom: 2px solid #AA0024;
    margin-left: 1px;
    margin-right: 1px;
}

.news-category-nav .nav-item {
    width: 100%;
}

/*************** checkbox **************************/

/* The container */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #AA0024;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked~.checkmark {
    background-color: #4b555c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 9px;
    top: 2px;
    width: 6px;
    height: 18px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.clear-both {
    clear: both;
}

.custom-social-btn {
    display: inline-block;
    position: relative;
}

.social_buttons {
    margin-top: 16px;
    padding-bottom: 6px;
    margin-bottom: 20px;
    width: 100%;
    display: block;
    position: relative;
    vertical-align: bottom;
}

.profile-dd {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 50;
}

a.dd-link i.fa.fa-user-circle {
    color: #d7dcdd;
    /*font-size: 19px;*/
}

.profile-menu {
    display: none;
    background-color: #485259;
    position: absolute;
    clear: both;
    min-width: 240px;
    width: 100%;
    top: 36px;
    left: 0px;
}

.profile-dd:hover .profile-menu {
    display: block;
}

.profile-dd>.profile-menu a {
    display: block;
    padding: 4px 6px 4px 6px;
    margin: 0px;
}

.profile-dd>.profile-menu a.active {
    background-color: #3f474e;
    color: #ffffff;
}

.profile-dd>.profile-menu a:hover {
    background-color: #5b6871;
    color: #ffffff;
}

.profile-menu a.logout {
    background-color: #6f4594;
}

.error.kt-font-danger {
    color: #a20000;
    font-size: 13px;
    padding: 10px;
}

.nav-item-delimiter {
    height: 0px;
    width: 100%;
    /*border-bottom:1px solid #9aa5b6;
    border-radius: 4px;*/
    margin-bottom: 10px;
}

#FarmProileForm select.form-control,
#FarmProileForm input.form-control,
#FarmProileForm textarea.form-control,
.userprofile select.form-control,
.userprofile input.form-control,
.userprofile textarea.form-control {
    background-color: #f4f4f4;
}

#FarmProileForm .custom-select,
#FarmProileForm .input-group-text,
#FarmProileForm .form-control,
.userprofile .custom-select,
.userprofile .input-group-text,
.userprofile .form-control {
    background-color: #f4f4f4;
}

.note-editor .dropdown-toggle::after {
    display: none;
}

.checkboxlists .form-group {
    margin: 0px !important;
}

.checkboxlists .col-form-label {
    line-height: 1;
}

.phone-number {
    color: #343B40;
}

.hidden {
    display: none;
}

.help-block {
    font-size: 14px;
    font-style: italic;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    background-color: #fef2cd;
}

input.timeInput {
    background-color: #fafafa !important;
    padding-left: 0px;
    padding-right: 0px;
}

.nav-item.title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-left: 4px;
    color: #363f45;
}

.profile-user-name {
    color: #1f2223;
}

.share-button {
    color: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 8px 2px 8px;
    font-weight: lighter;
    margin-bottom: 4px;
    white-space: nowrap;
    margin-bottom: 4px;
    display: inline-block;
}

.share-button:hover,
.share-button:active,
.share-button:focus {
    color: #ffffff;
}

.watsapp.share-button {
    background-color: #09a200;
}

.messenger.share-button {
    background-color: #448AFF;
}

.twitter.share-button {
    background-color: #1b95e0;
}

.email.share-button {
    background-color: #7D7D7D;
}

.facebook.share-button {
    background-color: #4267B2;
}

.profile-user-name {
    color: #1f2223;
}

h1.title {
    text-align: center;
    margin-bottom: 40px;
}

/*********** Progress spinner ************/

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    height: 1rem;
    width: 1rem;
    border-width: .2em;
}

/*********************** NEW HEADER **********************************/


header {
    background: #384654;
}

header .container {
    padding: 20px 0 20px 0;
    margin: auto;
}

header .logo {
    float: left;
    color: #fff;
}

header .logo img {
    width: 80px;
    height: auto;
}

header .navigation-menu {
    float: right;
    display: flex;
    align-items: center;
    min-height: 78px;

}

header .navigation-menu a {
    margin-left: 10px;
    color: #fff;
    font-size: 18px;
    transition: .3s linear;
    font-weight: 500;
    padding: 0 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

header .navigation-menu a:hover {
    color: #B9B300FF;
}

header .active {
    color: #B9B300FF !important;
}

header .navigation-menu a:focus {
    text-decoration: underline;
}

header .navigation-menu i {
    font-size: 16px;
}

header .home {
    color: #fff;
}

.svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

header a.aj_btn {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    padding: 13px 25px;
    border-radius: 50px;
    color: #fff;
    text-align: center
}

header .btn1 {
    background: #928d00;
}

header .btn2 {
    background: #478aad;
}

header .menu-toggle-btn {
    float: right;
    height: 90px;
    color: #fff;
    font-size: 26px;
    display: none !important;
    cursor: pointer;
}

header .login img {
    height: 25px;
    width: 25px;
    margin: 3px 0 0 10px
}

@media screen and (max-width:1250px) {
    header {
        height: 77px;
    }

    header .fa-bars {
        background-image: url("img/menu.svg");
        background-repeat: no-repeat;
        background-position: right;

    }

    header .fa-times {
        background-image: url("img/close.svg");
        background-repeat: no-repeat;
        background-position: right;

    }

    header .menu-toggle-btn {
        height: 30px;
        width: 30px;
        margin: 14px 6px 0 0
    }

    header .container {
        padding: 10px 20px
    }

    header .menu-toggle-btn {
        display: block !important;
    }

    header .navigation-menu {
        position: fixed;
        width: 100%;
        background: #fff;
        height: 100%;
        top: 90px;
        right: 0;
        display: none;
        padding: 20px 40px;
        box-sizing: border-box;
        z-index: 50;

    }

    header .navigation-menu a {
        padding: 7px 0;
    }

    header a.btn1 {
        padding: 13px 25px;
        color: #fff !important
    }

    header a.btn2 {
        padding: 13px 25px;
        color: #fff !important
    }

    header .logo img {
        width: 60px;
        height: auto;
    }

    header .navigation-menu a {
        display: block;
        margin: 10px 0 10px 0;
        color: #111827
    }

    header .navigation-menu.active {
        display: block;
    }
}

/*************************** Footer *********************/

.footer {
    display: flex;
    flex-flow: row wrap;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    margin: auto;
    padding: 40px;
}

.footer>* {
    flex: 1 100%;
}

.footer__logo {
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
}

.footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
}

.nav__title {
    font-weight: 400;
    font-size: 15px;
}

.footer address {
    font-style: normal;
    color: #999;
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(33, 33, 33, 0.07);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 20px;
    color: #384654;
}

.footer li a {
    line-height: 20px;
    color: #384654;
}

.footer a {
    text-decoration: none;
}

.footer__nav {
    display: flex;

}

.footer__nav img {
    width: 120px
}

.footer__nav>* {
    flex: 1 50%;
    margin-right: 1.25em;
}

.nav__ul a {
    color: #999;
}

.nav__ul .company-name,
.soc {
    margin: 50px 0 0 0
}

.soc a {
    line-height: 44px;
    height: 44px;
    margin-top: 14px;
    display: inline-block;
}

.soc img {
    width: 44px;
    margin: 0 0 0 7px
}

.nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
}

.legal {
    display: flex;
    flex-wrap: wrap;
    color: #384654;
    font-size: 14px;
    padding-bottom: 40px;
}

.legal__links {
    display: flex;
    align-items: center;

}

.legal__links a {
    margin: 0 0 0 25px;
    color: #384654;
}

.heart {
    color: #2f2f2f;
}

.nav__item h6 {

    font-size: 18px;
    font-weight: 400;
    color: #384654;
    margin: 0 0 20px 0
}

@media screen and (min-width: 24.375em) {
    .legal .legal__links {
        margin-left: auto;
    }
}

@media screen and (max-width:1100px) {
    .footer__nav>* {
        flex: 1;
    }

    .footer__nav {
        display: block;
    }

    .legal {
        display: block;
        text-align: center
    }

    .legal__links {
        display: block;
        align-items: center;
        margin: 30px 0 0 0;

    }

    .legal__links a {
        display: block;
        margin: 5px 0 5px 0
    }

    .nav__ul .company-name {
        margin: 20px 0 0 0
    }

    .nav__ul .soc {
        margin: 30px 0 0 0
    }

    .nav__item h6 {
        margin: 0 0 7px 0
    }

    .soc img {
        width: 44px !important;
        margin: 0 0 0 7px
    }

    .footer__nav img {
        width: 70px
    }

    .footer {
        padding: 30px 0 0 0
    }

    .footer li {
        text-align: center;
        margin: 30px 0 0 0
    }

    .footer li li {
        text-align: center;
        margin: 5px 0 0 0
    }


    .nav__item--extra {
        flex-grow: 2;
    }

    .footer__addr {
        flex: 1 0px;
    }

    .footer__nav {
        flex: 2 0px;
    }
}


/************** Dev By Kibertelpa ***********************/

.devByKibertelpa {
    position: absolute;
    top: 0px;
    right: 0px;
}

.devByKibertelpa img {
    height: 26px;
    width: auto;
}