.btn {
  display: inline-flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
}

.btn-red {
  background: #E73F3F;
  border: 1px solid #E73F3F;
  color: #fff;
}
.btn-red:hover {
  background: #ea5656;
  color: #fff;
}

.btn-orange {
  background: #D96C3F;
  border: 1px solid #D96C3F;
  color: #fff;
}
.btn-orange:hover {
  background: #dd7c54;
  color: #fff;
}

.btn-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.1647058824);
  color: #fff;
}

.btn-transparent {
  border: 1px solid #940B12;
  background: transparent;
  color: #940B12;
}
.btn-transparent:hover {
  background: #940B12;
  color: #fff;
}

.menu-btn {
  margin: 20px;
  display: none;
}

@media only screen and (max-width: 946px) {
  .menu-btn {
    display: block;
  }
}
.header {
  margin-bottom: 5px;
}

.header-top {
  display: block;
  border-bottom: 1px solid #ececec;
  padding: 12px 0 9px 0;
  background: #fff;
  color: #0B1F33;
  font-size: 16px;
}
.header-top__wrp {
  display: flex;
  justify-content: space-between;
}
.header-top__region {
  display: flex;
  align-items: center;
}
.header-top__region span {
  font-size: 16px;
}
.header-top__geo {
  width: 20px;
  height: 17px;
  margin-right: 10px;
  fill: #0B1F33;
}
.header-top__menu ul {
  display: flex;
}
.header-top__menu li:not(:first-child) {
  margin-left: 55px;
}
.header-top__menu a {
  font-size: 16px;
  color: #0B1F33;
  font-weight: 300;
  opacity: 0.8;
}
.header-top__menu a:hover {
  opacity: 1;
  color: #D57953;
}

