
@charset "UTF-8";
/* CSS Document */
/*
Theme Name: Кладезь Сибири
Version:1.0
Description: Раскройте целебную силу грибов сибири
Author:Laika
Author URI:http://laikaweb.ru/
*/

/* fonts start */

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-Black.woff') format('woff'),
        url('fonts/Onest-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-ExtraBold.woff') format('woff'),
        url('fonts/Onest-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-Bold.woff') format('woff'),
        url('fonts/Onest-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-Medium.woff') format('woff'),
        url('fonts/Onest-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-Regular.woff') format('woff'),
        url('fonts/Onest-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-Light.woff') format('woff'),
        url('fonts/Onest-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Onest';
    src:
        url('fonts/Onest-Thin.woff') format('woff'),
        url('fonts/Onest-Thin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Webfont: SrbijaSans-Regular */
@font-face {
    font-family: 'SrbijaSans';
    src: url('fonts/Srbija Sans.woff2') format('woff2'), /* Modern Browsers */
         url('fonts/Srbija Sans.otf') format('opentype'); /* Safari, Android, iOS */
             font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}


/* fonts end */

input[type="text"],
input[type="tel"],
input[type="e-mail"],
textarea {
    -webkit-appearance: none;
}

input {outline:none;}

html{height: 100%;}

body {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;

    color: #151515;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;    
    justify-content: space-between;

    min-height: 100%;

    padding-top: 0px;
} 

main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);;
    gap: 150px 0;
    justify-content: space-between;
}

.footer {
    margin-top: auto;
    margin-top: 80px;
}

:root {
	--block-padding: 130px;
    --text-size: 16px;
    --text-line: 18px;
    --subtitle-size: 20px;
    --title-size: 30px;
    --title-line: 120%;
	--transition: all .3s ease;
}

@media (max-width: 992px) {
    :root {
        --text-size: 16px;
        --subtitle-size: 20px;
        --title-size: 26px;
    }
}
@media (max-width: 576px) {
    :root {
        --text-size: 13px;
        --text-line: 16px;
        --subtitle-size: 16px;
        --title-size: 18px;
    }
}

/* header start */

header, .header-second {
    position: fixed;
    /* position: absolute; */
    width: 100%;
    z-index: 1000;
    top: 0;
    background: #09090900;;
    
    padding: 10px 0 10px;
    transition: all .3s ease-out;
}

.header-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    align-items: center;
}

.header-box {
    max-width: max-content;
    max-height: max-content;
}

.logo-link {
    max-width: fit-content;
    
    transition: all .3s ease-out;
    
    font-family: 'Bebas Neue';
    font-style: normal;
    
    font-weight: 700;
    font-size: 55px;
    line-height: 55px;

    height: fit-content;
    display: flex;

    text-decoration: none;

    color: #F9F9F9;
}

.logo-link:hover {
    color: #011A21;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
}

.header-items {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0px;
    list-style: none;
    margin-bottom: 0;
}

.header-item {
    margin-right: 55px;
}

.header-item:last-child {
    margin-right: 0px;
}

.header-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;

    color: #062E30;

    text-decoration: none;
    transition: all .3s ease-out;
    height: fit-content;
    position: relative;
}


.phone-link {
    font-weight: 700;
    font-size: 16px;
    line-height: 155%;
    font-feature-settings: 'tnum' on, 'lnum' on;
}

.header-link:hover, .header-link:active, a.header-text:hover {
    color: #011A21;
}

svg.cart {
    margin-left: 12px;
}

/* burger meny style start */

.burger-wrapper {
    cursor: pointer;
}

#meny {
    color: #FAFAFA;
    width: 100%;
    min-height: fit-content;
    position: fixed;
    right: 0;
    transition-timing-function: cubic-bezier(10,2,3,1);
    transform: translatey(-100rem);
    top: 0px;
    padding-top: 120px;
    padding-bottom: 40px;
    background: #062E30;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    transition: .8s ease; 
    z-index: -1; 
}

#menyAvPaa {
    display: none;
}

.menu-text {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 0 0px;
    padding-top: 0px;
    overflow-y: scroll;
}

