/* hide number input arrows*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a,button,input{
	-webkit-appearance:none !important;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield !important;
	appearance:textfield !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
#btn-back-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    display: none;
}

/*pointer effect*/
.pointer {
    cursor: pointer;
}

/* FONTS *************************/

@font-face {
    font-family: "bebas";
    src: url("https://martins-weinklang.de/webshop_images/fonts/Bebas-Neue-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "bebas";
    src: url("https://martins-weinklang.de/webshop_images/fonts/Bebas-Neue-Bold.ttf");
    font-weight: 900;
}

@font-face {
    font-family: "Inter";
    src: url("https://martins-weinklang.de/webshop_images/fonts/Inter-VariableFont_slnt,wght.ttf");
    font-weight: 100 900;
}

@font-face {
    font-family: "sourcesansprolight";
    src: url("https://martins-weinklang.de/webshop_images/fonts/SourceSansPro-Light.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "sourcesanspro";
    src: url("https://martins-weinklang.de/webshop_images/fonts/SourceSansPro-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "sourcesansprobold";
    src: url("https://martins-weinklang.de/webshop_images/fonts/SourceSansPro-Bold.ttf");
    font-weight: 400;
}





/***GENERAL***/

body {
    font-family: "Arial", sans-serif;
    background-color: #fff;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.desktop {
    display: table-row;
}

.contact-button {
    display: block !important;
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    z-index: 1
}

.mobil {
    display: none;
}

.btn{
    border-radius: 0;
}

.card{
    border-radius: 0;
}

.btn.btn-primary {
    color: var(--background-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-outline-primary {
    color: var(--main-color);
    border-color: var(--main-color);
}

.btn-outline-primary:hover {
    color: var(--background-color);
    border-color: var(--main-color);
    background-color: var(--main-color);
}


.btn.btn-secondary {
    color: var(--background-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-outline-secondary {
    color: var(--main-color);
    border-color: var(--main-color);
}

.btn-outline-secondary:hover {
    color: var(--background-color);
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.btn-warning{
    background-color: var(--btn-green-color);
    border-color: var(--btn-green-color);
    color: var(--text-color-light);
}

.btn-warning:hover{
    background-color: var(--btn-green-hover-color);
    border-color: var(--btn-green-hover-color);
    color: var(--text-color-light);
}

.btn-warning:active{
    background-color: var(--btn-green-hover-color);
    border-color: var(--btn-green-hover-color);
    color: var(--text-color-light);
}

.btn-warning:focus{
    background-color: var(--btn-green-hover-color);
    border-color: var(--btn-green-hover-color);
    color: var(--text-color-light);
    box-shadow: 0 0 0 .25rem var(--btn-green-color);
}



.light {
    color: var(--text-color-light);
}

.link-light:hover,
a:hover {
    color: var(--text-color);
    text-decoration: none;
}

.form-select{
    border-radius: 0;
}

.form-control{
    border-radius: 0;
}

.form-check-input[type="checkbox"]{
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.form-check-input:focus,
.form-select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.25rem var(--main-color-25alpha);
}

.input-group > .form-select:focus {
    z-index: 0;
}

.bg-white {
    background-color: white !important;
}

.bg-light{
    background-color: #f5f5f5 !important;
}

.bg-site {
    background: var(--background-color) !important;
}

.bg-primary {
   background-color:  var(--main-color) !important;
}

.bg-secondary {
    background-color: var(--sec-color) !important;
}

.bg-brown{
    background-color: var(--brown-color) !important;
}

.bg-team-1{
    background-color: #f9f9f5 !important;
}

.bg-team-2{
    background-color: #f0f0e9 !important;
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.25rem var(--main-color-25alpha);
}

.text-muted {
    color: var(--text-color-light);
}

.text-light {
    color: var(--light-color);
}

.text-shadow-slider{
    text-shadow: rgba(0, 0, 0, 0.5) 3px 3px 0px;
}

.font-italic {
    font-style: italic;
}

.font-bebas{
    font-family: "bebas", sans-serif;
}

.font-inter{
    font-family: "Inter", sans-serif;
}

.font-sourcesansprolight{
    font-family: "sourcesansprolight", sans-serif;
}

.font-sourcesanspro{
    font-family: "sourcesanspro", sans-serif;
}

.font-sourcesansprobold{
    font-family: "sourcesansprobold", sans-serif;
}


.letter-spacing {
    letter-spacing: 0.1em;
}

.font-09-rem {
    font-size: 0.9rem;
}

.font-s {
    font-size: small;
}

.font-xs {
    font-size: x-small;
}

.font-m {
    font-size: medium;
}

.font-l {
    font-size: large;
}

.font-xl {
    font-size: x-large;
}

.text-color {
    color: var(--text-color);
}

.text-color-light {
    color: var(--text-color-light);
}

.link-light {
    color: var(--text-color-light);
}

.link-dark {
    color: var(--text-color);
    /*text-decoration: none;*/
}

.small-hover-shadow {
    transition: box-shadow 0.3s ease;
}

.small-hover-shadow:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Smaller box shadow on hover */
}

.expertise_a {
    color: var(--text-color-light);
    text-decoration: none;
}

.expertise_a:hover,
.expertise_a:active,
.expertise_a:focus {
    text-decoration: none;
    color: var(--text-color-light);
}

.toggle-element {
    display: none;
}

.max-height-420px {
    max-height: 460px;
}

.minilist {
    overflow-y: scroll;
}

/* Navbar */

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 6px #ccc;
}

.navbar-toggler {
    color: var(--background-color);
    background-color: var(--main-color);
    border-color: var(--button-secondary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 128, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-brand img {
    min-width: 10em;
    max-width: 14em;
    margin-left: 2em;
    margin-right: 2em;
}

.navbar-collapse {
/*    display: flex;*/
}

.nav-link {
    color: var(--text-color) !important;
}

.border-bottom-shadow {
    /*box-shadow: 0 6px 6px -6px var(--main-color);*/
    border-bottom: 0.01em dotted var(--main-color);
}


#grp_aktiv {
    color: var(--background-color) !important;
    background-color: var(--green-color) !important;
}

#search-input {
    min-width: 8em;
}

.hover-animation {
    /*transition: 0.2s ease-in-out;
    border-bottom: 1px solid transparent;*/
}

.hover-animation:hover {
   /* transform: translateY(-2px);
    border-color: var(--main-color);*/
    color: var(--footer-link-color) !important;
}

.versandland {
    max-width: 10ch;
}

.dropdown-menu[data-bs-popper] {
    right: 0;
    left: auto;
    max-height: 12em;
    overflow-y: auto;
    width: fit-content;
    overflow-x: clip;
    height: fit-content;
}

#page-menu-ul .dropdown:hover>.dropdown-menu {
    display: block;
  }

#page-menu-ul .dropdown-menu{
    background-color: #f5f5f5;
    border-radius: 0;
}

#page-menu-ul .dropdown-toggle::after{
    display: none;
}

#page-menu-ul a:hover::before{
    content: url("https://martins-weinklang.de/webshop_images/wg_luy_menulink_hover.png");
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    opacity: 0.3;
    margin-left: -20px;
}

#page-menu-ul > li:hover > ul{
    height: initial;
    transform: skewX(0) rotate3d(0, 0, 0, 0);
    opacity: 1;
    transition: transform .2s, opacity .2s;
}

#page-menu-ul > li > ul{
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: skewX(30deg) rotate3d(1, 0, 0, -90deg);
    transform-origin: 0 0;
    transition: transform .5s, opacity .5s;
}