.header-mid {
  display: block;
  border-bottom: 1px solid #ececec;
  padding: 10px 0;
  background: #fff;
}
.header-mid__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mid__logo {
  flex-basis: 20%;
  flex-shrink: 0;
}
.header-mid__social {
  flex-basis: 30%;
  display: flex;
}
.header-mid__social-text {
  max-width: 144px;
  color: #66727F;
  line-height: 1.3;
  font-size: 16px;
  margin-right: 10px;
}
.header-mid__btns {
  flex-basis: 30%;
  display: flex;
}
.header-mid__btn {
  padding: 10px 17px;
}
.header-mid__btn span {
  margin-right: 7px;
}
.header-mid__btn:not(:last-child) {
  margin-right: 10px;
}
.header-mid__btnicon {
  width: 16px;
  height: 16px;
  fill: #940B12;
}
.header-mid__btn:hover .header-mid__btnicon {
  fill: #fff;
}
.header-mid__phones {
  flex-basis: 20%;
}
.header-mid__time {
  color: #66727F;
  font-size: 15px;
  text-align: end;
  font-style: italic;
}
.header-mid__social a {
  width: 40px;
  height: 40px;
  background: #FC9C74;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}
.header-mid__social a:hover {
  background: #d0693f;
}
.header-mid__ic {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.header-mid__phones a {
  display: block;
  text-align: end;
  font-size: 24px;
  font-weight: 600;
  color: #0B1F33;
}
.header-mid__phones a:not(:last-child) {
  margin-bottom: 10px;
}

.ic-ws:hover {
  background: #3FB92A;
}
.ic-ws:hover .header-mid__ic {
  fill: #fff;
}

.ic-vib:hover {
  background: #7C51A0;
}
.ic-vib:hover .header-mid__ic {
  fill: #fff;
}

.ic-tel:hover {
  background: #30ACE0;
}
.ic-tel:hover .header-mid__ic {
  fill: #fff;
}

@media only screen and (max-width: 1200px) {
  .header-top__menu li:not(:first-child) {
    margin-left: 25px;
  }
  .header-top__menu a {
    font-size: 14px;
  }
  .header-mid__time {
    font-size: 14px;
  }
  .header-mid__social-text {
    font-size: 14px;
  }
  .header-mid__logo {
    flex-basis: 10%;
  }
  .header-mid__social {
    flex-basis: 40%;
    align-items: center;
    justify-content: center;
  }
  .header-mid__btns {
    flex-basis: 30%;
  }
  .header-mid__phones {
    flex-basis: 20%;
  }
  .header-mid__phones a {
    font-size: 22px;
  }
  .header-mid__btn {
    font-size: 14px;
    padding: 10px 7px;
  }
  .header-mid__btn span {
    display: none;
  }
}
.nav__item--dh {
  display: none;
}

@media only screen and (max-width: 946px) {
  .header {
    padding: 0;
  }
  .header__wrp {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #ececec;
    padding: 5px 0;
  }
  .header-top {
    display: none;
  }
  .header-mid {
    flex-basis: 90%;
    padding: 0;
    border-bottom: none;
    order: 2;
  }
  .header-mid__logo {
    flex-basis: 100%;
  }
  .header-mid__logo img {
    max-width: 50%;
  }
  .header-mid__info {
    display: none;
  }
  .header-mid__social {
    display: none;
  }
  .header-mid__btn {
    display: none;
  }
  .header-mid__phones {
    display: none;
  }
  .header__menu {
    flex-basis: 10%;
    order: 1;
  }
  .nav__item--dh {
    display: block;
  }
  .mobile_wrp {
    order: 3;
  }
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #424f60;
  color: #fff;
}
.footer hr {
  background-color: rgba(255, 255, 255, 0.3058823529);
  margin: 20px 0;
}
.footer__logos {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-direction: column;
}
.footer__social {
  display: flex;
  margin-bottom: 20px;
}
.footer__social img {
  width: 34px;
  height: 34px;
}
.footer__link {
  margin-right: 10px;
  opacity: 0.7;
}
.footer__link:hover {
  opacity: 1;
}
.footer__name {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer__descriptor {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5568627451);
  margin-bottom: 30px;
}
.footer__title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer__phones {
  margin-bottom: 30px;
}
.footer__phone {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.footer__phone:hover {
  color: #fff;
}
.footer__ws {
  margin-bottom: 20px;
}
.footer__ws a {
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
}
.footer__ws a:hover {
  opacity: 1;
}
.footer__contact {
  display: flex;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  align-items: center;
}
.footer__contact a {
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
  display: block;
  line-height: 1.4;
}
.footer__contact a:hover {
  opacity: 1;
}
.footer__ic {
  width: 17px;
  height: 17px;
  fill: #E73F3F;
  margin-right: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.footer__marker {
  width: 21px;
  height: 21px;
}
.footer__menu {
  margin-bottom: 30px;
}
.footer__menu a {
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
  line-height: 1.4;
}
.footer__menu a:hover {
  opacity: 1;
}
.footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__privacy {
  flex-basis: 50%;
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
  line-height: 1.4;
}
.footer__delosait {
  display: flex;
  flex-basis: 20%;
  justify-content: flex-end;
}
.footer__delosait a {
  font-size: 12px;
  opacity: 0.8;
  color: #fff;
  letter-spacing: 1px;
}
.footer__delosait a:hover {
  opacity: 1;
}
.footer__heart {
  width: 15px;
  height: 15px;
  fill: red;
}

.payment {
  display: flex;
}
.payment__item {
  margin-right: 11px;
}

@media only screen and (max-width: 560px) {
  .footer__privacy {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .footer__delosait {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .footer__title {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .footer__menu a {
    font-size: 14px;
    line-height: 1.3;
  }
  .footer__phone {
    font-size: 16px;
  }
  .footer__contact {
    display: flex;
    font-size: 14px;
  }
  .footer__contact a {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .footer__ic {
    margin-top: 0;
    flex-shrink: 20;
  }
  .footer__delosait {
    justify-content: flex-start;
  }
}
.messengers__icons {
  display: flex;
}
.messengers__icons .ic_mes {
  width: 15px;
  height: 15px;
  fill: #0B1F33;
}
.messengers__icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.messengers__icons a:last-child {
  margin-right: 0;
}
.messengers__icons a:hover {
  opacity: 0.8;
}
.messengers__icons a:hover .ic_mes {
  fill: #fff;
}
.messengers__ws {
  background: #26D366;
}
.messengers__tg {
  background: #26A0D4;
}

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
}

.nav__link {
  color: #0B1F33;
  font-size: 18px;
}
.nav__link:hover {
  color: #940B12;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
  width: auto;
  padding: 20px;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 250px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}
.dropdown-list__link:hover {
  color: #940B12;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }
  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}
.burger {
  width: 40px;
  height: 27px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

.dropdown-submenu__title {
  font-weight: 700;
  color: #0B1F33;
  font-size: 16px;
  margin-bottom: 15px;
}

.dropdown-submenu__list .dropdown-submenu__list-item a {
  font-size: 16px;
  color: #66727F;
  font-size: 14px;
}
.dropdown-submenu__list .dropdown-submenu__list-item a:hover {
  color: #940B12;
}

@media (max-width: 946px) {
  .dropdown-submenu__title {
    padding: 20px;
    margin-bottom: 0;
  }
  .burger {
    display: block;
  }
  .mobile-back {
    display: block;
  }
  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }
  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }
  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-submenu__list .dropdown-submenu__list-item a {
    font-size: 16px;
    color: #66727F;
    font-size: 14px;
    padding: 7px 20px;
  }
  .dropdown-submenu__list-item {
    padding: 0;
  }
  .nav__link {
    border-bottom: 1px solid #ececec;
  }
  .nav__link::after {
    transform: rotate(-90deg);
  }
  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }
  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }
  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }
  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}
.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 16px;
  }
}
.menu-logo {
  display: none;
}

@media only screen and (max-width: 946px) {
  .menu-logo {
    display: block;
  }
  .menu-logo img {
    width: 90%;
    margin-bottom: 20px;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  width: 100%;
  /*     padding-right: 15px;
      padding-left: 15px; */
  margin-right: auto;
  margin-left: auto;
  position: absolute;
  z-index: 100;
  top: 0;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: #fff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding-top: 10px;
  margin-top: -10px;
}
.menu-fixed .header__nav {
  display: none;
}
.menu-fixed .header__logo img {
  max-width: 20%;
}
.menu-fixed .header__logo-descriptor {
  font-size: 12px;
}
.menu-fixed .header-mid {
  padding: 5px 0;
}
.menu-fixed .header__wrp {
  padding: 0;
}

@media only screen and (max-width: 945px) {
  .menu-fixed .header__nav {
    display: flex;
  }
  .menu-fixed .header__logo img {
    max-width: inherit;
  }
}
.aside {
  position: fixed;
  right: 0px;
  top: 185px;
  background-color: #fff;
  box-shadow: -7px 5px 11px rgba(0, 0, 0, 0.1);
  border-radius: 4px 0 0 4px;
  overflow: hidden;
  z-index: 900;
  display: flex;
  flex-direction: column;
}
.aside .aside-block {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid gray;
  background-color: #424f60;
  cursor: pointer;
}
.aside .aside-block:last-child {
  border-bottom: 0;
}
.aside .aside-block:hover {
  background-color: #ececec;
}
.aside .aside-block:hover .aside__ic {
  fill: #424f60;
}
.aside__ic {
  width: 19px;
  height: 19px;
  fill: #fff;
}
.aside .aside1 {
  border-bottom: 1px solid #E73F3F;
  background-color: #E73F3F;
}
.aside .aside1:hover {
  /*   border-bottom: 1px solid #ececec; */
  background-color: #e42828;
}

.aside__ic1 {
  fill: #fff;
}

@media only screen and (max-width: 990px) {
  .aside {
    display: none;
  }
}
.mobile_buttons {
  display: none;
}

@media only screen and (max-width: 946px) {
  .mobile_buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 10px;
  }
  .mobile_buttons a {
    background: #d0693f;
    width: 37px;
    height: 37px !important;
    margin-right: 4px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  .mobile_buttons .ic_mob {
    width: 20px;
    height: 20px;
    fill: #fff;
  }
}
.slider {
  position: relative;
}
.slider__redblock {
  width: 865px;
  height: 562px;
  position: absolute;
  right: 0;
  top: -54px;
  display: block;
  background: #940B12;
}
.slider__decor {
  position: absolute;
  bottom: -70px;
  left: 40%;
}

.homeslide {
  height: 413px;
}
.homeslide__info {
  margin-top: 60px;
  padding-left: 30px;
}
.homeslide__title {
  font-size: 39px;
  color: #0B1F33;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
.homeslide__subtitle {
  font-size: 24px;
  color: #66727F;
  line-height: 1.3;
  margin-bottom: 30px;
}
.homeslide__row {
  height: 100%;
}
.homeslide img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.homeslide__white {
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: -30px;
  position: relative;
  z-index: 100;
}
.homeslide__txt {
  font-size: 18px;
  color: #0B1F33;
  margin-right: 10px;
  font-weight: 400;
  line-height: 1.3;
}
.homeslide__icon {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  fill: #fff;
}
.homeslide__btn {
  padding: 15px 30px;
}

.arrows {
  position: relative;
  margin-top: -60px;
  margin-left: 527px;
}
.arrows .pr-prev,
.arrows .pr-next {
  border: none;
  box-shadow: none;
  width: 60px;
  height: 60px;
  background: #fff;
}

@media only screen and (max-width: 1400px) {
  .homeslide__title {
    font-size: 36px;
  }
  .homeslide__subtitle {
    font-size: 20px;
  }
  .arrows {
    position: relative;
    margin-top: -60px;
    margin-left: 4px;
  }
}
@media only screen and (max-width: 1200px) {
  .slider__redblock {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .homeslide {
    height: 513px;
  }
  .homeslide__title {
    font-size: 24px;
  }
  .homeslide__subtitle {
    font-size: 20px;
  }
  .homeslide__info {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .homeslide__txt {
    font-size: 14px;
  }
  .homeslide__info {
    padding: 15px;
  }
  .homeslide__white {
    padding: 15px;
    margin-right: 0;
  }
  .homeslide__btn {
    padding: 20px 20px;
  }
  .homeslide img {

    height: auto;
  }
}
.catalog {
  padding: 120px 0 60px;
}
.catalog__btn-wrp {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.catalog__btn {
  padding: 12px 20px;
}

.product {
  display: flex;
  flex-direction: column;
}
.product__image {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  display: block;
}
.product__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  display: block;
  color: #0B1F33;
}
.product__title:hover {
  color: #E73F3F;
}
.product__desc {
  color: #66727F;
  line-height: 1.3;
  margin-bottom: 16px;
}
.product__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  align-items: center;
}
.product__price {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.product__btn {
  padding: 12px 20px;
}

@media only screen and (max-width: 578px) {
  .product__desc {
    font-size: 14px;
  }
  .product__btn {
    padding: 12px 12px;
  }
}
.heading-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.heading-title::after {
  content: "";
  position: absolute;
  background: #940B12;
  width: 7%;
  height: 3px;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media only screen and (max-width: 1400px) {
  .heading-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .heading-title {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
}
.text-white {
  color: #fff;
}

.pseudo-left::after {
  left: 0;
  right: inherit;
  margin: 0;
}

.bordo-block {
  background: #940B12;
}

.gray-block {
  background: #E7E4E4;
}

.white-block {
  background: #fff;
}

.light-gray-block {
  background: rgba(217, 217, 217, 0.36);
}

.crem-block {
  background: #D57953;
}

.blocks {
  padding-bottom: 60px;
}
.blocks__item {
  width: 100%;
  padding: 30px;
  position: relative;
  min-height: 220px;
}
.blocks__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #0B1F33;
}
.blocks__p {
  line-height: 1.4;
  color: #66727F;
  font-size: 16px;
}
.blocks__btn {
  padding: 10px 20px;
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.blocks__img {
  position: absolute;
  right: 0;
  bottom: 0px;
}
.blocks__img img {
  display: block;
}

.text-gray {
  color: #E7E4E4;
}

@media only screen and (max-width: 1200px) {
  .blocks__item {
    width: 100%;
    padding: 15px;
  }
  .blocks__btn {
    padding: 15px 20px;
    left: 15px;
    bottom: 15px;
  }
}
@media only screen and (max-width: 904px) {
  .blocks__btn {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blocks__item {
    min-height: auto;
  }
  .blocks__img {
    bottom: 0;
    right: 0;
    width: 25%;
  }
  .blocks__title {
    font-size: 18px;
  }
  .blocks__p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 578px) {
  .blocks__diz {
    order: 1;
  }
}
.steps__wrp {
  background: #6C3234;
  color: #fff;
  padding: 20px;
  margin-left: -60px;
  margin-top: 60px;
}
.steps__decor {
  position: absolute;
  right: 15px;
  top: -30px;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.1843137255);
  padding: 15px;
  display: flex;
  align-items: center;
}
.step__num {
  flex-basis: 10%;
  font-size: 80px;
  font-weight: 600;
  opacity: 0.1;
}
.step__info {
  flex-basis: 90%;
  display: flex;
  flex-direction: column;
}
.step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}
.step__desc {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.4;
}

.step:not(:last-child) {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .steps__wrp {
    padding: 15px;
    margin-left: 0;
    margin-top: 20px;
  }
  .steps__decor {
    display: none;
  }
  .step {
    padding: 10px;
  }
  .step__title {
    font-size: 16px;
  }
  .step__desc {
    font-size: 14px;
  }
}
.or_n_left p,
.or_n_right p,
label p,
.form-file {
  font-size: 18px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 10px;
}

.or_n_right .shkaf {
  opacity: 1;
  font-weight: 700;
}

.or_n_left input,
.or_n_right select {
  background: #B18885;
  height: 43px;
  margin-bottom: 30px;
  color: #fff;
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 4px;
}
.or_n_left input::-moz-placeholder, .or_n_right select::-moz-placeholder {
  color: #fff;
}
.or_n_left input::placeholder,
.or_n_right select::placeholder {
  color: #fff;
}

textarea {
  background: #B18885;
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 4px;
  color: #fff;
  padding: 15px;
}

.or_n_left input {
  padding: 12px 12px;
}

.or_n_right select {
  padding: 13px 12px;
}

.calc {
  background: #985E5A;
  margin-top: -105px;
  padding: 60px 0;
}
.calc__images {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.calc__images img {
  margin-right: 10px;
  margin-bottom: 10px;
  opacity: 0.7;
  cursor: pointer;
}
.calc__form input {
  background: #B18885;
  padding: 12px 13px;
  margin-bottom: 15px;
  color: #fff;
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 4px;
}
.calc__form input::-moz-placeholder {
  color: #fff;
}
.calc__form input::placeholder {
  color: #fff;
}
.calc h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.calc__btn {
  align-self: flex-start !important;
  width: auto !important;
  background: #D96C3F !important;
  padding: 13px 70px !important;
  margin-right: 10px;
}
.calc__file {
  align-self: flex-start !important;
  width: auto !important;
  padding: 20px 30px !important;
}
.calc__wrp {
  display: flex;
  flex-wrap: wrap;
}
.calc label {
  position: relative;
  padding-bottom: 0px;
  width: 100%;
}
.calc .just-validate-error-label {
  color: rgba(255, 255, 255, 0.7411764706) !important;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.result {
  position: relative;
  padding: 30px;
  background: url("../img/calcbg.jpg");
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 500px;
  text-align: center;
  margin-top: 40px;
}
.result__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #0B1F33;
}
.result__subtitle {
  font-size: 18px;
  line-height: 1.3;
  color: #66727F;
}
.result img {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.result__bottom {
  padding: 10px;
  background: #D96C3F;
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 20;
  text-align: center;
}
.result__bottom span {
  color: #fff;
  font-size: 24px;
}

img.active {
  opacity: 1;
}

.sticky-top {
  position: sticky;
  top: 100px;
  z-index: 1;
}

.result__mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .result__title {
    font-size: 20px;
  }
  .result__subtitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 876px) {
  .calc {
    margin-top: 0px;
    padding: 60px 0;
  }
}
@media only screen and (max-width: 768px) {
  .result {
    display: none;
  }
  .result__mobile {
    display: block;
    padding: 30px;
    margin: 20px 0;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    background: #d96c3f;
  }
  .result__mobile span {
    font-size: 20px;
    font-weight: 700;
  }
  .result__ammount {
    display: block;
  }
}
@media only screen and (max-width: 578px) {
  .calc label {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .calc__images img {
    width: 80px;
  }
}
.custom-checkbox {
  display: flex;
  width: 100%;
  margin: 0;
  cursor: pointer;
  align-items: center;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  max-width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 5px;
  background: #E94B37;
}

.custom-checkbox input:checked + .checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  background: url(../img/svg-check-ic.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.checkbox-text {
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #E73F3F;
}
.checkbox-text a {
  color: #E73F3F;
  text-decoration: underline;
}

.text-modal {
  color: #282828;
}
.text-modal a {
  color: #E73F3F;
}
.text-modal a:hover {
  color: #097F72;
}

.cresults__agreement {
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

/* @media only screen and (max-width : 576px) {
    .cresults__agreement{
       margin-bottom: 20px;

    }

} */
.responces-slider {
  margin: 0 -20px 20px -20px;
}

.responces {
  background: #F5F5F5;
  position: relative;
  padding: 60px 0;
}

.responce {
  padding: 20px;
  border: 1px solid #ececec;
  height: 100%;
  margin: 0 20px;
}
.responce a img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.responce__title {
  color: #0B1F33;
  line-height: 1.3;
  margin-bottom: 20px;
  font-size: 18px;
}
.responce__name {
  font-weight: 700;
  color: #0B1F33;
  font-size: 18px;
  margin-bottom: 10px;
}
.responce__date {
  color: #66727F;
  font-size: 16px;
}
.responce__info {
  color: #66727F;
  line-height: 1.4;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .slider-responces {
    padding-bottom: 0px;
  }
  .responce {
    padding: 10px;
    height: unset;
  }
}
@media only screen and (max-width: 578px) {
  .responce__info, .responce__date {
    font-size: 14px;
  }
}
.progress {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #cbcbcb;
  background-image: linear-gradient(to right, #940B12, #940B12);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
}

.arrows__wrp {
  display: flex;
  align-items: center;
}
.arrows__wrp .arrows2 {
  margin-right: 20px;
}

.arrows2 {
  position: relative;
  display: flex;
  color: #fff;
}
.arrows2 .pr-prev2,
.arrows2 .pr-next2 {
  border: none;
  box-shadow: none;
  width: 60px;
  height: 60px;
  background: #940B12;
  color: #fff;
  margin-right: 10px;
}

.faq {
  padding: 120px 0 100px 0;
  background: url("../img/bg-ask.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
}

.ic_faq {
  width: 26px;
  height: 26px;
  transition: all 0.3s;
}

.accordion-menu {
  width: 650px;
  margin-top: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 5px 12px rgba(57, 57, 57, 0.0509803922);
  border-radius: 8px;
  position: absolute;
}

.accordion-menu li.open .dropdownlink {
  color: #E73F3F;
}

.accordion-menu li:last-child .dropdownlink {
  border-bottom: 0;
}

.dropdownlink {
  cursor: pointer;
  display: block;
  padding: 20px 15px 20px 15px;
  font-size: 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #0B1F33;
  font-weight: 600;
  position: relative;
  transition: all 0.4s ease-out;
  display: flex;
  justify-content: space-between;
}
.dropdownlink span {
  padding-right: 20px;
  line-height: 1.3;
}

.ic_faq {
  transform: rotate(45deg);
  fill: #66727F;
}

.accordion-menu li.open .dropdownlink .ic_faq {
  transform: rotate(90deg);
  fill: #E73F3F;
}

.question_info {
  display: none;
  background: #f3f3f3;
  padding: 15px;
  line-height: 1.5;
  font-size: 15px;
  color: #66727F;
}

.submenuItems a {
  display: block;
  color: #727272;
  padding: 15px 12px 15px 45px;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.submenuItems a:hover {
  background-color: #fff;
  color: #727272;
}

@media only screen and (max-width: 1400px) {
  .accordion-menu {
    width: 550px;
  }
}
@media only screen and (max-width: 1200px) {
  .accordion-menu {
    width: 450px;
  }
}
@media only screen and (max-width: 578px) {
  .faq {
    padding: 0;
    /*    padding: 50px 0 320px 0; */
    background-size: contain;
    background-position-y: bottom;
    min-height: 500px;
  }
  .accordion-menu {
    width: 100%;
    position: relative;
  }
}
body.modal-open {
  padding-right: 15px !important;
  overflow-y: hidden !important;
}

.modal-open .header {
  padding-right: 15px !important;
}

body {
  overflow-y: scroll !important;
}

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

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

.mc-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}
#watchme .btn-close {
  right: -30px;
}
#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: #0B1F33;
}

.modal-subtitle {
  margin-bottom: 20px;
  color: #66727F;
}

.modal-contacts {
  padding: 20px 40px;
}
.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #0B1F33;
}
.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #0B1F33;
  margin-bottom: 5px;
}
.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #0B1F33;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}
.modal-contacts__bottom span {
  margin-left: 10px;
}
.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #E73F3F;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 40px 30px;
}
.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
  color: #66727F;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}
.form_input__modal:focus {
  border-bottom: 2px solid #E73F3F;
}

select {
  color: #66727F;
  font-size: 14px;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #E73F3F;
  color: #fff;
  border: 1px solid #E73F3F;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}
.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #E73F3F;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0B1F33;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

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

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}
.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}
.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}
.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }
  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }
  .modal-header {
    padding-top: 60px;
  }
  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }
  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}
.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  line-height: 1.3;
  margin-top: -5px;
  color: #0B1F33;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #E73F3F;
  padding: 15px 20px;
}

