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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/*HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*end of reset*/

sup {
    font-size: smaller;
    vertical-align: super;
}
em {
    font-style: italic;
}
strong {
    font-weight: 700;
}

figure {
    margin: 0 auto;
}
figcaption,
caption {
    color:#53513A;
    font-size: 1.2em;
    margin-top: 6px;
    font-weight: 500;
    width: 428px;
    margin: 4px auto;
}
html {
    font-size: 62.5%;
}
body {
    font-family: 'Bai Jamjuree', sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
#header-container {
    width: 100%;
    background-color: #FFF;
    position: fixed;
    z-index: 100;
    -webkit-box-shadow: 0px 10px 40px #000;
            box-shadow: 0px 10px 40px #000; 
    height: 100px;
}
#header-container .stroke {
    border-bottom: 1.6px dashed #80806B;
    height: 93.5px;
}

#header-container .header-content-top {
    margin: 0 auto;
    max-width: 960px;
    display:-ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    height: 100%;
    -ms-flex-line-pack: center;
    align-content: center;
} 
#header-container .header-content-top .logo {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    text-align: right;
}
#header-container .header-content-top .logo h1 img {
    width: 160px;
    height: 60px;  
}

#header-container .header-content-top .login-register {
    text-align: right;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1; 
    grid-row: 1;
}
#header-container .header-content-top nav {
    text-align: center;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
    -ms-grid-row: 2;
    grid-row: 2;
    align-self: center;
    position: relative;
    box-sizing: border-box;
}
#header-container .header-content-top nav .menu {
    margin-left: 100px;
    height: 30px;
}
#header-container .header-content-top nav .menu a:hover,
#header-container .header-content-top nav .menu .sub-menu a:hover  {
    color: rgba(94,81,58,1);
}
#header-container .header-content-top nav .menu .sub-menu {
    display: none;
    position: absolute;
    text-align: left;  
}
#header-container .header-content-top nav .menu .sub-menu .sub-sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    text-align: left;
}
#header-container .header-content-top nav .menu li {
    display: inline-block;
    position: relative;
    font-size: 1.4em;
    font-weight: 700;
    background-color: #FFF;
}
#header-container .header-content-top nav .menu > li:last-child {
    display: none;
}
#header-container .header-content-top nav .menu > li:nth-child(6) {
    margin-left: 40px;
}
#header-container .header-content-top nav .menu > li:nth-child(7) {
    padding: 0px;
    margin-left: -12px;
    position: absolute;
    bottom: 0px;
}
#header-container .header-content-top nav .menu .sub-menu > li,
#header-container .header-content-top nav .menu .sub-menu .sub-sub-menu > li {
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #FFF;
    text-decoration: none;
    color: rgba(94,81,58,0.65);
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
}
#header-container .header-content-top nav .menu li > a,
#header-container .header-content-top nav .menu .sub-menu li > a {
    text-decoration: none;
    color: rgba(94,81,58,0.65);
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    display: inline-block;
    padding: 10px 0 0 0;
    margin: 0 14px;

}
#header-container .header-content-top nav .menu li:hover ul,
#header-container .header-content-top nav .menu .sub-menu li:hover ul,
#header-container .header-content-top nav .menu .sub-menu .sub-sub-menu li:hover ul {
    display: block;
}
#header-container .header-content-top nav .menu .sub-menu li {
    display: inline-block;
    width: 200px;
    padding: 4px 0;
}
#header-container .header-content-top nav .menu .sub-menu li:nth-child(1) {
    position: relative;
}
#header-container .header-content-top nav .menu .sub-menu > li:first-child {
    margin-top: 4px;
}
#header-container .header-content-top nav .menu .sub-menu > li:last-child a,
#header-container .header-content-top nav .menu .sub-menu .sub-sub-menu > li:last-child a {
    margin-bottom: 10px
}
#header-container .header-content-top nav .menu a:hover {
    color: rgba(94,81,58,1);
}
#header-container .header-content-top nav .menu img {
    width: 20px;
    height: 24px;
 }
#header-container .header-content-top nav .menu a.selected {
    color: #79A72C;
    border-bottom: 2px solid #79A72C;
 }
#header-container .header-content-top .login-register .welcome-name {
    font-weight: 700;
    font-size: 1.2rem;
    color:rgba(216,206,183,1);
    display: inline-block;
}
#header-container .header-content-top .login-register .selected {
    color: #79A72C;
    border-bottom: 2px solid #79A72C;
}
#header-container .header-content-top .login-register .login:hover,
#header-container .header-content-top .login-register .register:hover,
#header-container .header-content-top .login-register .signout:hover,
#header-container .header-content-top .login-resgister .backoff:hover {
    color: rgba(94,81,58,1);
 }