.menu-text::-webkit-scrollbar {
    width: 0;
}

#menyAvPaa:checked ~ #meny {
    transform: translatey(0rem);
}

#burger {
    cursor: pointer;
    width: 28px;
    height: 1.1rem;
    right: 0rem;
    top: 0rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#burger > div {
    height: 2px;
    background-color: #011A21;
    transition: .5s;
    z-index: 1059;
}

#menyAvPaa:checked ~ #burger > div {
    background-color: #011A21;
}

#menyAvPaa:checked ~ #burger > div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 30px;
    background-color: #011A21;
}

#menyAvPaa:checked ~ #burger > div:nth-child(2) {
    opacity: 0;
}

#menyAvPaa:checked ~ #burger > div:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 30px;
    background-color: #011A21;
}

.sm-menu {
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    list-style: none;
    padding-top: 0px;
    gap: 20px 0;
}

.sm-menu .header-items{
    display: flex;
    align-items: start;
    flex-direction: column;
    list-style: none;
    padding: 0 12px;
    margin-left: 0;
    margin-left: 0px;
    gap: 20px 0;
}

.sm-menu .header-item{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    margin-right: 0;
}

.sm-menu .phone-link {
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 150% !important;
    margin-bottom: 20px;
}

.sm-menu .header-link{
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
}

.contact-header-box {
    margin-top: 65px;
}

.media-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.sm-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0 40px ;
}

.sm-menu .header-link:active {
    color: #011A21;
}

.mn-cl #burger > div {
    background-color: #151515;
}

/* burger meny style end */


.header-active {
    background: #062E30;
    transition: all .3s ease-out;
    box-shadow: 0px 4px 18px rgba(0, 44, 63, 0.1);
}
.header-active .header-link {
    color: #FFFFFF;
}
.header-active #menyAvPaa:checked ~ #burger > div:nth-child(1) {
    background-color: #FFFFFF;
}
.header-active #menyAvPaa:checked ~ #burger > div:nth-child(3) {
    background-color: #FFFFFF;
}
.header-active #burger > div {
    background-color: #FFFFFF;
}
.header-active .header-link:hover, .header-active .header-link:active {
    color: #afd46b;
}

.header-active .logo-link path {
    fill: #FFFFFF;
}

.cart path {
    transition: all .3s ease;
}

.header-active .cart path {
    fill: #FFFFFF;
}

.header-active .logo-link rect {
    stroke: #FFFFFF;
}

.header .logo-link.hide, .phone-btn.hide {
    opacity: 0;
}
/* header end */

/* main start */

/* intro start */ 

.intro {
    height: 100vh;
    background: url(img/intro__img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}

.intro__content-title {
    font-family: 'SrbijaSans';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 140%;
    text-align:center;

    color: #FFFBDB;
    filter: drop-shadow(0px 0px 10px rgb(212, 235, 172));

    margin-bottom: 0;
}

.intro__content-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: #FFFBDB;
    filter: drop-shadow(0px 0px 10px rgb(212, 235, 172));
}

.main-btn {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 7px 35px 5px;
    gap: 10px;

    width: fit-content;
    border-radius: 20px;

    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    
    color: #FDF3AA;

    text-decoration: none;

    background: none;
    border: 1.5px solid #FDF3AA;

    transition: var(--transition);
}

.main-btn:hover, .main-btn:active, .main-btn:focus{
    color: #F9F9F9;
    background: #14483C;
    border: 1.5px solid #FFFFFF;
}

/* intro end */ 

/* catalog start */ 