#contact-btn{
    color: var(--text-color-light);
    background-color: var(--main-color);
}

#contact-btn i{
    font-size: 2em !important;
}

#offcanvasContact{
    background-color: var(--main-color);
    color: var(--text-color-light) !important;
}

#offcanvasContact .offcanvas-body{
    line-height: 2rem;
}

#offcanvasContact .offcanvas-body a {
    color: var(--footer-link-color) !important;
    text-decoration: none;    
}

#offcanvasContact .offcanvas-body a:hover{
    text-decoration: underline;    
}

#offcanvasContact .btn-close{
    background-color: var(--footer-link-color);
}

.float-right{
    float: right;
}

/*NEWS**/
.news-preview-img{
	max-height:15em;

}

#newsContainer a{
    color: var(--footer-link-color);
    text-decoration: none;
}

#newsContainer a:hover{
    text-decoration: underline;
}



/*FILTER*/

.z-index-1050{
    z-index: 1050;
}

.wine-filter {
    padding: 0.25rem 1.5rem;
    color: var(--background-color);
    background-color: var(--main-color);
    font-size: 1rem;
    border-radius: 2em;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: 400;
    transition: transform 0.4s ease-in-out;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    line-height: 2.3;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.wine-filter i {
    font-size: 1em !important;
    line-height: unset !important;
}

.filter-cluster-container {
    display: none;
    color: var(--background-color);
}

.filter-cluster-container .row {
    background-color: var(--main-color);
}

.filter-cluster-container .row * {
    color: var(--background-color);
    background-color: var(--main-color);
}

.filter-cluster-container .form-check .form-check-input {
    margin-left: -1rem;
    border: 2px solid var(--background-color);
    margin-right: 0.2rem;
}

.filter-cluster.ancestor {
    display: none;
}

.wine-filter:hover {
    transform: scale(1.1);
}

.filter-list {
}

.list-group {
    display: revert;
    flex-direction: revert;
    padding-left: 0.5em;
}

.list-group-item {
    border: none;
}

.accordion-item {
    border: none;
}

.accordion-button:not(.collapsed) {
    color: var(--background-color);
    background-color: var(--main-color);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: var(--main-color-25alpha);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button.collapsed{
    border-radius: 0 !important;
}

.accordion-collapse{
    border-radius: 0 !important;
}

/*ARTICLE LIST*/
#ausgetrunken_blende {
    visibility: hidden;
}


#ausgetrunken_an {

}

