@CHARSET "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

html, body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 26px;
    height: 100%;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
h1 {
    font-size: 22px;
    font-weight: 300;
}
h2 {
    font-size: 18px;
    font-weight: 300;
}
h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}
h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    list-style: none;
    line-height: normal;
    padding: 0;
    margin: 0;
}
p {
    margin-bottom: 10px;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
#main-content {
    flex: 1 1 auto;
}


/*********************** HEADER *************************/

header.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffffe3;
    transition: top 0.3s ease;
    z-index: 5;
    box-shadow: 0 15px 31px rgba(0,0,0,0.1);
}
.header.visible {
    top: -92px;
}
.header-body-top-wrapper {
    padding: 10px 0;
}
.header-body-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-item.header-tag {
    text-align: center;
}
.header-body-bottom-wrapper {
    background-color: #77937a;
    color: #fff;
}
ul.header-phone .hydrated {
    font-size: 20px;
    color: #359e41;
}
ul.header-phone li {
    display: flex;
    align-items: center;
    line-height: 26px;
    gap: 6px;
}


/***************** menu *****************/

ul.nav.navbar-nav.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
}
ul.nav.navbar-nav.menu a {
    color: #fff;
}
ul.nav.navbar-nav.menu li:hover a {
    color: #fff;
}
button.burger-menu-btn {
    display: none;
}
.parent {
    position: relative;
}
span.separator {
    cursor: pointer;
}
span.separator:before, span.separator:after, .caret:before, .caret:after {
    content: '';
    position: absolute;
    top: 26px;
    width: 6px;
    height: 1px;
    background-color: #fff;
}
span.separator:before, .caret:before {
    transform: rotate(50deg);
    right: 16px;
}
span.separator:after, .caret:after {
    transform: rotate(-50deg);
    right: 12px;
}
ul.nav.navbar-nav.menu li {
    padding: 14px 28px;
    font-size: 18px;
}
ul.nav.navbar-nav.menu li:hover {
    background-color: #74c92d;
}
ul.nav.navbar-nav.menu li:hover span.separator, ul.nav.navbar-nav.menu li:hover .caret {
    color: #fff;
}
ul.nav.navbar-nav.menu li:hover span.separator:before, ul.nav.navbar-nav.menu li:hover span.separator:after, ul.nav.navbar-nav.menu li:hover .caret:before, ul.nav.navbar-nav.menu li:hover .caret:after {
    background-color: #fff;
}
ul.dropdown-menu {
    display: none;
    padding: 6px;
}
ul.dropdown-menu a {
    color: #000 !important;
    font-size: 16px;
}
.parent:hover .dropdown-menu {
    position: absolute;
    display: block;
    width: -webkit-fill-available;
    min-width: 200px;
    top: 50px;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 10px 2px rgba(178, 178, 178, 0.2);
    -moz-box-shadow: 0px 5px 10px 2px rgba(178, 178, 178, 0.2);
    box-shadow: 0px 5px 10px 2px rgba(178, 178, 178, 0.2);
}
ul.dropdown-menu li:hover {
    background: none !important;
}
ul.dropdown-menu li:hover a {
    color: #74c92d !important;
}
ul.dropdown-menu li {
    padding: 6px 10px !important;
}


/*********************** slider *************************/

.itemid-101 .block-slide {
    margin-top: 139px;
}
.main-slide {
    position: relative;
}
.main-slide img {
    width: 100%;
}
.slide-txt {
    position: absolute;
    bottom: 28%;
    width: 22%;
    right: 3%;
    color: #fff;
}
.main-slide h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
}
.slide-txt ul {
    list-style: disc;
    padding-left: 30px;
    line-height: 28px;
    font-size: 16px;
}
.slide-txt p {
    text-align: center;
    font-size: 18px;
}


/*********************** production *************************/

.production {
    display: flex;
    margin: 40px 0;
}
.production img {
    width: 100%;
}
.production-item {
    background-color: #fff;
    text-align: center;
    border-color: #f5f7fa;
    border-style: solid;
    border-width: 0 1px 1px 0;
    transition: .7s;
}
.production-item:hover {
    box-shadow: 0px 0px 24px rgba(5,29,54,.1);
}
.production-item h3 {
    transition: .7s;
}
.production-item:hover h3 {
    color: #359e41;
}