.title__box {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.main-page.catalog .title__box .title, .page-title {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    
    color: #151515;
}
.title__box .title{
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    
    color: #151515;
}


.page-title {
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
}

.catalog__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.catalog__item {
    text-decoration: none;
}

.catalog__item__box {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

    padding: 12px 12px 20px 12px;

    border-radius: 12px;
    border: 1px solid #011A21;
    width: 100%;
    transition: all .3s ease;
}

.catalog__item__box:hover {
    box-shadow: 0px 2px 20px #afd46b;
}

.catalog__item .item__info {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.catalog__item .info__title {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    
    color: #14483C;
    margin-bottom: 5px;
}

.catalog__item .info__text {
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    
    color: #151515;
    margin-bottom: 20px;
}

.price__box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.catalog__item .info__price span {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 140%;
    
    color: #151515;
    margin-bottom: 0;
}

.catalog__item .info__price {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    
    color: #151515;
    margin-bottom: 0;
}

.catalog__item .item__img {
    height: 258px;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog__item .item__img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.info__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7px 30px;
    gap: 5px;
    
    width: fit-content;
    height: fit-content;

    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    text-decoration: none;
    
    color: #151515;
    background: #FFFFFF00;
    border: 1px solid #151515;
    border-radius: 20px;
    transition: var(--transition);
}

.info__btn:hover {
    background: #151515;
    color: #FFFFFF;
}

/* catalog end */ 

/* about start */

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.about__img {
    border-radius: 20px;
    width: 100%;
    height: 560px;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 0px;
    color: #151515;
}

/* about end */

/* product start */

.prod__item {
    position: relative;
    display: flex;
    text-decoration: none;
    overflow: hidden;
    border-radius: 20px;
}

.prod__item .card-img-overlay {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 20px 25px;
}

.card-img-overlay .info__btn{
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.prod__item img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
    max-height: 330px;
}

.prod__item:hover img {
    transform: scale(1.2);
}

.card__title {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 31px;
    
    color: #FFFFFF;
    margin-bottom: 20px;
}

.products__content {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 24px; 
    grid-template-areas: 
      "a a a a a b b b b b b b"
      "c c c c d d d e e e e e"; 
}

.prod__item:nth-child(1) { grid-area: a; }
.prod__item:nth-child(2) { grid-area: b; }
.prod__item:nth-child(3) { grid-area: c; }
.prod__item:nth-child(4) { grid-area: d; }
.prod__item:nth-child(5) { grid-area: e; }

/* product end */

/* faq start */

.accordion-item {
    background-color: #FFFFFF00;
    border: none !important;
    border-bottom: 1px solid #599E71 !important;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    color: #2B2A29;
    background-color: #FFFFFF00;
    box-shadow: none !important;
}

.accordion-button:focus {
    z-index: 3;
    border: none !important;
    border-color: #FFFFFF00;
    outline: 0;
    box-shadow: none !important;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px var(--bs-accordion-btn-padding-x);
    font-size: 24px;
    color: #011A21;
    text-align: left;
    background-color: #FFFFFF00;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

.faq-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #151515;
}

.accordion .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.04em;
    color: #151515;
}

.accordion-body {
    padding: 20px var(--bs-accordion-body-padding-x);
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6552 0.499933V7.15635L-3.05176e-05 7.18762V9.81433L6.6552 9.8456V16.5L9.3448 16.5V9.8456L16 9.81433V7.18762L9.3448 7.14259V7.15635V0.499933H6.6552Z' fill='%23599E71'/%3E%3C/svg%3E%0A");;
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6552 7.15644L-3.05176e-05 7.18771V9.81442L6.6552 9.84569H9.3448L16 9.81442V7.18771L9.3448 7.14268L6.6552 7.15644Z' fill='%23599E71'/%3E%3C/svg%3E");
    transform: var(--bs-accordion-btn-icon-transform);
}

.faq-pic {
    display: flex;
    justify-content: center;
}

/* faq end */

/* feeds start */

.feeds-slider {
    margin: 0 -12px;
}

.name-date-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.name-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 0.04em;
    color: #14483C;
    margin-bottom: 0;
}

.date-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #888888;
    margin-bottom: 0;
}

.score {
    margin-bottom: 16px;
}

.content-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 155%;
    letter-spacing: 0.04em;
    color: #151515;
}

.slider-size {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    min-height: 200px;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid #14483C;
    transition: all .5s ease-in-out;
}

.slider-size:hover {
    box-shadow: 0px 0px 10px #afd46b;
}

.slider-item {
    padding: 12px;
}

.slider-btn {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    transition: var(--transition);
}

.slider-btn path {
    transition: var(--transition);
    stroke: #599E71;
}

