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;
  outline: none;
}

html, body {max-width: 100%;overflow-x: hidden;}
*,*:before,*:after { -webkit-box-sizing:border-box;box-sizing:border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
b, strong { font-weight: bold; }
input { outline: none; }
input:focus,textarea:focus{-webkit-box-shadow:none;box-shadow:none;}
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; vertical-align: top;}
iframe{ border:0; }

*:focus{outline:none}

body {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	font-weight:normal;
	color: #2C2C2C;
	background: #FFF;
	margin:0 auto;
	padding:0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}




/***** DEFAULT *****/

.w-100 {
	width: 100%;
}

/* typ */

a {
	text-decoration: none;
	color: #2C2C2C;
	-webkit-transition: .3s border-color, .3s color;
	transition: .3s border-color, .3s color;
}

a.border {
	border-bottom: 1px solid rgb(0 0 0 / 0.2);
}

a.border:hover {
	border-color: transparent;
}

a:hover {
	text-decoration: none;
	color: #82A481;
}

.text-right {
    text-align: right;
}

.text-center {
	text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-block p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 30px;
}

.text-block p:last-child {
    margin: 0;
}


/* btn */


.btn {
    background: #446643;
    border-radius: 2px;
    display: inline-block;
    vertical-align: top;
    color: #FFF;
    padding: 27px 58px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    -webkit-transition: .3s color, .3s background, .3s border-color;
    transition: .3s color, .3s background, .3s border-color;
}

.btn:hover {
    background: #82A481;
    color: #FFF;
}

.btn-border {
    color: #446643;
    background: transparent;
    border: 1px solid rgba(68, 102, 67, 0.2);
}


/* Form Group */


.form-group {
    margin: 0 0 30px;
}

.form-group:last-child {
	margin: 0;
}

.form-group input {
    font-weight: 300;
	font-size: 16px;
    color: #2C2C2C;
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #F8F8F8;
    height: 60px;
    line-height: 62px;
    padding: 15px 25px;
    -webkit-transition: .3s color, .3s border-color, .3s background;
    transition: .3s color, .3s border-color, .3s background;
}

.form-group textarea {
	font-weight: 300;
    font-size: 16px;
    line-height: 1;
    color: #2C2C2C;
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #F8F8F8;
    padding: 15px 25px;
    -webkit-transition: .3s color, .3s border-color, .3s background;
    transition: .3s color, .3s border-color, .3s background;
    resize: none;
}

.form-group textarea {
	height: 150px;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #5F5F5F;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #5F5F5F;
    -moz-transition: .3s color;
    transition: .3s color;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #5F5F5F;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
    color: #5F5F5F;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
    color: #5F5F5F;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
    color: #5F5F5F;
    -webkit-transition: .3s color;
    -moz-transition: .3s color;
    transition: .3s color;
}

.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
    color: #5F5F5F;
    -webkit-transition: .3s color;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
    color: #5F5F5F;
    -webkit-transition: .3s color;
    -ms-transition: .3s color;
    transition: .3s color;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5F5F5F;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.form-group input:hover,
.form-group textarea:hover {
    background: #FFF;
    border-color: #E5E5E5;
}

.form-group input:hover::-webkit-input-placeholder,
.form-group textarea:hover::-webkit-input-placeholder {
    color: #5F5F5F;
}

.form-group input:hover::-moz-placeholder,
.form-group textarea:hover::-moz-placeholder {
    color: #5F5F5F;
}

.form-group input:hover:-ms-input-placeholder,
.form-group textarea:hover:-ms-input-placeholder {
    color: #5F5F5F;
}

.form-group input:hover::-ms-input-placeholder,
.form-group textarea:hover::-ms-input-placeholder {
    color: #5F5F5F;
}

.form-group input:hover::-webkit-input-placeholder, .form-group textarea:hover::-webkit-input-placeholder {
    color: #5F5F5F;
}

.form-group input:hover::-moz-placeholder, .form-group textarea:hover::-moz-placeholder {
    color: #5F5F5F;
}

.form-group input:hover:-ms-input-placeholder, .form-group textarea:hover:-ms-input-placeholder {
    color: #5F5F5F;
}

.form-group input:hover::-ms-input-placeholder, .form-group textarea:hover::-ms-input-placeholder {
    color: #5F5F5F;
}

.form-group input:hover::placeholder,
.form-group textarea:hover::placeholder {
    color: #5F5F5F;
}

.form-check {
	
}

.form-check input {
    display: none;
}

.form-check label {
    padding-left: 33px;
    position: relative;
    min-height: 20px;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.2;
    color: #5F5F5F;
    -webkit-transition: .3s color;
    transition: .3s color;
    cursor: pointer;
}

.form-check label:before {
    content: '';
    background: #FFFFFF;
    border: 1px solid rgba(68, 102, 67, 0.3);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    -webkit-transition: .3s color, .3s border-color, .3s background;
    transition: .3s color, .3s border-color, .3s background;
    color: #FFF;
    text-align: center;
    line-height: 18px;
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    font-weight: bold;
}

.form-check label:hover:before {
    border-color: #82A481;
}

.form-check label:hover {
    color: #82A481;
}

.form-check input:checked + label:before {
    background: #446643;
    border-color: #446643;
    content: '\f00c';
}

.form-group .form-title {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    margin: 0 0 15px;
}

.form-group button {
    border: none;
    cursor: pointer;
}

.form-text {
	color: #2B2A29;
	font-weight: 300;
	font-size: 16px;
	margin: 0 0 30px;
}

.form-text:last-child {
	margin-bottom: 0;
}

.form-text a {
    color: #436642;
    border-bottom: 1px solid rgb(67 102 66 / 0.3);
}

.form-text a:hover {
	color: #000;
	border-color: transparent;
}

/* Text Styles */


.text-block {
    font-size: 20px;
    font-weight: 300;
}

.text-block > img {
    margin: 0 0 40px;
}

.text-block p {
    margin: 0 0 20px;
}

.text-block p:last-child {
    margin: 0;
}

.text-block h2,
.text-block .h2 {
    font-weight: bold;
    font-size: 38px;
    line-height: 1.4;
    color: #2B2A29;
    margin: 0 0 30px;
}

.text-block h3,
.text-block .h3 {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.4;
    color: #2B2A29;
    margin: 0 0 30px;
}

.text-block h4,
.text-block .h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    color: #2B2A29;
    margin: 0 0 30px;
}

.text-block ul {
    margin: 0 0 40px;
}

.text-block ul:last-child {
    margin: 0;
}

.text-block ul li {
    margin: 0 0 25px;
    padding-left: 15px;
    position: relative;
}

.text-block ul li:last-child {
    margin: 0;
}

.text-block ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #436642;
}

.text-block ol {
    margin: 0 0 40px;
    list-style: decimal;
}

.text-block ol:last-child {
    margin: 0;
}

.text-block ol li {
    margin: 0 0 25px 20px;
    position: relative;
    padding-left: 5px;
}

.text-block ol.border-list {
    margin: 0 0 40px;
    list-style-type: decimal;
}

.text-block ol.border-list {
	padding-left: 60px;
    border-left: 4px solid #6d2f45;
}

.text-block ol.border-list:last-child {
    margin: 0;
}

.text-block ol.border-list li {
    margin: 0 0 25px;
}