.nav-pills .nav-link {
  background: 0 0;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 4px;
  padding: 15px 20px;
  color: #0B1F33;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #E73F3F;
}

.form-file {
  font-size: 12px;
  color: #66727F;
}

.conts__btn {
  padding: 20px 30px;
}

.dropdown-item {
  color: #66727F;
  font-size: 14px;
  padding: 7px;
}

.search-title {
  font-size: 22px;
  display: block;
  text-align: center;
  margin: 20px 0;
}

.input-search {
  width: 100%;
}

.search-wrp {
  display: flex;
  margin: 20px 0;
  padding: 0 20px;
}

@media only screen and (max-width: 568px) {
  .input-search input {
    font-size: 14px;
    margin: 0;
    padding: 0;
  }
  .input-search {
    margin: 0;
    padding: 20px 0 0 0;
  }
}
.heading-page {
  background: #FC9C74;
  padding: 30px 0px 90px 0;
}
.heading-page h1 {
  font-size: 34px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 600;
}

.breadcrumbs li {
  display: inline-block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6509803922);
  line-height: 1.3;
}
.breadcrumbs li a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  color: rgba(255, 255, 255, 0.6784313725);
}
.breadcrumbs li + li::before {
  color: rgba(255, 255, 255, 0.6784313725);
  content: "/";
  padding: 0 5px;
}