.slider-btn:hover path, .slider-btn:focus path, .slider-btn:active path {
    stroke: #062E30;

}

.slider-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    margin-top: 40px;
}

.slide-prev {
    margin-right: 50px;
}

.slick-dots {
    bottom: -70px;
    z-index: -1;
}

.slick-dots li button:before {
    width: 40px;
    height: 6px;
}

.slick-dots li button {
    width: 40px;
    height: 6px;
    padding: 5px;
}

.slick-dots li {
    width: 40px;
    height: 6px;
    margin: 0 5px;
}

.slick-dots li button:before {
    background: #062E30;
}

/* feeds end */

/* main end*/ 

/* footer start */

.footer {
    padding: 30px 0 15px;
    background: #FAFAFA;
    border-top: 1px solid #011A21;
}

.footer .logo-link {
    font-size: 35px;
    line-height: 35px;
}

a.header-text {
    transition: all .3s ease-out;
}

.footer .header-items {
    align-items: start;
    margin-left: 100px;
    flex-direction: column;
}

.footer .header-item {
    margin-right: 0;
    margin-bottom: 5px;
}

.footer .header-item:last-child {
    margin-right: 0;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
    margin-top: 30px;
    border-top: 1px solid #011A21;
}

.footer-info p {
    color: #151515;
    margin-bottom: 0;
    margin-right: 45px;

    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
}

.footer-info a {
    color: #151515;
    
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;

    margin-bottom: 0;
    text-decoration: none;
    transition: var(--transition);
}

.footer .header-link {
    color: #151515;
    text-transform:inherit ;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    
    color: #444444;
}

.footer .header-item{
    color: #444444;
}

.footer .header-text{
    color: #151515;
}

.footer .header-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #14483C;
}

.footer-text-box {
    display: flex;
    justify-content: start;
    align-items: center;
}

.footer .header-nav {
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 0px 0;
    
}

.catalog__page {
    padding-top: 160px;
}

.catalog__content__items {
    display: grid;
    grid-template-columns:1fr;
    gap: 24px;
    grid-template-areas:
        "b";
}

.catalog__filter { grid-area: a; }
.catalog__items { grid-area: b; }

.catalog__page .catalog__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.sort__items {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 30px;
}

.sort__text {
    width: fit-content;
    font-weight: 500;
    font-size: 16px;
    line-height: 155%;
    letter-spacing: 0.04em;
    margin-bottom: 0;
    margin-right: 40px;
    color: #151515;
}

.sort__btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 155%;
    letter-spacing: 0.02em;
    margin-right: 40px;
    color: #14483C;
    text-decoration: none;
    transition: var(--transition);
}

.sort__btn:hover, .sort__btn:focus, .sort__btn.active {
    color: #599E71;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.sort__btn:last-child {
    margin-right: 0;
}

.catalog__filter {
    position: sticky;
    display: flex;
}

.cat__items {
    list-style: none;
    padding: 0px;
}

.cat__item {
    margin-bottom: 10px;
}

.cat__link {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #151515;
    text-decoration: none;
    transition: var(--transition);
}

.cat__link:hover {
    color: #599E71;
}

.dropdown__box {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 30px;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.contact .info__item {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
}

.contact .info__item:last-child {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-bottom: 10px;
}

.contact .into_link {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    text-decoration: none;
    margin-bottom: 0;
    margin-left: 15px;    
    color: #151515;
}

.contact .into_text {
    font-family: 'Srbija Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    margin-bottom: 0;
    margin-left: 15px;    
    color: #151515;
}

.form__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80px 1fr;
    gap: 24px;
    grid-template-areas:
        "a b"
        "c c";
}

.form__box span:nth-child(1) { grid-area: a; }
.form__box span:nth-child(2) { grid-area: b; }
.form__box span:nth-child(3) { grid-area: c; }

.form__box span {
    height: fit-content;
}

.form__box label {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #151515;
    background-color: #09090900;
    border: 1px solid #14483C;
    border-radius: 20px;
    transition: all .3s ease;
}

.form-control:hover, .form-control:active, .form-control:focus {
    background-color: #09090900;
    box-shadow: 0px 0px 10px #afd46b;
    color: #151515;
    border-color: #14483C;
}