.text-block hr {
    margin: 40px 0;
    background: #E2D3D3;
    border: none;
    width: 100%;
    height: 1px;
}

.text-block blockquote {
    position: relative;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #2B2A29;
    margin: 0 0 50px;
    background: #F8F8F8;
    border-radius: 2px;
    padding: 34px 48px 34px 89px;
}

.text-block blockquote:before,
.text-block blockquote:after {
    content: '\e80a';
    font-family: 'fontello';
    font-weight: 900;
    position: absolute;
    color: #446643;
    font-size: 36px;
    line-height: 1;
}

.text-block blockquote:before {
    top: 30px;
    left: -15px;
}

.text-block blockquote:after {
	content: '\e80b';
	right: -15px;
	bottom: 15px;
}

.text-block blockquote:last-child {
    margin: 0;
}

.text-block .table-responsive {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.text-block table {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
    color: #2B2A29;
}

.text-block table tr:nth-child(1) td {
    background: #446643;
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    padding: 16px 24px;
}

.text-block table tr td {
    padding: 16px 24px;
    background: #FFF;
    border-left: 1px solid #E5E5E5;
}

.text-block table tr:first-child td {
    border-left: 1px solid rgb(229 229 229 / 0.1);
}

.text-block table tr:nth-child(2n) td {
    background: #F8F8F8;
}

.text-block table tr td:first-child {
    border-left: 0;
}

.content-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 30px;
}

.content-gallery .item {
    width: calc(100%/3 - 20px*2/3);
    margin: 0 20px 20px 0;
}

.content-gallery .item a {
    display: block;
    overflow: hidden;
    position: relative;
}

.content-gallery .item:nth-child(3n) {
    margin-right: 0;
}

.content-gallery .item a:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: #446643;
    opacity: 0;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.content-gallery .item a:before {
    content: '\e816';
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: 'Fontello';
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    color: #FFF;
    z-index: 3;
    font-size: 70px;
    line-height: 1;
    -webkit-transition: .3s transform;
    transition: .3s transform;
}

.content-gallery .item a:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-transition-delay: .15s;
            transition-delay: .15s;
}

.content-gallery .item a:hover:after {
    opacity: .8;
}


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


.top-line {
    background: #F8F8F8;
    padding: 16px 0;
}

.top-line a {
    margin-left: 20px;
    display: inline-block;
    margin-top: 2px;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 13px;
}

.top-line .info i {
    margin-right: 5px;
}

.top-line a.phone {
    border: none;
    margin-left: 0;
    font-size:15px;
}

.top-line span.address{
    margin-bottom: 4px;
}

.bottom-line {
    padding: 18px 0;
    background: #FFF;
    z-index: 555;
    -webkit-transition: .3s top;
    transition: .3s top;
    top: -100%;
}

.bottom-line .mobile-toggle {
	display: none;
}

.bottom-line.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.bottom-line .menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.bottom-line .service-btn {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: .3s color;
    transition: .3s color;
    min-width: 175px;
}

.bottom-line .service-btn i {
    margin-right: 8px;
}

.bottom-line .service-btn.open i:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00d";
    font-weight: bold;
}

.bottom-line .menus .menu {
    border-left: 1px solid #E5E5E5;
    margin-left: 40px;
    padding: 8px 0;
}

.bottom-line .menus .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.bottom-line .menus .menu ul li {
    margin-left: 40px;
}

.bottom-line .menus .menu ul li a {
    font-size: 18px;
}

.bottom-line .logo a img {
	width: 172px;
}

.bottom-line .service-btn:hover {
    color: #82A481;
}

.bottom-line .header-cart-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.bottom-line .header-cart-block .search {
    position: relative;
}

