/* Flex box mixin */
/* Animation */
.catalog__item-bg, .product__slider-main a, .project__item {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/*
@font-face {
	font-family: 'Tkachenko Sketch';
	src: url(../fonts/tkachenko_sketch_4f.woff2) format("woff2"),
	url(../fonts/tkachenko_sketch_4f.woff) format("woff"),
	url(../fonts/tkachenko_sketch_4f.ttf) format("truetype"),
	url(../fonts/tkachenko_sketch_4f.svg#latoheavy) format("svg");
	font-weight: 400;
	font-style: normal;
}
*/
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0;
  font-weight: 700;
  text-align: center;
}
h2, h3 {
  font-size: 30px;
  margin: 10px 0 20px;
}
p {
  width: 80%;
  margin: 15px auto;
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 360px) {
  p {
  width: 100%;
  font-size: 14px;
  }} 
@media (min-width: 760px) {
  p {
  width: 80%;
  text-align: justify;
  font-size: 16px;
  }}

.clear:after {
  content: '';
  display: block;
  clear: both;
}

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

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

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

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

@media (min-width: 1024px) {
  .large-text-left {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .large-text-right {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .large-text-center {
    text-align: center;
  }
}

.title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .title {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.title:after {
  content: '';
  position: absolute;
  height: 2px;
  background: #e02837;
  left: 50%;
  bottom: 0;
  width: 25px;
  transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .title:after {
    width: 50px;
  }
}
@media (min-width: 1024px) {
  .title:after {
    width: 64px;
  }
}

.vertical-align {
  font-size: 0;
  white-space: nowrap;
}
.vertical-align:before {
  content: '';
  height: 100%;
  width: 0;
  display: inline-block;
  vertical-align: middle;
}
.vertical-align > * {
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
}

ul.list {
  padding: 0;
  margin: 26px 0 0 0;
  list-style: none;
}
@media (min-width: 1024px) {
  ul.list {
  padding: 0;
  margin: 18px 0 0 0;
  list-style: none;
}
}
ul.list li {
  display: inline-block;
  margin: 0 4px;
}
ul.list li a {
  display: block;
  color: #000;
  text-transform: lowercase;
}

h2 {
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 30px;
  }
}

.white {
  color: #fff;
}

.dark {
  color: #495358;
}

.red {
  color: #cc0000;
}

.form-control {
  background: #efefef;
  border-radius: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #495358;
  height: 42px;
}
.form-control:-moz-placeholder {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #495358;
}
.form-control::-moz-placeholder {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #495358;
}
.form-control:-ms-input-placeholder {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #495358;
}
.form-control::-webkit-input-placeholder {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #495358;
}

textarea.form-control {
  height: 80px;
  resize: none;
}

.btn-danger {
  background: #cc0000;
  border-color: #cc0000;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .btn-danger {
    font-size: 18px;
    padding: 13px 12px;
  }
}
.btn-danger:hover, .btn-danger:active, .btn-danger:focus {
  background: #e02837;
  border-color: #e02837;
}

.btn.btn--border {
  color: #cc0000;
  border-color: #cc0000;
  font-weight: bold;
  padding: 9px 13px;
  border-width: 2px;
}
@media (min-width: 1024px) {
  .btn.btn--border {
    font-size: 17px;
  }
}

.description {
  margin: 20px 0;
  color: #495358;
  text-align: center;
  font-size: 18px;
}

.description--white {
  color: #fff;
}
.description--white p {
  color: #fff;
}

.anim {
  transform: translate3d(-100px, 0, 0);
  opacity: 0;
  transition-property: opacity,transform;
  transition-timing-function: ease;
  transition-duration: .8s;
}
.anim.done {
  opacity: 1;
  transform: translateZ(0);
}
.header {
  position: relative;
  z-index: 1000;
}
.header__logo {
  display: block;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .header__logo {
    margin: 30px 0;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    margin: 10px 0 25px;
  }
}
.header__logo img {
  width: 100%;
}
@media (min-width: 1024px) {
  .header__logo img {
    margin-left: -10px;
    width: auto;
  }
}
.header .col-xs-7 {
  position: static;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    margin: 62px 0 62px 0px;
    display: block;
  }
}
@media (max-width: 1023px) {
  .header__nav {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    top: 112px;
    z-index: 1000;
    padding: 20px;
    border-bottom: 1px solid #cc0000;
  }
}
@media (max-width: 767px) {
  .header__nav {
    top: 64px;
  }
}
.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__nav ul li {
  position: relative;
  display: block;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .header__nav ul li {
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .header__nav ul li {
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 0;
  }
}
.header__nav ul li:hover .header__submenu {
  display: block;
}
.header__nav ul li a {
  color: #495358;
  display: block;
  text-transform: uppercase;
  font-size: 18px;
}
@media (min-width: 768px) {
  .header__nav ul li a {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .header__nav ul li a {
    padding: 0 7px;
    font-size: 16px;
  }
}
.header__nav ul li a:hover, .header__nav ul li a.is-active {
  text-decoration: underline;
  color: #cc0000;
}
@media (min-width: 1024px) {
  .header__nav ul:last-child a {
    padding-right: 0;
  }
}
.header__submenu {
  background: #fff;
  z-index: 200;
}
@media (min-width: 1024px) {
  .header__submenu {
    display: none;
    border: 1px solid #ccc;
    border-top: none;
    padding: 10px 5px !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 200px;
  }
}
.header__submenu li {
  display: block !important;
}
.header__submenu li a {
  display: block;
  text-transform: uppercase;
  padding: 5px 15px !important;
}
@media (min-width: 768px) {
  .header__submenu li a {
    padding: 8px 15px !important;
  }
}
@media (min-width: 1024px) {
  .header__submenu li a {
    padding: 5px 7px !important;
  }
}
.header__call {
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header__call {
    padding: 28px 0 0;
  }
}
.header__call p {
  color: #cc0000;
}
@media (min-width: 1024px) {
  .header__call p {
    font-size: 17px;
  }
}
.header__call p a {
  display: block;
  color: #cc0000;
  /*font-weight: bold;*/
}
@media (min-width: 1024px) {
  .header__call p a {
    font-size: 16px;
  }
}
.header__make-order {
  text-align: center;
}
@media (min-width: 1024px) {
  .header__make-order {
    padding: 28px 0 0;
  }
}
.header__make-order .btn {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .header__make-order .btn {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  .header__make-order .btn {
    font-size: 12px;
    margin-bottom: 19px;
  }
}
.header__menu-btn {
  display: block;
  background: none;
  border: none;
  float: right;
  margin: 22px 0;
}
@media (min-width: 768px) {
  .header__menu-btn {
    margin: 40px 0;
  }
}
@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
}
.header__menu-btn span {
  display: block;
  background: #cc0000;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .header__menu-btn span {
    margin-bottom: 8px;
    height: 6px;
    border-radius: 5px;
    width: 60px;
  }
}

.modal-title {
  color: #cc0000;
  text-align: center;
  font-size: 21px;
  line-height: 24px;
  margin: 0;
  font-weight: 400;
}

.modal-header {
  position: relative;
}

.modal-content {
  border-radius: 0;
}

button.close {
  background: url("../img/close.png") no-repeat center/100%;
  width: 36px;
  height: 36px;
  opacity: 1 !important;
  top: -20px;
  right: -20px;
  position: absolute;
  margin: 0 !important;
}
@media (min-width: 768px) {
  button.close {
    width: 40px;
    height: 40px;
  }
}
button.close span {
  display: none;
}

.modal-header {
  border-bottom: none;
}

.modal-body p {
  color: #495358;
}
.modal-body .btn {
  width: 100%;
}

#callback .modal-content {
  max-width: 380px;
  margin: 0 auto;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: none no-repeat center / 100%;
}
@media (min-width: 374px) {
  .icon {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 768px) {
  .icon {
    width: 30px;
    height: 30px;
  }
}
.icon--telegram {
  background-image: url("../img/telegram-icon.png");
}
.icon--pinterest {
  background-image: url("../img/pinterest-icon.png");
}
.icon--phone {
  background-image: url("../img/phone-icon.png");
}
.icon--instagram {
  background-image: url("../img/instagram-icon.png");
}
.icon--facebook {
  background-image: url("../img/facebook-icon.png");
}
.icon--vk {
  background-image: url("../img/vk-icon.png");
}

.banner {
  background: url("../img/banner.jpg") no-repeat center/cover;
  text-align: center;
  padding: 40px 0;
}
.banner h1 {
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 1px 1px #fff, 0 0 1px #fff;
}
@media (min-width: 1024px) {
  .banner h1 {
    font-size: 54px;
    margin-bottom: 70px;
  }
}
.banner h2 {
  text-transform: uppercase;
  font-weight: normal;
  margin: 6px 0 0;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .banner h2 {
    font-size: 50px;
  }
}
.banner h3 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 25px 0 29px;
  text-shadow: 1px 2px #000, 0 0 10px #000; 
}
@media (min-width: 1024px) {
  .banner h3 {
    font-size: 30px;
  }
}
.banner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
@media (min-width: 1024px) {
  .banner ul {
    max-width: 650px;
    margin: 22px auto 0;
  }
}
.banner ul li {
  position: relative;
  margin-bottom: 11px;
  display: block;
  text-align: left;
  font-size: 20px;
  color: #fff;
  padding: 2px 2px 2px 50px;
  font-weight: bold;
  background: rgba(0,0,0,0.5);
  text-shadow: 2px 2px 2px #000;
}
@media (min-width: 1024px) {
  .banner ul li {
    font-size: 20px;
  }
}
.banner ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url("../img/banner-dots.png") no-repeat center/100%;
  width: 27px;
  height: 27px;
}