.btn-secondary {
    --bs-btn-bg: #14483C;
    --bs-btn-border-color: #14483C;
    --bs-btn-hover-bg: #14483C;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-active-bg: #14483C;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-disabled-bg: #14483C;
    --bs-btn-disabled-border-color: #14483C;
}

/* footer end */


/* main media start */

@media (max-width: 1200px) {
    .catalog__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .card__title {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 15px;
    }
    .info__btn {
        padding: 7px 30px;
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
    }
    .catalog__page .catalog__items {
        display: grid;
        grid-template-columns:1fr;
        gap: 24px;
    }
    .catalog__content__items {
        display: grid;
        grid-template-columns: 12fr;
        gap: 24px;
        grid-template-areas: "b";
    }
    .contact .into_link {
        font-weight: 400;
        font-size: 18px;
        line-height: 20px;
    }
    .contact .into_text {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .catalog__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .catalog__page .catalog__items {
        display: grid;
        grid-template-columns:1fr;
        gap: 24px;
    }
    .about__content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    .about__img {
        border-radius: 20px;
        width: 100%;
        height: 300px;
    }
    .title__box {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .products__content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 16px;
        grid-template-areas:
            "a a a a a a b b b b b b"
            "c c c c d d d d e e e e";
    }
    .prod__item .card-img-overlay {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: end;
        padding: 15px 16px;
    }
    .footer .logo-box {
        width: 100%;
    }
    .footer .header-items.first{
        align-items: start;
        flex-direction: column;
        margin-left: 0px;
    }
    .footer .header-items{
        align-items: start;
        margin-left: 50px;
        flex-direction: column;
        margin-top: 30px;
    }
    main {
        gap: 100px 0;
    }
    .contact__content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact__info {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-self: start;
        flex-wrap: wrap;
    }
    svg.cart {
        margin-left: 0px;
        margin-right: 12px;
        height: 32px;
        width: 32px;
    }
    .header-item {
        margin-right: 0px;
    }
}

@media (max-width: 576px) {
    .catalog__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px 12px;
    }
    .intro__content-title {
        font-weight: 400;
        font-size: 28px;
        line-height: 140%;
    }
    .intro__content-text {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
    }
    .main-btn {
        padding: 7px 35px 5px;
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
    }
    .main-page.catalog .title__box .title, .page-title {
        font-weight: 400;
        font-size: 28px;
        line-height: 140%;
    }
    .products__content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 200px 200px 200px 200px 200px;
        gap: 16px;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e";
    }
    .title__box .title, .page-title {
        font-size: 24px;
    }
    .faq-title {
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        margin-bottom: 0;
        color: #151515;
    }
    .footer .header-nav {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        padding: 0px 0;
    }
    .footer .header-items {
        align-items: start;
        margin-left: 0px;
        flex-direction: column;
        margin-top: 30px;
    }
    .footer-text-box {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    .footer-info p {
        margin-bottom: 10px;
        margin-right: 0px;
    }
    .footer-info a {
        margin-bottom: 10px;
        margin-right: 0px;
        
    }
    main {
        gap: 80px 0;
    }
    .catalog__page .catalog__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .form__box {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 80px 80px 1fr;
        gap: 24px;
        grid-template-areas:
            "a"
            "b"
            "c";
    }
   
}
@media(max-width:414px) {
    ul.products {
        display: grid;
        grid-template-columns: 1fr 1fr!important;
        gap: 12px !important;
    }
}
@media(max-width:767.98px){
    .woocommerce-product-details__short-description{
        display: none;
    }
    .woocommerce .product .woocommerce-Price-amount.amount bdi{
        font-size: 16px!important;
    }
    .price__box{
        flex-direction: column;
    }
    .woocommerce ul.products li.product .price{
        margin-bottom: 10px!important;
    }
    .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
        text-align: center;
    }
}
@media (max-width: 360px) {
    
}
/* main media end*/

/* custom style start*/
.pos-fix {
    position: fixed;
}
.pos-abs {
    position: absolute;
}
.pos-rel {
    position: relative;
}
.disp-xl-flex {
    display: none; 
}
.disp-lg-flex {
    display: none; 
}
.disp-md-flex {
    display: none;
}
.disp-sm-flex {
    display: none;
}