/*********************** main content *************************/

.content-main-list {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.content-main-list ul {
    width: 32%
}

.content-main-list ul>li {
    padding-left: 30px;
    background: url(../images/list.png) no-repeat left center;
    margin: 18px 0;
}
.content-main h4 {
    font-size: 28px;
    text-align: center;
    line-height: 36px;
}
.material {
    margin-bottom: 60px;
}


/*********************** item-page *************************/

.item-page {
    margin-top: 180px;
}
.page-header h1 {
    font-weight: 600;
    margin-bottom: 20px;
}
.material-body {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}
.material-body h4 {
    font-weight: 600;
}
.material ul {
    list-style: disc;
    padding-left: 30px;
}
.material ul li {
    margin-bottom: 10px;
}
.material-item {
    margin-bottom: 30px;
}
.attributes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.attributes-item {
    width: 33%;
    padding: 0 10px;
    margin-bottom: 10px;
}
.material-wrapper {
    text-align: center;
}
.txt-width {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.txt-width p {
    margin: 0;
    width: 80%;
}
.material-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.sale-block {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
.sale-block img {
    width: 300px;
}
.material-reception h3 {
    text-align: center;
    font-weight: 500;
}
.reception-block {
    text-align: center;
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
.reception-block img {
    width: 450px;
}


/*********************** production-volumes *************************/

.production-volumes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}
.production-volumes-item:first-child {
    width: 80%;
}
.production-volumes-item {
    width: 50%;
}
.volumes-body {
    display: flex;
    flex-wrap: wrap;
}
.volumes-item {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.volumes-digital {
    text-align: center;
    font-size: 26px;
    width: 30px;
    border-bottom: 2px solid #75cb2d;
    padding-bottom: 8px;
}
.volumes-item p {
    margin: 0;
    color: #359e41;
}
div#production-volumes h4 {
    font-size: 24px;
    line-height: 36px;
}
div#production-volumes h3 {
    font-size: 28px;
    text-align: center;
}
.company ul {
    list-style: disc;
    line-height: 26px;
    padding-left: 30px;
}
.partners {
    margin: 30px 0;
    padding: 0 0 250px 0;
}


/*********************** conditions *************************/


/*********************** contact *************************/

.contacts-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}
.contacts-page-item {
    width: 50%;
}
.contacts-page h4 {
    font-weight: bold;
    margin-top: 20px;
}
span.bold {
    font-weight: bold;
    color: #000;
}
.contacts-info p {
    color: #7e7e7e;
    font-weight: bold;
}
p.normal {
    font-weight: 500;
}


/*********** footer ***********/

footer.footer {
    -webkit-box-shadow: 0px -5px 10px -5px rgba(129, 129, 129, 0.6);
    -moz-box-shadow: 0px -5px 10px -5px rgba(129, 129, 129, 0.6);
    box-shadow: 0px -5px 10px -5px rgba(129, 129, 129, 0.6);
}
.footer__info {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    gap: 30px;
}
.footer-item {
    width: 25%;
}
.footer__info p {
    margin: 0;
    line-height: 24px;
}
.footer-head {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.footer__info span{
    position: relative;
}
.footer-head span:after {
    position: absolute;
    content: '';
    width: 30%;
    height: 2px;
    background: #359d41;
    bottom: -5px;
    left: 0;
}
.footer__box {
    display: flex;
    gap: 5px;
}
.footer__info .md.hydrated {
    font-size: 28px;
    color: #8d8d8d;
}


/********** copy *************/

.copyright {
    background-color: #77937a;
    color: #fff;
}
.copyright-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}


.mob-panel {
    display: none;
}



/********************************* @MEDIA QUERIES *********************************/

@media(min-width: 992px) {

}

@media(max-width: 992px) {

.container {
    width: 100%;
}
h1 {
    font-size: 20px;
}
header.header {
    background-color: #fff;
}
.header-body-top {
    flex-wrap: wrap;
}
.header-top-item.header-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}
.header-top-item.header-tag {
    width: 100%;
}
.header-top-item.header-cell {
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: center;
}
.itemid-101 .block-slide {
    margin-top: 203px;
}
.slide-txt {
    position: static;
    width: 100%;
    padding: 10px 15px;
    background-color: #605d58;
}
.main-slide h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
    text-align: center;
}
.slide-txt ul {
    line-height: 28px;
    font-size: 18px;
}
.item-page {
    margin-top: 230px;
}
.production-volumes-item:first-child {
    width: 100%;
}
.content-main-list ul {
    width: 100%;
}
.production-volumes {
    flex-wrap: wrap;
}
.production-volumes-item {
    width: 100%;
}
.production h3 {
    font-size: 20px;
    font-weight: 500;
}
.production-item {
    box-shadow: 0px 0px 24px rgba(5,29,54,.1);
}
.material-body {
    flex-wrap: wrap;
    justify-content: center;
}
.material-body img {
    width: 100%;
}
.attributes {
    flex-wrap: wrap;
}
.attributes-item {
    width: 50%;
}
.sale-block {
    flex-wrap: wrap;
}
.sale-block img, .reception-block img {
    width: 100%;
}
.reception-block {
    flex-wrap: wrap;
    justify-content: center;
}
.contacts-page {
    flex-wrap: wrap;
}
.contacts-page-item {
    width: 100%;
}
.footer__info {
    flex-wrap: wrap;
}
.footer-item {
    width: 100%;
}
.header.visible {
    top: 0;
}