#header-container .header-content-top .login-register ul li {
    text-align: center;
    display: inline-block;
    font-size: 1.2em;
    margin: 0 6px;
}
#header-container .header-content-top .login-register ul li a {
    font-weight: 700;
    text-decoration: none;
    color:rgba(216,206,183,0.5);
    display: block;
    -webkit-transition: color 0.6s;
            transition: color 0.6s;
}
@-webkit-keyframes modal-in {
    0% {opacity: 0;
    }
    100% {opacity: 1;
    }
}
@keyframes modal-in {
    0% {opacity: 0;
    }
    100% {opacity: 1;
    }
}
#header-container .header-content-top .modal {
    display: none; 
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    -webkit-animation-name: modal-in;
            animation-name: modal-in;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
}
#header-container nav .modal-nav {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}
#header-container nav .nav-modal-container .nav-modal-content {
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 100px 0;
    list-style-type: none;   
}
#header-container .nav-modal-container .nav-modal-content > ul > li {
    display: block;
    padding: 10px 0;
}
#header-container .nav-modal-container .nav-modal-content > ul > li > a {
    color: rgb(216,206,183);
    font-size: 3em;    
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;   
}
#header-container nav .nav-modal-container .nav-modal-content .close-nav {
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: bolder;
    color: rgb(216,206,183);
    font-size: 5em;
}
#header-container .header-content-top .login-modal-container .login-modal-content, 
#header-container .header-content-top .register-modal-container .register-modal-content,
#header-container .header-content-top .recover-modal-container .recover-modal-content {
    margin: 40px auto 0 auto;
    display: block;
    max-width: 540px;
    text-align: center;
    background-color: rgba(216,206,183,0.7);
    padding: 60px 0;
    outline-offset: -10px;
    outline: 2px dashed #FFF;
    border-radius: 5px;
    overflow: auto;
}
#header-container .header-content-top .register-modal-container .register-modal-content h2,
#header-container .header-content-top .recover-modal-container .recover-modal-content h2 {
    padding-bottom: 30px;
    color: rgb(94,81,58);
    font-weight: bold;
    font-size: 1.6em;
}
@-webkit-keyframes modal-out {
    0% {opacity: 1;
    }
    100% {opacity: 0;
    }
}
@keyframes modal-out {
    0% {opacity: 1;
    }
    100% {opacity: 0;
    }
}
#header-container .header-content-top .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: bolder;
    color: #f1f1f1;
    font-size: 5em;  
}
#header-container .header-content-top .close:hover {
    color: #333;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: color 0.6s ease;
            transition: color 0.6s ease;
}
input[name="email"],
input[name="password"],
input[name="name"],
input[name="uid"],
input[name="username"],
input[name="address"],
input[name="city"],
input[name="postal_code"],
input[name="phone"],
input[name="rep_password"],
input[name="new_password"],
input[name="rep_new_password"],
select[name="role"],
select[name="country_id"] {
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.3em;
    padding: 5px;
    border-radius: 2px;
}
input[name="email"]:hover,
input[name="password"]:hover,
input[name="name"]:hover,
input[name="uid"]:hover,
input[name="username"]:hover,
input[name="address"]:hover,
input[name="city"]:hover,
input[name="postal_code"]:hover,
input[name="phone"]:hover,
input[name="rep_password"]:hover,
input[name="new_password"]:hover,
input[name="rep_new_password"]:hover,
select[name="role"]:hover,
select[name="country_id"]:hover {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
input[name="email"]:focus,
input[name="password"]:focus,
input[name="name"]:focus,
input[name="uid"]:focus,
input[name="username"]:focus,
input[name="address"]:focus,
input[name="city"]:focus,
input[name="postal_code"]:focus,
input[name="phone"]:focus,
input[name="rep_password"]:focus,
input[name="new_password"]:focus,
input[name="rep_new_password"]:focus,
select[name="role"]:focus,
select[name="country_id"]:focus {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
select[name="country_id"] {
    width: 180px;
}
.modal select, .modal input[type="text"], .modal input[type="email"], .modal input[type="password"] {
    width: 170px;
    padding:5px;
}
#header-container .header-content-top .login-modal-container .login-modal-content .login-label,
#header-container .header-content-top .register-modal-container .register-modal-content .register-label,
#header-container .header-content-top .recover-modal-container .recover-modal-content .recover-label
.reset-label {
    font-weight: 500;
    font-size: 1.5em;
    width: 150px;
    display: inline-block;
    padding: 5px;
    text-align: right;
    color: rgb(94,81,58);
}
input[name="submit_login"],
input[name="submit_register"],
input[name="submit_recover"],
input[name="submit_new_password"] {
    font-size: 1.2em;
    cursor: pointer;
    background-color: rgb(94,81,58);
    margin: 10px 0;
    border-radius: 3px;
    font-weight: 700;
    color: #FFF;
    border: none;
    outline-offset: -4px;
    outline: 1px dashed #FFF;
    padding: 7px 25px;
    cursor: pointer;
}
input[name="submit_login"]:hover,
input[name="submit_register"]:hover,
input[name="submit_recover"]:hover,
input[name="submit_new_password"]:hover {
    background-color: #79A72C;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
input[name="submit_login"]:active,
input[name="submit_register"]:active,
input[name="submit_recover"]:active,
input[name="submit_new_password"]:active {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
input:focus,
select:focus,
textarea:focus {
            outline: none;
}
#services  {
    width: 100%;
    background-image: url("Images/servicos.jpg");
    background-position: top;
    min-height: 530px;
    position: relative;
}
#products {
    width: 100%;
    background-image: url("Images/produtos.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 530px;
    position: relative;
}
#products:hover {
    cursor: pointer;
}
#freefairtrade {
    width: 100%;
    background-image: url("Images/freefairtrade.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 530px;
    position: relative;
}
#blog {
    width: 100%;
    background-image: url("Images/blog_strip1.jpg");
    background-position: top;
    min-height: 530px;
    position: relative;
}
#services .banner-container, 
#products .banner-container,
#freefairtrade .banner-container,
#blog .banner-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    min-height: 530px;
}
#services .banner-container .banner-content h2, 
#products .banner-container .banner-content h2,
#freefairtrade .banner-container .banner-content h2,
#blog .banner-container .banner-content h2 {
    padding-top: 144px;
    padding-right: 0px; 
    color: rgba(255,255,255,1);
    text-shadow: 0 3px 10px #000;
    font-size: 6em;
    font-weight: bold;
}
#services-information, 
#products-information,
#freefairtrade-information,
#recipes-information,
#mushroom-production-information,
#wild-mushrooms-information,
#mycorrhizae-information,
#medicinal-information,
#environmental-recovery,
#seminars-information,
#mycelium-information,
#straw-information,
#sawdust-information,
#substrate-information,
#logs-information,
#beds-information,
#stands-information,
#signout-page,
#recover-page {
    background-color: rgb(216,206,183);
    background-image: url("Images/background.png");
    background-size: 20%;
}
#signout-page,
#recover-page {
    padding-top: 10%;
    margin: 0 auto;
    padding-bottom: 5%;
}
#services-information .services-information-container, 
#products-information .products-information-container,
#freefairtrade-information .freefairtrade-information-container,
#recipes-information .recipes-information-container,
#mushroom-production-information .mushroom-production-information-container,
#wild-mushrooms-information .wild-mushrooms-information-container,
#mycorrhizae-information .mycorrhizae-information-container,
#medicinal-information .medicinal-information-container,
#environmental-recovery .environmental-recovery-container,
#seminars-information .seminars-information-container,
#mycelium-information .mycelium-information-container,
#straw-information .straw-information-container,
#sawdust-information .sawdust-information-container,
#substrate-information .substrate-information-container,
#logs-information .logs-information-container,
#beds-information .beds-information-container,
#stands-information .stands-information-container,
#signout-page .signout-page-container,
#recover-page .recover-page-container {
    background-color: rgb(216,206,183);
    margin: 0 auto;
    max-width: 960px;
}
#services-information .services-information-content, 
#products-information .products-information-content,
#freefairtrade-information .freefairtrade-information-content,
#recipes-information .recipes-information-content,
#mushroom-production-information .mushroom-production-information-content,
#wild-mushrooms-information .wild-mushrooms-information-content,
#mycorrhizae-information .mycorrhizae-information-content,
#medicinal-information .medicinal-information-content,
#environmental-recovery .environmental-recovery-content,
#seminars-information .seminars-information-content,
#mycelium-information .mycelium-information-content,
#straw-information .straw-information-content,
#sawdust-information .sawdust-information-content,
#substrate-information .substrate-information-content,
#logs-information .logs-information-content,
#beds-information .beds-information-content,
#stands-information .stands-information-content,
#signout-page .signout-page-content,
#recover-page .recover-page-content {
    color: rgb(94,81,58);
    padding: 70px 30px 30px 30px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 30px;
    text-align: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
}
#mycorrhizae-information .mycorrhizae-information-content:nth-of-type(2),
#mycelium-information .mycelium-information-content:nth-of-type(2),
#straw-information .straw-information-content:nth-of-type(2),
#sawdust-information .sawdust-information-content:nth-of-type(2),
#substrate-information .substrate-information-content:nth-of-type(2),
#logs-information .logs-information-content:nth-of-type(2),
#beds-information .beds-information-content:nth-of-type(2) {
    padding: 0 30px 30px 30px;
}