/* project colors end */ 

@media (max-width: 1400px) {
    .disp-xl-none {
        display: flex; 
    }
}

@media (max-width: 1200px) {
    .disp-lg-none {
        display: none; 
    }
    .disp-lg-flex {
        display: flex; 
    }
}

@media (max-width: 992px) {
    .disp-md-none {
        display: none;
    }
    .disp-md-flex {
        display: flex;
    }
}

@media (max-width: 769px) {
    
}
@media (max-width: 576px) {
    .disp-sm-none {
        display: none;
    }
    .disp-sm-flex {
        display: flex;
    }
    #burger {
        right: 0rem;
        top: 0rem;
    }
}
/* custom style end */

@media(min-width: 576px){
    .container-right {
        padding-left: calc((100% - 540px) / 2 + 12px);
    }
}
@media(min-width: 768px){
    .container-right {
        padding-left: calc((100% - 720px) / 2 + 12px);
    }
}
@media(min-width: 992px){
    .container-right {
        padding-left: calc((100% - 960px) / 2 + 12px);
    }
}
@media(min-width: 1200px){
    .container-right {
        padding-left: calc((100% - 1100px) / 2 + 12px);
    }
}
@media(min-width: 1400px){
    .container-right{
        padding-left: calc((100% - 1296px) / 2 + 12px);
        padding-right: 0;
    }
}

.admin-bar header{
    top: 32px;
}

.img__product__box {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all .5s ease;
    position: relative;
}

.woocommerce ul.products li.product:hover .img__product__box, .woocommerce-page ul.products li.product:hover .img__product__box {
    background-size: 120%;
}

.woocommerce .product .woocommerce-Price-currencySymbol {
    font-weight: 400;
    font-size: 20px;
    margin-left: 0px;
}

.woocommerce .product .woocommerce-Price-amount.amount bdi {
    font-size: 22px;
}

/*  */
.woocommerce div.product div.summary .added_to_cart.wc-forward{
    display: inline-block!important;
    margin: 15px 0!important;
    width: auto!important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .3s linear;
}
.woocommerce div.product div.summary .added_to_cart.wc-forward:hover{
    border-color: #151515;
}
.woocommerce div.product div.summary button.button.alt{
    margin-right: 25px;
}