#articles {
}

.article {
    pointer-events: auto;
}

.article .card {
    /*min-height: 390px;*/
}

.article a {
    text-decoration: none;
}

.article p {
    margin: 0;
}

.article img {
    max-height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    min-height: 250px;
}

.fact {
    background: var(--main-color);
    color: var(--text-color-light);
    font-size: x-small;
    letter-spacing: 0.2em;
    padding: 1em 1em 0.8em;
    width: 100%;
    height: 100%;
    font-weight: bold;
    min-height: 33px;
}

.badge-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.badge {
    position: relative;
    margin-right: 5px;
}

.shopnotiz {
    overflow: hidden;
}

.article .shopnotiz {
    font-size: small;
    color: var(--text-color);
}

.article .pricing-div {
    font-size: small;
}

.article .pricing-div a {
    font-size: small;
}

.article .pricing-div button {
    font-size: x-small;
}

.article .name-div {
    font-size: medium;
}

/** Colors for badges **/

.warengruppen-color-1 {
    background-color: #f8df81;
}

.warengruppen-color-2 {
    background-color: #f6aa90;
}

.warengruppen-color-3 {
    background-color: #f6b4bf;
}

.warengruppen-color-4 {
    background-color: #d5b6d5;
}

.warengruppen-color-5 {
    background-color: #badfda;
}

.warengruppen-color-6 {
    background-color: #9bd0b7;
}

/**DETAIL**/

/* striped table */
/*.table-striped > div:nth-child(odd) {*/
/*	background-color: rgba(164, 164, 164, 0.1);*/
/*}*/
.table-striped > div:not([style*="display:none"]):nth-child(odd) {
    background-color: rgba(164, 164, 164, 0.2);
}

.odd-row-background {
    background-color: rgba(164, 164, 164, 0.2);
}

.carousel-indicators {
    margin-bottom: 0;
}

.detail img {
    max-height: 20rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.nuancen_bild {
    max-height: 4em !important;
}

.auszeichnungen_bild {
    max-height: 4em !important;
    margin-right: 0.5em;
}

.target {
    max-width: 100%;
    max-height: 100%;
}

#collapseShopNotizContainer #collapseShopNotiz.collapse:not(.show) {
    display: block;
    height: 5rem;
    overflow: hidden;
}

#collapseShopNotizContainer #collapseShopNotiz.collapsing {
    height: 3rem;
}

#collapseShopNotizContainer a.collapsed::after {
    content: "+ Mehr anzeigen";
}

#collapseShopNotizContainer a:not(.collapsed)::after {
    content: "- Weniger anzeigen";
}

.sortiment-container li {
    cursor: pointer;
    /*border-bottom: 1px solid black;*/
    box-shadow: 0 6px 6px -6px var(--main-color);
    margin-bottom: 1em;
}

/*WARENKORB*/

@media screen and (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobil {
        display: table-row;
    }
}

/*KASSE*/

input[type="checkbox"] {
    height: 1.1rem;
    width: 1.1rem;
}