@media only screen and (max-width: 992px) {
  .heading {
    padding: 90px 0px 90px 0;
  }
}
@media only screen and (max-width: 576px) {
  .heading-page h1 {
    font-size: 20px;
  }
}
.m-carousel, #mainCarousel, #mainCarousel1, #mainCarousel2, #mainCarousel3 {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #170724;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
      0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 2.5;
}

.m-carousel .carousel__slide {
  width: 100%;
  padding: 0;
}
.m-carousel .carousel__slide img{
 height: 500px;
 width: 100%;
 object-fit: cover;
}
#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
}


 .m-carousel .carousel__button.is-prev {
  left: -1.5rem;
}
 #mainCarousel .carousel__button.is-prev {
  left: -1.5rem;
}


.m-carousel .carousel__button.is-next {
  right: -1.5rem;
}
#mainCarousel .carousel__button.is-next {
  right: -1.5rem;
}




.t-carousel {
  margin-bottom: 20px;
}
#thumbCarousel {
  margin-bottom: 20px;
}


.t-carousel  .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 96px;
  height: 64px;
  overflow: hidden;
}
#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 96px;
  height: 64px;
  overflow: hidden;
}


.t-carousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}
#thumbCarousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}


#thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}
.t-carousel  .carousel__slide.is-nav-selected {
  opacity: 1;
}