.mob-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 0 15px 10px;
    width: 100%;
    left: 0;
    bottom: 0;
}
.mob-panel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
}
.mob-panel-item a {
    line-height: 20px;
}
.mob-panel .hydrated {
    font-size: 32px;
    color: #fff;
    line-height: 20px;
}
.mob-panel-item:first-child {
    background-color: #008d09db;
}
.mob-panel-item:last-child {
    background-color: #075e54e8;
}
 
button.burger-menu-btn {
    display: block;
    position: absolute;
    right: 0;
    top: -46px;
    width: 34px;
    height: 34px;
    padding: 6px;
    border-radius: 4px;
    background-color: #77937a;
}
.burger-menu {
    display: block;
    position: relative;
}
.burger-menu-content {
    display: none;
}
.burger-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.burger-menu-icon {
    display: block;
    height: 2px;
    background-color: #fff;
    position: relative;
}
.burger-menu-icon::before,
.burger-menu-icon::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
}
.burger-menu-icon::before {
    top: -10px;
}
.burger-menu-icon::after {
    bottom: -10px;
}
.burger-menu-btn.active .burger-menu-icon::before {
    transform: translateY(10px) rotate(45deg);
}
.burger-menu-btn.active .burger-menu-icon::after {
    transform: translateY(-10px) rotate(-45deg);
}
.burger-menu-btn.active .burger-menu-icon {
    background-color: transparent;
}
.burger-menu-btn.active + .burger-menu-content {
    display: block;
}
ul.nav.navbar-nav.menu {
    text-align: center;
    flex-direction: column;
    padding: 15px 0;
}
ul.dropdown-menu {
    display: block;
    padding: 0;
}
ul.nav.navbar-nav.menu li {
    padding: 10px 28px;
}
span.separator:before, span.separator:after, .caret:before, .caret:after {
    display: none;
}
ul.nav.navbar-nav.menu li:hover {
    background: none;
}
.parent {
    cursor: none;
}
.parent:hover .dropdown-menu {
    position: relative;
    display: block;
    width: -webkit-fill-available;
    min-width: 200px;
    left: 0;
    background-color: #fff0;
}
span.separator {
    cursor: none;
}
.production {
    flex-wrap: wrap;
    justify-content: center;
}
.copyright-body {
    flex-direction: column;
    font-size: 12px;
}

}


@media(max-width: 768px) {


}

@media(max-width: 1200px) {
.container {
    width: 100%;
}
}

@media(max-width: 544px) {

}