input[type="date"] {
    text-transform: uppercase;
}

.inp {
    width: 100%;
    margin-top: 0.5rem;
}

.form-label {
    margin-bottom: 0.2rem;
}

.form-floating > label {
    left: unset;
}

.invalid-feedback {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.back-button {
    bottom: 75%;
}

.shopping-cart-sticky {
    position: sticky;
    z-index: 100;
    top: 10rem;
}

#fsendDoi {
    margin-left: 0;
    width: 25px;
    height: 25px;
}

.errorDiv {
    display: none;
}

/*newsletter*/
#footer-newsletter{
    background-image: url("https://martins-weinklang.de/webshop_images/wg_luy_footer_newsletter_background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 37rem;
    width: 100%;
    background-color: #f0ece4;
}

#footer-newsletter .footer-newsletter-icon{
    float: left;
    height: 15rem;
    width: 15%;
}

#footer-newsletter .footer-newsletter-icon img{
    float: left;
    margin-right: 2rem;
    max-width: 128px;
}

.footer-newsletter-form{
    float: left;
    width: 75%;
}

footer a{
    color: var(--footer-link-color);
    text-decoration: none;
}

footer .nav-link:hover{
    text-decoration: none;
}


footer a:hover{
    color: var(--footer-link-color);
    text-decoration: underline;
}

.footer-row{
    line-height: 1.4rem;
}

.footer-logo{
    flex: 1 0 33.3333%;
}

.footer-logo img{
    max-height: 2.1rem;
    max-width: 6.25rem;
}

footer h6 {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    font-family: pragati, Inter, Arial, sans-serif;
}

/*mobile shopping cart row in detail effectively starts at bootstrap5 breakpoint SM and goes until XS*/
@media only screen and (min-width: 0px) and (max-width: 767.98px) {
    .cart-container {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #fff;
        width: 100%;
        z-index: 50;
        border-top: 1px solid #aaa;
        padding: 20px;
        margin-bottom: 0;
    }
}

/*mobile weiter in wk starts at MD breakpoint and goes until XS**/
@media only screen and (min-width: 0px) and (max-width: 992px) {

    #btn-back-to-top {
        bottom: 6rem;
    }

    .shopping-cart-sticky {
        top: unset;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        width: 100%;
        z-index: 50;
        border-top: 1px solid #aaa;
        padding: 1em;
        margin-bottom: 0;
    }

    .shopping-cart-sticky .row {
        border: none !important;
    }

    .shopping-cart-sticky .row .bg-site {
        background-color: var(--bs-white);
    }

    .submit-order-container {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #fff;
        width: 100%;
        z-index: 50;
        border-top: 1px solid #aaa;
        margin: 0;
    }
}

/**BESTELLUNG PRÜFEN*/

#gutscheincode {
    display: none;
}

#gutscheinwert {
    display: none;
}


.zoom-image {
    max-height: 40em !important;
	max-width: 35em !important;
}

@media (min-width: 768px) {
    .desktop-container {
        background-color: #fff;
    }
}


/*bootstrap lg breakpoint */

@media (min-width: 992px) {
    .sortiment-minilist {
        max-height: 35% !important;
    }

    .col-lg{
        flex: 1 0 0%;
    }

    .m-w-lg-12-rem{
        max-width: 12rem;
    }
}

/*bootstrap md breakpoint*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .zoom-image {
        max-height: 37em !important;
    }

    .dropdown-menu[data-bs-popper] {
        left: 50%;
        transform: translateX(-50%);
    }

    .sortiment-minilist {
        max-height: 35% !important;
    }
    .footer-newsletter-form{
        width: 100%;
        min-height: 30rem !important;
        float: none;
    }

    .footer-newsletter-form iframe{
        max-height: 28rem !important;
    }
    .footer-newsletter-icon{
        float: none !important;
        height: initial !important;
    }

    #page-menu-ul > li > ul{
        display: none;
    }

    
}

/*bootstrap 5 sm breakpoint */
@media (min-width: 576px) and (max-width: 767.98px) {
    .zoom-image {
        max-height: 32em !important;
    }

    .navbar-nav.container-sm {
        padding-left: var(--bs-gutter-x, 0.75rem);
    }

    .dropdown-menu[data-bs-popper] {
        left: 50%;
        transform: translateX(-50%);
    }

    .sortiment-minilist {
        max-height: 70% !important;
    }

    .page-image{
        float: none !important;
        max-width: 100% !important;
    }
    .footer-newsletter-form{
        width: 100%;
        min-height: 30rem !important;
        float: none;
    }

    .footer-newsletter-form iframe{
        min-height: 28rem !important;
    }

    #footer-newsletter{
        background-image: none !important;
    }
    .footer-newsletter-icon{
        float: none !important;
        height: initial !important;
    }

    #page-menu-ul > li > ul{
        display: none;
    }

}