/* FIXED SOCIAL LINKS CIRCLE */
.t898 {
    z-index: 100000;
}
.t898_animate .t898__animated-circle {
	position: absolute;
	width: 60px;
	height: 60px;
	top: -3px;
	border-radius: 50%;
	left: -3px;
	border-radius: 100%;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
	border: 3px solid #08c;
	animation: t898__pulsate 1s ease-out;
	animation-iteration-count: infinite;
	-webkit-animation: t898__pulsate 2s ease-out;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
  }
  
  .t898_animate .t898__btn_label {
	animation: t898__btn-pulsate 2s ease-out;
	animation-iteration-count: infinite;
	-webkit-animation: t898__btn-pulsate 2s ease-out;
	-webkit-animation-iteration-count: infinite;
  }
  
  .t898_animate:hover .t898__animated-circle {
	animation: none;
  }
  
  .t898_animate:hover .t898__btn_label {
	animation: none;
  }
  
  .t898__wrapper, .t898__tooltip {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  .t898__tooltip {
	position: absolute;
	right: 70px;
	white-space: nowrap;
	background: #fff;
	padding: 6px 9px;
	font-size: 13px;
	border-radius: 3px;
	transform: translateX(0%) translateY(-50%);
	top: 50%;
	background: #292929;
	color: #fff;
	opacity: 0;
	transition: all 0.1s linear;
  }
  
  .t898__tooltip:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 10px;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	border-left-color: #292929;
  }
  
  .t898__hint {
	position: absolute;
	right: 80px;
	white-space: nowrap;
	background: #fff;
	padding: 9px 13px;
	font-size: 15px;
	border-radius: 3px;
	transform: translateX(0%) translateY(-50%);
	top: 50%;
	background: #292929;
	color: #fff;
	opacity: .85;
	transition: all 0.1s linear;
  }
  
  .t898__hint:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 10px;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	border-left-color: #292929;
  }
  
  .t898__wrapper {
	position: fixed;
	bottom: 50px;
	right: 65px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100000;
  }
  
  .t898__btn_label {
	position: relative;
	cursor: pointer;
	z-index: 2;
	width: 60px;
	height: 60px;
	justify-content: center;
	align-items: center;
	background: #08c;
	border-radius: 50%;
	/* transition: all 0.2s ease-in-out;
	 */
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
	overflow: hidden;
  }
  
  .t898__btn_label:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
  }
  
  .t898__btn_label:hover .t898__tooltip {
	transform: translate(0, 0);
	opacity: 1;
  }
  
  .t898__btn_label:hover+.t898__tooltip {
	transform: translate(0, 0);
	opacity: 1;
  }
  
  .t898__btn_label:hover+.t898__tooltip:after {
	opacity: 1;
  }
  
  .t898__btn_input {
	display: none;
  }
  
  .t898__btn_input:checked~.t898__hint {
	opacity: 0;
	visibility: hidden;
  }
  
  .t898__btn_input:checked~a:nth-of-type(1) {
	transition: all 0.2s ease-in-out;
	transform: translate(0, -135%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(2) {
	transition: all 0.225s ease-in-out;
	transform: translate(0, -255%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(3) {
	transition: all 0.25s ease-in-out;
	transform: translate(0, -375%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(4) {
	transition: all 0.275s ease-in-out;
	transform: translate(0, -495%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(5) {
	transition: all 0.3s ease-in-out;
	transform: translate(0, -615%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(6) {
	transition: all 0.325s ease-in-out;
	transform: translate(0, -735%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(7) {
	transition: all 0.325s ease-in-out;
	transform: translate(0, -855%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(8) {
	transition: all 0.35s ease-in-out;
	transform: translate(0, -975%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(9) {
	transition: all 0.375s ease-in-out;
	transform: translate(0, -1095%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(10) {
	transition: all 0.4s ease-in-out;
	transform: translate(0, -1215%);
  }
  
  .t898__btn_input:checked~a:nth-of-type(11) {
	transition: all 0.425s ease-in-out;
	transform: translate(0, -1335%);
  }
  
  .t898__btn_input:checked~.t898__animated-circle {
	display: none;
  }
  
  .t898__btn_input:checked~.t898__icon_link {
	opacity: 1;
	visibility: visible;
  }
  
  .t898__btn_input:checked+label {
	background: #fff!important;
	animation: none;
  }
  
  .t898__btn_input:checked+label .t898__bgimg {
	opacity: 0;
	visibility: hidden;
  }
  
  .t898__btn_input:checked+label .t898__icon-write {
	opacity: 0;
	visibility: hidden;
	transform: scale(.1);
  }
  
  .t898__btn_input:checked+label .t898__icon-close {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
  }
  
  .t898__btn:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
  }
  
  .t898__bgimg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all 0.2s linear;
  }
  
  .t898__icon {
	transition: all 0.3s ease-in-out;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
  }
  
  .t898__icon-close {
	opacity: 0;
	visibility: hidden;
	transform: scale(.1);
  }
  
  .t898__icon_tooltip {
	position: absolute;
	opacity: 0;
	right: 80px;
	white-space: nowrap;
	background: #fff;
	padding: 9px 13px;
	font-size: 15px;
	border-radius: 3px;
	transform: translateX(0%) translateY(-50%);
	top: 50%;
	background: #292929;
	color: #fff;
	transition: all 0.1s linear;
  }
  
  .t898__icon_tooltip:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 10px;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
	border-left-color: #292929;
  }
  
  .t898__icon_link {
	border-radius: 50%;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
	opacity: 0;
	visibility: hidden;
	width: 50px;
	height: 50px;
  }
  
  .t898__icon_link:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
  }
  
  .t898__icon_link:hover .t898__tooltip {
	opacity: .85;
  }
  
  .t898_left .t898__tooltip {
	left: 80px;
	right: auto;
  }
  
  .t898_left .t898__tooltip:after {
	left: -20px;
	border-right-color: #292929;
	border-left-color: transparent;
  }
  
  .t898_left .t898__hint {
	left: 80px;
	right: auto;
  }
  
  .t898_left .t898__hint:after {
	left: -20px;
	border-right-color: #292929;
	border-left-color: transparent;
  }
  
  @keyframes t898__btn-pulsate {
	0% {
		transform: scale(1, 1);
	}
	25% {
		transform: scale(1.1, 1.1);
	}
	50% {
		transform: scale(1, 1);
	}
  }
  
  @keyframes t898__pulsate {
	0% {
		-webkit-transform: scale(.8, .8);
		opacity: 0;
	}
	25% {
		opacity: .4;
	}
	50% {
		-webkit-transform: scale(1.3, 1.3);
		opacity: 0;
	}
	100% {
		-webkit-transform: scale(.8, .8);
		opacity: 0;
	}
  }
  
  @media screen and (max-width:960px) {
	.t898__wrapper {
		bottom: 10px;
		right: 10px;
	}
  }
/* END */
.breadcrumbs{
    font-size: 14px;
    margin-bottom: 25px;
}
.breadcrumbs > span{
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    overflow: auto;
    display: flex;
    flex-wrap: nowrap;
}
.breadcrumbs > span > span{
    white-space: nowrap;
}
.breadcrumbs > span > span{
    margin-left: 4px;
    margin-right: 4px;
}
.breadcrumbs > span > span:first-child{
    margin-left: 0;
}
.breadcrumbs > span > span:last-child{
    margin-right: 0;
}
.breadcrumbs a{
    color: #151515;
    text-decoration: none;
    transition: color .15s linear;
}
.breadcrumbs a:hover{
    color: #52b271;
}
/* поля */
.woocommerce form #billing_state_field,
.woocommerce-page form #billing_state_field,
.woocommerce form #billing_phone_field,
.woocommerce-page form #billing_phone_field{
    float: left;
}
.woocommerce form #billing_postcode_field,
.woocommerce-page form #billing_postcode_field,
.woocommerce form #billing_email_field,
.woocommerce-page form #billing_email_field{
    float: right;
}
.woocommerce form #billing_state_field,
.woocommerce-page form #billing_state_field,
.woocommerce form #billing_postcode_field,
.woocommerce-page form #billing_postcode_field,
.woocommerce form #billing_phone_field,
.woocommerce-page form #billing_phone_field,
.woocommerce form #billing_email_field,
.woocommerce-page form #billing_email_field{
    width: 47%;
    overflow: visible;
    clear: none;
}

/* /поля */
/* blog */
.blog__link{
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;

    text-decoration: none;
    color: #151515;

    transition: box-shadow .15s ease-in-out, border-color .15s ease-in-out;
}
.blog__link:hover{
    color: #151515;
    box-shadow: 0px 2px 20px #afd46b;
    border-color: #afd46b;
}
.blog__title{
    font-size: 22px;
}
.blog__more span{
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease-in-out;
}
.blog__more span:hover{
    border-color: #151515;
}
.blog__excerpt{
    font-size: 14px;
    line-height: 1.5;
}
.blog__excerpt p:last-child{
    margin-bottom: 0;
}
/* /blog */
/* pagination */
.pagination {
    margin-top: 40px;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
}

.pagination .nav-links .page-numbers {
    min-width: 36px;
    height: 36px;
    border: 1px solid #14483C;
    color: #14483C;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 6px;
    line-height: 1;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
    margin: 0 2.5px;
}

.pagination .nav-links a.page-numbers:hover,
.pagination .nav-links .page-numbers.current {
    color: #fff;
    background-color: #14483C;
}
.single-blog-img{
    border-radius: 12px;
}
/* /pagination */
.header__cart{
    position: relative;
}
.mini-cart-count{
    position: absolute;
    top: -5px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background-color: tomato;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 992px){
    .mini-cart-count{
        right: 8px;
    }
}
.contact__map{
    height: 500px;
}
@media(max-width:767.98px){
    .contact__map{
        height: 400px;
    }   
}