#seminars-information .seminars-information-content-bottom {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-gap: 20px;
    text-align: center;
    padding: 0;
    margin: 0;
}
.readmore {
    max-height: 100px;
    position: relative;
    overflow: hidden;
}
.readmore::after {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)),to(#f4f4f4));
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0),#f4f4f4);
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
}
#services-information .services-information-content h3, 
#products-information .products-information-content h3,
#freefairtrade-information .freefairtrade-information-content h3,
#recipes-information .recipes-information-content h3,
#mushroom-production-information .mushroom-production-information-content h3,
#wild-mushrooms-information .wild-mushrooms-information-content h3,
#mycorrhizae-information .mycorrhizae-information-content h3,
#medicinal-information .medicinal-information-content h3,
#environmental-recovery .environmental-recovery-content h3,
#seminars-information .seminars-information-content h3,
#mycelium-information .mycelium-information-content h3,
#straw-information .straw-information-content h3,
#sawdust-information .sawdust-information-content h3,
#substrate-information .substrate-information-content h3,
#logs-information .logs-information-content h3,
#beds-information .beds-information-content h3,
#stands-information .stands-information-content h3,
#signout-page .signout-page-content h3,
#recover-page .recover-page-content h3 {
    font-size: 3.8em;
    font-weight: 700;
    text-align: left;
}
#signout-page .signout-page-content h3,
#recover-page .recover-page-content h3 {
    text-align: center;
}
#services-information .services-information-content p, 
#products-information .products-information-content p,
#freefairtrade-information .freefairtrade-information-content p,
#freefairtrade-information .freefairtrade-information-content ul,
#recipes-information .recipes-information-content p,
#recipes-information .recipes-information-content ul,
#mushroom-production-information .mushroom-production-information-content p,
#mushroom-production-information .mushroom-production-information-content ul,
#wild-mushrooms-information .wild-mushrooms-information-content p,
#mycorrhizae-information .mycorrhizae-information-content p,
#mycorrhizae-information .mycorrhizae-information-content ul,
#medicinal-information .medicinal-information-content p,
#environmental-recovery .environmental-recovery-content p,
#seminars-information .seminars-information-content p,
#seminars-information .services-information-content ul,
#mycelium-information .mycelium-information-content p,
#mycelium-information .mycelium-information-content ul,
#straw-information .straw-information-content p,
#straw-information .straw-information-content ul,
#sawdust-information .sawdust-information-content p,
#logs-information .logs-information-content p,
#substrate-information .substrate-information-content p,
#beds-information .beds-information-content p,
#beds-information .beds-information-content ul,
#stands-information .stands-information-content p,
#signout-page .signout-page-content p,
#recover-page .recover-page-content p { 
    font-size: 1.6em;
    margin: 18px 0;
    text-align: left;
    line-height: 1.4em;
}
#signout-page .signout-page-content p {
    text-align: center;
}
#services-information > div > div > div:nth-child(5) > div:nth-child(4) > p:nth-child(1),
#products-information > div > div > div:nth-child(9) > div > p:nth-child(2),
#services-information > div > div > div:nth-child(8) > div:nth-child(2) > p:nth-child(1) {
    margin-top: 18px;
}
#services-information .services-information-content p 