.large-banner {
  height: 500px;
  text-align: center;
  background: url("../img/delivery-bg.jpg") no-repeat center/cover;
}
.large-banner--payment {
  background: url("../img/payment-bg.png") no-repeat center/cover;
}
.large-banner__white-text {
  color: #fff;
}
@media (min-width: 1024px) {
  .large-banner__white-text {
    font-size: 18px;
  }
}
.large-banner__white-text span {
  font-family: "Montserrat", sans-serif !important;
}
@media (min-width: 1024px) {
  .large-banner__white-text span {
    font-size: 18px !important;
  }
}
.large-banner h1.title {
  color: #cc0000;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .large-banner h1.title {
    font-size: 60px;
    padding-bottom: 32px;
  }
}
.large-banner h1.title:after {
  background: #fff;
}
@media (min-width: 1024px) {
  .large-banner h1.title:after {
    height: 5px;
    width: 150px;
  }
}

.delivery {
  text-align: center;
  padding: 60px 0 50px;
}
.delivery__title {
  color: #cc0000;
  display: block;
  font-weight: bold;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .delivery__title {
    margin: 0 0 30px;
  }
}
@media (min-width: 1024px) {
  .delivery__title {
    font-size: 24px;
    margin: 50px 0 30px;
  }
}
.delivery p {
  color: #495358;
}
@media (min-width: 1024px) {
  .delivery p {
    font-size: 18px;
  }
}
.delivery__icon {
  margin: 15px 0;
}
@media (min-width: 768px) {
  .delivery__icon {
    margin: 30px 0;
  }
}
@media (min-width: 1024px) {
  .delivery__icon {
    margin: 0;
  }
}