/*bootstrap 5 xs breakpoint */
@media (max-width: 575.98px) {
    .dropdown-menu[data-bs-popper] {
        left: 50%;
        transform: translateX(-50%);
    }

    .zoom-image {
        max-height: 30em !important;
    }

    #imageModal {
        height: 80%;
    }

    .navbar-nav.container-sm {
        padding-left: var(--bs-gutter-x, 0.75rem);
    }

    .sortiment-minilist {
        max-height: 60% !important;
    }

    .contact-button {
        bottom: 9rem;
    }

    .page-image{
        float: none !important;
        max-width: 100% !important;
    }
    .footer-newsletter-form{
        width: 100%;
        min-height: 30rem !important;
        float: none;
    }

    .footer-newsletter-form iframe{
        min-height: 30rem !important;
    }

    #footer-newsletter{
        background-image: none !important;
    }
    .footer-newsletter-icon{
        float: none !important;
        height: initial !important;
    }

    #page-menu-ul > li > ul{
        display: none;
    }

}

/*Swiper*/
.swiper-container {
    width: 100%;
}

.swiper-wrapper{
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide h1{
    font-size: 3.5rem;
  }

  .swiper-slide img {
    display: block;
    width: 100% !important;
    height: auto;
    max-height: 100% !important;
    object-fit:cover;
    overflow: hidden;
  }

  /*startpage*/
  #startpage a{
    color: var(--footer-link-color);
    text-decoration: none;
  }

  #startpage a:hover{
    text-decoration: underline;
  }
  /*page1*/
  #page1 a{
    color: var(--footer-link-color);
    text-decoration: none;
  }

  #page1 a:hover{
    text-decoration: underline;
  }

  .page-image{
    transform: rotate(1.5deg);
    box-shadow: 0 0 6px #999;
    background: #ececec;
    float: right;
    max-width: 40%;
  }

  .page-image img{
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  /*page2*/
  #page2 a{
    color: var(--footer-link-color);
    text-decoration: none;
  }

  #page2 a:hover{
    text-decoration: underline;
  }
  /*page3*/
  #page3 a{
    color: var(--footer-link-color);
    text-decoration: none;
  }

  #page3 a:hover{
    text-decoration: underline;
  }

  #page3 .page-image{
    max-width: 60%;
  }
  /*page4*/
  #page4 a{
    color: var(--footer-link-color);
    text-decoration: none;
  }

  #page4 a:hover{
    text-decoration: underline;
  }

  #page4 .page-image img{
    max-height: 26rem;
  }
  /*page5*/
  #page5 a{
    color: var(--footer-link-color);
    text-decoration: none;
  }

  #page5 a:hover{
    text-decoration: underline;
  }

  .team img{
    max-width: 100%;
  }

  h4{
    color: #777;
  }

  .detail h5{
    color:#777;
  }

  .detail #audio-interpret a{
    color: var(--footer-link-color);
    text-decoration: none;
  }
  .detail #audio-interpret a:hover{
    text-decoration: underline;
  }

  .klang-audio{
    box-sizing: border-box;
  }

  .klang-audio audio{
    width: 100%;
  }


:root {
    /*COLORS*/
    --main-color: #333;
    --main-color-25alpha: rgba(92, 57, 42, 0.25);
    --detail-table-background-color: rgba(164, 164, 164, 0.2);
    --button-secondary-color: #6c757d;
    --sec-color: #4a4646;
    --tert-color: #f5c73b;
    --light-color: #e3e3db;
    --background-color: #ededed;
    --text-color: #2a2a2a;
    --text-color-light: #ffff;
    --green-color: #a2c031;
    --btn-green-color: #6b8a05;
    --btn-green-hover-color: #5b7504;
    --footer-link-color:#9abb17;
    --brown-color:#5a5a0080;
}