#mushroom-production-information .mushroom-production-information-content ol,
#wild-mushrooms-information .wild-mushrooms-information-content ol,
#environmental-recovery .environmental-recovery-content ol,
#sawdust-information .sawdust-information-content ol,
#substrate-information .substrate-information-content ol {
    list-style-type: decimal;
    margin-left: 16px;
}
#mushroom-production-information .mushroom-production-information-content ol li,
#wild-mushrooms-information .wild-mushrooms-information-content ol li,
#environmental-recovery .environmental-recovery-content ol li,
#straw-information .straw-information-content ul li,
#straw-information .straw-information-content ol li,
#sawdust-information .sawdust-information-content ol li {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4em;
    margin: 18px 0 0 0;
}
#seminars-information .seminars-information-content ul li {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4em;
    margin: 0 0 8px 0; 
}

#recipes-information .recipes-information-content ul li {
    font-size: 1.6rem;
}
#services-information .services-information-content h4,
#products-information .products-information-content h4,
#recipes-information .recipes-information-content h4,
#mushroom-production-information .mushroom-production-information-content h4,
#wild-mushrooms-information .wild-mushrooms-information-content h4,
#straw-information .straw-information-content h4,
#sawdust-information .sawdust-information-content h4,
#substrate-information .substrate-information-content h4,
#logs-information .logs-information-content h4 {
    font-size: 2em;
    font-weight: 700;
    text-align: left;
}
#recipes-information .recipes-information-content .recipes-information-content-middle h4 {
    font-size: 2em;
    font-weight: 700;
    text-align: left;
    margin-top: 24px;
}
#freefairtrade-information .freefairtrade-information-content p:nth-of-type(1),
#freefairtrade-information .freefairtrade-information-content ul,
#mycorrhizae-information .mycorrhizae-information-content:nth-of-type(2) p:nth-of-type(1),
#recipes-information .recipes-information-content .recipes-information-content-left > p:first-of-type,
#recipes-information .recipes-information-content .recipes-information-content-middle > p:first-of-type,
#mycelium-information .mycelium-information-content .mycelium-information-content-middle > p:first-of-type,
#straw-information .straw-information-content .straw-information-content-middle > p:first-of-type,
#sawdust-information .sawdust-information-content .sawdust-information-content-middle > p:first-of-type,
#logs-information .logs-information-content .logs-information-content-middle > p:first-of-type,
#beds-information .beds-information-content .beds-information-content-middle > p:first-of-type,
#products-information > div > div > div:nth-child(3) > div:nth-child(1) > p,
#services-information > div > div > div:nth-child(4) > div > div > p:nth-child(1),
#environmental-recovery > div > div > div:nth-child(2) > div > p {
    margin-top: 0;
}
#services-information > div > div > div:nth-child(5) > div:nth-child(2) > p:nth-child(1),
#services-information > div > div > div:nth-child(5) > div:nth-child(2) > p:nth-child(2),
#services-information > div > div > div:nth-child(9) > div:nth-child(1) > p {
    margin: 0 0;
}
#recipes-information .recipes-information-content:nth-of-type(2),
#wild-mushrooms-information .wild-mushrooms-information-content:nth-of-type(2),
#seminars-information .seminars-information-content:nth-child(3) {
    padding-top: 0;
}
.freefairtrade-information-content ul li {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 20px;  
}
.services-information-content-left dl,
.mycorrhizae-information-content-middle dl,
.substrate-information-content-middle dl {
    font-size: 16px;
    margin: 0 0;
    text-align: left;
    line-height: 1.4em;
}
.mycorrhizae-information-content-middle dl dt,
.substrate-information-content-middle dl dt {
    font-weight: 700;
    margin: 18px 0;
}
#products-information .products-information-content .products-information-content-top {
    grid-column: 1/3;
    text-align: left;
    margin-bottom: 20px;
}
.services-category,
.products-category {
    text-align: left;
}
.services-category dd,
.products-category dd,
.mushroom-production-category dd {
    display: inline;   
}
.services-category dd::after, 
.products-category dd::after,
.mushroom-production-category dd::after {
    content: ' | ';
    color: #53513A;
    font-size: 2.4em;
    padding: 0 4px;
}
.services-category dd:last-of-type::after,
.products-category dd:last-of-type::after,
.mushroom-production-category dd:last-of-type::after {
    content: none;
}
.mushroom-production-category dd:nth-of-type(4)::after,
.mushroom-production-category dd:nth-of-type(5)::before {
    content: none;
}
.services-category dd a, 
.products-category dd a {
    color: #79A72C;
    font-size: 2.4em;
    font-weight: 700;
    text-decoration: none;
}
.mushroom-production-category dd a {
    color: #79A72C;
    font-size: 2em;
    font-weight: 700;
    text-decoration: none;
}
.mushroom-production-category dt {
    color: #53513A;
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 10px;
}
.mushroom-production-category dt:last-of-type {
    margin-top: 20px;
}
.services-category dd a:hover,
.products-category dd a:hover,
.mushroom-production-category dd a:hover {
    color: #53513A;
    text-decoration: underline;
}
.services-information-content-left dt:first-of-type {
    margin: 0 0;
}
.services-information-content-left dt:nth-of-type(2),
.services-information-content-left dt:nth-of-type(3) {
    margin-top: 16px;
}
.services-information-content-left dl span {
    text-transform: uppercase;
}
.services-information-content-middle,
.products-information-content-middle,
.freefairtrade-information-content-middle,
.recipes-information-content-middle,
.mushroom-production-content-middle,
.wild-mushrooms-content-middle,
.mycorrhizae-information-content-middle,
.medicinal-information-content-middle,
.environmental-recovery-content-middle,
.seminars-information-content-middle,
.mycelium-information-content-middle,
.straw-information-content-middle,
.sawdust-information-content-middle,
.substrate-information-content-middle,
.logs-information-content-middle,
.beds-information-content-middle,
.stands-information-content-middle,
.signout-page-content-middle,
.recover-page-content-middle {
    grid-column: 1/3;
}
#mushroom-production-information > div > div > div:nth-child(2) {
    margin-bottom: 30px;
}
.mycelium-information-content-middle table,
.straw-information-content-middle table,
.sawdust-information-content-middle table,
.logs-information-content-middle table {
    margin: 0 auto;
}
.mycelium-information-content-middle th,
.straw-information-content-middle th,
.sawdust-information-content-middle th,
.substrate-information-content-middle th,
.logs-information-content-middle th {
    font-size: 1.6rem;
    padding: 10px;
    font-weight: 700;
}
.mycelium-information-content-middle tr,
.straw-information-content-middle tr,
.sawdust-information-content-middle tr,
.substrate-information-content-middle tr,
.logs-information-content-middle tr {
    border: 1px solid #53513A;
}
.mycelium-information-content-middle td,
.straw-information-content-middle td,
.sawdust-information-content-middle td,
.substrate-information-content-middle td,
.logs-information-content-middle td {
    font-size: 1.4rem;
    vertical-align: middle;
    width: 33.3%;
    padding: 10px;
}
.inoculation tr {
    border: 1px solid #53513A;
}
.inoculation th,
.substract th {
    vertical-align: middle;
}
.laboratory tr:nth-of-type(3),
.laboratory tr:nth-of-type(5),
.laboratory tr:nth-of-type(7),
.laboratory tr:nth-of-type(9),
.laboratory tr:nth-of-type(11),
.laboratory tr:nth-of-type(13),
.laboratory tr:nth-of-type(15),
.laboratory tr:nth-of-type(17),
.laboratory tr:nth-of-type(19) {
    border-top: none;
}
.laboratory tr:nth-of-type(2),
.laboratory tr:nth-of-type(4),
.laboratory tr:nth-of-type(6),
.laboratory tr:nth-of-type(8),
.laboratory tr:nth-of-type(10),
.laboratory tr:nth-of-type(12),
.laboratory tr:nth-of-type(14),
.laboratory tr:nth-of-type(16),
.laboratory tr:nth-of-type(18) {
    border-bottom: none;
}
#services-information .services-information-content .services-information-content-left div,
#products-information .products-information-content .products-information-content-left div {
    text-align: right;
}
#services-information .services-information-content .services-information-content-left div .storeButton,
#products-information .products-information-content .products-information-content-left div .storeButton {
    background-color: #79A72C;
    border-radius: 3px;
    font-weight: 700;
    font-size: 1.8em;
    color: #FFF;
    border: none;
    outline-offset: -4px;
    outline: 1px dashed #FFF;
    padding: 7px 25px;
    cursor: pointer;
    text-decoration: none;
}
.information-button {
    background-color: #79A72C;
    border-radius: 3px;
    font-weight: 700;
    font-size: 1.8em;
    color: #FFF;
    border: none;
    outline-offset: -4px;
    outline: 1px dashed #FFF;
    padding: 7px 25px;
    cursor: pointer;   
}
.information-button:hover {
    color: #79A72C;
    background-color: #FFF;
    outline: 1px dashed #79A72C;
}
.banner-content div {
    margin-top: 30px;
    text-align: right;
}
.banner-content div .storeButton {
    background-color: #79A72C;
    border-radius: 3px;
    font-weight: 700;
    font-size: 1.8em;
    color: #FFF;
    border: none;
    outline-offset: -4px;
    outline: 1px dashed #FFF;
    padding: 7px 25px;
    cursor: pointer;
}
.banner-content div .storeButton:hover {
    color: #79A72C;
    background-color: #FFF;
    outline: 1px dashed #79A72C;
} 
#services-information .services-information-content .services-information-content-left div .storeButton:hover,
#products-information .products-information-content .products-information-content-left div .storeButton:hover {
    color: #79A72C;
    background-color: #FFF;
    outline: 1px dashed #79A72C;
}
#message {
    padding-top: 6%;
    margin: 0 auto;
    width: 60%;
    padding-bottom: 5%;
}
#message .message-container {
    text-align: center;
}
#message .message-container .message-content .back p a:hover {
    text-decoration: underline;
}
#message .message-container .message-content h2 {
    font-size: 3em;
    padding: 30px;
}
#message .message-container .message-content .errors-container {
    -webkit-box-shadow: 1px 1px 10px #333;
            box-shadow: 1px 1px 10px #333;
    border-radius: 5px;
    padding: 20px 0;
}
#message .message-container .message-content p a {
    color: #333;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    padding: 20px;
    display: inline-block;
}
#message .message-container .message-content .errors-container .message {
    font-size: 1.3em;
    margin: 20px;
    color: #333;
}
main {
    margin: 0 auto;
    width: 100%;
}
#slider {
    position: relative;
    padding-top: 100px;
    margin-bottom: -2px;
}
#slider img {
    height: auto;
    max-width: 100%;
}
#slider .banner-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;  
}
#slider .banner-container .banner-content {   
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0 0 3px 3px;
    max-width: 960px;
}
#slider .banner-container .banner-content h2 {
    color: rgba(216,206,183,1);
    text-shadow: 0 3px 10px #000;
    font-size: 6em;
    font-weight: bold;
    padding-top: 144px;
    text-align: right;
}
#slider .banner-container .banner-content p {
    color: rgba(216,206,183,1);
    text-shadow: 0 3px 10px #000;
    font-weight: 500;
    font-size: 1.8em;
    line-height: 1.4em;
    text-align: right;
    padding-top: 20px;
}
#slider .prev,
#slider .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: rgb(216,206,183);
    font-weight: bold;
    font-size: 2.2em;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