.section-title-product {
  margin-top: 40px;
  font-size: 24px;
}

.product__tizer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product__tizer-ic {
  margin-right: 10px;
  flex-shrink: 0;
}
.product__tizer-desc {
  line-height: 1.3;
  color: #0B1F33;
}
.product .image-block {
  margin: 40px 0;
  width: 100%;
}
.product__char {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0B1F33;
}
.product th {
  color: #0B1F33;
}
.product td {
  color: #66727F;
}
.product th,
.product td {
  font-size: 16px;
  line-height: 1.3;
}
.product__mid {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #ececec;
}
.product__card{
  padding: 10px;
  border: 1px solid #ececec;
  width: 100%;

}
.product__price {
  color: #66727F;
  font-size: 16px;
  margin-bottom: 40px;
}
.product__bottom .product__price{
  margin-bottom: 0;
}
.product__price span {
  color: #0B1F33;
  font-size: 24px;
  margin-left: 10px;
}
.product__btn-page {
  padding: 20px 30px;
  align-self: flex-start;
  margin-bottom: 10px;
  align-self: center;
}
.product__content {
  padding: 30px 0;
}
.product__content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #0B1F33;
}
.product__content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #0B1F33;
}
.product__content p {
  color: #66727F;
  line-height: 1.5;
  margin: 7px 0;
  font-size: 16px;
}
.product__content ul {
  list-style-type: disc;
  padding-left: 30px;
  line-height: 1.3;
}
.product__content li {
  line-height: 1.5;
  padding: 7px 0;
  color: #66727F;
  font-size: 16px;
}
.product__content td,
.product__content th {
  font-size: 16px;
  line-height: 1.3;
}
.product__mats {
  margin: 20px 0;
  display: flex;
}
.product__mats img {
  max-width: 100px;
  max-height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 5px;
}