.bottom-line .header-cart-block .search .search-btn {
    color: #151515;
    font-size: 28px;
    cursor: pointer;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.bottom-line .header-cart-block .search .search-btn:hover {
    color: #82A481;
}

.bottom-line .header-cart-block .search .search-form {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: .3s width;
    transition: .3s width;
    width: 0;
    overflow: hidden;
}

.bottom-line .header-cart-block .search .search-form input {
    border: none;
    width: 100%;
    color: #2C2C2C;
    background: #F8F8F8;
    padding: 18px 60px;
    line-height: 1;
    font-size: 16px;
    font-weight: 300;
}

.bottom-line .header-cart-block .search .search-form button {
    position: absolute;
    left: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border: none;
    background: transparent;
    margin: 0;
    font-size: 18px;
    color: #A4A4A4;
    cursor: pointer;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.bottom-line .header-cart-block .search .search-form .close {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border: none;
    background: transparent;
    margin: 0;
    font-size: 20px;
    color: #2C2C2C;
    cursor: pointer;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.bottom-line .header-cart-block .search.open .search-form {
    width: 950px;
}

.bottom-line .header-cart-block .search .search-form button:hover {
    color: #82A481;
}

.bottom-line .header-cart-block .search .search-form .close:hover {
    color: #82A481;
}

.bottom-line .header-cart-block .header-cart {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #CCC;
}

.bottom-line .header-cart-block .header-cart .icon {
    font-size: 28px;
    line-height: 1;
    color: #151515;
    margin-right: 11px;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.bottom-line .header-cart-block .header-cart .name {
    color: #2C2C2C;
    font-weight: 500;
    font-size: 18px;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.bottom-line .header-cart-block .header-cart .count {
    width: 26px;
    height: 26px;
    margin-left: 10px;
    background: #446643;
    text-align: center;
    line-height: 26px;
    color: #FFF;
    border-radius: 50%;
    font-weight: 900;
    font-size: 16px;
    -webkit-transition: .3s background;
    transition: .3s background;
}

.bottom-line .header-cart-block .header-cart a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.bottom-line .header-cart-block .header-cart a:hover .icon, .bottom-line .header-cart-block .header-cart a:hover .name {
    color: #82A481;
}

.bottom-line .header-cart-block .header-cart a:hover .count {
    background: #82A481;
}

.services-menu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 33;
    background: #FFF;
    padding: 30px 40px;
    min-width: 280px;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    margin: 30px 0 0;
    display: none;
}

.services-menu ul li {
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #E5E5E5;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    color: #2C2C2C;
}

.services-menu ul li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.services-menu ul li a {
    color: #2C2C2C;
    display: flex;
    align-items: center;
    transition: .3s color;
}

.services-menu ul li a i {
    margin-right: 15px;
    color: #446643;
    font-size: 30px;
    line-height: 1;
    transition: .3s color;
}

.services-menu ul li a:hover {
    color: #82A481;
}

.services-menu ul li a:hover i {
    color: #82A481;
}


/***** MOBILE MENU *****/


.overlay {
    display: block;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 556;
    display: none;
}

.mobile-menu {
    position: fixed;
    width: 300px;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: 557;
    -webkit-transition: .7s left;
    transition: .7s left;
    background: #FFF;
    display: none;
}

.mobile-menu .scroll-box {
    padding: 25px 0 10px;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu .logo {
    display: block;
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
    color: #171717;
}

.mobile-menu .logo a {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #f8fdff;
    letter-spacing: 2px;
    display: block;
    text-align: center;
    margin: 0 0 3px;
}

.mobile-menu .logo a span {
    color: #000;
    margin: 10px 0 0;
    display: block;
}

.mobile-menu .logo a span b {
    display: block;
}

.mobile-menu .menu {
    margin: 0 0 25px;
}

.mobile-menu .menu ul li {
    display: block;
    border-bottom: 1px solid rgba(4, 4, 4, 0.05);
}

.mobile-menu .menu ul li a {
    color: #303030;
    display: block;
    padding: 20px 25px;
    font-weight: 500;
    font-weight: bold;
    position: relative;
    font-family: Heuristica;
    font-size: 18px;
    line-height: 1;
}

.mobile-menu .title {
    font-size: 18px;
    color: #436641;
    font-weight: 700;
    margin: 0 0 15px;
    border-bottom: 1px solid #436641;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    margin: 0 20px 5px;
}

.mobile-menu .close {
    position: absolute;
    right: -40px;
    top: 20px;
    font-size: 21px;
    width: 22px;
    height: 22px;
    opacity: 1;
}

.mobile-menu .close span {
    width: 26px;
    height: 2px;
    display: block;
    background: #FFF;
    position: absolute;
    left: -2px;
    border-radius: 10px;
    top: 9px;
}

.mobile-menu .close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.mobile-menu .close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.mobile-menu .mobile-contacts .item {
    position: relative;
    margin: 0 0 25px;
    padding-left: 64px;
    padding-right: 20px;
}

.mobile-menu .mobile-contacts .item .icon {
    background: #436641;
    color: #FFF;
    position: absolute;
    left: 20px;
    top: -5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
}

.mobile-menu .mobile-contacts .item .title {
    border: none;
    text-transform: none;
    color: #2c2c2c;
    margin: 0 0 5px;
}

.mobile-menu .mobile-contacts .item b {
    font-weight: normal;
    margin-bottom: 5px;
    display: block;
}

.mobile-menu .mobile-contacts .item a{
    margin-bottom: 5px;
    display: block;
}

.mobile-menu .mobile-contacts .item .text {
    font-size: 18px;
    line-height: 1.4;
}


/***** MAIN SLIDER *****/


.main {
    background: #446643;
    padding: 70px 0;
    position: relative;
}

.main:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    background: #FFF;
    z-index: 2;
}

.main-slider {
    position: relative;
    z-index: 5;
    max-width: 100%;
    width: 1600px;
    margin: -70px auto 0;
    -webkit-box-shadow: 0px 24px 34px rgba(0, 0, 0, 0.24);
            box-shadow: 0px 24px 34px rgba(0, 0, 0, 0.24);
}

.main-slider .slick-dots {
    bottom: 50px;
}

.main-slider .slick-dots li {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    border: 2px solid rgb(255 255 255 / 0.6);
    border-radius: 50%;
    -webkit-transition: .3s border-color,  .3s background;
    transition: .3s border-color,  .3s background;
}

.main-slider .slick-dots li button {
    display: none;
}

.main-slider .slick-dots li.slick-active {
    background: #FFF;
    border-color: #FFF;
}


/***** BREADCRUMBS *****/


.breadcrumbs {
    background: #F8F8F8;
    margin: 0 0 90px;
}

@media(max-width:1366px){
    .breadcrumbs{
        margin: 0 0 30px;
    }
}

.breadcrumbs ul {
    padding:16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.breadcrumbs ul li {
    margin-right: 50px;
    font-weight: 300;
    font-size: 14px;
    position: relative;
    margin-bottom: 5px;
    color: #2C2C2C;
}

.breadcrumbs ul li:last-child {
    margin: 0;
}

.breadcrumbs ul li a {
    color: #5F5F5F;
}

.breadcrumbs ul li:after {
    content: '';
    position: absolute;
    right: -35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #CDCDCD;
}

.breadcrumbs ul li:last-child:after {
    display: none;
}


.breadcrumbs ul li a i {
    color: #A4A4A4;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.breadcrumbs ul li a:hover {
    color: #82A481;
}

.breadcrumbs ul li a:hover i {
    color: #82A481;
}


/***** SORTING *****/


.sorting {
    background: #F8F8F8;
    padding: 18px 20px;
    border-radius: 2px;
    line-height: 1;
    margin: 0 0 25px;
}

.sorting span {
    margin-right: 10px;
    color: #A4A4A4;
}

.sorting a {
    color: #5F5F5F;
    font-weight: 500;
    margin-right: 9px;
    border-bottom: 1px dashed rgb(95 95 95 / 0.3);
}

.sorting a:hover {
    border-color: rgb(130 164 129 / 0.3);
    color: #82A481;
}

.sorting a.active {
    border-color: transparent;
    color: #446643;
}


/***** SIDEBAR *****/

.sidebar-toggle {
	display: none;
	margin: 0 0 20px;
}

.sidebar-toggle i {
	margin-left: 10px;
}

.sidebar .menu {
    background: #F8F8F8;
    padding: 33px 40px;
    margin: 0 0 40px;
}

.sidebar .menu ul li {
    border-bottom: 1px solid #E5E5E5;
    margin: 0 0 25px;
    padding: 0 0 25px;
}

.sidebar .menu ul li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.sidebar .menu ul li a {
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    color: #2C2C2C;
    position: relative;
    display: block;
}

.sidebar .menu ul li .submenu {
    display: none;
    margin: 15px 0 0;
}

.sidebar .menu ul li .submenu li {
    border: none;
    margin: 0;
    line-height: 1;
    margin: 0 0 15px;
    padding: 0;
}

.sidebar .menu ul li .submenu li a {
    font-size: 16px;
    line-height: 1;
    color: #5F5F5F;
    font-weight: normal;
    position: relative;
    padding-left: 15px;
}

.sidebar .menu ul li .submenu li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: #436641;
}

.sidebar .menu ul li.sub a:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 100;
    -webkit-transition: .3s transform;
    transition: .3s transform;
}

.sidebar .menu ul li .submenu li a:after {
    display: none;
}

.sidebar .menu ul li a:hover {
    color: #446643;
}

.sidebar .menu ul li .submenu li:last-child {
    margin: 0;
}

.sidebar .menu ul li.sub.open > a {
    color: #446643;
}

.sidebar .menu ul li.sub.open > a:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
}

.filters {
    background: #F8F8F8;
    padding: 33px 40px 40px;
}

.filters .filter-title {
    position: relative;
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    color: #2C2C2C;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #E5E5E5;
}

.filters .filter-title i {
    float: right;
    color: #446643;
    line-height: 1;
    font-size: 26px;
}

.filters .filters-list {
    margin: 0 0 25px;
    padding: 0 0 25px;
    border-bottom: 1px solid #E5E5E5;
}

.filters .filters-list .title {
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    color: #2C2C2C;
    position: relative;
    display: block;
    -webkit-transition: .3s color;
    transition: .3s color;
    cursor: pointer;
}

.filters .filters-list .title:hover {
    color: #446643;
}

.filters .filters-list.open .title {
    color: #446643;
}

.filters .filters-list .title:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 100;
    -webkit-transition: .3s transform;
    transition: .3s transform;
}

.filters .filters-list.open .title:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
}

.filters .filters-list .options {
	display: none;
    margin: 25px 0 0;
}

.options .option {
    /* margin: 0 0 15px; */
}

.options .option input {
    display: none;
}