#slider .next {
    right: 0;
}
#slider .prev:hover,
#slider .next:hover {
    background-color: rgb(216,206,183);
    color: rgb(94,81,58);
}
#slider .banner-container .banner-content .storeButton:hover {
    color: #79A72C;
    background-color: #FFF;
    outline: 1px dashed #79A72C;
}

#slider .banner-container .banner-content button:active {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
#slider .banner-container .slider-dots {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 10px; 
}
#slider .banner-container .slider-dots .dot {
    cursor: pointer;
    margin: 0 10px;
    height: 11px;
    width: 11px;
    background-color: rgb(216,206,183);
    border-radius: 50%;
    display: inline-block;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;   
}
#slider .banner-container .slider-dots .dot:hover  {
    background-color: rgb(94,81,58);
}
#slider .banner-container .slider-dots .active {
    background-color: rgb(94,81,58);
}
#information,
#blog-information  {
    background-color: rgb(216,206,183);
    background-image: url("Images/background.png");
    background-size: 20%;
}
#information .information-container {
    background-color: rgb(216,206,183);
    margin: 0 auto;
    max-width: 960px;
    padding: 70px 0;
}
#blog-information .blog-information-container {
    background-color: rgb(216,206,183);
    margin: 0 auto;
    max-width: 960px;
    padding: 70px 0 0 0;
}
#information .information-container .information-content {
    background-color: rgb(94,81,58);
    margin: 0px 30px;
    padding: 50px 0;
    outline-offset: -10px;
    outline: 2px dashed rgb(216,206,183);
    border-radius: 12px;
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-template-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    text-align: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
}
#blog-information .blog-information-container .blog-information-content {
    background-color: rgb(94,81,58);
    margin: 0px 30px;
    padding: 50px 0;
    outline-offset: -10px;
    outline: 2px dashed rgb(216,206,183);
    border-radius: 12px;
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 30px;
    -ms-grid-template-columns: 30% 30% 30%;
    grid-template-columns: 30% 30% 30%;
    text-align: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
}  
#information .information-container .information-content a,
#blog-information .blog-information-container .blog-information-content a {
    transition-duration: 0.6s;
    -webkit-transition-duration: 0.4s;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
}
#information .information-container .information-content img {
    width: 124px;
    height: 124px;
}
#blog-information .blog-information-container .blog-information-content img {
    width: 145px;
    height: 124px; 
}
#information .information-container .information-content a:hover,
#blog-information .blog-information-container .blog-information-content a:hover {
    box-shadow: 0 0 20px 0 rgba(216,206,183,0.24);  
}
#information .information-container .information-content h3,
#blog-information .blog-information-container .blog-information-content h3 {
    color: rgb(216,206,183);
    font-weight: 700;
    font-size: 2.4em;
    margin-top: 10px;
}
#information .information-container .information-content p {
    color: rgb(216,206,183);
    font-weight: 500;
    font-size: 1.2em;
    margin-top: 10px;
    line-height: 1.4em;
}
#image {
    background-image: url("Images/strip1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 600px;
}
#about-fp {
    background-color: rgb(216,206,183);
    background-image: url("Images/background.png");
    background-size: 20%;
}
#about-fp .about-fp-container {
    background-color: rgb(216,206,183);
    margin: 0 auto;
    max-width: 960px;
}
#about-fp .about-fp-container .about-fp-content {
    color: rgb(94,81,58);
    padding: 50px 30px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 30px;
    text-align: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
}
#about-fp .about-fp-container .about-fp-content .about-fp-content-left h3 {
    font-size: 3.8em;
    font-weight: 700;
    text-align: left;
}
#about-fp .about-fp-container .about-fp-content .about-fp-content-left h4 {
    font-size: 2.4em;
    font-style: italic;
    text-align: left;
    margin: 20px 0 48px 0; 
}
#about-fp .about-fp-container .about-fp-content .about-fp-content-left p {
    font-size: 1.6em;
    margin: 20px 0;
    text-align: left;
    line-height: 1.4em;
}
#about-fp .about-fp-container .about-fp-content .about-fp-content-left p span {
    font-weight: 700;
}
#about-fp .about-fp-container .about-fp-content .about-fp-content-left p:first-of-type {
    margin-top: 0;
}
#about-fp .about-fp-container .about-fp-content .about-fp-content-left img {
    margin-bottom: 50px;
    width: 100%;
    height: auto;
}
#contacts,
#legal-information,
#privacy-information,
#terms-information {
    background-color: rgb(216,206,183);
    background-image: url("Images/background.png");
    background-size: 20%;     
}
#contacts .contacts-container,
#legal-information .legal-information-container,
#privacy-information .privacy-information-container,
#terms-information .terms-information-container {
    background-color: rgb(216,206,183);
    margin: 0 auto;
    max-width: 960px;
}
#contacts .contacts-content,
#legal-information .legal-information-content,
#privacy-information .privacy-information-content,
#terms-information .terms-information-content {
    color: rgb(94,81,58);
    padding: 170px 30px 80px 30px;
}
#contacts .contacts-content-contact h3,
#legal-information .legal-information-content h3,
#privacy-information .privacy-information-content h3,
#terms-information .terms-information-content h3 {
    font-size: 3.8em;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}
