@font-face {
  font-family: "onest";
  src: url("/public/fonts/onest-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "onest";
  src: url("/public/fonts/onest-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "onest";
  src: url("/public/fonts/onest-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "onest";
  src: url("/public/fonts/onest-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #77c04b;
  --primary-dark: #5fa338;
  --primary-light: #e3f2d9;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-main: #ffffff;
  --bg-alt: #f3f4f6;
  --border-color: #e5e7eb;
  --radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*** Глобальные ***/
body {
  font-family: "onest", sans-serif!important;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-main);
  padding: 0 !important;
}
.center-block {
  border-radius: var(--radius);
}
#wrapper {
  overflow: hidden;
}
.navbar,
.navbar-header {
  background: none;
  border: none;
  margin: 0;
  min-height: auto;
  border-radius: 0;
}
html {
  min-height: 100%;
  position: relative;
}
form,
fieldset {
  margin: 0;
}
p:last-child {
  margin: 0;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  background: transparent;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb > li + li::before {
  color: var(--text-muted);
  content: "→";
  padding: 0 10px;
}
.breadcrumb > .active {
  color: var(--text-main);
  font-weight: 500;
}
.wtitle,
h1,
.h1,
h2,
.h2,
h3,
.h3,
.page-heading {
  margin: 0;
  color: var(--text-main);
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h3,
.h3 {
  text-align: left;
}
article ul {
  padding: 0;
  margin: 20px 0;
}
article ul li {
  padding: 8px 0;
  list-style: none;
  position: relative;
  padding-left: 25px;
}
article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
label {
  margin-bottom: 8px;
  font-weight: 500;
}
.page-heading {
  padding: 30px 0 !important;
}
.pagination > li > a,
.pagination > li > span {
  background-color: transparent !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-muted) !important;
  line-height: 40px !important;
  margin: 0 4px !important;
  padding: 0 16px !important;
  border-radius: var(--radius) !important;
  transition: var(--transition);
}
section.dark .pagination > li.active > a,
.pagination > li.active > a {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.pagination > li.prev_link > a {
  margin: 0 8px !important;
  border: 1px solid var(--border-color) !important;
  padding: 0 !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.pagination > li.prev_link > a:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
@media (min-width: 768px) {
  .body-top {
    padding-top: 81px;
  }
  .wtitle,
  h1,
  .h1,
  h2,
  .h2,
  .page-heading {
    font-size: 32px;
    line-height: 1.2;
    padding: 30px 0 20px;
  }
  h1,
  .h1 {
    padding-top: 40px;
  }
  h2,
  .h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.4;
    padding: 40px 0 20px;
  }
  p {
    margin: 0 0 20px;
    font-size: 16px;
  }
  article ul li {
    margin: 0 0 10px;
    line-height: 1.6;
    font-size: 16px;
  }
  article {
    padding-bottom: 60px;
  }
  #toTop {
    right: 20px;
    bottom: 20px;
  }
}
@media (min-width: 992px) {
  .body-top {
    padding-top: 48px;
  }
  .wtitle,
  h1,
  .h1,
  h2,
  .h2,
  .page-heading {
    font-size: 40px;
    padding: 30px 0 20px;
  }
  h1,
  .h1 {
    padding-top: 50px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 28px;
  }
  article {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  p {
    margin: 0 0 30px;
    font-size: 18px;
  }
  article ul li {
    margin: 0 0 12px;
    line-height: 1.6;
    font-size: 18px;
  }
  article {
    padding-bottom: 100px;
  }
  #toTop {
    right: 40px;
    bottom: 90px;
  }
}
@media (max-width: 767px) {
  .body-top {
    padding-top: 48px;
  }
  .wtitle,
  h1,
  .h1,
  h2,
  .h2,
  .page-heading {
    font-family: inherit;
    font-weight: 700;
    padding: 40px 0 25px;
  }
  h1,
  .h1 {
    padding-top: 20px;
  }
  h2,
  .h2 {
    font-size: 28px;
    font-weight: 700;
  }
  h3,
  .h3 {
    font-size: 26px;
    font-weight: 700;
    padding: 30px 0 15px;
  }
  p {
    margin: 0 0 15px;
    font-size: 16px;
  }
  article ul li {
    margin: 0 0 7px;
    line-height: 18px;
    font-size: 16px;
  }
  article ul li::before {
    margin-right: 7px;
    font-size: 18px;
  }
  article {
    padding-bottom: 50px;
  }
  #toTop {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 740px) {
  p {
    margin: 0 0 15px;
    font-size: 14px;
  }
  article ul li {
    margin: 0 0 7px;
    line-height: 1.6;
    font-size: 14px;
  }
  body {
    padding-bottom: 308px;
  }
  article {
    padding-bottom: 40px;
  }
}
@media (max-width: 580px) {
  .wtitle,
  h1,
  .h1,
  h2,
  .h2,
  .page-heading {
    font-size: 26px;
    font-weight: 700;
    padding: 20px 0 15px;
  }
  h2,
  .h2 {
    font-size: 24px;
    font-weight: 700;
  }
  h3,
  .h3 {
    font-size: 22px;
    font-weight: 700;
  }
  body {
    padding-bottom: 247px;
  }
  article {
    padding-bottom: 30px;
  }
}
@media (max-width: 460px) {
  .wtitle,
  h1,
  .h1,
  h2,
  .h2,
  .page-heading {
    font-size: 22px;
    font-weight: 700;
    padding: 25px 0 10px;
  }
  h2,
  .h2 {
    font-size: 20px;
    font-weight: 700;
  }
  h3,
  .h3 {
    font-size: 18px;
    font-weight: 700;
  }
  p {
    margin: 0 0 10px;
    font-size: 14px;
  }
  body {
    padding-bottom: 234px;
  }
  article {
    padding-bottom: 20px;
  }
}
@media (max-width: 350px) {
  body {
    padding-bottom: 194px;
  }
}
/*** Шапка ***/
.header-contact span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
}
.header-contact a {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  transition: var(--transition);
}
.header-contact a:hover {
  color: var(--primary);
}
.top-links li {
  display: inline-block;
}
.top-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.top-links a:hover {
  color: var(--primary);
}
.top-links i {
  color: var(--primary);
  margin: 0 !important;
}
.header-button-wrapper {
  text-align: right;
}
.header-button-wrapper a {
  text-align: center;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  color: var(--primary);
  padding: 8px 20px;
  font-weight: 600;
  transition: var(--transition);
}
.header-button-wrapper a:hover,
.header-button-wrapper a:active,
.header-button-wrapper a:focus {
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow);
}
#s_cart {
  padding: 0;
  text-align: center;
  float: none;
}
#s_cart i {
  font-size: 32px;
  color: var(--text-main);
  transition: var(--transition);
}
#s_cart i:hover {
  color: var(--primary);
}
#header ul.nav-second-main li .badge {
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary);
  font-size: 10px;
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -4px;
}
.link-cart,
#header ul.nav-second-main li > a {
  background-color: transparent;
  color: var(--text-main);
  padding: 0;
  display: inline-block;
  position: relative;
}
.quick-cart-footer i {
  font-size: 16px !important;
}
.header-lang {
  position: relative;
  padding-top: 40px;
}
.header-lang-panel {
  display: none;
  z-index: 10;
  border-radius: var(--radius);
  position: absolute;
  padding: 8px;
  right: 15px;
  top: 5px;
  height: auto;
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-alt);
}
.header-lang-panel:hover {
  background: #e5e7eb;
}
.header-lang-panel li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-lang-panel a {
  display: block;
  padding: 4px 0;
}
.header-lang-panel li:last-child a {
  padding: 0;
}
.header-lang-panel li i {
  color: var(--text-main);
  font-size: 12px;
  float: left;
  margin-left: 4px;
  margin-top: 2px;
}
.header-lang-panel img {
  float: left;
  border-radius: 50%;
  transition: var(--transition);
}
.header-lang-panel img.active-lang,
.header-lang-panel a:hover img {
  box-shadow: 0 0 0 2px var(--primary);
}
.lang-down {
  background: var(--bg-alt);
  height: auto;
}
@media (min-width: 768px) {
  .collapse {
    padding: 0;
  }
  .header-phone {
    font-size: 20px;
    font-weight: 700;
  }
  .top-links {
    font-size: 13px;
  }
  .top-links i {
    font-size: 16px;
  }
  .top-links a {
    padding-left: 8px;
  }
  .header-button-wrapper {
    padding-top: 0;
  }
  .header-button-wrapper a {
    font-size: 13px;
    display: block;
  }
  .header-button-wrapper a + a {
    margin-top: 8px;
  }
  .header-lang {
    padding-left: 0;
  }
  .header-contact {
    padding-top: 14px;
  }
  .header-logo {
    padding: 25px 35px;
  }
  .header-contact span,
  .header-contact a {
    font-size: 14px;
  }
  .top-links {
    padding: 10px 0;
  }
}
@media (min-width: 992px) {
  .header-button-wrapper a {
    display: inline-block;
    font-size: 12px;
    width: 48%;
  }
  .header-phone {
    font-size: 24px;
  }
  .top-links {
    font-size: 14px;
  }
  .top-links i {
    font-size: 18px;
  }
  .top-links a {
    padding-left: 10px;
  }
  .header-button-wrapper {
    padding-top: 15px;
  }
  .header-button-wrapper a + a {
    margin-top: 0;
  }
  .header-lang {
    padding-left: 15px;
  }
  .header-contact {
    padding-top: 10px;
  }
  .top-links {
    padding: 10px 0 0;
  }
  .header-logo {
    padding: 25px 70px;
  }
  .header-contact span,
  .header-contact a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .header-button-wrapper a {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    width: 46%;
  }
  .header-button-wrapper a + a {
    margin-left: 6%;
  }
  .header-logo {
    padding: 18px 75px;
  }
}
@media (max-width: 767px) {
  .header-phone {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
  }
  .top-links {
    font-size: 12px;
  }
  .top-links i {
    font-size: 16px;
  }
  .top-links a {
    padding-left: 5px;
  }
  .header-button-wrapper {
    padding-top: 0;
  }
  .header-button-wrapper a {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    display: block;
  }
  .header-button-wrapper a + a {
    margin-top: 5px;
  }
  .header-lang {
    padding-left: 0;
  }
  .header-contact {
    padding-top: 10px;
  }
  .top-links {
    padding: 5px 0;
  }
  .header-contact {
    padding-top: 14px;
  }
  .header-logo {
    padding: 25px 35px;
  }
  .header-contact span,
  .header-contact a {
    font-size: 14px;
  }
}
@media (max-width: 740px) {
  .header-contact {
    width: 50%;
    padding-left: 160px;
    padding-right: 0;
    padding-top: 2px;
  }
  .header-contact span,
  .header-contact a {
    font-size: 14px;
  }
  .header-phone {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
  }
  .header-logo {
    padding: 22px 0;
    width: 125px;
    position: absolute;
    left: 15px;
  }
  .header-lang {
    width: 11%;
  }
  .header-pers {
    width: 39%;
  }
  .header-button-wrapper a {
    font-size: 11px;
    line-height: 22px;
    font-weight: 700;
    width: 48%;
    display: inline-block;
  }
  .header-lang {
    padding-top: 25px;
  }
  #s_cart i {
    font-size: 40px;
  }
}
@media (max-width: 580px) {
  .header-logo {
    padding: 0;
    bottom: -38px;
  }
  .header-contact {
    width: 40%;
    padding-left: 15px;
  }
  .header-lang {
    width: 15%;
  }
  .header-pers {
    width: 45%;
    padding: 0;
  }
}
@media (max-width: 460px) {
  .header-contact span,
  .header-contact a {
    font-size: 12px;
  }
  .header-phone {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
  }
  .header-contact {
    width: 45%;
  }
  .header-logo {
    width: 110px;
  }
  .search-xs {
    width: 170px !important;
  }
  .header-button-wrapper {
    display: none;
  }
  .header-lang {
    width: 20%;
  }
  .header-pers {
    width: 35%;
    padding-right: 15px;
    padding-top: 5px;
  }
  .header-lang-panel {
    top: 1px;
  }
  #s_cart i {
    font-size: 32px;
  }
  #header ul.nav-second-main li .badge {
    top: 3px;
    right: 0;
    width: 14px;
    height: 14px;
    font-size: 10px;
    line-height: 14px;
    font-weight: 300;
  }
}
@media (max-width: 350px) {
  .header-contact span,
  .header-contact a {
    font-size: 11px;
  }
  .header-phone {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
  }
  .header-contact {
    padding-top: 5px;
  }
  .header-logo {
    width: 95px;
    bottom: -35px;
  }
  .search-xs {
    width: 150px !important;
  }
}
/*** Меню ***/
.topmenu {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
}
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  box-shadow: var(--shadow);
}
.topmenu li > a {
  color: var(--text-main) !important;
  font-weight: 500 !important;
  transition: var(--transition);
}
.topmenu .navbar-nav li:hover > a,
.topmenu .navbar-nav > .active > a,
.topmenu .navbar-nav > .active > a:focus,
.topmenu .navbar-nav > .active > a:hover {
  color: #ffffff !important;
  background: var(--primary) !important;
}
#search_form {
  border-bottom: 2px solid var(--border-color);
  transition: var(--transition);
}
#search_form:focus-within {
  border-bottom-color: var(--primary);
}
#search_form input,
#search_form button {
  background: none;
  border: none;
  border-radius: 0;
  height: 32px;
  font-size: 16px;
  color: var(--text-main);
  padding: 0;
}
#search_form input {
  padding-left: 8px;
}
#search_form button {
  color: var(--text-muted);
  font-size: 18px;
  text-align: right;
  transition: var(--transition);
}
#search_form button:hover {
  color: var(--primary);
}
#search_form button i {
  padding: 0;
}
.dropdown-menu {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow) !important;
  margin-top: 10px;
}
.wrapper-menu-cat-top {
  position: relative;
}
.wrapper-menu-cat-top::after {
  background: var(--bg-alt);
  bottom: 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  right: -100%;
  z-index: 1;
  border-bottom: 1px solid var(--border-color);
}
.wrapper-menu-cat-top .col-xs-12,
.wrapper-menu-cat-top .col-md-3 {
  position: relative;
  z-index: 2;
  padding: 0;
}
.wrapper-menu-cat-top ul {
  padding: 0;
  margin: 0;
}
.wrapper-menu-cat-top ul li {
  margin: 0;
  list-style: none;
  float: none;
  display: block;
}
.wrapper-menu-cat-top ul li a {
  padding: 8px 15px;
  display: block;
  border-radius: var(--radius);
  transition: var(--transition);
}
div.wrapper-menu-cat-top ul.col-md-3 li:hover > a {
  background: var(--primary-light) !important;
  color: var(--primary-dark) !important;
}
div.wrapper-menu-cat-top ul.col-md-3 li a:hover {
  background: var(--primary-light) !important;
  color: var(--primary-dark) !important;
}
div.wrapper-menu-cat-top ul.col-md-3 li ul li a {
  color: var(--text-muted) !important;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
div.wrapper-menu-cat-top ul.col-md-3 li ul li a:hover {
  color: var(--text-main) !important;
  border-bottom-color: var(--primary);
  background: transparent !important;
}
@media (min-width: 768px) {
  .topmenu li > a {
    font-size: 14px !important;
    padding: 16px 12px !important;
  }
  .topmenu .col-lg-2 {
    padding: 10px 15px;
  }
  .wrapper-menu-cat-top {
    padding-bottom: 20px;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul {
    padding-top: 10px;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li {
    padding: 0 0 5px;
  }
  .wrapper-menu-cat-top ul li {
    padding: 5px 15px 5px 0;
  }
  .wrapper-menu-cat-top ul li a {
    font-weight: 600 !important;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li a {
    font-size: 13px !important;
  }
}
@media (min-width: 992px) {
  .topmenu li > a {
    font-size: 15px !important;
    padding: 20px 15px !important;
  }
  .topmenu .col-lg-2 {
    padding: 12px 15px 0 0;
  }
  .wrapper-menu-cat-top {
    padding-bottom: 30px;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul {
    padding-top: 20px;
  }
  .wrapper-menu-cat-top ul li {
    padding: 10px 0;
  }
  .wrapper-menu-cat-top ul li a {
    font-size: 16px !important;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li a {
    font-size: 14px !important;
  }
}
@media (min-width: 1200px) {
  .topmenu li > a {
    font-size: 17px !important;
    padding: 24px 20px !important;
  }
  .wrapper-menu-cat-top {
    padding-bottom: 40px;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul {
    padding-top: 30px;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li {
    padding: 0 0 8px;
  }
  .wrapper-menu-cat-top ul li {
    padding: 15px 0;
  }
  .wrapper-menu-cat-top ul li a {
    font-size: 18px !important;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li a {
    font-size: 15px !important;
  }
}
@media (max-width: 767px) {
  .navbar-default .navbar-collapse {
    border-color: var(--border-color);
  }
  .search-xs {
    position: absolute;
    right: 60px;
    width: 200px;
    top: 15px;
  }
  .navbar-toggle {
    transition: all 0.3s linear 0s;
    background: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    margin-right: 0;
  }
  .navbar-toggle .icon-bar {
    transition: all 0.3s linear 0s;
    background-color: #fff;
  }
  .navbar-default .navbar-toggle:focus,
  .navbar-default .navbar-toggle:hover {
    background: var(--primary-dark);
  }
  .navbar-default .navbar-toggle:focus .icon-bar,
  .navbar-default .navbar-toggle:hover .icon-bar {
    background: #fff;
  }
  .menu-title-small {
    float: left;
    font-size: 22px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .navbar-nav {
    margin: 0 -15px;
  }
  .wrapper-menu-cat-top {
    padding-bottom: 0;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul {
    padding: 5px 15px;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li {
    padding: 0;
  }
  .wrapper-menu-cat-top ul li {
    padding: 2px 0 2px 15px;
  }
  .wrapper-menu-cat-top ul li a {
    padding: 0;
    display: block;
    font-size: 14px;
    font-weight: 500;
  }
  div.wrapper-menu-cat-top ul.col-md-3 li ul li a {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 300;
  }
}
@media (max-width: 740px) {
  .menu-title-small {
    font-size: 18px;
    line-height: 48px;
    font-weight: 700;
  }
}
@media (max-width: 580px) {
  .menu-title-small {
    display: none !important;
  }
}
/*** Баннер ***/
.banner-wrapper {
  text-align: center;
  position: relative;
}
.banner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.banner-wrapper_table {
  display: table;
  width: 100%;
  position: relative;
  z-index: 2;
}
.banner-wrapper_table_cell {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
}
.banner-wrapper-line-title {
  color: #ffffff;
  display: inline-block;
  position: relative;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.banner-wrapper-big-title {
  color: #ffffff;
  display: block;
  padding: 20px 0;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.banner-wrapper a {
  border: 2px solid #ffffff;
  border-radius: var(--radius);
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin: 40px auto 0;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  width: auto;
}
.banner-wrapper a:hover {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .banner-wrapper_table_cell {
    height: 26.05vw;
    padding: 6vw 0;
  }
  .banner-wrapper-big-title {
    font-size: 5vw;
    line-height: 1.1;
  }
  .banner-wrapper-line-title {
    font-size: 1.5vw;
    padding: 0 4vw;
  }
}
@media (max-width: 767px) {
  .banner-wrapper_table_cell {
    padding: 60px 0;
  }
  .banner-wrapper-line-title {
    font-size: 20px;
    padding: 0 30px;
  }
  .banner-wrapper-big-title {
    font-size: 48px;
    line-height: 1.1;
  }
}

/*** Категории ***/
.cat-tree-img .col-md-3 {
  padding: 10px;
}
.cat-tree-img .col-md-3 img {
  transition: var(--transition);
  border-radius: var(--radius);
}
.cat-tree-img .col-md-3:hover img {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.cat-tree-img .col-md-3 a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.cat-tree-img .col-md-3 span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--text-main);
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cat-tree-img .col-md-3:hover span {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-5px);
}
.cat-tree-img .col-md-3:first-child span {
  bottom: 30px;
  left: 30px;
}

@media (min-width: 768px) {
  .cat-tree-img .col-md-3 span {
    font-size: 14px;
  }
  .cat-tree-img .col-md-3:first-child span {
    font-size: 20px;
  }
}

/*** Лучшие ***/
.we-best-wrp .col-md-3 {
  text-align: center;
  padding: 40px 20px;
  transition: var(--transition);
  border-radius: var(--radius);
}
.we-best-wrp .col-md-3:hover {
  background: var(--bg-alt);
  transform: translateY(-5px);
}
.we-best-wrp .col-md-3 img {
  margin-bottom: 24px;
  height: 64px;
  width: auto;
}
.we-best-wrp .col-md-3 .wrp-title {
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.5;
}
.we-best-wrp .col-md-3 .wrp-title span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1em;
}

/*** Форма ***/
.form-part {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/form.jpg) no-repeat top center / cover;
  padding: 80px 0;
}
.form-part-title {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}
.form-part-title span {
  color: var(--primary);
}
.form-part .form-group {
  margin-bottom: 20px;
}
.form-part .form-group input {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 12px 20px;
  transition: var(--transition);
}
.form-part .form-group input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}
.form-part .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-part .form-group.col-md-12.text-right {
  text-align: center !important;
  margin-top: 20px;
}
.form-part button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: poonest;
}
.form-part button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.bottom-with-button a:hover,
.bottom-with-button a:focus,
.bottom-with-button a:active,
.form-part .form-group.col-md-12.text-right button:hover,
.form-part .form-group.col-md-12.text-right button:focus,
.form-part .form-group.col-md-12.text-right button:active,
.button-center-art a:hover,
.button-center-art a:focus,
.button-center-art a:active,
.block-serv-parth a:hover,
.block-serv-parth a:focus,
.block-serv-parth a:active {
  background: #77c04b !important;
  color: #fff !important;
}
@media (min-width: 768px) {
  .form-part {
    padding: 60px 0;
  }
  .form-part form {
    padding: 0 100px;
  }
}
@media (min-width: 1200px) {
  .form-part form {
    padding: 0 160px;
  }
}
@media (max-width: 767px) {
  .form-part form {
    padding: 0 20px;
  }
}

/*** Истории клиентов ***/
.story-wrapper .col-md-3 {
  padding: 15px;
}
.story-image a {
  position: relative;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.story-title {
  display: block;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  background: var(--primary);
  padding: 12px 15px;
  font-weight: 600;
  transition: var(--transition);
}
.story-desc {
  border: 1px solid var(--border-color);
  border-top: none;
  color: var(--text-muted);
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px;
  line-height: 1.6;
}
.story-btn {
  text-align: center;
  margin-top: 30px;
}
.story-btn a {
  background: var(--primary);
  border-radius: var(--radius);
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 40px;
  transition: var(--transition);
  text-decoration: none;
}
.story-btn a:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.img-story-hidden {
  transition: var(--transition);
  opacity: 0;
  background: rgba(119, 192, 75, 0.9);
  backdrop-filter: blur(4px);
  bottom: 0;
  left: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-story-table {
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-story-cell {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
}
.img-story-link {
  transition: var(--transition);
  border: 2px solid #ffffff;
  border-radius: var(--radius);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 15px;
  padding: 8px 20px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.img-story-link:hover {
  background: #ffffff;
  color: var(--primary);
}
.story-wrapper .col-md-3:hover .img-story-hidden {
  opacity: 1;
}

@media (min-width: 768px) {
  .story-title {
    font-size: 16px;
  }
  .story-desc {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .story-wrapper .col-md-3 {
    width: 50%;
    float: left;
  }
}
@media (max-width: 480px) {
  .story-wrapper .col-md-3 {
    width: 100%;
    float: none;
  }
  .story-desc {
    font:
      16px/18px "onest",
      sans-serif;
    padding: 15px 10px 20px;
  }
  .story-btn {
    padding-top: 0;
  }
  .story-image img {
    width: 100%;
  }
}
/*** Наши работы ***/
.our-work .col-md-3,
.tab-content .col-md-3 {
  position: relative;
  transition: var(--transition);
}
.our-work .col-md-3:hover,
.tab-content .col-md-3:hover {
  transform: translateY(-5px);
}
.our-work .col-md-3 span.our-work-link,
.tab-content .col-md-3 span.our-work-link {
  transition: var(--transition);
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: rgba(119, 192, 75, 0.9);
  backdrop-filter: blur(8px);
  padding: 30px;
  opacity: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  height: 100%;
}
.our-work .col-md-3:hover span.our-work-link,
.tab-content .col-md-3:hover span.our-work-link {
  opacity: 1;
}
.our-work-table {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 4px);
}
.tab-content .our-work-table {
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.our-work-cell {
  text-align: center;
}
.our-work-title {
  display: block;
  color: #fff;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
}
.our-work-more {
  border: 2px solid #ffffff;
  border-radius: var(--radius);
  color: #ffffff;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}
.our-work-more:hover {
  background: #ffffff;
  color: var(--primary);
}
@media (min-width: 768px) {
  .our-work-title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .our-work-title {
    font-size: 22px;
    font-weight: 700;
  }
  .tab-content .our-work-title {
    font-size: 18px;
    font-weight: 700;
  }
}
@media (min-width: 1200px) {
  .our-work-title {
    font-size: 32px;
    font-weight: 700;
  }
  .tab-content .our-work-title {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .our-work-title {
    font-size: 28px;
    font-weight: 700;
  }
}
@media (max-width: 460px) {
  .our-work-title {
    font-size: 24px;
    font-weight: 700;
  }
  .our-work .col-md-3,
  .tab-content .col-md-3 {
    width: 100%;
  }
}
/*** О компании ***/
.we-best-out {
  padding-top: 20px;
}
.garant-wrapper .col-xs-5 {
  text-align: right;
  padding: 0;
}
.garant-wrapper .col-xs-5 img {
  display: inline-block;
}
.garant-wrapper .col-xs-5 + .col-xs-2 + .col-xs-5 {
  text-align: left;
}
.garant-wrapper .col-xs-5 span {
  color: var(--text-main);
  display: block;
  margin-top: 15px;
  font-weight: 500;
}
.garant-block {
  margin-bottom: 50px;
  position: relative;
  transition: var(--transition);
}
.garant-block:hover {
  transform: translateX(-5px);
}
.garant-wrapper .col-xs-5 + .col-xs-2 + .col-xs-5 .garant-block:hover {
  transform: translateX(5px);
}
.garant-wrapper .col-xs-5 + .col-xs-2 + .col-xs-5 .garant-block {
  margin: 105px 0 0;
}
.garant-wrapper .col-xs-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.garant-wrapper .col-xs-2 span {
  width: 2px;
  background: var(--primary);
  height: 345px;
  margin: 5px auto 0;
  display: block;
  opacity: 0.3;
}
.garant-block::after {
  background: var(--primary);
  border-radius: 100%;
  content: "";
  height: 12px;
  position: absolute;
  top: 43px;
  width: 12px;
  box-shadow: 0 0 0 4px var(--primary-light);
  z-index: 2;
}
/*** Мы лучшие ***/
.best-wrp {
  padding: 60px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/best.jpg) no-repeat top center / cover;
  text-align: center;
}
.best-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.best-block {
  flex: 1;
  min-width: 150px;
  padding: 20px;
  transition: var(--transition);
}
.best-block:hover {
  transform: translateY(-10px);
}
.best-block img {
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.best-block span {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
/*** Партнёры ***/
.part-wrapper {
  padding: 60px 0;
  background: var(--bg-alt);
}
.part-wrapper .owl-carousel .item img {
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
  max-width: 160px;
  margin: 0 auto;
}
.part-wrapper .owl-carousel .item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.part-wrapper .owl-controls i {
  display: none;
}
.part-wrapper .owl-buttons div {
  background: var(--bg-main) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow);
  color: var(--text-main) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 40px !important;
  width: 40px !important;
  opacity: 1 !important;
  transition: var(--transition);
  top: 50% !important;
  transform: translateY(-50%);
}
.part-wrapper .owl-buttons div:hover {
  background: var(--primary) !important;
  color: #fff !important;
}
@media (max-width: 460px) {
  .part-wrapper {
    padding-bottom: 35px;
  }
}
/*** Футер ***/
footer {
  background: #0f172a;
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 100px 0 50px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-title,
.footer-title-small {
  color: #f8fafc;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
footer .col-lg-4 ul {
  padding: 0;
  margin: 0;
  float: left;
  width: 50%;
}
footer .col-lg-3 ul {
  padding: 0;
  margin: 0;
}
footer .col-lg-4 ul li,
footer .col-lg-3 ul li {
  list-style: none;
  padding-bottom: 15px;
}
footer .col-lg-4 ul li a,
footer .col-lg-3 ul li a {
  color: #94a3b8;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
footer .col-lg-4 ul li a:hover,
footer .col-lg-3 ul li a:hover {
  color: var(--primary);
  transform: translateX(8px);
}
.footer-title-small {
  padding: 40px 0 25px;
}
.soc-footer {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.soc-footer a {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f8fafc;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.soc-footer a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(119, 192, 75, 0.4);
  border-color: var(--primary);
}
footer .col-lg-2 {
  padding-left: 0;
  color: #f8fafc;
  font:
    16px/1.6 "onest",
    sans-serif;
}
.footer-contact {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
  transition: color 0.3s ease;
}
.footer-contact:hover {
  color: var(--primary);
}
.footer-contact::before {
  content: "\f2b3";
  font-family: LineAwesome;
  left: 0;
  position: absolute;
  color: var(--primary);
}
.footer-contact + .footer-contact::before {
  content: "\f1c6";
}
.footer-contact + .footer-contact + .footer-contact::before {
  content: "\f27d";
}
.copyright {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font:
    14px/1 "onest",
    sans-serif;
  color: #64748b;
  text-align: center;
}
@media (max-width: 740px) {
  footer .col-lg-4 ul li a,
  footer .col-lg-3 ul li a {
    font:
      14px/1.4 "onest",
      sans-serif;
  }
  footer .col-lg-4 ul li,
  footer .col-lg-3 ul li {
    padding-bottom: 10px;
  }
  .footer-title {
    font:
      18px "onest",
      sans-serif;
  }
  footer .col-lg-2 {
    font:
      14px/1.4 "onest",
      sans-serif;
  }
  .soc-footer {
    gap: 8px;
  }
}
@media (max-width: 580px) {
  footer {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .copyright {
    margin-top: 30px;
  }
  footer .col-xs-5 {
    display: none;
  }
  footer .col-xs-4 {
    width: 50%;
  }
  footer .col-xs-3 {
    width: 50%;
    padding-left: 15px;
  }
  .footer-contact {
    position: relative;
  }
}
@media (max-width: 460px) {
  .soc-footer a {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .footer-title {
    padding-top: 5px;
    padding-bottom: 20px;
  }
}
@media (max-width: 350px) {
  .footer-contact {
    padding-left: 25px;
    margin-bottom: 10px;
  }
  footer .col-lg-2 {
    font:
      13px/1.4 "onest",
      sans-serif;
  }
  .soc-footer a {
    margin-right: 0;
  }
  .footer-title-small {
    font:
      16px/1.2 "onest",
      sans-serif;
    padding: 30px 0 20px;
  }
}
/*** Контент ***/
.order-block {
  text-align: center;
  padding-bottom: 15px;
}
.order-block img {
  margin-bottom: 20px;
}
.order-block strong {
  display: block;
  padding: 0 0 20px;
}
@media (min-width: 768px) {
  .order-block strong {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .order-block strong {
    font-size: 18px;
  }
}
@media (min-width: 767px) {
  .order-block strong {
    font-size: 16px;
  }
}
@media (max-width: 740px) {
  .order-block.col-xs-3 {
    width: 50%;
  }
}
@media (max-width: 580px) {
  .order-block strong {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  .order-block {
    width: 100%;
  }
}
.bottom-with-button {
  background: rgba(0, 0, 0, 0) url("../images/form2.jpg") no-repeat scroll
    center top / cover;
  color: #ffffff;
}
.bottom-with-button a,
.button-center-art a {
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
}
.bottom-with-button a:hover,
.button-center-art a:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .bottom-with-button {
    padding: 80px 0;
  }
  .bottom-with-button-title {
    font:
      28px "onest",
      sans-serif;
  }
  .bottom-with-button-title-big {
    font:
      italic 32px "onest",
      sans-serif;
    padding: 20px 0;
  }
  .bottom-with-button-title-big span {
    font-size: 70px;
  }
  .bottom-with-button a,
  .button-center-art a {
    font:
      20px/55px "onest",
      sans-serif;
    height: 55px;
    width: 290px;
  }
}
@media (min-width: 992px) {
  .bottom-with-button {
    padding: 100px 0;
  }
  .bottom-with-button-title {
    font:
      30px "onest",
      sans-serif;
  }
  .bottom-with-button-title-big {
    font:
      italic 40px "onest",
      sans-serif;
    padding: 15px 0;
  }
  .bottom-with-button-title-big span {
    font-size: 80px;
  }
  .bottom-with-button a,
  .button-center-art a {
    font:
      22px/65px "onest",
      sans-serif;
    height: 65px;
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .bottom-with-button {
    padding: 115px 0;
  }
  .bottom-with-button-title {
    font:
      36px "onest",
      sans-serif;
  }
  .bottom-with-button-title-big {
    font:
      italic 48px "onest",
      sans-serif;
    padding: 20px 0;
  }
  .bottom-with-button-title-big span {
    font-size: 100px;
  }
  .bottom-with-button a,
  .button-center-art a {
    font:
      24px/70px "onest",
      sans-serif;
    height: 70px;
    width: 320px;
  }
}
@media (max-width: 767px) {
  .bottom-with-button {
    padding: 80px 0;
  }
  .bottom-with-button-title {
    font:
      28px "onest",
      sans-serif;
  }
  .bottom-with-button-title-big {
    font:
      italic 32px "onest",
      sans-serif;
    padding: 20px 0;
  }
  .bottom-with-button-title-big span {
    font-size: 70px;
  }
  .bottom-with-button a,
  .button-center-art a {
    font:
      20px/55px "onest",
      sans-serif;
    height: 55px;
    width: 290px;
  }
}
@media (max-width: 740px) {
  .bottom-with-button {
    padding: 65px 0;
  }
  .bottom-with-button-title {
    font:
      24px "onest",
      sans-serif;
  }
  .bottom-with-button-title-big {
    font-size: 30px;
    font-style: italic;
    font-family: "onest", sans-serif;
    padding: 15px 0;
  }
  .bottom-with-button-title-big span {
    font-size: 60px;
  }
}
@media (max-width: 580px) {
  .bottom-with-button {
    padding: 50px 0;
  }
  .bottom-with-button-title {
    font:
      18px "onest",
      sans-serif;
  }
  .bottom-with-button-title-big {
    font:
      italic 26px "onest",
      sans-serif;
    padding: 10px 0;
  }
  .bottom-with-button-title-big span {
    font-size: 46px;
  }
  .bottom-with-button a,
  .button-center-art a {
    font:
      18px/50px "onest",
      sans-serif;
    height: 50px;
    width: 280px;
  }
}
.big-num {
  color: #77c04b;
  padding: 5px 0;
}
@media (min-width: 768px) {
  .big-num {
    font:
      50px/50px "onest",
      sans-serif;
  }
  .order-block small {
    font-size: 16px;
    line-height: 16px;
  }
  .wrp-line-right-left {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #ababab;
    border-bottom: 1px solid #ababab;
  }
}
@media (min-width: 992px) {
  .wrp-line-right-left {
    height: 295px;
    border-top: none !important;
    border-bottom: none !important;
    border-left: 1px solid #ababab;
    border-right: 1px solid #ababab;
    margin: 0;
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  .big-num {
    font:
      60px/60px "onest",
      sans-serif;
  }
  .order-block small {
    font-size: 18px;
    line-height: 18px;
  }
  .wrp-line-right-left {
    height: 440px;
  }
}
@media (max-width: 767px) {
  .big-num {
    font:
      50px/50px "onest",
      sans-serif;
  }
  .order-block small {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 580px) {
  .big-num {
    font:
      40px/40px "onest",
      sans-serif;
  }
  .order-block small {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 460px) {
  .big-num {
    font:
      32px/32px "onest",
      sans-serif;
  }
  .order-block small {
    font-size: 12px;
    line-height: 12px;
  }
}
.button-center-art {
  text-align: center;
  padding: 0 0 30px;
}
.icons-inline {
  text-align: center;
}
.icons-inline .order-block {
  display: inline-block;
  margin: 0 -2px;
}
@media (min-width: 768px) {
  .icons-inline .order-block {
    width: 33.333%;
    padding: 15px;
  }
  .icons-inline .order-block p {
    font-size: 16px;
    line-height: 18px;
  }
  .wrp-line-right-left {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #ababab;
    border-bottom: 1px solid #ababab;
  }
}
@media (min-width: 1200px) {
  .icons-inline .order-block {
    width: 20%;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .icons-inline .order-block {
    width: 33.333%;
    padding: 15px;
  }
  .icons-inline .order-block p {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 580px) {
  .icons-inline .order-block {
    width: 50%;
    padding: 15px;
  }
  .icons-inline .order-block p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 460px) {
  .big-num {
    font:
      32px/32px "onest",
      sans-serif;
  }
  .order-block small {
    font-size: 12px;
    line-height: 12px;
  }
  .icons-inline .order-block p {
    font-size: 12px;
    line-height: 14px;
  }
}
article .nav.nav-tabs {
  width: 100%;
  text-align: center;
  border: none;
}
article .nav.nav-tabs li {
  display: inline-block;
  float: none;
  border: none;
  padding: 0 15px;
}
article .nav.nav-tabs li::before {
  display: none;
  padding: 0;
}
article .nav.nav-tabs li a {
  margin: 0 !important;
  padding: 0 0 5px;
  border: none !important;
  font:
    18px/18px "onest",
    sans-serif;
  color: #b2b2b2;
  background: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0px !important;
}
article .nav-tabs > li.active > a,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: #000 !important;
  border: none !important;
  background: none !important;
  border-bottom: 2px solid #77c04b !important;
}
/*** Левый блок ***/
@media (min-width: 768px) {
  #left_column {
    margin-bottom: 65px;
    position: relative;
  }
}
.left_column {
  border-radius: 5px;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
}
.left_column .h4 {
  background: #fff !important;
  color: #333333;
  font:
    24px/24px "onest",
    sans-serif !important;
  margin: 0;
  text-transform: none !important;
  padding: 10px 0 !important;
}
.left_column .h4 i {
  color: #b2b2b2;
  font-size: 18px;
}
.side-nav {
  border: none !important;
}
ul.side-nav > li {
  display: block;
  padding: 3px 0;
}
.side-nav li a {
  font:
    14px "onest",
    sans-serif;
  padding: 0 !important;
  text-transform: none !important;
  border: none !important;
  display: inline-block;
}
ul.side-nav > li.active > a,
ul.side-nav > li > a:hover,
ul.side-nav > li:hover > a,
ul.side-nav > li:focus > a,
ul.side-nav > li.active a.current {
  font-weight: 400 !important;
  background: none !important;
  border-bottom: 1px solid #77c04b !important;
  padding: 1px 0 !important;
}
.menu-vertical .nav li > ul.dropdown-menu {
  position: static;
}
.menu-vertical .nav li.active > ul.dropdown-menu {
  display: block;
  position: static;
}
.menu-vertical .nav li:hover > ul.dropdown-menu,
.menu-vertical .sidebar-vertical .sidebar-nav .navbar ul {
  border-radius: 0;
  padding: 0;
  border: none !important;
  background: #fff;
  box-shadow: none !important;
  margin: 0 !important;
}
div.sidebar-vertical
  div.sidebar-nav
  ul.nav.navbar-nav.side-nav
  li.dropdown
  ul.dropdown-menu {
  padding: 5px 0 0 15px;
}
div.sidebar-vertical
  div.sidebar-nav
  ul.nav.navbar-nav.side-nav
  li.dropdown
  ul.dropdown-menu
  li
  a {
  font-size: 13px;
}
.menu-vertical .nav li:hover > ul.dropdown-menu a:hover {
  font-weight: 400 !important;
  background: none !important;
  border-bottom: 1px solid #77c04b !important;
  padding: 1px 0 !important;
}
.menu-vertical .nav li {
  padding: 3px 0;
}
.block_content {
  padding-bottom: 20px;
}
.block_content .checkbox {
  margin: 3px 25px;
}
.block_content > div {
  padding: 0 15px;
}
.price-block > div {
  padding: 20px 10px 0;
}
.price-block div.form-group + div.form-group {
  padding: 0;
}
.ui-slider .ui-slider-handle::before {
  display: none;
}
.ui-slider .ui-slider-handle {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  border-radius: 100%;
  height: 18px;
  margin-top: -1px;
  outline: medium none;
  position: absolute;
  text-decoration: none;
  width: 18px;
  z-index: 2;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
  cursor: poonest;
}
.slider-wrapper,
.sliderv-wrapper {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 100px;
  box-shadow: 0 0 0 1px #d7d7d7 inset;
  position: relative;
}
.ui-slider .ui-slider-range {
  background: #77c04b;
}
#flat_price {
  font-size: 16px;
  color: #808080;
}
.select_color {
  border-color: #77c04b;
  box-shadow: 0 0 0 1px #77c04b;
}
.filter-button {
  padding-bottom: 20px;
  text-align: center;
}
.f-link,
.morebtn {
  border: 1px solid #77c04b;
  border-radius: 3px;
  color: #333333;
  display: inline-block;
  font:
    14px/26px "onest",
    sans-serif;
  height: 26px;
  margin: 0 4px;
  text-align: center;
  text-transform: uppercase;
  width: 45%;
}
.f-link:hover,
.morebtn:hover {
  color: #fff;
  background: #77c04b;
}
/*** Список товаров ***/
.padding-bottom-no-pages {
  padding-bottom: 80px;
}
.link-dropdown {
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
  cursor: poonest;
}
.link-dropdown::before {
  color: #333333;
  font: 12px "LineAwesome";
  content: "\f112";
}
.link-dropdown.menu-open::before,
li.dropdown.active .link-dropdown::before {
  content: "\f110";
}
.menu-open + a + ul.dropdown-menu {
  display: block;
}
.product_list {
  margin: 0 -10px;
}
.product_list .col-lg-3 {
  padding: 0 10px;
}
.product_list .shop-item {
  transition: all 0.3s linear 0s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  position: relative;
}
.product_list-image {
  position: relative;
}
.product_list-image img {
  border-radius: 4px 4px 0 0;
}
.product_list-image span {
  position: absolute;
  right: -2px;
  top: 5px;
  z-index: 1;
}
div.shop-item {
  margin-bottom: 30px;
}
div.shop-item-summary {
  padding: 15px;
  position: relative;
}
div.shop-item-summary .product-name {
  font:
    18px "onest",
    sans-serif;
  color: #333;
  display: block;
  padding-bottom: 10px;
}
.product-name span {
  display: table;
  width: 100%;
  height: 66px;
}
.product-name span span {
  display: table-cell;
  vertical-align: middle;
}
.shop-item-price {
  font:
    24px/36px "onest",
    sans-serif;
  color: #333333;
}
.shop-item-price i {
  font-size: 18px;
}
.cart-button {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #77c04b;
  display: block;
  color: #fff;
  float: right;
  text-align: center;
  font-size: 24px;
  line-height: 38px;
}
.cart-button:hover,
.cart-button:focus,
.cart-button:active {
  color: #333;
  background: #ffd22e;
}
.hidden-list-chars {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.3);
  margin-top: -5px;
  opacity: 0;
  padding: 5px 15px 15px;
  position: absolute;
  visibility: hidden;
  width: 100%;
  z-index: 10;
  transition: all 0.3s linear 0s;
}
.hidden-list-chars ul {
  margin: 0;
  padding: 0;
}
.hidden-list-chars li {
  color: #898888;
  display: block;
  font:
    11px "onest",
    sans-serif;
  height: 15px;
  list-style: outside none none;
  margin: 3px 0;
  position: relative;
  text-transform: lowercase;
}
.hidden-list-chars li::after {
  border-bottom: 1px dotted #898888;
  content: "";
  height: 2px;
  position: absolute;
  top: 8px;
  width: 100%;
}
.hidden-list-chars li span {
  background: #ffffff none repeat scroll 0 0;
  float: left;
  padding-left: 0;
  padding-right: 3px;
  position: relative;
  z-index: 1;
}
.hidden-list-chars li span + span {
  float: right;
  padding-left: 3px;
  padding-right: 0;
}
.morebtn {
  display: block;
  margin: 10px auto 0;
  width: 100px;
}
.product_list .col-lg-3:hover .hidden-list-chars {
  visibility: visible;
  opacity: 1;
}
.product_list .col-lg-3:hover .shop-item {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
#selectProductSort {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  background: #ffffff url("../images/select-arrow.png") no-repeat scroll 96%
    center;
}
.shop-list-options {
  font:
    16px "onest",
    sans-serif;
  color: #7e7e7e;
}
.filter-title-nav {
  float: left;
}
@media (max-width: 580px) {
  .product_list .col-lg-3 {
    width: 50%;
  }
}
@media (max-width: 460px) {
  .product_list .col-lg-3 {
    width: 100%;
  }
}
/*** Товар ***/
#image-block,
#image-block img,
#image-block a {
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  min-height: auto !important;
}
.zoom-more {
  margin-bottom: 0;
  margin-top: 23px !important;
}
.zoom-more img {
  width: 100%;
  height: auto;
}
.proudct h1 {
  margin: -10px 0 0;
  padding: 0 0 20px;
  text-align: left;
}
.product-desc {
}
.product-desc p {
  font:
    16px/20px "onest",
    sans-serif;
  color: #333;
  text-align: justify;
}
.property {
  padding: 30px 0;
}
.property .wrp-prop {
  color: #333333;
  display: block !important;
  font:
    18px/32px "onest",
    sans-serif;
  position: relative;
  width: 100%;
}
.property .wrp-prop::after {
  border-bottom: 2px dotted #898888;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 20px;
  width: 100%;
}
.property span {
  background: #ffffff none repeat scroll 0 0;
  float: left;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}
.property span + span {
  float: right;
  padding-left: 15px;
  padding-right: 0;
}
.property .shop-char-26 span + span {
  width: 80%;
  text-align: right;
}
.property span ul {
  margin: 0 !important;
  padding: 0 !important;
}
.property span ul li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.property span span {
  border: medium none;
  float: none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto !important;
}
.color_group {
  font-weight: 400;
}
.delivery-info {
  color: #333333;
  font:
    16px "onest",
    sans-serif;
  padding-bottom: 30px;
}
.delivery-info i {
  color: #77c04b;
  font-size: 32px;
  vertical-align: sub;
  margin-right: 5px;
}
.title-price-product {
  font:
    24px/32px "onest",
    sans-serif;
  color: #333;
}
.product-price #price {
  font:
    32px/32px "onest",
    sans-serif;
  color: #333;
}
.product-price i {
  font-size: 24px;
  line-height: 32px;
}
.proudct div.shop-item-price {
  padding-bottom: 35px;
}
.proudct .addToCart {
  background: #77c04b;
  font:
    20px/50px "onest",
    sans-serif;
  color: #fff;
  border-radius: 4px;
  float: right;
  padding: 0 15px;
}
.proudct .addToCart:hover,
.proudct .addToCart:active,
.proudct .addToCart:focus {
  background: #ffd22e none repeat scroll 0 0 !important;
  color: #333333 !important;
}
.proudct .addToCart i {
  padding: 0;
  font-size: 24px;
}
.wrp-spinner span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 -2px;
  width: 20px;
}
.wrp-spinner span:nth-child(2) {
  width: 100px;
}
.wrp-spinner input {
  width: 100px;
  height: 24px;
  border: none;
  font:
    24px "onest",
    sans-serif;
  color: #333;
  text-align: center;
}
.wrp-spinner button {
  width: 20px;
  height: 20px;
  color: #333;
  border: 2px solid #333333;
  border-radius: 100%;
}
.wrp-spinner button i {
  padding: 0;
  font-size: 12px;
}
.wrp-spinner-title {
  color: #333333;
  font:
    24px/32px "onest",
    sans-serif;
  padding: 5px 0 10px;
}
.car-product .hidden-list-chars {
  display: none;
}
.car-product .owl-pagination {
  text-align: center;
}
.product_list.car-product div.owl-pagination div.owl-page span {
  background: #e9e9e9 !important;
}
.product_list.car-product div.owl-pagination div.owl-page.active span {
  background: #77c04b !important;
}
.color_char.uittip {
  background: none !important;
}
@media (min-width: 768px) {
  .proudct .col-lg-6.col-md-7.col-xs-12 {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .proudct .col-lg-6.col-md-7.col-xs-12 {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .proudct .col-lg-6.col-md-7.col-xs-12 {
    padding-top: 30px;
  }
}
@media (max-width: 580px) {
  .delivery-info .pull-left,
  .delivery-info .pull-right {
    float: none !important;
    text-align: center;
  }
  .product-price #price {
    font-size: 28px;
  }
  .product-price i {
    font-size: 20px;
  }
}
@media (max-width: 460px) {
  #views_block {
    margin: 0 -5px !important;
  }
  .zoom-more.owl-carousel.owl-padding-15 .owl-item {
    padding: 0 5px !important;
  }
  .zoom-more {
    margin-top: 3px !important;
  }
  .product-desc p {
    font:
      14px/18px "onest",
      sans-serif;
  }
  .property {
    padding: 10px 0;
  }
  .property .wrp-prop {
    font:
      14px/26px "onest",
      sans-serif;
  }
  .wrp-order-price-item .col-xs-6 {
    width: 100%;
    text-align: center !important;
  }
  .delivery-info {
    padding-bottom: 10px;
    font-size: 14px;
  }
  .delivery-info i {
    font-size: 24px;
  }
  .wrp-spinner-title {
    font:
      20px/26px "onest",
      sans-serif;
  }
  .proudct div.shop-item-price {
    padding: 5px 0 0;
  }
  .product-price #price {
    font-size: 22px;
  }
  .product-price i {
    font-size: 18px;
  }
  .proudct .addToCart {
    float: none;
    margin: 10px auto 0;
    display: block;
    width: 260px;
  }
}
/*** Контент ***/
.block-serv-parth {
  border-top: 1px solid #adadad;
  padding: 35px 0;
}
.block-serv-parth-title {
  color: #333;
  text-transform: uppercase;
}
.block-serv-parth-small {
  color: #333;
  padding-top: 10px;
}
.block-serv-parth .h1 {
  padding: 0;
  text-align: left;
  padding: 30px 0 30px;
}
.block-serv-parth a {
  font:
    18px/40px "onest",
    sans-serif;
  width: 150px;
  border-radius: 5px;
  color: #333;
  text-transform: uppercase;
  background: #ffd22e;
  display: block;
  text-align: center;
}
.block-serv-parth table {
  width: 100%;
}
.block-serv-parth table tr {
  border-bottom: 1px solid #adadad;
}
.block-serv-parth table tr:last-child {
  border: none;
}
.block-serv-parth table td {
  padding: 15px 0;
}
@media (min-width: 768px) {
  .block-serv-parth-title {
    font:
      18px/18px "onest",
      sans-serif;
  }
  .block-serv-parth-small {
    font:
      18px/22px "onest",
      sans-serif;
  }
  .block-serv-parth table {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .block-serv-parth-title {
    font:
      20px/20px "onest",
      sans-serif;
  }
  .block-serv-parth-small {
    font:
      20px/24px "onest",
      sans-serif;
  }
  .block-serv-parth table {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .block-serv-parth-title {
    font:
      24px/24px "onest",
      sans-serif;
  }
  .block-serv-parth-small {
    font:
      24px/28px "onest",
      sans-serif;
  }
  .block-serv-parth table {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .block-serv-parth-title {
    font:
      18px/18px "onest",
      sans-serif;
  }
  .block-serv-parth-small {
    font:
      18px/22px "onest",
      sans-serif;
  }
  .block-serv-parth table {
    font-size: 14px;
  }
}
@media (max-width: 740px) {
  .block-serv-parth-title {
    font:
      16px/16px "onest",
      sans-serif;
  }
  .block-serv-parth-small {
    font:
      16px/20px "onest",
      sans-serif;
  }
}
@media (max-width: 580px) {
  .block-serv-parth .col-xs-4,
  .block-serv-parth .col-xs-8 {
    width: 100%;
  }
  .block-serv-parth .col-xs-4 {
    padding-bottom: 10px;
  }
  .block-serv-parth .h1 {
    padding: 10px 0;
  }
  .block-serv-parth {
    padding: 20px 0;
  }
}
@media (max-width: 460px) {
  .block-serv-parth table {
    font-size: 12px;
  }
  .block-serv-parth-small {
    font:
      14px/18px "onest",
      sans-serif;
  }
}
.proj-wrp {
  background: url(../images/bg-proj.jpg) no-repeat top center / cover !important;
  background-position:;
  color: #fff;
}
.proj-wrp h1 {
  color: #fff;
  padding: 0;
}
.proj-desc {
  position: relative;
}
.proj-desc::after {
  height: 2px;
  width: 120px;
  left: 50%;
  margin-left: -60px;
  bottom: 0;
  background: #fff;
  content: "";
  position: absolute;
}
.proj-num-block span {
  display: block;
}
.desc-project-left .col-md-6,
.desc-project-right .col-md-6 {
  padding: 0;
}
.proj-table {
  display: table;
  width: 100%;
  height: 100%;
}
.proj-row {
  display: table-row;
}
.proj-cell {
  display: table-cell;
  vertical-align: middle;
}
.desc-project-left .col-md-6 {
  position: relative;
}
.desc-project-left .col-md-6::after {
  position: absolute;
  content: "";
  margin-top: 0;
  z-index: 10;
}
.desc-project-left .col-md-6 + .col-md-6,
.desc-project-right .col-md-6 + .col-md-6 {
  padding: 0;
}
.desc-project-left .col-md-6 + .col-md-6::after,
.desc-project-right .col-md-6 + .col-md-6::before {
  display: none;
}
.desc-project-right .col-md-6 {
  position: relative;
}
.desc-project-right .col-md-6::before {
  position: absolute;
  content: "";
  margin-top: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .proj-wrp {
    padding: 40px 0;
  }
  .proj-wrp h1 {
    font-size: 32px;
  }
  .proj-desc {
    font:
      italic 18px/18px "onest",
      sans-serif;
    padding: 15px 0;
  }
  .proj-num-block {
    padding-top: 15px;
    font:
      18px/24px "onest",
      sans-serif;
  }
  .proj-num-block span {
    font:
      40px/30px "onest",
      sans-serif;
    padding: 15px 0;
  }
  .desc-project-left .col-md-6,
  .desc-project-right .col-md-6 {
    padding: 20px 50px;
    text-align: center;
  }
  .desc-project-left .h2,
  .desc-project-right .h2 {
    padding: 0 0 15px;
    text-align: center !important;
  }
  .desc-project-right .col-md-6::before,
  .desc-project-left .col-md-6::after {
    margin-right: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #fff;
    right: 50%;
    bottom: -60px;
  }
}
@media (min-width: 992px) {
  .proj-wrp {
    padding: 60px 0;
  }
  .proj-wrp h1 {
    font-size: 40px;
  }
  .proj-desc {
    font:
      italic 20px/20px "onest",
      sans-serif;
    padding: 20px 0;
  }
  .proj-num-block {
    padding-top: 20px;
    font:
      20px/28px "onest",
      sans-serif;
  }
  .proj-num-block span {
    font:
      50px/40px "onest",
      sans-serif;
    padding: 20px 0;
  }
  .desc-project-left .col-md-6,
  .desc-project-right .col-md-6 {
    padding: 0 60px;
    text-align: left;
  }
  .proj-cell {
    height: 315px;
  }
  .desc-project-left .h2,
  .desc-project-right .h2 {
    padding: 10px 0 15px;
    text-align: left !important;
  }
  .desc-project-right .col-md-6::before {
    margin-right: 0;
    border: 30px solid transparent;
    border-right: 30px solid #fff;
    left: -60px;
    right: auto;
    top: 50%;
    bottom: auto;
  }
  .desc-project-left .col-md-6::after {
    margin-right: 0;
    border: 30px solid transparent;
    border-left: 30px solid #fff;
    right: -60px;
    top: 50%;
    bottom: auto;
  }
}
@media (min-width: 1200px) {
  .proj-wrp {
    padding: 90px 0;
  }
  .proj-wrp h1 {
    font-size: 48px;
  }
  .proj-desc {
    font:
      italic 24px/24px "onestmedium",
      sans-serif;
    padding: 30px 0;
  }
  .proj-num-block {
    padding-top: 30px;
    font:
      24px/30px "onestmedium",
      sans-serif;
  }
  .proj-num-block span {
    font:
      60px/48px "onestmedium",
      sans-serif;
    padding: 30px 0;
  }
  .desc-project-left .col-md-6 {
    padding: 0 0 4vw 0 3vw;
  }
  .desc-project-right .col-md-6 {
    padding: 0 4vw 0 3vw;
  }
  .desc-project-left .h2,
  .desc-project-right .h2 {
    padding: 50px 0 35px;
  }
  .proj-cell {
    height: 25vw;
  }
}
@media (max-width: 767px) {
  .proj-wrp {
    padding: 40px 0;
  }
  .proj-wrp h1 {
    font-size: 32px;
  }
  .proj-desc {
    font:
      italic 18px/18px "onestmedium",
      sans-serif;
    padding: 15px 0;
  }
  .proj-num-block {
    padding-top: 15px;
    font:
      18px/24px "onestmedium",
      sans-serif;
  }
  .proj-num-block span {
    font:
      40px/30px "onestmedium",
      sans-serif;
    padding: 15px 0;
  }
  .desc-project-left .col-md-6,
  .desc-project-right .col-md-6 {
    padding: 20px 50px;
    text-align: center;
  }
  .desc-project-left .h2,
  .desc-project-right .h2 {
    padding: 0 0 15px;
    text-align: center !important;
  }
  .desc-project-right .col-md-6::before,
  .desc-project-left .col-md-6::after {
    margin-right: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #fff;
    right: 50%;
    bottom: -60px;
  }
}
@media (max-width: 740px) {
  .proj-wrp h1 {
    font-size: 30px;
  }
  .proj-desc {
    font:
      italic 16px/16px "onestmedium",
      sans-serif;
  }
  .proj-num-block {
    font:
      16px/22px "onestmedium",
      sans-serif;
  }
  .proj-num-block span {
    font:
      30px/20px "onestmedium",
      sans-serif;
  }
}
@media (max-width: 580px) {
  .proj-wrp h1 {
    font-size: 26px;
  }
  .proj-desc {
    font:
      italic 14px/14px "onestmedium",
      sans-serif;
  }
  .proj-num-block {
    font:
      14px/16px "onestmedium",
      sans-serif;
  }
}
@media (max-width: 460px) {
  .proj-wrp {
    padding: 30px 0;
  }
  .proj-num-block {
    font:
      12px/14px "onestmedium",
      sans-serif;
  }
  .proj-num-block span {
    font:
      26px/20px "onestmedium",
      sans-serif;
  }
  .desc-project-left .col-md-6,
  .desc-project-right .col-md-6 {
    padding: 20px 15px;
  }
}
/*** Окно ***/
.padding-6 {
  padding: 0 !important;
}
h2.text-warning,
.fancybox-slide .h3 {
  background: #e9e9e9 none repeat scroll 0 0;
  color: #000 !important;
  font:
    22px/28px "onest",
    sans-serif;
  padding: 15px;
  text-transform: uppercase;
  margin: 0;
  border: none;
}
.fancybox-opened .fancybox-skin {
  box-shadow: none !important;
  padding: 0 !important;
}
.fancybox-close::before,
.fancybox-close::after {
  background: #fff;
}
.fancybox-close::before,
.fancybox-close::after {
  left: 12px;
  top: 16px;
}
#popup_message,
#id_new_comment_form {
  font-size: 14px;
  margin: 0;
  padding: 15px;
}
.text-form {
  font:
    14px/20px "onestmedium",
    sans-serif;
  padding: 0 0 20px;
  text-align: center;
}
#popup_message .form-control {
  border: 1px solid #77c04b;
  border-radius: 5px;
  font:
    16px "onestmedium",
    sans-serif;
  height: 40px;
  padding: 0 15px;
  width: 100%;
}
#popup_message .input-group {
  width: 100%;
}
#popup_message fieldset {
  margin: 0;
}
#popup_message .control-label {
  color: #ff0000;
  font-size: 12px;
}
.price-form {
  background: #006666 none repeat scroll 0 0;
  color: #ffffff;
  font-size: 28px;
  margin: 15px 0;
  padding: 15px 0;
  text-align: center;
}
.price-form i {
  font-size: 22px;
}
.ofert-form {
  font:
    14px/20px "onest",
    sans-serif;
}
.modal-footer {
  border: none;
}
#popup_message .form-group.col-md-12.text-right {
  text-align: center !important;
}
#popup_message .form-group button {
  font:
    16px "onest",
    sans-serif;
  width: 50%;
  border-radius: 0px;
  margin: 0 -2px !important;
  background: #ffd22e;
  border: none;
  border-radius: 5px;
  color: #333;
  text-transform: uppercase;
}
#popup_message .form-group button:hover {
  background: #77c04b;
  color: #fff;
}
#popup_message .input-group-addon {
  display: none;
}
#popup_message select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url("../images/select-arrow.png") no-repeat scroll 96%
    center;
  cursor: poonest;
}
#popup_message textarea {
  height: 100px !important;
  padding-top: 5px !important;
}
/*** Контакты ***/
.cont-form .input-group-addon {
  display: none;
}
.cont-form .input-group {
  display: block;
}
.cont-form .form-control {
  float: none;
}
.cont-form input[type="text"],
.cont-form textarea {
  height: 40px;
  border-color: #77c04b;
  border-radius: 0px;
  color: #333;
  font:
    18px "onest",
    sans-serif;
  padding: 0 15px;
}
.cont-form textarea {
  height: 120px;
  resize: none;
  padding-top: 10px;
}
.cont-form .btn {
  width: 180px;
  font:
    20px "onestmedium",
    sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  background: #77c04b;
  border-radius: 4px;
  border: none;
  height: 50px;
  padding: 0;
}
.cont-form .btn:hover {
  background: #ffd22e;
  color: #333;
}
#map {
  position: relative;
}
.map-title {
  position: absolute;
  width: 360px;
  right: 50%;
  margin-right: -180px;
  top: 30px;
  font:
    24px/56px "onestmedium",
    sans-serif;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
  text-align: center;
  z-index: 1;
}
.padding-top-0 {
  padding-top: 0;
}
.video-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.video-link::before {
  transition: all 0.3s linear 0s;
  background: rgba(0, 0, 0, 0.6) url(../images/play.png) no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.video-link:hover::before {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0) url(../images/play.png) no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
@media (min-width: 768px) {
  .cont-title {
    font:
      16px/16px "onestmedium",
      sans-serif;
    padding-bottom: 5px;
  }
  .cont-desc {
    font:
      20px/30px "onestmedium",
      sans-serif;
    padding-bottom: 35px;
  }
  .cont-form .form-group {
    margin-bottom: 15px;
  }
  #map {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .cont-title {
    font:
      18px/18px "onestmedium",
      sans-serif;
  }
  .cont-desc {
    font:
      24px/34px "onestmedium",
      sans-serif;
    padding-bottom: 45px;
  }
  .cont-form .form-group {
    margin-bottom: 30px;
  }
  #map {
    height: 550px;
    margin-top: -60px;
  }
}
@media (min-width: 1200px) {
  #map {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cont-title {
    font:
      16px/16px "onestmedium",
      sans-serif;
    padding-bottom: 5px;
  }
  .cont-desc {
    font:
      20px/30px "onestmedium",
      sans-serif;
    padding-bottom: 35px;
  }
  .cont-form .form-group {
    margin-bottom: 15px;
  }
  #map {
    height: 450px;
  }
}
@media (max-width: 740px) {
  .cont-title {
    font:
      14px/14px "onestmedium",
      sans-serif;
  }
  .cont-desc {
    font:
      16px/26px "onestmedium",
      sans-serif;
    padding-bottom: 30px;
  }
  .cont-form .form-group {
    margin-bottom: 15px;
  }
  #map {
    height: 400px;
  }
}
@media (max-width: 580px) {
  .cont-wrapper .col-xs-6 {
    width: 100%;
    float: none;
  }
  .cont-desc {
    padding-bottom: 20px;
  }
  .map-title {
    width: 300px;
    margin-right: -150px;
    font-size: 18px;
    line-height: 40px;
    top: 20px;
  }
}
.about-section {
    padding: 60px 20px;
    background: var(--bg-main);
    max-width: 1400px;
    margin: 0 auto;
}

.about-section__intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.about-section__lead {
    font-family: "onestmedium", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
    font-weight: 400;
}

.product-categories {
    margin-bottom: 60px;
}

.product-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: var(--transition);
    cursor: default;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    background: var(--bg-main);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.product-card__icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover .product-card__icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.3);
}

.product-card__icon {
    width: 50px;
    height: 50px;
    filter: grayscale(100%) brightness(0.5);
    transition: var(--transition);
}

.product-card:hover .product-card__icon {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.product-card__title {
    font-family: "onestmedium", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    line-height: 1.4;
    transition: var(--transition);
}

.product-card:hover .product-card__title {
    color: var(--primary);
}

.about-section__content {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-section__content p {
    font-family: "onest", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0 0 20px;
}

.about-section__highlight {
    font-weight: 600;
    color: var(--primary);
    font-size: 19px;
    line-height: 1.6;
    margin-top: 10px;
}

.partnership {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-color);
}

.partnership__title {
    font-family: "onestmedium", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin: 0 0 25px;
}

.partnership__description {
    font-family: "onestmedium", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-main);
    text-align: center;
    margin: 30px 0 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partnership__link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.partnership__link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.partnership__link:hover {
    color: var(--primary-dark);
}

.partnership__link:hover::after {
    opacity: 1;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.doc-card {
    background: var(--bg-main);
    border-radius: var(--radius);
    padding: 30px 25px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.doc-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.doc-card--featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0.7) 100%);
    border-color: var(--primary);
    position: relative;
    z-index: 2;
}

.doc-card--featured::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary);
}

.doc-card__type {
    font-family: "onestmedium", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 20px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.doc-card__type::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.doc-card--featured .doc-card__type::after {
    background: var(--primary-dark);
}

.doc-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.doc-card__list li {
    font-family: "onestmedium", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    padding: 6px 0 6px 25px;
    position: relative;
}

.doc-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.doc-card--featured .doc-card__list li::before {
    color: var(--primary-dark);
}


@media (max-width: 767px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-section__intro {
        margin-bottom: 40px;
    }

    .about-section__lead {
        font-size: 15px;
        line-height: 1.6;
    }

    .product-categories {
        margin-bottom: 40px;
    }

    .product-categories__grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        padding: 25px 15px;
    }

    .product-card__icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .product-card__icon {
        width: 40px;
        height: 40px;
    }

    .product-card__title {
        font-size: 15px;
    }

    .about-section__content {
        margin-bottom: 40px;
    }

    .about-section__content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .about-section__highlight {
        font-size: 16px;
    }

    .partnership {
        padding: 40px 0 20px;
    }

    .partnership__title {
        font-size: 26px;
        font-weight: 700;
    }

    .partnership__description {
        font-size: 15px;
        line-height: 1.6;
        margin: 25px 0 30px;
    }

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

    .doc-card {
        padding: 25px 20px;
    }

    .doc-card__type {
        font-size: 17px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .doc-card__type::after {
        width: 30px;
    }

    .doc-card__list li {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 22px;
    }

    .doc-card--featured::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-section__intro {
        margin-bottom: 30px;
    }

    .about-section__lead {
        font-size: 14px;
        line-height: 1.5;
    }

    .product-categories {
        margin-bottom: 30px;
    }

    .product-categories__grid {
        gap: 15px;
    }

    .product-card {
        padding: 20px 12px;
    }

    .product-card__icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .product-card__icon {
        width: 35px;
        height: 35px;
    }

    .product-card__title {
        font-size: 14px;
    }

    .about-section__content {
        margin-bottom: 30px;
    }

    .about-section__content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .about-section__highlight {
        font-size: 15px;
    }

    .partnership {
        padding: 30px 0 15px;
    }

    .partnership__title {
        font-size: 22px;
    }

    .partnership__description {
        font-size: 14px;
        line-height: 1.5;
        margin: 20px 0 25px;
    }

    .docs-grid {
        gap: 15px;
    }

    .doc-card {
        padding: 20px 15px;
    }

    .doc-card__type {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .doc-card__type::after {
        width: 25px;
    }

    .doc-card__list li {
        font-size: 13px;
        line-height: 1.6;
        padding-left: 20px;
    }
}

.contacts {
  padding: 50px 0;
  background-color: var(--bg-main);
}

.contacts__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Информация */
.contacts__info {
  font-style: normal;
}

.contacts__address,
.contacts__phones,
.contacts__email {
  margin-bottom: 25px;
}

.contacts__label {
  display: block;
  font-family: 'onest', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 6px;
}

.contacts__text {
  font-family: 'onest', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-main);
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts__link {
  font-family: 'onest', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts__link:hover {
  color: var(--primary-dark);
}

.contacts__link--email {
  display: inline-block;
}

/* Форма */
.contacts__form-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contacts__form-text {
  font-family: 'onest', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
}

.contacts__form {
  /* Стили формы будут применяться к её внутренним элементам */
}

/* Адаптивность */
@media (max-width: 767px) {
  .contacts {
    padding: 40px 0;
  }

  .contacts__inner {
    padding: 0 15px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts__label {
    font-size: 16px;
  }

  .contacts__text,
  .contacts__link {
    font-size: 16px;
  }

  .contacts__form-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contacts {
    padding: 30px 0;
  }

  .contacts__grid {
    gap: 25px;
  }

  .contacts__label {
    font-size: 15px;
  }

  .contacts__text,
  .contacts__link {
    font-size: 15px;
  }

  .contacts__form-text {
    font-size: 15px;
  }
}
.order-info {
  padding: 60px 0;
  background-color: var(--bg-main);
}

.order-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Секции */
.order-info__section {
  margin-bottom: 60px;
}

.order-info__section:last-child {
  margin-bottom: 0;
}

/* Заголовок секции */
.order-info__title {
  font-family: 'onest', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-main);
  text-align: center;
  margin: 0 0 40px;
}

/* Текст параграфа */
.order-info__paragraph {
  font-family: 'onest', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0 0 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Сетка */
.order-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Элементы сетки */
.order-info__item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.order-info__item:hover {
  background-color: var(--bg-main);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Иконка */
.order-info__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.order-info__item:hover .order-info__icon {
  background-color: var(--bg-main);
  border-color: var(--primary);
}

.order-info__icon img {
  width: 45px;
  height: 45px;
  filter: grayscale(0);
  transition: var(--transition);
}

.order-info__item:hover .order-info__icon img {
  filter: brightness(0.7);
}

/* Заголовок элемента */
.order-info__heading {
  font-family: 'onest', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 15px;
  transition: var(--transition);
}

.order-info__item:hover .order-info__heading {
  color: var(--primary);
}

/* Текст элемента */
.order-info__text {
  font-family: 'onest', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

/* Контент доставки */
.order-info__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.order-info__block {
  padding: 25px;
  background-color: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.order-info__block:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 991px) {
  .order-info {
    padding: 50px 0;
  }

  .order-info__title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .order-info__paragraph {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .order-info__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .order-info__item {
    padding: 25px 15px;
  }

  .order-info__icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .order-info__icon img {
    width: 40px;
    height: 40px;
  }

  .order-info__heading {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .order-info__text {
    font-size: 15px;
  }

  .order-info__content {
    grid-template-columns: 1fr;
  }

  .order-info__block {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .order-info {
    padding: 40px 0;
  }

  .order-info__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .order-info__paragraph {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .order-info__section {
    margin-bottom: 45px;
  }

  .order-info__grid {
    grid-template-columns: 1fr;
  }

  .order-info__item {
    padding: 20px 12px;
  }

  .order-info__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .order-info__icon img {
    width: 35px;
    height: 35px;
  }

  .order-info__heading {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .order-info__text {
    font-size: 14px;
  }

  .order-info__block {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .order-info {
    padding: 30px 0;
  }

  .order-info__container {
    padding: 0 15px;
  }

  .order-info__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .order-info__paragraph {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .order-info__section {
    margin-bottom: 40px;
  }

  .order-info__item {
    padding: 18px 10px;
  }

  .order-info__icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }

  .order-info__icon img {
    width: 30px;
    height: 30px;
  }

  .order-info__heading {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .order-info__text {
    font-size: 13px;
  }

  .order-info__content {
    margin-top: 25px;
  }

  .order-info__block {
    padding: 15px;
  }
}

.about {
  padding: 60px 0;
  background-color: var(--bg-main);
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about__title {
  font-family: 'onest', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-main);
  text-align: center;
 
}

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

.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__paragraph {
  font-family: 'onest', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0;
}

.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Адаптивность */
@media (max-width: 991px) {
  .about {
    padding: 50px 0;
  }

  .about__title {
    font-size: 28px;
  
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__paragraph {
    font-size: 17px;
    line-height: 1.6;
  }
}

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

  .about__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .about__paragraph {
    font-size: 16px;
    line-height: 1.6;
  }
}

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

  .about__container {
    padding: 0 15px;
  }

  .about__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .about__content {
    gap: 25px;
  }

  .about__paragraph {
    font-size: 15px;
    line-height: 1.5;
  }
}
.projects {
  padding: 60px 0;
  background-color: var(--bg-main);
}

.projects__container {
  padding: 0 15px;
}

.projects__title {
  font-family: 'onest', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-main);
  text-align: center;
  margin: 0 0 40px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.projects__item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.projects__item:hover {
  transform: translateY(-5px);
}

.projects__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 15px;
  transition: var(--transition);
}

.projects__item:hover .projects__image {
  box-shadow: var(--shadow);
}

.projects__content {
  padding: 0 5px;
}

.projects__name {
  font-family: 'onest', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-main);
  text-align: center;
  transition: var(--transition);
}

.projects__item:hover .projects__name {
  color: var(--primary);
}

/* Адаптивность */
@media (max-width: 991px) {
  .projects {
    padding: 50px 0;
  }

  .projects__title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .projects__name {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .projects {
    padding: 40px 0;
  }

  .projects__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .projects__name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 30px 0;
  }

  .projects__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .projects__name {
    font-size: 16px;
  }
}