.catalog {
  padding: 5px 0px;
}
.catalog__item {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .catalog__item {
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .catalog__item {
    margin-bottom: 50px;
  }
}
.catalog__item-bg {
  padding-bottom: 100%;
  display: block;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  -webkit-filter: grayscale(1);
  -moz-transition: all 0.8s 0.1s ease;
  -o-transition: all 0.8s 0.1s ease;
  -webkit-transition: all 0.8s 0.1s ease;
}
.catalog__item-bg:hover {
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: none;
  -webkit-filter: grayscale(0);
}
@media (min-width: 1024px) {
  .catalog__item-bg {
    height: 350px;
    padding-bottom: 0;
  }
}
.catalog__item-box {
  position: relative;
  box-shadow: 0 0 0.5ex;
}
.catalog__item-title {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(227, 6, 20, 0.7);
  text-align: center;
  text-transform: uppercase;
  height: 74px;
  line-height: 1.1;
  bottom: 0;
}
.catalog__item-title span {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .catalog__item-title span {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .catalog__item-title {
    bottom: 30px;
  }
}
.catalog__item-btn {
  display: inline-block;
  background: #272727;
  color: #fff;
  text-align: center;
  font-weight: bold;
  max-width: 555px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #cc0000;
  padding: 15px 50px;
  transition: all 0.3s ease-out;
}
@media (min-width: 1024px) {
  .catalog__item-btn {
    font-size: 21px;
  }
}
.catalog__item-btn:hover {
  text-decoration: none;
  border-color: #cc0000;
  color: #cc0000;
  background: transparent;
}

.trust {
  margin-bottom: 40px; 
  text-align: center;
  background: url("../img/banner-2.jpg") no-repeat center/cover;
  padding: 24px 0 44px;
}
.trust__title {
  color: #cc0000;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .trust__title {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .trust__title {
    font-size: 24px;
  }
}
.trust .description {
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .trust .description {
    margin: 0 0 40px;
  }
}
@media (min-width: 1024px) {
  .trust .description {
    margin: -9px 0 57px;
  }
}
.trust p {
  color: #fff;
  font-size: 14px;
}
@media (min-width: 768px) {
  .trust p {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .trust p {
    font-size: 18px;
  }
}
.trust__icon {
  margin-bottom: 19px;
}

.about {
  padding: 50px 0;
}
.about img {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about img {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .about img {
    margin-bottom: 0;
  }
}
.about b, .about strong {
  color: #cc0000;
  display: block;
}
@media (min-width: 1024px) {
  .about b, .about strong {
    font-size: 24px;
  }
}
.about .btn {
  margin-top: 30px;
}
.about p {
  color: #495358;
}
@media (min-width: 1024px) {
  .about p {
    font-size: 18px;
  }
}

.breadcrumbs {
  padding: 5px 0;
  font-size: 12px;
}
@media (min-width: 768px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 5px 0;
  }
}
.breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumbs ul li {
  display: inline-block;
}
.breadcrumbs ul li a {
  display: block;
  font-size: 16px;
  color: #1b6600;
  text-decoration: none;
}
@media (min-width: 768px) {
  .breadcrumbs ul li a {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs ul li a {
    font-size: 16px;
  }
}

.product__slider-main img {
  width: 100%;
  display: block;
}
.product__slider-main a {
  padding-top: 100%;
  display: block;
}
.product__slider-preview {
  margin-top: 8px;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .product__slider-preview {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .product__slider-preview {
    padding: 0 85px;
    margin-top: 18px;
    margin-bottom: 17px;
  }
}
.product__slider-preview .slick-slide {
  padding: 7px;
}
@media (min-width: 768px) {
  .product__slider-preview .slick-slide {
    padding: 15px;
  }
}
.product__slider-preview .slick-arrow {
  width: 21px;
  height: 21px;
}
.product__slider-preview .slick-arrow:before, .product__slider-preview .slick-arrow:after {
  display: none;
}
.product__slider-preview .slick-arrow.slick-prev {
  background: url("../img/product-arrow-prev.png");
}
@media (min-width: 1024px) {
  .product__slider-preview .slick-arrow.slick-prev {
    left: 37px;
  }
}
.product__slider-preview .slick-arrow.slick-next {
  background: url("../img/product-arrow-next.png");
}
@media (min-width: 1024px) {
  .product__slider-preview .slick-arrow.slick-next {
    right: 37px;
  }
}
.product__slider-bg {
  cursor: pointer;
  background: none no-repeat center / cover;
  padding-bottom: 100%;
}
.product__description {
  width: 80%;
  margin: 20px auto;
  font-size: 16px;
  color: #495358;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product__description {
  margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .product__description p {
    margin-bottom: 30px;
  }
}
.product__detail {
  background: #cc0000;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .product__detail {
    padding: 30px;
    font-size: 20px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .product__detail {
    margin-bottom: 60px;
    padding: 38px 40px 40px;
    font-size: 16px;
  }
}
.product__detail p {
  color: #fff;
  width: 100%;
}
.product__detail h1, .product__detail h2, .product__detail h3, .product__detail h4 {
  color: #fff;
}
.product__detail h5 {
  color: #fff;
  font-size: 24px;
  padding: 10px 0 0 30px;
}
.product__detail ul, .product__detail ol {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .product__detail ul, .product__detail ol {
    margin-bottom: 29px;
  }
}
.product__detail ul li, .product__detail ol li {
  display: block;
  position: relative;
  font-size: 16px;
}
.product__detail ul li:before, .product__detail ol li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  position: relative;
  top: -2px;
  background: url("../img/product-dots.png") no-repeat center/100%;
}
.product__title {
  font-weight: bold;
  font-size: 24px;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .product__title {
    font-size: 28px;
    margin: 0 0 34px;
  }
}
@media (min-width: 1024px) {
  .product__title {
    font-size: 30px;
    margin: 0 0 44px;
  }
}
.product__btn {
  color: #cc0000;
  background: #fff;
  font-weight: bold;
  text-decoration: none;
  float: right;
  padding: 7px 12px;
  min-width: 169px;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .product__btn {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media (min-width: 1024px) {
  .product__btn {
    font-size: 21px;
    margin-top: 30px;
  }
}
.product__item {
  margin-bottom: 15px;
  height: 100%;
}
.product__item-bg {
  background: none no-repeat center / cover;
  padding-bottom: 72%;
  display: block;
}
.product__item-detail {
  color: #fff;
  background: #cc0000;
  font-size: 16px;
  line-height: 1.6;
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .product__item-detail {
    font-size: 18px;
    padding: 20px 30px;
  }
}
@media (min-width: 1024px) {
  .product__item-detail {
    padding: 14px 30px;
    font-size: 18px;
  }
}
.product__item-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #fff;
  margin-bottom: 1px;
}
.product__item-title:hover {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .product__item-title {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .product__item-title {
    font-size: 20px;
  }
}
.product__item-price {
  float: right;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 768px) {
  .product__item-price {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .product__item-price {
    font-size: 24px;
    margin: 10px 0 0 0;
  }
}
.product__item-btn {
  color: #cc0000;
  background: #fff;
  display: block;
  width: 170px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 16px;
}
@media (min-width: 768px) {
  .product__item-btn {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .product__item-btn {
    font-size: 21px;
    padding: 7px 12px;
  }
}

.slick-slide {
  outline: none !important;
}

.slick-current.slick-active .product__slider-bg {
  outline: 2px solid #cc0000;
}

#product_list {
  margin-top: 17px;
}

.load-more {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #495358;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .load-more {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .load-more {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
.load-more:hover {
  text-decoration: none;
}

.project {
  background: url("../img/project.png") no-repeat center/cover;
  text-align: center;
  padding: 50px 0 100px;
}
.project__item {
  position: relative;
  padding-bottom: 120%;
}
@media (min-width: 768px) {
  .project__item {
    padding-bottom: 100%;
  }
}
.project__description {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 15px 10px;
  height: 50%;
  font-size: 16px;
  text-align: left;
  background: rgba(227, 6, 20, 0.7);
}
@media (min-width: 768px) {
  .project__description {
    padding: 10px 34px 10px;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .project__slider .slick-slide {
    padding: 0 15px;
  }
}
.project__slider .slick-arrow {
  width: 71px;
  height: 49px;
  z-index: 100;
}
.project__slider .slick-arrow:before, .project__slider .slick-arrow:after {
  display: none;
}
@media (max-width: 1023px) {
  .project__slider .slick-arrow {
    top: auto;
    bottom: -24px;
    transform: translate(0, 100%);
    margin-top: 15px;
  }
}
.project__slider .slick-arrow.slick-next {
  background: url("../img/slider-next-arrow.png");
}
@media (min-width: 1024px) {
  .project__slider .slick-arrow.slick-next {
    right: -80px;
  }
}
.project__slider .slick-arrow.slick-prev {
  background: url("../img/slider-prev-arrow.png");
}
@media (min-width: 1024px) {
  .project__slider .slick-arrow.slick-prev {
    left: -80px;
  }
}
.project__more {
  position: absolute;
  right: 15px;
  bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.project__more:hover, .project__more:active, .project__more:focus {
  color: #fff;
  text-decoration: none;
}

.price {
  padding: 40px 0;
}
.price__val {
  color: #cc0000;
  font-size: 24px;
  margin-top: 35px;
  font-weight: bold;
}
.price__item {
  display: none;
}
.price__item p {
  color: #495358;
  font-size: 18px;
}
.price__item img {
  max-width: 100%;
}
.price__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price__list li {
  display: block;
}
.price__list li a {
  display: block;
  cursor: pointer;
  font-size: 18px;
  color: #495358;
  line-height: 28px;
  padding: 0 13px;
  margin: 0 0 20px;
  border: 1px solid #efefef;
  background: url(../img/tabs_li.png) no-repeat scroll 100% 0;
}
.price__list li a:hover {
  text-decoration: none;
}

.footer {
  padding: 25px 0;
  font-weight: bold;
  background: url("../img/footer.jpg") no-repeat center/cover;
}
@media (min-width: 768px) {
  .footer {
    padding: 50px 0;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 40px 0 25px;
  }
}
@media (min-width: 1024px) {
  .footer h2.title {
    margin-bottom: 40px;
  }
}
.footer__form .btn-danger {
  font-weight: bold;
  float: right;
}
@media (min-width: 1024px) {
  .footer__form .btn-danger {
    font-size: 18px;
    padding: 13px 12px;
  }
}
@media (min-width: 1024px) {
  .footer__form-required {
    font-size: 18px;
    padding-left: 20px;
  }
}
@media (min-width: 1024px) {
  .footer__contacts {
    margin-top: 15px;
  }
}
.footer__contacts-item {
  position: relative;
  color: #fff;
  padding-left: 38px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .footer__contacts-item {
    font-size: 18px;
    padding-left: 38px;
    margin-bottom: 20px;
  }
}
.footer__contacts-item a {
  color: #fff;
}
.footer__contacts-item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: none no-repeat center / 100%;
  width: 25px;
  height: 56px;
}
@media (min-width: 1024px) {
  .footer__contacts-item:before {
    width: 25px;
    height: 56px;
  }
}
.footer__contacts-item--address:before {
  background-image: url("../img/location.png");
}
.footer__contacts-item--phone:before {
  background-image: url("../img/phone.png");
}
.footer__contacts-item--mail:before {
  background-image: url("../img/envelop.png");
}
.footer__contacts-item--schedule:before {
  background-image: url("../img/calendar.png");
}