#contacts .contacts-content-adresses {
    margin-top: 80px;
}
#contacts .contacts-content-adresses h3 {
    font-size: 3.8em;
    font-weight: 700;
    text-align: left;
}
#contacts p,
#legal-information .legal-information-content p,
#privacy-information .privacy-information-content p,
#terms-information .terms-information-content p {
    font-size: 1.6em;
    text-align: left;
    line-height: 1.4em;
}
#privacy-information .privacy-information-content p ,
#terms-information .terms-information-content p {
    margin: 18px 0;
}
#privacy-information .privacy-information-content dl,
#terms-information .terms-information-content dl {
    font-size: 1.6em;
    text-align: left;
    line-height: 1.4em;
}
#privacy-information .privacy-information-content dt,
#terms-information .terms-information-content dt {
    font-weight: 700;
    margin: 12px 0;
}
#privacy-information .privacy-information-content dd,
#terms-information .terms-information-content dd {
    margin: 18px 0;
}
#terms-information .terms-information-content ul {
    font-size: 1.6em;
    margin: 0 0;
    text-align: left;
    line-height: 1.4em;
}
#contacts-form .form-label {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.6em; 
}
#contacts .contacts-content-contact p:nth-of-type(4) {
    margin: 20px 0 20px 0;
}
#contacts .contacts-content-adresses p:first-of-type,
#contacts .contacts-content-adresses p:nth-of-type(5) {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
}
#contacts .contacts-content .message {
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 20px;
    font-weight: bold;
    text-decoration: underline;
}
#contacts-form {
    margin: 30px 0 20px 0;
}
#contacts-form label {
    display: block;
}
#contacts-form input[name="contact_name"],
#contacts-form input[name="contact_email"] {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.6em;
    border-radius: 4px;
    border: none;
    width: 100%;
    padding: 2px 0 2px 8px;
    margin: 0 0 10px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