@media only screen and (max-width: 576px) {
  .product th,
  .product td {
    font-size: 14px;
    line-height: 1.3;
  }
  .product__price {
    font-size: 16px;
  }
  .product__price span {
    font-size: 15px;
  }
  .product__content {
    padding: 15px;
  }
  .product__content h2 {
    font-size: 18px;
  }
  .product__content h3 {
    font-size: 18px;
  }
  .product__content p {
    color: #66727F;
    line-height: 1.3;
    margin: 7px 0;
    font-size: 14px;
  }
  .product__content ul {
    list-style-type: disc;
    padding-left: 30px;
    line-height: 1.3;
  }
  .product__content li {
    font-size: 14px;
  }
  .product__content td,
  .product__content th {
    font-size: 14px;
    line-height: 1.3;
  }
}
.nav-tabs {
  margin-top: 40px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #f7f7f7;
  border-color: #fff #fff #fff;
  border-bottom: 3px solid #940B12;
  font-weight: 600;
  padding: 15px 20px;
  cursor: pointer;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  font-size: 16px;
  cursor: pointer;
  padding: 15px 20px;
  color: gray;
  border: 3px solid #fff;
  border-bottom: 1px solid #ececec;
}
.nav-tabs .nav-item.show .nav-link:hover,
.nav-tabs .nav-link:hover {
  border: 3px solid;
  border-color: #fff #fff #940B12 #fff;
}

