/* USER VARIABLES SECTION */

:root {
  --accent: #706f6f;
  --regular-text: 16px;
  --lineheight: 1.65;
  --userfont: 'Roboto', sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.938rem;
}
.row,
.row > * {
  --bs-gutter-x: 1.875rem;
}

/* GENERAL CSS SETTINGS */

.img-right {
  float: right;
  margin-bottom: 30px;
  margin-left: 30px;
  max-width: 555px;
}

.img-left {
  float: left;
  margin-bottom: 30px;
  margin-right: 30px;
  max-width: 555px;
  max-height: 555px;
}

.img-responsive{
  display: block;
  width: 100%;
}

.responsive {
  overflow: hidden;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 0;
}

.square-image {
  display: block;
  padding-bottom: 100%;
}

.responsive > img:not(.zoomImg) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  /*min-height: 100%;*/
  max-width: none;
  z-index: -1;
}

::placeholder {
  color: #666;
}
::selection {
  background-color: var(--accent);
  color: #fff;
}
input,
textarea {
  outline: none;
}
input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}
input:required:valid,
textarea:required:valid {
  border-color: green;
}

*{
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

/* common */
.title{
  text-transform: uppercase;
  color: #706f6f;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  padding: 0;
  margin: 0;
}

.lang ul{
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.lang ul li {
  list-style-type: none;
}

.lang ul li a {
  display: block;
  position: relative;
}

.lang ul li.active a::before{
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  background: #fff;
  opacity: .5;
  height: 100%;
  z-index: 2;
}

.lang ul li a img{
  display: block;
  width: 15px;
  height: 11px;
}

.address{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #706F6F;
}

.address svg{
  fill: #706F6F;
  width: 20px;
  height: 16px;
  margin: 0 13px 0 0;
}

.phone{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #706F6F;
  text-decoration: none;
}

.phone:hover{
  color: #921E30;
  text-decoration: underline;
}

.phone svg{
  fill: #706F6F;
  width: 20px;
  height: 21px;
  margin: 0 13px 0 0;
}

.time-work{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #706F6F;
}

.time-work svg{
  fill: #706F6F;
  width: 20px;
  height: 17px;
  margin: 0 13px 0 0;
}

.site-link{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #706F6F;
  text-decoration: none;
}

.site-link:hover{
  color: #921E30;
  text-decoration: underline;
}

.site-link svg{
  fill: #706F6F;
  width: 20px;
  height: 18px;
  margin: 0 13px 0 0;
}

.navbar ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar ul li{
  list-style-type: none;
}

.navbar ul li a {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #706F6F;
  text-decoration: none;
  padding: 0 40px 0 0;
  transition: all .2s ease;
}

.navbar ul li:last-child a{
  padding: 0;
}

.navbar ul li a:hover{
  color: #921e39;
}

.navbar ul li.active a{
  color: #000;
}

@media(min-width: 992px){
  .navbar ul li.active a{
    color: #921e39;
  }
  
}

/* end common */

/* header */
.header{
  position: sticky;
  padding: 10px 0;
  z-index: 999;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.header__btn-menu-mobile{
  display: none;
}

@media(max-width: 768px) {
  .header__nav{
    display: none;
  }
  .header__btn-menu-mobile{
    display: block;
    width: 70px;
    height: 70px;
    border: none;
    background: none;
    position: relative;
    margin: 0 0 0 auto;
  }
  .header__btn-menu-mobile span {
    display: block;
    width: 40px;
    height: 5px;
    background-color: #706f6f;
    border-radius: 3px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header__btn-menu-mobile span::after,
  .header__btn-menu-mobile span::before {
    content: "";
    position: absolute;
    left: 0;
    width: inherit;
    height: inherit;
    background-color: #706f6f;
    border-radius: inherit;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .header__btn-menu-mobile span::before {
    -webkit-transform: translateY(-13.3333333333px);
    transform: translateY(-13.3333333333px);
  }

  .header__btn-menu-mobile span::after {
    -webkit-transform: translateY(13.3333333333px);
    transform: translateY(13.3333333333px);
  }

  .header__btn-menu-mobile.active span{
    background: transparent;
  }

  .header__btn-menu-mobile.active span::before{
    transform: rotate(-45deg);
  }

  .header__btn-menu-mobile.active span::after{
    transform: rotate(45deg);
  }

  .header__nav{
    position: absolute;
    top: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #af1d1d;
    transition: .3s;
    height: auto;
    left: 0;
    right: 0;
  }

  .header__nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .header__nav ul li {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .header__nav ul li a,
  .header__nav ul li:last-child a {
    color: #fff;
    margin: 0;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    display: block;
    text-align: center;
  }

  .header__nav ul li a:hover{
    background: #706f6f;
    color: #fff;
  }

  .header__nav.show {
    display: flex;
  }
  
}


.header__logo img,
.header__logo svg {
  max-width: 205px; 
}

@media(max-width: 550px){
  .header__logo img,
  .header__logo svg {
    max-width: 205px;
    width: 100%;
    display: block;
  }
}

/* end header */

/* footer */
.footer{
  padding: 35px 0 0 0;
}

.footer__top{
  padding: 0 0 120px 0;
}

.footer__top-column-wrap{
  padding: 0 50px;
}

.footer__top-address{
  margin: 0 0 20px 0;
}

.footer__top-phone{
  margin: 0 0 20px 0;
}

.footer__top-time-work{
  margin: 0 0 20px 0;
}

.footer__menu{
  padding: 0;
  margin: 0;
}

.footer__menu li {
  list-style-type: none;
  display: block;
  margin: 0 0 20px 0;
}

.footer__menu li:last-child{
  margin: 0;
}

.footer__menu li a {
  display: block;
  text-transform: uppercase;
  color: #706f6f;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.footer__top-column h3{
  text-transform: uppercase;
  text-align: center;
  color: #000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 26px 0;
}

.footer__copy{
  border-top: 1px solid #9d9d9c;
  padding: 15px 0;
  font-size: 12px;
  line-height: 12px;
  color: #000;
  text-align: center;
}

@media(max-width: 768px){
  .footer__top-column{
    margin-bottom: 30px;
  }
}
@media(max-width: 767px){
  .footer__top {
    padding: 0 0 40px 0;
  }
  .footer__top-column{
    margin: 0 0 40px 0;
  }
  .footer__top-column:last-child{
    margin: 0;
  }
}
/* end footer */

/* bg-block */
.bg-block{
  background-size: cover;
  background-position: 50% 50%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
/* end bg-block */

/* title-home */
.title-home{
  padding: 30px 0;
}
/* end title-home */

/* fast-search-block */
.fast-search-block-wrap{
  position: relative;
}
.fast-search-block{
  background: #af1d1d;
  position: absolute;
  bottom: -48px;
  z-index: 5;
  padding: 0px 40px 77px 40px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
}

.fast-search-block__title{
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px 0;
}

.fast-search-block__label{
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0 6px 0;
}

.fast-search-block__form{
  position: relative;
  width: 100%;
}

.fast-search-block__form-input{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border: none;
  background: #fff;
  padding:0 48px 0 13px;
  color: #706F6F;
  height: 36px;
}

.fast-search-block__btn{
  position: absolute;
  bottom: 0;
  right: 0;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  background: #fffdee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-search-block__btn svg {
  fill: #706F6F;
  width: 20px;
  height: 20px;
}

.fast-search-block__rounded{
  position: absolute;
  top: -14px;
  left: 69%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  width: 34px;
  height: 24px;
  overflow: hidden;
}

.fast-search-block__left{
  left: 0;
  width: calc(69% - 20px);
  border-top-left-radius: 10px;
  border-right: 1px solid #af1d1d;
  height: 30px;
  position: absolute;
  top: -30px;
  background: #af1d1d;
}

.fast-search-block__right{
  right: 0;
  top: -30px;
  height: 30px;
  width: calc(31% - 20px);
  border-top-right-radius: 10px;
  border-left: 1px solid #af1d1d;
  position: absolute;
  background: #af1d1d;
}

.fast-search-block__rounded:after { content: ""; display: block; width: 20px; height: 20px; border-radius: 100px; -webkit-box-shadow: 0 0 0 24px #af1d1d; box-shadow: 0 0 0 24px #af1d1d; position: relative; top: -11px; left: 50%; -webkit-transform: translateX(-50%) rotate(-45deg); transform: translateX(-50%) rotate(-45deg); }

.fast-search-block__left:after, 
.fast-search-block__right:after { content: ""; position: absolute; top: 0; border-top: 40px solid transparent; }
.fast-search-block__left:after { left: calc(100% + 1px); border-left: 25px solid #af1d1d; }
.fast-search-block__right:after { right: calc(100% + 1px); border-right: 25px solid #af1d1d; }

@media(max-width: 1024px){
  .fast-search-block {
    padding:  20px 20px 50px 20px;
  }
}

@media(max-width: 767px){
  .fast-search-block {
    position: relative;
    bottom: auto;
    margin-top: 60px;
  }
}

/* end fast-search-block */

/* category-product */
.category-product {
  background: #ededed;
}
.category-product:nth-child(2n+1){
  background: #e3e4e4;
}

.category-product__image{
  overflow: hidden;
  position: relative;
}

.category-product__image img{
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  z-index: 1;
}

.category-product__description{
  min-height: 390px;
}

.category-product__description h2{
  text-transform: uppercase;
  color: #706f6f;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  padding: 70px 0 0 0;
  margin: 0 0 30px 0;
}

.category-product__description p{
  margin: 0 0 30px 0;
  color: #706f6f;
  font-size: 16px;
  line-height: 22px;
}

.category-product__btn{
  border:2px solid #af1d1d;
  color: #af1d1d;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  height: 38px;
  margin: 0;
  padding: 0 20px;
  min-width: 214px;
}

.category-product__btn svg {
  fill: #af1d1d;
  width: 16px;
  height: 16px;
  margin-left: 20px;
  transition: .2s;
}

.category-product__btn-hide{
  display: none;
}

.category-product__btn:hover{
  background: #af1d1d;
  color: #fff;
}

.category-product__btn:hover svg {
  fill: #fff;
}

.category-product__btn.active .category-product__btn-show{
  display: none;
}

.category-product__btn.active .category-product__btn-hide{
  display: block;
}

.category-product__btn.active svg {
  transform: rotate(45deg);
  fill: #fff;
}

.category-product__btn.active{
  background: #af1d1d;
  color: #fff;
}

.category-product__list{
  padding: 30px 0 90px 0;
  background: #fff;
  position: relative;
  display: none;
}

.category-product__list::before {
  content: "";
  display: block;
  border-top: 30px solid #ededed;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.category-product.open .category-product__list{
  display: block;
}

@media(max-width: 767px){
  .category-product__description {
    min-height: 1px;
    padding: 50px 15px;
    position: relative;
  }
  .category-product__description h2 {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    padding: 0;
  }
  .category-product__btn{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 0;
    position: absolute;
    bottom: -20px;
    z-index: 55;
    right: -20px;
    background: #af1d1d;
  }
  .category-product:nth-child(2n+1) .category-product__btn{
    right: 0px;
    left: -20px;
  }
  .category-product__btn span{
    display: none;
  }
  .category-product__btn svg{
    margin: 0;
    fill: #fff;
  }
  .category-product__btn.active .category-product__btn-hide{
    display: none;
  }
  .category-product__list::before {
    display: none;
  }
}

/* end category-product */

/* product-item */
.product-item{
  display: block;
  margin-top: 15px;
  text-decoration: none;
}

.product-item__img{
  overflow: hidden;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  background-image: none;
  z-index: 0;
  display: block;
  padding-bottom: 100%;
}

.product-item__img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: -1;
}

.product-item__name{
  margin: 15px 0 0 0;
  color: #706f6f;
  text-transform: uppercase;
  border-top: 1px solid #706f6f;
  border-top-color: rgb(112, 111, 111);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 5px 0 0 0;
  text-align: center;
}

.product-item:hover .product-item__name{
  color: #af1d1d;
  border-top-color: #af1d1d;
}

@media(max-width: 767px) {
  .category-product__description p{
    display: none;
  }
}
/* end product-item */

/* breadcrumb */
.breadcrumb{
  margin-bottom: 30px;
}

.breadcrumbs{
  border-bottom: 1px solid #e7e7e7;
  padding: 35px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.breadcrumbs li {
  list-style-type: none;
  font-weight: 600;
  color: #706F6F;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  position: relative;
}

.breadcrumbs li a{
  color: #706F6F;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  text-transform: uppercase;
  padding-right: 20px;
  display: block;
}

.breadcrumbs li a::before{
  content: '>';
  display: block;
  position: absolute;
  top: -1px;
  right: 6px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}
/* end breadcrumb */

/* content */
.content-block{
  min-height: 30vh;
  padding: 0 0 50px 0;
}

.content-text h1{
  text-transform: uppercase;
  font-size: 48px;
  line-height: 48px;
  color: #706F6F;
  margin: 0 0 30px 0;
  padding: 0;
}
.content-text h3{
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-size: 22px;
  line-height: 22px;
  color: #706F6F;
}

.content-text p {
  color: #706F6F;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  margin: 0 0 16px 0;
}

.content-text p:last-child{
  margin: 0;
}
/* end content */

/* interested */
.interested{
  background: #e1e1e0;
  padding: 30px 0;
}
.interested__title{
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  color: #706F6F;
  margin: 0 0 15px 0;
}

.interested__product-item{
  text-decoration: none;
  display: block;
}

.interested__product-item-img{
  overflow: hidden;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 0;
  display: block;
  padding-bottom: 100%;
  background: #fff;
}

.interested__product-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.interested__product-item-name{
  font-size: 16px;
  line-height: 16px;
  color: #706F6F;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  text-align: center;
  font-weight: 600;
}

.interested__product-item:hover .interested__product-item-name{
  color: #af1d1d;
}

@media(max-width: 768px) {
  .interested__product-item{
    margin-bottom: 20px;
  }
}
/* end interested */

/* search-result */
.search-result{
  padding: 30px 0 50px 0;
}
.search-result__title{
  color: #706F6F;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
}

.search-result__list{
  margin: 30px 0 0 0;
}
/* end search-result */

/* contact */
.contact{}

.contact h1 {
  font-weight: 700;
  text-transform: uppercase;
  color: #706F6F;
  margin: 0 0 30px 0;
  font-size: 48px;
  line-height: 48px;
}
/* end contact */

/* faq */
.faq{
  padding: 40px 0 40px 0;
}

.faq h2{
  color: #706F6F;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 22px;
  margin-bottom: 20px;
}
.faq h4{
  text-transform: uppercase;
  color: #706F6F;
  font-size: 16px;
  line-height: 16px;
  margin: 0 0 15px 0;
}
.faq p{
  color: #706F6F;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 20px 0;
  text-align: justify;
}
.faq p:last-child{
  margin: 0;
}

.faq a {
  color: #af1d1d;
  text-decoration: none;
}
/* end faq */

/* copy style site */
.intro-block { background: #af1d1d; z-index: 2; color: #fff; padding: 65px; padding-top: 25px; margin-top: 40px; position: sticky; top: 100px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.intro-block h2, .intro-block h3, .intro-block h4 { color: #fff; }
.intro-block h2 + form, .intro-block h3 + form, .intro-block h4 + form { margin-top: 18px; }
.intro-block a { color: #fff; font-weight: bold; }
.intro-block .rounded { position: absolute; top: -14px; left: 69%; -webkit-transform: translateX(-50%); transform: translateX(-50%); z-index: -1; width: 34px; height: 24px; overflow: hidden; }
.intro-block .rounded:after { content: ""; display: block; width: 20px; height: 20px; border-radius: 100px; -webkit-box-shadow: 0 0 0 24px #af1d1d; box-shadow: 0 0 0 24px #af1d1d; position: relative; top: -14px; left: 50%; -webkit-transform: translateX(-50%) rotate(-45deg); transform: translateX(-50%) rotate(-45deg); }
.intro-block .left, .intro-block .right { content: ""; display: block; height: 40px; background: #af1d1d; position: absolute; top: -39px; }
.intro-block .left:after, .intro-block .right:after { content: ""; position: absolute; top: 0; border-top: 40px solid transparent; }
.intro-block .left { left: 0; width: calc(69% - 25px); border-top-left-radius: 10px; border-right: 1px solid #af1d1d; }
.intro-block .left:after { left: calc(100% + 1px); border-left: 25px solid #af1d1d; }
.intro-block .right { right: 0; width: calc(31% - 25px); border-top-right-radius: 10px; border-left: 1px solid #af1d1d; }
.intro-block .right:after { right: calc(100% + 1px); border-right: 25px solid #af1d1d; }
.intro-block.small { margin-top: 30px; padding: 40px; padding-top: 0px; }
.intro-block.small .left, .intro-block.small .right { height: 30px; top: -29px; }
.intro-block.small .left:after, .intro-block.small .right:after { border-top: 30px solid transparent; }
.intro-block.small .rounded { top: -11px; }
.intro-block.small .left { width: calc(69% - 20px); }
.intro-block.small .left:after { border-left: 20px solid #af1d1d; }
.intro-block.small .right { width: calc(31% - 20px); }
.intro-block.small .right:after { border-right: 20px solid #af1d1d; }

.contact form input, .contact form textarea, .contact form select { width: 100%; }
.contact form input:not([type=file]):not([type=submit]), .contact form textarea, .contact form select { border: 1px solid #72706f; resize: none; }
.contact form input[type=submit] { width: 120px; }
.contact form label { font-weight: bold; color: #72706f; display: block; margin: 0 0 6px 0;}
.contact form label input, .contact form label textarea, .contact form label select { margin-top: 10px; padding: 8px 13px; }
.btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  background: #fff;
  color: #af1d1d;
  border: 2px solid #af1d1d;
  height: 38px;
  border-color: #af1d1d;
  transition: .2s;
}
.btn-send:hover{
  background: #af1d1d;
  color: #fff;
}
/* end  */

/* product-inner */
.product-inner {
  padding: 0 0 30px 0;
}
.product-inner__feature h3{
  text-transform: uppercase;
  margin: 0 0 20px 0;
  color: #706F6F;
  font-size: 22px;
  line-height: 22px;
}

.product-inner__feature hr{
  margin: 20px 0;
}

.product-inner__feature tr { vertical-align: top; }
.product-inner__feature tr td { padding-bottom: 10px; color: #706F6F; font-size: 16px; line-height: 20px; }
.product-inner__feature tr td:first-child { padding-right: 30px; }
.product-inner__feature tr td:last-child { font-weight: 600; }

.product-inner__content {
  padding: 0 0 40px 0;
}

.product-inner__content-price{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 40px 0;
}

.price{
  color: #000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.btn-buy{
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  max-width: 175px;
  width: 100%;
  background: #921E30;
  border-radius: 6px;
  transition: .2s;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
}

.btn-buy:hover{
  background: #AF1C1C;
  color: #fff;
}

.product__mobile-title{
  font-size: 35px;
  text-transform: uppercase;
  color: #706F6F;
  line-height: 35px;
  margin: 0 0 20px 0;
  font-weight: 700;
  display: none;
}

.product-inner__content h1 {
  font-size: 48px;
  text-transform: uppercase;
  color: #706F6F;
  line-height: 48px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.product-inner__content-text p{
  margin: 0 0 20px 0;
  color: #706F6F;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
}

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

.product-inner__content-text li {
  color: #706F6F;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
}


.product-images .square-image { border: 1px solid #d9dada; margin-bottom: 30px; }
.product-images .product-thumbnails .square-image:hover { cursor: pointer; border-color: #af1d1d; }

.featured-product-image img:first-child {
  max-width: 100% !important;
  max-height: 100% !important;
}

.product-thumbnails img {
  max-width: 165px !important;
  max-height: 165px !important;
}

@media(max-width: 768px){
  .product__mobile-title {
    display: block;
  }
  .product-inner__content h1 {
    display: none;
  }
}

@media(max-width: 767px){
  .product-inner__content iframe{
    width: 100%;
  }
}

.form-success-message{
  padding: 25px;
  text-align: center;
  font-size: 18px;
  background-color: #ddd;
  margin: 10px 0;
}

/* end */