.options .option label {
    padding-top: 15px;
    padding-bottom: 15px;
    /* padding-left: 33px; */
    position: relative;
    min-height: 20px;
    display: flex;
    flex-direction:column;
    align-items:center;
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.1;
    text-align: center;
    color: #2C2C2C;
    -webkit-transition: .3s color;
    transition: .3s color;
    cursor: pointer;
    border-bottom: 1px solid #E5E5E5;
}


.product-page .options form .form-group>div:last-child label{
    border:none;
}

/* .options .option label:before {
    content: '';
    background: #FFFFFF;
    border: 1px solid rgba(68, 102, 67, 0.3);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    -webkit-transition: .3s color, .3s border-color, .3s background;
    transition: .3s color, .3s border-color, .3s background;
    color: #FFF;
    text-align: center;
    line-height: 18px;
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    font-weight: bold;
} */

.options .option label.option-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.options .option label.option-price .right {
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    color: #2C2C2C;
}

.options .option label.option-price .left {
    font-size: 16px;
}

.options .option:last-child {
    /*margin: 0;*/
}

.options .option label:hover:before {
    border-color: #82A481;
}

/* .options .option label:hover {
    color: #82A481;
} */

/* .options .option input:checked + label:before {
    background: #446643;
    border-color: #446643;
    content: '\f00c';
}

.options .option input.checked + label:before {
    background: #446643;
    border-color: #446643;
    content: '\f00c';
} */

.options .option label span {
    display: block;
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
    color: #446643;
    margin: 10px 0 0;
}

.filters .filters-list .filter-price {
	display: none;
}

.filters .filters-btns button {
    border: none;
    padding: 0;
    width: 100%;
    padding: 20px 21px;
    cursor: pointer;
    margin: 0 0 15px;
}

.filters .filters-btns a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #446643;
    border-bottom: 1px dashed rgb(68 102 67 / 0.3);
}

.filters .filters-btns {
    text-align: center;
}

.filters .filters-btns a:hover {
    color: #2c2c2c;
    border-color: transparent;
}

.sidebar .sidebar-gallery .item {
    margin: 0 0 20px;
}

.sidebar .sidebar-gallery .item a {
    display: block;
    overflow: hidden;
    position: relative;
}

.sidebar .sidebar-gallery .item:last-child {
    margin: 0;
}

.sidebar .sidebar-gallery .item a:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: #446643;
    opacity: 0;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.sidebar .sidebar-gallery .item a:before {
    content: '\e816';
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: 'Fontello';
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    color: #FFF;
    z-index: 3;
    font-size: 70px;
    line-height: 1;
    -webkit-transition: .3s transform;
    transition: .3s transform;
}

.sidebar .sidebar-gallery .item a:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-transition-delay: .15s;
            transition-delay: .15s;
}

.sidebar .sidebar-gallery .item a:hover:after {
    opacity: .8;
}

.minicart {
    padding: 30px 40px 25px;
    background: #F8F8F8;
}

.minicart .items-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #E9E9E9;
    margin: 0 0 20px;
    padding: 0 0 20px;
}

.minicart .items-list .item .photo {
    background: #FFF;
    width: 100px;
    height: 100px;
    margin-right: 30px;
}

.minicart .items-list .item .photo img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.minicart .items-list .item .info {
    width: calc(100% - 130px);
}

.minicart .items-list .item .info .title {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 7px;
    padding-right: 30px;
}

.minicart .items-list .item .info .size {
    color: #5F5F5F;
    font-weight: 300;
    margin: 0 0 15px;
}

.minicart .items-list .item .info .price-block {
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    color: #2C2C2C;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
}

.minicart .items-list .item .info .price-block .price {
    margin-right: 10px;
}

.minicart .items-list .item:last-child {
    margin-bottom: 25px;
}

.minicart .items-list .item .delete {
    position: absolute;
    right: 0;
    top: 0;
}

.minicart .items-list .item .delete a {
    color: #D0D0D0;
    font-size: 16px;
}

.minicart .items-list .item .delete a:hover {
    color: #82A481;
}

.minicart .items-list .item .delete a i {
    font-weight: 500;
}


.minicart .options .option label.option-price:before {
    top: 0;
}

.minicart .options {
    margin: 0 0 30px;
    border-bottom: 1px solid #E9E9E9;
    padding: 0 0 25px;
}

.options .option label.option-price .right.green {
    color: #446643;
}

.minicart .total .price-block .price {
    font-size: 24px;
}

.minicart .total .price-block .price span {
    font-weight: 300;
    display: block;
    font-family: 'Roboto';
    font-size: 24px;
    line-height: 1;
    margin: 0 0 7px;
}

.minicart .total .price-block .price b {
    font-weight: bold;
    font-size: 36px;
}

.minicart .total .price-block .btn {
    width: 140px;
    height: 40px;
    padding: 12px 10px;
    text-align: center;
}

.minicart .total .promo-block {
	display: none;
}

.minicart .total .promo-block .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px;
}

.minicart .total .promo-block .form-group input {
    width: calc(100% - 140px);
    border: 1px solid #E5E5E5;
    background: #FFF;
    padding: 10px 20px;
    height: 40px;
    line-height: 40px;
}

.minicart .total .promo-block .form-group button {
    width: 140px;
    text-align: center;
    height: 40px;
    padding: 12px 10px;
    text-align: center;
}

.minicart .total .promo-block .form-title.red {
    font-weight: 300;
    color: #BD5D5D;
}


/***** PAGE *****/


.page {
    margin: 0 0 150px;
}

@media(max-width:1366px){
    .page{
       margin: 0 0 50px; 
    }
}


/***** CONTACT PAGE *****/


.contact-page {
    position: relative;
}

.contact-page .map {
	height: 700px;
}

.contact-page .map #map {
    width: 100%;
    height: 100%;
}