nav-tabs .nav-item.show .nav-link:focus,
.nav-tabs .nav-link:focus {
  border-bottom: 3px solid #244d72;
}

@media only screen and (max-width: 576px) {
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link {
    font-size: 14px;
  }
}
.content {
  background: #fff;
  margin-top: -60px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.0705882353);
  padding: 20px;
}
.content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #0B1F33;
}
.content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  line-height: 1.3;
  color: #0B1F33;
}
.content p {
  color: #66727F;
  line-height: 1.5;
  margin: 7px 0;
  font-size: 16px;
}
.content ul {
  list-style-type: disc;
  padding-left: 30px;
  line-height: 1.3;
}
.content li {
  line-height: 1.5;
  padding: 7px 0;
  color: #66727F;
  font-size: 16px;
}
.content td,
.content th {
  font-size: 16px;
  line-height: 1.3;
}

@media only screen and (max-width: 576px) {
  .content {
    padding: 20px 5px;
  }
  .content h2 {
    font-size: 18px;
  }
  .content h3 {
    font-size: 18px;
  }
  .content p {
    color: #66727F;
    line-height: 1.3;
    margin: 7px 0;
    font-size: 14px;
  }
  .content ul {
    list-style-type: disc;
    padding-left: 30px;
    line-height: 1.3;
  }
  .content li {
    font-size: 14px;
  }
  .content td,
  .content th {
    font-size: 14px;
    line-height: 1.3;
  }
}
.contacts {
  border: 1px solid #ececec;
  padding: 20px;
}
.contacts__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}
.contacts__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}
.contacts__subtitle {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
.contacts__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.contacts__group {
  margin: 20px 0;
}
.contacts__label {
  font-size: 16px;
  color: #66727F;
  margin-bottom: 10px;
}
.contacts__input {
  margin-bottom: 10px;
}
.contacts__input a {
  color: #0B1F33;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts__btn {
  width: 100%;
  background: #fff;
  border: 1px solid #940B12;
  color: #940B12;
  font-weight: 600;
  padding: 15px 5px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.contacts__btn:hover {
  border: 1px solid #940B12;
  color: #fff;
  background: #940B12;
}

.content-contacts {
  margin: 20px 0;
}

.filter {
  padding: 30px;
  background: #ececec;
  margin-bottom: 15px;
}

.ff_filter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.se_filter_box {
  display: flex;
  flex-direction: column;
  margin: 5px;
  flex-basis: 19%;
}

.se_filter_box span {
  color: #0B1F33;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.se_filter_box select {
  border: 1px solid gray;
  padding: 10px 12px;
  box-shadow: none;
  background: rgb(230, 234, 234);
}
.catalog__cat__img{
  display: block;
  width: 100%;
  object-fit: cover;
  height: 250px;
  margin-bottom: 10px;

}
.category__title{
  color: #0B1F33;
}
.bx-filter-parameters-box-hint{
  color: #282828!important;
  margin-bottom: 10px!important;
  font-size: 16px !important;
  font-weight: 600!important;
  display: block;
}
.bx-filter .bx-filter-select-container{
  border: none!important;
}
 .relatives_div{
      font-size: 16px!important;
      margin-left: 0!important;
      
  }
@media only screen and (max-width: 576px) {
  .se_filter_box {
    flex-basis: 45%;
  }
  .filter{
    padding:5px;
  }
  .bx-filter-parameters-box-container{
    padding-bottom: 0!important;
  }
  .relatives_div{
      font-size: 12px;
      
  }

}

.action__img{
  display:block;
  width:100%
}

.relatives .product{
  margin: 0 10px
  }
.collect__arrows button{
  width:50px;
  height:50px;
  color: #fff;
  background: #E73F3F;
  border: none;
  box-shadow: none;
  margin-bottom: 10px;
  
}
.pr-next1{
  margin-left: 5px;
}
.pr-prev1{
  margin-left: 10px;
}
.form-file{
  margin-bottom: 15px;
  font-size: 15px;
  color: #202020;
}

.relatives .product__title{
  font-size: 14px;
}
.relatives .product__price{
  font-size: 14px;
}
.relatives .product__btn{
  font-size: 14px;
}
.relatives__wrp{
  display: flex;

}
.product__span:empty + .product__cena,
.product__span:empty ~ .product__cena {
  display: none;
}
.garantii__block h2{
  margin-bottom: 0;
}
.garantii__block{
  margin-bottom: 20px;
}
.gar-form textarea {
  background: #ffffff;
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 4px;
  color: #66727F;
  padding: 15px;
}
.garantii img{
  margin-bottom: 20px;
}
.small-ac{
  font-size: 14px!important;

}
.portfolio{
  margin: 60px 0;
}
.portfolio__info{
  padding: 30px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
}
.portfolio__info ul{
  font-size: 18px;
  color: #66727F;
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 20px;

}

.portfolio__title{
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #0B1F33;
}
.portfolio_desc{
  font-size: 18px;
  line-height: 1.3;
  color: #0B1F33;
}
@media only screen and (max-width: 768px) {
  .portfolio__title{
    font-size: 20px;
  }
  .portfolio_desc{
    font-size: 15px;

  }
  .port:nth-child(1n) {
    order:1
  }
  .port:nth-child(2n) {
    order:2
  }
  .port:nth-child(3n) {
    order:4
  }
  .port:nth-child(4n) {
    order:3
  }
  .port:nth-child(5n) {
    order:5
  }
  .port:nth-child(6n) {
    order:6
  }
  .port:nth-child(7n) {
    order:8
  }
  .port:nth-child(8n) {
    order:7
  }
  .port:nth-child(9n) {
    order:9
  }
  .port:nth-child(10n) {
    order:10
  }
  .port:nth-child(11n) {
    order:12
  }
  .port:nth-child(12n) {
    order:11
  }
  .port:nth-child(13n) {
    order:13
  }
  .port:nth-child(14n) {
    order:14
  }
  .port:nth-child(15n) {
    order:16
  }
  .port:nth-child(16n) {
    order:15
  }
  .port:nth-child(17n) {
    order:17
  }
  .port:nth-child(18n) {
    order:18
  }
  .port:nth-child(19n) {
    order:20
  }
  .port:nth-child(20n) {
    order:19
  }
  .port:nth-child(21n) {
    order:21
  }
  .port:nth-child(22n) {
    order:22
  }
  .port:nth-child(23n) {
    order:24
  }
  .port:nth-child(24n) {
    order:23
  }
  .port:nth-child(25n) {
    order:25
  }
  .port:nth-child(26n) {
    order:26
  }
  .port:nth-child(27n) {
    order:28
  }
  .port:nth-child(28n) {
    order:27
  }
  .port:nth-child(29n) {
    order:29
  }
  .port:nth-child(30n) {
    order:30
  }
  .port:nth-child(31n) {
    order:30
  }
  .port:nth-child(31n) {
    order:31
  }

  .portfolio__info{
  margin-top: 0px;
      
  }
  .portfolio__info ul{
    font-size: 15px;

  }

}

.portfolio-btn{
  padding: 20px 30px;
  background: #940B12;
}