#contacts-form input[name="contact_name"]:hover,
#contacts-form input[name="contact_email"]:hover,
#contacts-form textarea[name="contact_comment"]:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

#contacts-form input[name="contact_name"]:focus,
#contacts-form input[name="contact_email"]:focus,
#contacts-form textarea[name="contact_comment"]:focus {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
::-ms-placeholder {
    color:rgb(216,206,183);
}
::-webkit-input-placeholder {
    color:rgb(216,206,183);
}
:-ms-input-placeholder {
    color:rgb(216,206,183);
}
::-ms-input-placeholder {
    color:rgb(216,206,183);
}
::-moz-placeholder {
    color:rgb(216,206,183);
}
::placeholder {
    color:rgb(216,206,183);
}
::-webkit-input-placeholder {
    color:rgb(216,206,183);
}
#contacts-form textarea[name="contact_comment"] {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.6em;
    border-radius: 4px;
    width: 100%;
    height: 260px;
    border: none;
    outline: none;
    resize: vertical;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2px 0 2px 8px;
}
#contacts-form input[type="checkbox"] {
    width: 1.60rem; 
    height: 1.60rem;
    position: relative;
    bottom: -2px;
}
#contacts-form input[name="submit_contact"] {
    background-color: rgb(94,81,58);
    margin: 10px 0;
    border-radius: 3px;
    font-weight: 700;
    font-size: 1.8em;
    color: #FFF;
    border: none;
    outline-offset: -4px;
    outline: 1px dashed #FFF;
    padding: 7px 25px;
    cursor: pointer;
}
#contacts-form input[name="submit_contact"]:hover {
    background-color: #79A72C;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