.contact-page .info {
    padding: 40px;
    position: absolute;
    left: 120px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #FFF;
    width: 340px;
    -webkit-box-shadow: 0px 4px 120px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 4px 120px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.contact-page .info:first-child .item:hover{
    background: #f3f3f3;
    cursor:pointer;
}

.contact-page .info:last-child{
    right: 120px;
    left: auto;
}

.contact-page .info .title {
    text-align: center;
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 44px;
    line-height: 1;
    color: #2C2C2C;
    margin: 0 0 25px;
}

.contact-page .info .item {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #2C2C2C;
    /* margin: 0 0 20px; */
    border-top: 1px solid #E5E5E5;
    padding: 20px 0 0;
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
    transition: all .3s;
}

.contact-page .info .item:last-of-type{
    border-bottom: 1px solid #E5E5E5;
}

.contact-page .info .item .desc{
    display: block;
    font-weight: 300;
    font-size:14px;
}

.contact-page .info .item i {
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 21px;
}

.contact-page .info .btn {
    margin: 10px 0 0;
    padding: 21px;
    width: 100%;
    text-align: center;
}

.contact-page .info .address-info{
    display: none;
}

.contact-page .info .address-info.visible{
    display: block;
}


/***** SERVICES *****/


.services {
    padding: 120px 0 130px;
}

@media(max-width: 1366px){
  .services{
      padding: 70px 0 80px;
  } 
}

.section-title {
    text-align: center;
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 64px;
    line-height: 1;
    margin: 0 0 55px;
}

.services-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.services-list .item {
    margin-right: 20px;
    width: calc(100%/4 - 20px*3/4);
    border-top: 5px solid #446643;
    text-align: center;
}

.services-list .item:nth-child(4n) {
    margin-right: 0;
}

.services-list .item a {
    display: block;
    padding: 50px 40px 256px;
    background: #F8F8F8;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-list .item a .info {
    position: relative;
    z-index: 5;
}

.services-list .item a .info .title {
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    text-align: center;
    color: #2C2C2C;
    margin: 0 0 15px;
}

.services-list .item a .info .text {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    color: #A4A4A4;
    margin: 0 0 20px;
}

.services-list .item a .info .more {
    margin: 0 0 30px;
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #446643;
    -webkit-transition: .3s color;
    transition: .3s color;
}

.services-list .item a .info .more i {
    font-weight: 500;
}

.services-list .item .image {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    -webkit-transition: .7s transform;
    transition: .7s transform;
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

.services-list .item a:hover .image {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
}

.services-list .item .image:before {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -180px;
    background: -webkit-gradient(linear, left top, left bottom, from(#E3E3E3), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, #E3E3E3 0%, rgba(255, 255, 255, 0) 100%);
    width: 540px;
    height: 258px;
    border-radius: 50%;
    -webkit-transition: .7s transform;
    transition: .7s transform;
}

.services-list .item .image img {
    position: relative;
    z-index: 5;
}

.services-list .item a:hover .image:before {
    -webkit-transform: translateX(-50%) scale(2) translateY(-100%);
            transform: translateX(-50%) scale(2) translateY(-100%);
}

.services-list .item a:hover .info .more {
    color: #82A481;
}


/***** ABOUT *****/


.about {
    padding: 0 0 170px;
}

@media(max-width:1366px){
    .about{
        padding: 0 0 80px;
    }
}

.about-info {
    padding-right: 50px;
}

.about-info .title {
    margin: 0 0 30px;
    font-weight: bold;
    font-size: 64px;
    line-height: 1;
    color: #2C2C2C;
}

.about-info .text {
    margin: 0 0 40px;
}

.about-image {
    position: relative;
}

.about-image img {
    position: relative;
    z-index: 5;
}

.about-image:after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 100%;
    height: 100%;
    background: #436642;
}


/***** ORDER *****/


.order-section {
    padding: 0 0 140px;
}

.order-section .container {
    max-width: 1630px;
}

.order-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    background: url(../img/bg/order.jpg) no-repeat center top;
    padding: 118px 90px 87px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-size: cover;
}

.order-block:after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 100%;
    height: 100%;
    background: #436642;
    z-index: -1;
}

.order-block .info {
    width: 470px;
    color: #FFF;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

.order-block .info .title {
    font-family: Heuristica;
    font-weight: bold;
    font-size: 64px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 30px;
}

.order-block .info .text {
    font-weight: 300;
    font-size: 36px;
    line-height: 1.2;
    color: #FFFFFF;
}

.order-block .image {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
    margin-left: 50px;
}

.order-block .form {
    width: 410px;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

.order-block .form .form-text {
    color: #FFF;
}

.order-block .form .form-text a {
    color: #FFF;
    border-color: rgb(255 255 255 / 0.5);
}


/***** CATALOG LIST *****/


.catalog-list {
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
/*     display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap; */
}

.catalog-list.catalog-list--col3{
    grid-template-columns:1fr 1fr 1fr;
}

.catalog-list .item {
    /* width: 25%; */
    padding: 45px 40px;
    background: #FFF;
    -webkit-transition: .3s box-shadow;
    transition: .3s box-shadow;
    position: relative;
    z-index: 5;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.catalog-list .item form{
    height: 100%;
    display:flex;
    flex-direction:column;
}

.catalog-list .item img{
    width: 90%;
    
}

.catalog-list .item .image {
    margin: 0 0 20px;
    flex-grow: 2;
    display: flex;
    justify-content:center;
    align-items:center;
}

.catalog-list .item .image a{
    display:flex;
    justify-content: center;
}

.catalog-list .item .info .cat {
    color: #9D9D9D;
    margin: 0 0 10px;
}

.catalog-list .item .info .title {
    margin: 0 0 20px;
}

.catalog-list .item .info .title a {
    color: #2C2C2C;
    -webkit-transition: .3s color, .3s border-color;
    transition: .3s color, .3s border-color;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 1px solid rgb(21 21 21 / 0.3);
}

.catalog-list .item .info .title a:hover {
    color: #82A481;
    border-color: rgb(130 164 129 / 0.3);
}

.catalog-list .item:hover {
    -webkit-box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
    z-index: 6;
}

.price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 20px;
    align-items:center;
    line-height: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.price-block .price {
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    color: #2C2C2C;
}

.price-block .old_price {
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    color: #A4A4A4;
    text-decoration: line-through;
}

.catalog-list .slick-list {
    padding: 40px 0 !important;
}

.catalog-list .item .info .btn {
    padding: 13px 20px;
    line-height: 1;
 }
 
 .catalog-list .item.pagination-btn {
    background: #F8F8F8;
    border: 1px solid #E5E5E5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: 300px;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: .3s background;
    transition: .3s background;
    cursor: pointer;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

 .catalog-list .item.pagination-btn:hover {
	 background: #FFF;
 }

.catalog-list .item.pagination-btn i {
    width: 100%;
    line-height: 1;
    display: block;
    color: #446643;
    font-size: 90px;
    margin: 0 0 20px;
    text-align: center;
}

.catalog-list .item.pagination-btn span {
    font-family: Heuristica;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    color: #2C2C2C;
}


/***** RELATED *****/


.related {
	padding: 0 0 150px;
}

.related .catalog-list {
    margin: -40px 0;
}

.related .catalog-list .item {
    width: 285px;
    opacity: .5;
}

.related .catalog-list .item.slick-active {
    opacity: 1;
}

.related .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #F8F8F8;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    color: #446643;
    z-index: 5;
    -webkit-transition: .3s color, .3s background;
    transition: .3s color, .3s background;
}

.related .arrow:hover {
    background: #446643;
    color: #FFF;
}

.related .arrow.prev {
    left: 11%;
}

.related .arrow.next {
    right: 11%;
}

.related .arrow i {
    font-weight: 500;
}


/***** PRODUCT PAGE *****/


.product-page {
    border: 1px solid #E5E5E5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.product-page > div {
    width: 33.3333%;
}

.product-page .photos {
    /* border: 1px solid #E5E5E5; */
    padding-top: 53px;
}

.product-page .photos .big-slider {
    margin: 0 0 20px;
}

.product-page .photos .small-slider {
    margin: 0 0 53px;
    padding: 0 72px;
    position: relative;
}

.product-page .photos .small-slider .item {
    cursor: pointer;
    opacity: .4;
    border: 1px solid transparent;
}

.product-page .photos .small-slider .item.slick-current {
    border: 1px solid rgb(68 102 67 / 0.3);
    opacity: 1;
}

.product-page .photos .small-slider .item img {
    margin: 0 auto;
}

.product-page .photos .small-slider .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #446643;
    font-size: 20px;
    cursor: pointer;
}

.product-page .photos .small-slider .arrow.prev {
    left: 42px;
}

.product-page .photos .small-slider .arrow.next {
    right: 42px;
}

.product-page .photos .small-slider .arrow i {
    font-weight: 400;
}

.product-page .info {
    padding: 53px 50px;
/*     border-top: 1px solid #E5E5E5;
border-bottom: 1px solid #E5E5E5; */
}

.product-page .info .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    color: #2C2C2C;
    margin: 0 0 18px;
}

.product-page .info .more-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 24px;
}

.product-page .info .more-info .status {
    line-height: 18px;
}

.product-page .info .more-info .status i {
    font-weight: bold;
    font-size: 18px;
    margin-right: 5px;
    line-height: 1;
}

.product-page .info .more-info .status .yes {
    color: #446643;
}

.product-page .info .more-info .status .no {
    color: #a70000;
}

.product-page .info .more-info .article {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #5F5F5F;
    border-left: 1px solid rgb(95 95 95 / 0.3);
    padding: 4px 0 4px 20px;
    margin-left: 20px;
}

.product-page .info .text p {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: #2C2C2C;
    margin: 0 0 40px;
}

.product-page .info .text p:last-child {
    margin: 0;
}

.product-page .info .text ul li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-bottom: 1px dashed #CCC;
    margin: 0 0 20px;
}

.product-page .info .text ul li .left {
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    color: #2C2C2C;
    float: left;
    padding-right: 10px;
    padding-bottom: 7px;
    background: #FFF;
    margin-bottom: -7px;
}

.product-page .info .text ul li .right {
    float: right;
    padding-left: 10px;
    padding-bottom: 7px;
    background: #FFF;
    margin-bottom: -7px;
    font-weight: 500;
}

.product-page .options {
    padding: 30px;
    /* background: #F8F8F8; */
}

@media (max-width:1500px) {
    .product-page .options {
        padding-left: 0;
    }
}

@media (max-width:1200px) {
    .product-page .options {
        padding-left: 30px;
    }
}

.product-page .options form{
    padding: 50px 30px 40px;
    background: url('../img/options-bg.png') center no-repeat;
    background-size:100% 100%;
    
}
.product-page .options form .form-group div:not(:first-child){
    background: #fff;
    padding-left: 30px;
    padding-right: 30px;
}
.product-page .options .form-title {
    color: #5F5F5F;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 19px;
    text-align: center;
    color: #2C2C2C;
    margin-bottom: 31px;

}

.product-page .options .price-block {
    margin: 32px 0;
            /* justify-content: center; */
}

.product-page .options .price-block .price-title {
    /* width: 100%; */
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
    color: #5F5F5F;
    margin: 0 0 10px;
    text-align: center;
}

.product-page .options .price-block .price {
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    color: #2C2C2C;
    /* margin-right: 20px; */
}

.product-page .options .price-block .old_price {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #A4A4A4;
}

.product-page .options .btn {
    border: none;
    cursor: pointer;
    padding: 27px;
}

.product-page .photos .big-slider .item img {
    margin: 0 auto;
}


/***** CART PAGE *****/


.cart-page {
    width: 820px;
    max-width: 100%;
    background: #FFF;
    padding: 0;
    
/* #E5E5E5 */
    border: 1px solid #E5E5E5;
}

.cart-page .tabs .tab {
	display: none;
}

.cart-page .tabs .tab.active {
	display: block;
}

.cart-page .tabs .caption {
    padding: 0 0 30px;
    margin: 0;
    padding: 25px 30px;
    background: #F8F8F8;
}

.cart-page .tabs .caption ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-page .tabs .caption ul li {
    position: relative;
    min-height: 70px;
    padding-left: 85px;
    cursor: pointer;
    margin-right: 80px;
}

.cart-page .tabs .caption span {
    padding: 15px 0 0;
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #5F5F5F;
}

.cart-page .tabs .caption ul li i {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: #FFF;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    color: #A4A4A4;
    font-size: 28px;
    -webkit-transition: .3s color, .3s background;
    transition: .3s color, .3s background;
}

.cart-page .tabs .caption ul li.checked i:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 22px;
    background: #446643;
    color: #FFF;
}

.cart-page .tabs .caption ul li i.icon-money {
    padding-right: 7px;
}

.cart-page .tabs .caption ul li.active i {
    color: #FFF;
    background: #446643;
}

.cart-page .tabs .caption li.active span {}

.cart-page .tabs .caption ul li:last-child {
    margin: 0;
}

.cart-page .tabs .caption ul li:after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 0;
    background-size: contain;
    border-bottom: 4px dotted #CCC;
}

.cart-page .tabs .caption ul li:last-child:after {
    display: none;
}

.cart-page input {
    text-align: left;
    padding: 0 30px;
    font-size: 16px;
}

.cart-page textarea {
	font-size: 16px;
}

.cart-page h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 52px;
    color: #303030;
    margin: 0 0 18px;
}

.cart-page .form-group {
    margin: 0 0 20px;
    text-align: left;
}

.cart-page .form-group small {
	text-align: left;
	font-weight: 300;
}

.cart-page .form-group small i {
    color: #E5BB42;
    font-size: 19px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.cart-page .subtabs {
	text-align: right;
}

.cart-page .subtabs .nav {
    display: inline-block;
    vertical-align: top;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #303030;
    padding: 0;
    margin: -45px 0 0;
    position: relative;
    color: #2C2C2C;
}

.cart-page .subtabs .nav input[type="radio"]{
    display: none;
}

.cart-page .subtabs .nav label {
    display: block;
    float: left;
    margin-right: 40px;
    cursor: pointer;
    position: relative;
    border-bottom: 2px dotted #EBEBEB;
    margin: 0 30px 0 0;
    z-index: 5;
    color: #A4A4A4;
}



.cart-page .subtabs .nav label.active {
    font-weight: 500;
    border-color: transparent;
    color: #446643;
}

.cart-page .subtabs .nav label:last-child {
    margin: 0;
    padding-right: 0;
}

.cart-page .subtabs .nav:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #EBEBEB;
    display: none;
}

.cart-page .subtab {
	display: none;
}

.cart-page .subtab.active {
	display: block;
}

.cart-page .link {
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    margin: 20px 0;
}

.cart-page .link a {
    margin: 0 29px 0 15px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(48, 48, 48, .3);
    position: relative;
}

.cart-page .link a i {
    position: absolute;
    left: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.cart-page .link .form-group {
    margin: 0;
}

.cart-page .link .btn {
    display: inline-block;
    vertical-align: middle;
}

.cart-page .btn {
    display: inline-block;
    vertical-align: middle;
}

.cart-page .cart_map {
    margin: 0 0 40px;
    height: 350px;
}

.cart-page .cart_map #map {
	width: 100%;
	height: 100%;
}

.cart-page .subtab p {
    text-align: left;
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 300;
}

.cart-page .subtab p i {
	margin-right: 10px;
	font-weight: bold;
	font-size: 18px;
}

.cart-page .cart_map #map_cart {
    width: 100%;
    height: 400px;
}

.cart-page .contact_block {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 0 44px;
}

.pay_types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 40px;
}

.pay_types .pay_item {
    width: calc(25% - 15px);
    margin-right: 20px;
}

.pay_types .pay_item:last-child {
    margin-right: 0;
}