#contacts-form input[name="submit_contact"]:active {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
footer {
    width: 100%;
    background-color: rgb(94,81,58);
    text-align: center;
    -webkit-box-shadow: 0px -1px 40px #000;
            box-shadow: 0px -1px 40px #000;
    padding-top: 10px;
}
footer .stroke {
    border-top: 1.6px dashed rgb(216,206,183);;
}
footer .footer-content {
    max-width: 960px;
    margin: 0 auto; 
}
footer .footer-content .information-content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 30px 0;   
}
footer .footer-content .information-content div {
    -ms-flex-item-align: start;
    align-self: start;
    justify-self: start; 
}
footer .information-content div h3,
footer .connections-content h3 {
    color: rgb(216,206,183);
    font-weight: 700;
    font-size: 2.0em;
    padding: 20px;
    text-transform: uppercase;
    text-align: left;
}
footer .connections-content-information {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-break-inside: avoid;
    font-size: 1.4em;
}
footer .legal-content-information {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-break-inside: avoid;
    font-size: 1.4em;
    padding-bottom: 20px;
}
footer .legal-content-information a,
footer .connections-content-information a {
    display: block;
    padding: 6px 20px;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    text-align: left;
}
footer .footer-content .information-content p {
    color: #D8CEB7;
    font-weight: 700;
    font-size: 1.4em;
    padding: 4px 20px; 
    text-align: left;
}
footer .footer-content .information-content p:last-child {
    margin-top: 10px;
}
footer .footer-content .information-content p a:last-child {
    font-weight: 400;
    color: #D8CEB7;
}
footer .footer-content .information-content p:last-child::before {
    content: "(";
}
footer .footer-content .information-content p:last-child::after {
    content: ")";
}
footer .footer-content .information-content div .storeButton  {
    background-color: #79A72C;
    border-radius: 3px;
    font-weight: 700;
    font-size: 1.8em;
    color: #FFF;
    border: none;
    outline-offset: -4px;
    outline: 1px dashed #FFF;
    padding: 7px 25px;
    cursor: pointer;
    text-decoration: none;
}
footer .footer-content .information-content div .storeButton:hover {
    color: #79A72C;
    background-color: #FFF;
    outline: 1px dashed #79A72C;
}
footer .footer-content .information-content div .storeButton:active {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
footer .footer-content .information-content div:last-child ul {
    margin-left: 20px;
}
footer .footer-content .information-content div:last-child ul li {
    display: inline;
    margin: 0 16px 0 0;
}
footer .footer-content .information-content div:last-child ul li a {
    width: 100%;
}
.modal .alert{
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
}
.link {
    color: #79A72C;
    font-weight: 700;
    transition: color 0.6s ease;
}
.link2 {
    font-size: 1.2rem;
    color:#53513A;
}
.link:hover {
    color:#53513A; 
}
.link-connection {
    color: #D8CEB7;
    font-weight: 700;
}
.link-connection:hover {
    color:#53513A;
    background-color: #D8CEB7;
    text-decoration: none;
}
@media (max-width: 767px) {
    #header-container .header-content-top .login-register {
        text-align: center;
        -ms-flex-item-align: center;
            align-self: center;
        grid-column: 2/4;
        -ms-grid-column: 2/4; 
    }
    #slider > div > div.banner-content > div,
    #slider > div > div.banner-content > h2,
    #slider > div > div.banner-content > p {
        display: none;
    }
    #slider .banner-container .banner-content h2,
    #services .banner-container .banner-content h2,
    #products .banner-container .banner-content h2,
    #blog .banner-container .banner-content h2,
    #freefairtrade .banner-container .banner-content h2 {
        padding: 144px 20px 40px 20px;
        font-size: 3em;
    }
    #services-information > div > div > div:nth-child(5) > div:nth-child(5),
    #services-information > div > div > div:nth-child(8) > div:nth-child(3),
    #services-information > div > div > div:nth-child(9) > div:nth-child(3) {
        margin-bottom: 30px;
    }
    #recipes-information > div > div:nth-child(1) > div:nth-child(4) {
        margin-top: 30px;
    }
    #information .information-container .information-content,
    #blog-information .blog-information-container .blog-information-content {
        display: block;
    }
    #about-fp .about-fp-container .about-fp-content {
        display: block;
    }
    #services-information .services-information-content,
    #products-information .products-information-content,
    #freefairtrade-information .freefairtrade-information-content,
    #recipes-information .recipes-information-content,
    #mushroom-production-information .mushroom-production-information-content,
    #wild-mushrooms-information .wild-mushrooms-information-content,
    #mycorrhizae-information .mycorrhizae-information-content,
    #medicinal-information .medicinal-information-content,
    #seminars-information .seminars-information-content-left,
    #seminars-information .seminars-information-content-bottom,
    #environmental-recovery .environmental-recovery-content,
    #mycelium-information .mycelium-information-content,
    #straw-information .straw-information-content,
    #sawdust-information .sawdust-information-content,
    #substrate-information .substrate-information-content,
    #logs-information .logs-information-content,
    #beds-information .beds-information-content,
    #stands-information .stands-information-content  {
        display: block;
    }
    footer .footer-content .information-content {
        display: block;
    }
    footer .footer-content .information-content div {
        text-align: left;
    }
    footer .footer-content .information-content div:nth-child(2) {
        margin: 20px 0 20px 0;
    }
    footer .connections-content-information,
    footer .legal-content-information {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
        -webkit-column-break-inside: avoid;
        font-size: 1.6em;
    }
    footer .information-content > div:nth-child(2) > div {
        padding-left: 20px;
    }
}
@media (max-width: 960px) {
    
    #header-container .header-content-top nav .menu li {
        display: none;
    }
    #header-container .header-content-top nav .menu li:last-child {
        display: block;
        font-size: 1.8em;
        padding-right: 30px;
        font-weight: bold;
        text-align: right;
    }
    .services-category dd,
    .products-category dd,
    .mushroom-production-category dd {
        display: block;
        padding: 6px 0;
    }
    .services-category dd::after,
    .products-category dd::after,
    .mushroom-production-category dd::after {
        content: none;
    }
    #slider img,
    #services-information .services-information-content img, 
    #products-information .products-information-content img,
    #freefairtrade-information .freefairtrade-information-content img,
    #blog-information .blog-information-content img,
    #recipes-information .recipes-information-content img,
    #mushroom-production-information .mushroom-production-information-content img,
    #wild-mushrooms-information .wild-mushrooms-information-content img,
    #mycorrhizae-information .mycorrhizae-information-content img,
    #medicinal-information .medicinal-information-content img,
    #environmental-recovery .environmental-recovery-content img,
    #seminars-information .seminars-information-content img,
    #mycelium-information .mycelium-information-content img,
    #straw-information .straw-information-content img,
    #sawdust-information .sawdust-information-content img,
    #substrate-information .substrate-information-content img,
    #logs-information .logs-information-content img,
    #beds-information .beds-information-content img,
    #stands-information .stands-information-content img {
        width: 100%;
        height: auto;
    }
    .table-overflow {
        overflow-x: auto;
    }
    figcaption,
    caption {
        width: 100%;
    }
    iframe {
        width: 100%;
    }
}