.pay_types .pay_item input {
    display: none;
}

.pay_types .pay_item .icon {
    background: #FFF;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    font-size: 49px;
    color: #436642;
    margin: 0 auto 16px;
}

.pay_types .pay_item .icon .icon-pay-3 {
    font-size: 34px;
    padding-right: 0;
}

.pay_types .pay_item .title {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    color: #2C2C2C;
}

.pay_types .pay_item label {
    background: #F9F9F9;
    text-align: center;
    padding: 23px 32px 24px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #F9F9F9;
    -webkit-transition: .3s border-color;
    transition: .3s border-color;
    display: block;
    position: relative;
    height: 100%;
}

.pay_types .pay_item label:hover {
    border-color: #436642;
}

.pay_types .pay_item input:checked + label {
    border-color: #436642;
}

.pay_types .pay_item input:checked + label:before {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: -12px;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 27px;
    background: #436642;
    color: #FFF;
}

.cart-page .tabs .tabs-list {
    padding: 40px;
}

.tab-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    color: #2C2C2C;
    margin: 0 0 20px;
}

.tabs button.btn {
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
}

.tabs button.btn-border {
	margin-right: 10px;
}

.cart-page .subtabs .nav label:after {
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	width: 1px;
	height: 100%;
	background: #c9c9c9;
	display: block;
}

.cart-page .subtabs .nav label:last-child:after {
    display: none;
}

.tabs button.btn:not(.btn-border) {
    border: none;
}


/***** FOOTER *****/


footer {
    padding: 67px 0 62px;
    background: #2C2C2C;
    color: #FFF;
}

footer a {
    color: #FFF;
}

footer .block-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 24px;
}

footer .logo {
    margin: 0 0 15px;
}

footer .copyright {
    margin: 0 0 15px;
    color: #D0D0D0;
    font-size: 11px;
}

footer .made {
    font-size: 11px;
    line-height: 20px;
}

footer .menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
}

footer .menus .menu {
    padding: 0 76px;
    border-left: 1px solid rgb(255 255 255 / 0.1);
    width: 50%;
}

footer .menus .menu:last-child {
    border-right: 1px solid rgb(255 255 255 / 0.1);
}

footer .menus .menu ul li {
    position: relative;
    margin: 0 0 15px;
}

footer .menus .menu ul li a {
    font-size: 14px;
    padding-left: 16px;
}

footer .menus .menu ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: #436641;
}

footer .footer-contacts {
    padding-left: 30px;
}

footer .footer-contacts .contacts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}

.contacts-list__item{
    width: calc(50% - 15px);
    display:flex;
    flex-direction:column;
    position: relative;
}

.contacts-list__item:first-child::after{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    background: rgb(255 255 255 / 0.1);
}

.contacts-list__item:first-child{
    margin-right: 15px;
}

.contacts-list__item:last-child{
    margin-left: 15px;
}

footer .footer-contacts .contacts-list .title{
    width: 100%;
    margin-bottom: 15px;
}

footer .footer-contacts .contacts-list .address{
    flex-grow:2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

/* footer .footer-contacts .contacts-list .item:nth-child(3n - 1) {
    width: calc(50% - 30px);
    margin-right: 30px;
} */

/* footer .footer-contacts .contacts-list .item {
    width: 50%;
} */

footer .footer-contacts .contacts-list .item{
    margin-bottom: 15px;
}

/* footer .footer-contacts .contacts-list .item:last-child {
    padding-left: 40px;
} */

footer .footer-contacts .contacts-list .item span {
    display: block;
    margin: 0 0 7px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}
footer .footer-contacts .contacts-list .callback{
    margin-left: 0;
    border-bottom: 1px solid rgb(113 144 112 / 0.4);
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    color: #719170;
    display: inline-block;
    vertical-align: top;
    margin-left: 19px;
}

footer .footer-contacts .contacts-list .item a {
    border-bottom: 1px solid rgb(113 144 112 / 0.4);
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    color: #719170;
    display: inline-block;
    vertical-align: top;
    margin-left: 19px;
}



footer .footer-contacts .contacts-list .item a.phone {
    border: none;
    font-size: 16px;
    color: #FFF;
    line-height: 1.4;
    font-weight: bold;
    margin: 0;
}

footer .footer-contacts .contacts-list .item span i {
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 14px;
}

footer .footer-contacts .contacts-list .item a:hover {
    border-color: transparent;
    color: #FFF;
}


/***** MODAL *****/


.modal {
    padding: 37px 60px 60px;
    background: #FFF;
    width: 500px;
    display: none;
    border-radius: 10px;
}

.modal.thanks {
	padding-bottom: 37px;
}

.modal .modal-title {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.2;
	font-weight: 300;
	font-size: 24px;
	text-align: center;
	color: #2B2A29;
}

.modal .modal-title b {
    display: block;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.modal .modal-title img {
    margin: 0 0 24px;
}

.modal.thanks .modal-title {
    margin: 0;
    font-size: 22px;
}

.modal.thanks .modal-title b {
    font-size: 34px;
}

.compensate-for-scrollbar {
	margin-right: 0 !important;
}

.iconmenu-menu-4{
    font-size: 22px;
    margin-right: 15px;
}

.main-video-block{
    margin-top: 100px;
}

.main-video-block__inner{
    width:1300px;
    position:relative;
    min-height: 614px;
    background-image: url('/templates/video-block-bg(1).jpg');
    -webkit-background-size: cover;
    background-size: cover;
    display:flex;
    flex-direction: column;
    padding: 50px;
    justify-content: center;
}

@media(max-width: 1500px){
    .main-video-block__inner{
        width:100%;
        padding: 20px;
        align-items: center;
    }
}

.main-video-block__video{
    position:absolute;
    right: -120px;
    top: 42px;
}

@media(max-width: 1500px){
    .main-video-block__video{
        position:static;
    }
}

#video-wrapper{
    position:relative;
    width: 940px;
    height: 530px;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #446643;
    border:none;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

.main-video-block__title{
    font-family: Heuristica, serif;
    font-weight: bold;
    font-size: 45px;
    line-height: 60px;
    color: #2C2C2C;
    max-width: 432px;
    position: relative;
    z-index: 40;
    text-shadow: 0px 4px 24px #FFFFFF;
}

.main-video-block__button{
    display:flex;
    margin-top: 50px;
    width: 300px;
    background: #446643;
    border-radius: 2px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 42px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
}

@media(max-width: 1500px){
    #video-wrapper{
        width:100%;
        height:auto;
    }
    
    #video-wrapper video{
        width:100%;
        height: auto;
    }
    
    .main-video-block__title{
        max-width:none;
        text-align:center;
        margin-top: 20px;
    }
    
    .main-video-block__text-block{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 700px){
    .play-btn{
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media(max-width: 500px){
    .main-video-block__title{
        font-size: 42px;
        line-height: 50px;
    }
}

.contact-list{
    display: flex;
    /* flex-grow: 2; */
    width: 100%;
    justify-content: space-between;
}



/* @media(max-width: 1500px){
    .contact-list{
        flex-direction:column;
        align-items:flex-start;
        margin-bottom: 5px;
    }
} */

@media(max-width: 575px){
    .contact-list{
        flex-direction:row;
        margin-bottom: 0;
    }
}

.contact__item{
    width: 50%;
    /* display: flex; */
    /* flex-direction:column; */
    /* align-items:center; */
    padding-right: 25px;
    font-size:13px;
    display: grid;
    grid-template-columns: 44px auto 44% 25%;
}

.contact__item:not(:last-child){
    border-right: 1px solid #cecece;    
}

.contact__item:not(:first-child){
    padding-left: 45px;
}



@media (max-width: 575px){
    .contact__item:not(:first-child) {
        margin-top: 0;
    }
}

.contact__icon{
    min-width:44px;
    height: 44px;
    display:flex;
    justify-content:center;
    align-items:center;
    border: 1px solid #446643;
    border-radius:50%;
    /* margin-right: 15px; */
    /* grid-area:icon; */
}

.contact__title{
    color: #446643;
    font-weight: 500;
        /* p-right: 44px; */
    padding-left: 15px;
    padding-top: 8%;
    font-size: 16px;
}

@media (max-width: 575px){
    .contact__title{
        margin-right: 0;
    }
}

.contact__info{
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact__info i{
    margin-right: 9px;
}

.contact__info span{
    font-size:15px;
}

.price-per-mp{
    font-size: 16px;
    line-height: 1.2;
    color: #5F5F5F;
    margin-top: 20px;
}

.price-per-mp span{
    font-weight:bold;
}

video{
    max-width:100%;
    width: 100%;
    height: auto;
}

.cookie {
    visibility: hidden;
    opacity: 0;
    transform: translateY(50%);
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 25px;
    width: 635px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.1);
    z-index: 51;
    transition: all 0.4s ease;
}

.show-cookie {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cookie__text {
    font-size: 16px;
    line-height: 1.2;
}

.cookie__text a {
    color: #446643;
    font-weight: 600;
}

.cookie__accept {
    margin-top: 20px;
    width: 150px;
    height: 40px;
    background-color: #446643;
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.cookie__accept:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie {
        left: 10px;
        width: auto;
    }
}

@media (max-width: 520px) {
    .cookie {
        padding: 15px;
    }
    
    .cookie__text {
        font-size: 14px;
    }
    
    .cookie__accept {
        font-size: 14px;
    }
}

.contacts-list__copy {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ui-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.ui-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ui-checkbox__label {
  position: relative;
  padding-left: 26px; 
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.ui-checkbox__label a {
  color: #446643;
  text-decoration: underline;
  transition: color .2s;
}

.ui-checkbox__label a:hover {
  color: #446643;
}

.ui-checkbox__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid #446643;
  border-radius: 4px;
  box-sizing: border-box;
  transition: background .2s, border-color .2s;
}

.ui-checkbox__label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.ui-checkbox__input:checked + .ui-checkbox__label::before {
  background: #446643;
  border-color: #446643;
}

.ui-checkbox__input:checked + .ui-checkbox__label::after {
  transform: rotate(-45deg) scale(1);
}

.contact__item {
    margin-left: auto;
    padding-right: 0;
}

.contact__icon,
.contact__title {
    opacity: 0;
}

html {
  scroll-behavior: smooth;
}

.item {
    pointer-events: none;
}

.item__inner {
    display: block;
    padding: 50px 40px 256px;
    background: #F8F8F8;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.item__inner .title {
    font-family: Heuristica;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    text-align: center;
    color: #2C2C2C;
    margin: 0 0 15px;
}



@media (max-width: 1499px) {
    .item__inner {
        padding: 40px 20px 246px;
    }
    
    .item__inner .title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .item__inner {
        padding-bottom: 190px;
    }
}

:root {
    --color-primary: #059669;
    --color-primary-dark: #047857;
    --color-primary-light: #10b981;
    --color-primary-lighter: #34d399;
    --color-primary-lightest: #a7f3d0;
    --color-primary-ultra-light: #ecfdf5;
    
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f9fafb;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-card: #ffffff;
    
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-emerald: 0 20px 25px -5px rgba(5, 150, 105, 0.1);
}

.services {
    padding: 6rem 1.5rem;
    position: relative;
}

.services__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.services__container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Services Header */
.services__header {
    text-align: center;
    margin-bottom: 5rem;
}

.services__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.services__badge-line {
    display: block;
    width: 3rem;
    height: 1px;
    background-color: var(--color-primary);
}

.services__badge-text {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.services__title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.015em;
    color: var(--color-text-primary);
    line-height: 1.1;
}

@media (max-width: 768px) {
    .services__title {
        font-size: 2rem;
    }
}

.services__title--accent {
    font-weight: 600;
}

/* Services Grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    gap-row: 2.5rem;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Service Card - BEM Structure
   ======================================== */

.service-card {
    position: relative;
}

.service-card__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, rgba(249, 250, 251, 0.3));
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 2rem;
    border: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__inner {
    border-color: rgba(5, 150, 105, 0.4);
    box-shadow: var(--shadow-emerald);
}

/* Top accent bar */
.service-card__accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, #10b981, #059669, #10b981);
    border-radius: 0 0 9999px 9999px;
}

/* Number badge */
.service-card__number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(5, 150, 105, 0.3);
}

/* Icon wrapper */
.service-card__icon-wrapper {
    margin-bottom: 1.5rem;
    color: rgba(26, 26, 26, 0.8);
    transition: color 0.3s;
    display: flex;
    justify-content: center;
}

.service-card:hover .service-card__icon-wrapper {
    color: var(--color-primary-dark);
}

.service-card__icon {
    width: 3rem;
    height: 3rem;
}

/* Icon stroke colors */
.service-card__icon-stroke--primary {
    stroke: var(--color-primary);
}

.service-card__icon-stroke--secondary {
    stroke: var(--color-primary-light);
}

.service-card__icon-path--primary {
    stroke: var(--color-primary);
    fill: rgba(5, 150, 105, 0.1);
}

.service-card__icon-path--secondary {
    stroke: #10b981;
    fill: rgba(16, 185, 129, 0.1);
}

.service-card__icon-circle--tertiary {
    fill: rgba(5, 150, 105, 0.3);
    stroke: var(--color-primary);
}

.service-card__icon-ellipse {
    stroke: #34d399;
    fill: rgba(52, 211, 153, 0.1);
}

/* Content */
.service-card__content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover .service-card__title {
    color: #047857;
}

.service-card__description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .services {
        padding: 4rem 1.5rem;
    }

    .services__header {
        margin-bottom: 3rem;
    }

    .services__title {
        font-size: 1.875rem;
    }

    .services__grid {
        gap: 1.5rem;
    }

    .service-card__inner {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 3rem 1rem;
    }

    .services__badge {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .services__badge-line {
        width: 1.5rem;
    }

    .services__title {
        font-size: 1.5rem;
    }

    .service-card__icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .service-card__title {
        font-size: 1.125rem;
    }
}

/* ========================================
   Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .service-card__inner,
    .service-card__icon-wrapper,
    .service-card__title {
        transition: none;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    body {
        background: white;
    }

    .services {
        padding: 2rem;
    }

    .service-card__inner {
        border: 1px solid #ccc;
    }
}

.search {
    opacity: 0;
    pointer-events: none;
}

.bottom-line .menus {
    display: none;
}

footer .menus .menu,
footer .footer-contacts {
    padding-top: 20px;
}

