@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --main-font: "Montserrat", sans-serif;
  --font-Regular: 400;
  --font-Medium: 500;
  --font-Semi-bold: 600;
  --font-Bold: 700;

  --main-red-color: #730510;
  --main-green-color: #3ea25b;

  --main-text-color: #030304;
  --text-color-gary: #666666;

  --gray-color: #b7b7b7;
  --white-color: #ffffff;

  --shadow-color: rgba(113, 118, 119, 0.3);

  --bg-color-ligft-blue: #e5edf4;
  --bg-color-lighter-blue: #f6f9fc;
  --bg-text-green: #65ce63;
  --footer-bg-color: #464646;

  --gradient-btn-green: linear-gradient(
    30deg,
    rgba(57, 178, 101, 1) 45%,
    rgba(101, 206, 99, 1) 80%
  );
  --gradient-btn-red: linear-gradient(
    30deg,
    rgba(134, 7, 20, 1) 45%,
    rgba(215, 49, 66, 1) 80%
  );
  --gradient-project-card: linear-gradient(
    0deg,
    rgba(70, 70, 70, 1) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}
* {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  color: var(--main-text-color);
  text-decoration: none;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.4;
}
h1 {
  font-size: 48px;
  font-weight: var(--font-Bold);
}
body {
  font-family: var(--main-font);
  font-weight: var(--font-Regular);
}
.box-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

/* ========== HEADER ========== */
header {
  position: absolute;
  width: 100%;
  z-index: 3;
}
.header_relactive {
  position: relative;
  background-color: var(--bg-color-lighter-blue);
}
.header-top {
  background: var(--bg-color-ligft-blue);
  padding: 11px 0;
}
.header-top__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 12px;
}
.header-top__city {
}
.header-top__nav {
}
.header-top__nav ul {
  display: flex;
}
.header-top__nav li {
  margin-right: 25px;
}
.header-top__nav li:last-child {
  margin-right: 25px;
}
.header-bottom {
  padding-top: 18px;
}
.header-bottom__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-bottom__logo {
  display: flex;
  align-items: center;
}
.footer__logo {
  align-items: center;
}
.header-bottom__logo img {
  max-width: 157px;
  width: 100%;
  height: auto;
  margin-right: 20px;
}
.footer__logo img {
  max-width: 157px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.header-bottom__logo p {
  max-width: 175px;
  width: 100%;

  font-size: 13px;
  line-height: 20px;
  color: var(--text-color-gary);
}
.header-bottom__address {
  display: flex;
  align-items: center;
}
.header-bottom__address img {
  margin-right: 20px;
  border-radius: 8px;
}
.header-bottom__tel .select {
  font-size: 18px;
  font-weight: var(--font-Bold);
  max-width: max-content;
  margin-bottom: 5px;
}
.mail_underline {
  text-decoration: underline;
}
.header__mobile {
  display: none;
}
.header__button-menu {
  display: none;
}
.header__mobile-close {
  color: var(--color-white);
}
.header__nav_item_mobile {
  margin-bottom: 10px;
}
.header__nav_item_mobile li {
  margin-bottom: 12px;
}

/* ==================== dropdown ==================== */
.select {
  position: relative;
  display: block;
  width: 100%;
  max-width: 149px;

  border-radius: 3px;
}
.select_size {
  position: relative;
  display: block;
  width: 100%;
  max-width: 217px;
  margin-bottom: 20px;

  border-radius: 3px;
}
.select__head {
  cursor: pointer;
}
.select__head::after {
  width: 10px;
  height: 6px;
  background: url("../img/icons/arr-down-new.svg") no-repeat center / cover;
  position: absolute;
  right: -20px;
  bottom: 50%;
  transform: translateY(50%);
  content: "";
  display: block;
  transition: 0.2s ease-in;
}
.select__head.open::after {
  transform: translateY(50%) rotate(180deg);
}
.select__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-color-ligft-blue);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  width: max-content !important;
  max-height: 205px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 100;
  margin: 0;
  padding: 0;
  color: #424348;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
.select__list::-webkit-scrollbar {
  width: 7px;
  background-color: #f8f9fa;
  padding: 5px;
}
.select__list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #d9d9d9;
}
.select__list .select__item {
  position: relative;
  border-top: 1px solid rgba(224, 229, 231, 0.5);
  padding: 10px 15px;
  cursor: pointer;
  list-style-type: none;

  margin: 0;
}
.select__list .select__item:hover {
  background-color: rgba(224, 229, 231, 0.5);
  color: #fff;
}
/* /dropdown */

.header-nav-union {
  background-color: var(--bg-color-lighter-blue);
  height: 190px;
}
.header-nav-union svg {
  position: relative;
  top: -50px;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  z-index: -1;
}

/* ========== FOOTER ========== */
footer {
  position: relative;
  bottom: 0px;
  background: var(--footer-bg-color);
  color: var(--white-color);

  padding-top: 30px;
  z-index: 1;
}
footer a {
  color: var(--white-color);
}
.footer_line-up {
  z-index: -1;
  position: absolute;
  top: -50px;
  width: 100%;
}
.footer_line-up .st0 {
  fill: var(--footer-bg-color);
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.font_bold {
  font-weight: var(--font-Bold);
}
.footer__logo {
  height: fit-content;
}
.footer__logo img {
}
.footer__logo p {
  max-width: 215px;
  font-size: 13px;
}
.footer__item li {
  margin-bottom: 25px;
  font-size: 14px;
}
.font_sb {
  font-weight: var(--font-Semi-bold);
}
.footer__item_contacts p {
  margin-bottom: 5px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px 0;
}
.footer__bottom ul {
  display: flex;
}
.footer__bottom ul li {
  margin-right: 60px;
  opacity: 0.6;
}
.made-in {
  display: flex;
  align-items: center;
  width: 200px;
}
.made-in img {
  max-width: 70px;
  margin-left: 20px;
}
.footer__item .font_bold,
.footer__item.font_bold li {
  font-size: 18px;
}
.footer__logo-box .footer__item {
  margin-top: 30px;
}
.footer__wrap .catalog__nav_mobile .font_bold {
  font-size: 18px;
}

/* ========== NAVIGATION ========== */
.navigation {
  position: absolute;
  width: 100%;
  top: 120px;
  z-index: 2;
  justify-content: space-between;
  margin-top: 17px;
}
.navigation.active {
  z-index: 4;
}
.navigation_relactive {
  position: relative;
  top: inherit;
  /* background-color: var(--bg-color-lighter-blue); */
}
.navigation ul:not(.select__list, .header__nav_item_mobile) {
  display: flex;
  width: 95%;
  justify-content: space-between;
  font-weight: var(--font-Medium);
}
.navigation li {
  font-size: 16px;
}
.bg-wrap {
  position: relative;
  padding: 17px 47px;

  background: var(--white-color);
  border-radius: 8px;

  display: flex;
  align-items: center;

  box-shadow: 0px 0px 10px 0px var(--shadow-color);
}
.bg-wrap::after,
.bg-wrap::before {
  position: absolute;
  content: "";
  width: 3px;
  height: auto;
  background: var(--main-red-color);
  padding: 17px 0px;
}
.bg-wrap::after {
  left: 0;
}
.bg-wrap::before {
  right: 0;
}

.bg-wrap_modify.bg-wrap {
  padding: 7px 47px;
}
.bg-wrap_modify.bg-wrap::after,
.bg-wrap_modify.bg-wrap::before {
  height: 20px;
  padding: 7px 0px;
}
.search {
  position: relative;
  right: -20px;
  width: 34px;
  height: 34px;
  border-radius: 3px;
  border: 1px solid var(--bg-color-ligft-blue);
  background-color: var(--bg-color-ligft-blue);
  margin-left: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.header-search {
  position: relative;
}
.btn-search-fake,
.btn-search {
  width: 90px;
  height: 70px;
  font-size: 22px;
  color: #000;
  cursor: pointer;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-search-fake i {
  transition: all 0.3s;
}
.btn-search-fake i:nth-child(2) {
  display: none;
  font-size: 24px;
}
.header-search.active .btn-search-fake i:nth-child(2) {
  display: block;
}
.header-search.active .btn-search-fake i:nth-child(1) {
  display: none;
}
.header-search__line {
  position: absolute;
  right: 100%;
  top: 0;
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.header-search__line .item-form {
  flex: 1;
  margin: 0;
}
.header-search__line .item-form input {
  border: none;
}
.header-search.active .header-search__line {
  width: 885px;
  opacity: 1;
}
.header-search .wpdreams_asl_container {
  position: absolute;
  right: 100%;
  top: 12px;
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.header-search.active .wpdreams_asl_container {
  width: 385px;
  opacity: 1;
}
.header-search.active .wpdreams_asl_container .probox {
  font-size: 14px;
  padding: 10px 20px;
  color: #000;
  height: 25px;
  background-color: #ffffff;
  border: 1px solid rgba(153, 153, 153, 0.98);
  border-radius: 6px;
  width: 100%;
}
.header-nav-union .search svg {
  top: 0 !important;
}
/*
.search:hover {
  width: 220px;
  border: 1px solid var(--bg-color-ligft-blue);
  border-radius: 6px;
  background-color: var(--white-color);

  justify-content: space-between;
}
.search input {
  height: 34px;
  width: 0px;
  border-radius: 3px;
  border: none;

  transition: all 0.5s;

  font-size: 14px;
  font-family: var(--main-font);
  background-color: var(--bg-color-ligft-blue);
}
.search:hover input {
  width: 70%;
  padding: 0px 10px;
  border-radius: 6px;
  background-color: var(--white-color);
}
.search:hover i {
  position: relative;
  right: 10px;
}*/

/* ========== BTNS ========== */
.green-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-btn-green);
  background-size: 100% 100%;

  box-shadow: 0px 0px 10px 0px var(--main-green-color);

  border-radius: 8px;
  border: none;
  border-bottom: 6px solid var(--main-green-color);

  max-width: 275px;
  width: 100%;
  height: 65px;

  color: var(--white-color);
  transition: all 0.5s;

  font-size: 14px;
  font-weight: var(--font-Semi-bold);
  cursor: pointer;
}
.green-btn:hover {
  opacity: 1;
  background-size: 200% 200%;
  box-shadow: 0px 0px 10px 2px var(--main-green-color);
  transform: scale(1.01);
}
.green-btn_header.green-btn {
  border-bottom: 0px solid var(--main-green-color);
  box-shadow: 0px 0px 0px 0px var(--main-green-color);
}
.red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-btn-red);
  background-size: 100% 100%;

  box-shadow: 0px 0px 10px 0px var(--main-red-color);

  border-radius: 8px;
  border: none;
  border-bottom: 6px solid var(--main-red-color);

  max-width: 275px;
  width: 100%;
  height: 65px;

  color: var(--white-color);
  transition: all 0.5s;

  font-size: 14px;
  font-weight: var(--font-Semi-bold);
  cursor: pointer;
}
.red-btn:hover {
  opacity: 1;
  background-size: 200% 200%;
  box-shadow: 0px 0px 10px 2px var(--main-red-color);
  transform: scale(1.01);
}
.product__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--main-red-color);

  /* box-shadow: 0px 0px 10px 0px var(--main-green-color); */

  border-radius: 8px;
  border: none;

  max-width: 147px;
  width: 100%;
  height: 40px;

  color: var(--white-color);
  transition: all 0.5s;

  font-size: 14px;
  font-weight: var(--font-Medium);
}

/* ========== MANI-SECTION ========== */
.main-section {
  background: url("../img/main-block-bg.png") no-repeat center top / cover;
  width: 100%;
  height: 1004px;
  position: relative;
  /* top: 0; */
  z-index: 1;
  overflow: hidden;
}
.house-map {
  position: absolute;
  top: 235px;
  width: 1540px;
  height: 610px;
  right: -25px;
}
.main-section__house-img {
  position: absolute;
  width: auto;
  right: 0;
  z-index: -1;
  height: 610px;
}
.circle-point {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-point::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 0 5px 5px rgba(134, 7, 20, 1);
  cursor: pointer;
  transition: all 0.3s;
  /* z-index: 1; */
}
.circle-point:hover::before {
  box-shadow: 0 0 5px 5px rgba(134, 7, 20, 0.6);
}
.house-map__box {
  position: absolute;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
}
.house-map__box:hover {
  z-index: 2;
}
.house-map__box-1 {
  top: 335px;
  left: 370px;
}
.house-map__box-2 {
  top: 253px;
  left: 429px;
}
.house-map__box-3 {
  top: 67px;
  left: 1025px;
}
.house-map__box-4 {
  top: 150px;
  left: 980px;
}
.house-map__box-5 {
  top: 243px;
  left: 1000px;
}
.house-map__box-6 {
  top: 400px;
  left: 1125px;
}
.house-map__box-7 {
  top: 460px;
  left: 1360px;
}
.house-map__box-8 {
  top: 100px;
  left: 740px;
}
.house-map__box-9 {
  top: 160px;
  left: 1185px;
}
.house-map__box-7 .house-map__info {
  transform: translateX(-82%);
}
.house-map__box-3 .house-map__info {
  transform: translateY(59%) translateX(5%);
  margin-bottom: 0px;
  margin-left: 9px;
}
.house-map__box-8 .house-map__info {
  transform: translateY(120%);
}
.house-map__box-9 .house-map__info {
  transform: translateX(-50%);
}
.house-map__box.active {
  z-index: 2;
}
.house-map__info {
  opacity: 0;
  width: 0;
  /* width: 100%; */
  /* padding: 21px 23px; */
  height: 0;
  border-radius: 8px;
  background: var(--white-color);
  margin-bottom: 9px;
  margin-left: 9px;
  transition: all 0.5s;
  position: relative;
}
.info__icon-close {
  position: absolute;
  right: 7px;
  top: 7px;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}
.house-map__info_title {
  font-size: 14px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 10px;
}
.house-map__info_desc {
  font-size: 11px;
  font-weight: var(--font-Regular);
  margin-bottom: 15px;
  max-width: 209px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 59px;
}
.house-map__info .product__btn {
  height: 30px;
}
.house-map__info.show {
  opacity: 1;
  position: relative;
  z-index: 10;
  width: calc(276px - 46px);
  height: calc(170px - 42px);
  padding: 21px 23px;
}
.main-section__wrap {
  /* position: relative; */
  padding-top: 235px;
}
.main-section__title {
  font-size: 48px;
  font-weight: var(--font-Bold);
}
.main-section__subtitle {
  margin: 10px 0 37px;
  font-size: 30px;
  font-weight: var(--font-Semi-bold);
}
.bg-color-green {
  background-color: var(--bg-text-green);
  border-radius: 3px;
  color: var(--white-color);

  display: inline-flex;
  align-items: center;
  padding: 0px 5px;
}
.main-section__desc {
  max-width: 400px;
  font-size: 14px;
}
.main-section__desc li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 25px;
}
.main-section__desc li span {
  font-weight: var(--font-Semi-bold);
}
.btn-contaiter {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.btn-contaiter a {
  position: relative;
  z-index: 8;
}

.main-section_roznica {
  background: url("../img/main-block-bg-roznica.png") no-repeat center top /
    cover;
}

/* ========== CARD ========== */
.card {
  margin-top: 20px;
  position: relative;
  background: var(--white-color);
  width: auto;
  height: auto;
  border: 1px dashed var(--text-color-gary);
  border-radius: 8px;
  padding: 25px 22px;
  transition: all 0.5s;
}
.card::before {
  position: absolute;
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(255, 255, 255, 1);
  z-index: -1;

  border-radius: 8px;

  top: -10px;
  left: -10px;
}
.card::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 27px;
  top: 20px;
  left: 0;
  background: var(--main-red-color);
  transition: all 0.5s;
}
.card:hover::after {
  height: 50px;
}
.card__modify {
  max-width: 310px;
  min-height: 100px;
  margin-right: 5%;
}
.card__modify:last-child {
  margin-right: 0%;
}
.card__modify::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.card__name {
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 15px;
}
.card__desc {
  font-size: 14px;
}
.cadr__wrap {
  margin-top: 30px;

  display: flex;
  align-items: center;
}
.card_hover:hover {
  border: 1px dashed var(--main-red-color);
}

/* ========== CATALOG ========== */
.catalog {
  position: relative;
  top: -45px;

  padding-top: 40px;
  background: var(--bg-color-lighter-blue);
}
.title {
  font-size: 36px;
  font-weight: var(--font-Semi-bold);
  text-align: center;

  margin-bottom: 20px;
}
.subtitle {
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
  text-align: center;

  margin: 0px auto 30px;

  max-width: 680px;
}
.catalog__wrap {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;

  grid-auto-rows: minmax(260px, auto);
}
.catalog__wrap .card__name {
  font-size: 30px;
  position: relative;
}
.catalog__wrap .card__desc li {
  position: relative;

  font-size: 16px;
  font-weight: var(--font-Semi-bold);

  display: flex;
  align-items: center;

  margin-left: 20px;
  margin-bottom: 20px;
}
.catalog__wrap .card__desc li::before {
  position: absolute;
  content: "";

  width: 5px;
  height: 5px;
  left: -20px;

  border-radius: 50%;

  background: var(--main-red-color);
}
.catalog-down-line svg {
  position: absolute;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.1));
  z-index: -1;
}
.catalog__wrap .card::before {
  overflow: hidden;
}
.catalog__wrap .card img {
  position: absolute;
  width: auto;
  height: auto;
  object-fit: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: 0;
}

.catalog__wrap .card:nth-child(1) img,
.catalog__wrap .card:nth-child(4) img {
  bottom: 0;
  top: initial;
  transform: translateY(0%);
}

/* ========== TOP-SELLER-TABS ========== */
.top-seller-tabs {
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-seller-tabs__wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.tabs {
  display: inline-flex;
  list-style: none;
  overflow: hidden;
}
.tabs li {
  float: left;
  border-bottom: none;
  margin: 0px 50px;
}
.tabs li a {
  display: block;
  font-size: 20px;
  color: var(--main-text-color);
  text-decoration: none;
  font-weight: var(--font-Semi-bold);
}
.tabs li a:hover {
  color: var(--text-color-gary);
}
.tabs li.active a {
  color: var(--main-red-color);
}
.tab_container {
  border-top: none;
  margin-top: 50px;
}
.tab_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(436px, auto);
  gap: 30px;
}
.product__card {
  position: relative;
  background-color: var(--bg-color-lighter-blue);
  border-radius: 8px;

  max-width: 290px;
  width: auto;

  height: 436px;

  padding: 10px 12px 20px;

  transition: all 0.5s;
}
.product__card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
.product__card img {
  max-width: 290px;
  width: 100%;
  height: 195px;
  border-radius: 6px;
  object-fit: contain;

  background-color: var(--white-color);
}
.product__card-wrap {
  max-width: 100%;
  width: auto;
  padding: 0px 10px;
}
.item-number {
  display: flex;
  color: var(--text-color-gary);
  font-size: 14px;

  margin-top: 20px;
  margin-bottom: 18px;
}
.product__name {
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
  color: var(--main-text-color);
}
.product__price-box {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;

  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product__price-box span {
  display: inline-flex;

  font-size: 20px;
  font-weight: var(--font-Bold);

  margin-bottom: 20px;
}

/* ========== FORM-SECTION ========== */
.form-section {
  position: relative;
  background: var(--bg-color-lighter-blue);
  height: 770px;
  margin-top: 50px;
  margin-bottom: 100px;
}
.form-section__up-line {
  position: absolute;
  top: -80px;
  width: 100%;
}
.form-section__down-line {
  position: absolute;
  bottom: -40px;
  width: 100%;
}
.form-section__desc {
  font-size: 18px;
  font-weight: var(--font-Semi-bold);

  margin: 30px 0;
}
.form-section img {
  position: absolute;
  max-width: 950px;
  width: 100%;
  z-index: 1;
  left: -200px;
}
.form-section .box-container {
  position: relative;
}
.form-section .block-form__title {
  font-size: 24px;
  margin-bottom: 43px;
}
.forma input[type="text"],
.forma input[type="tel"],
.forma input[type="email"] {
  max-width: 237px;
  width: -webkit-fill-available;
  height: 65px;
  padding-left: 30px;

  font-size: 14px;
  font-weight: var(--font-Regular);
  color: var(--main-text-color);
  font-family: var(--main-font);

  border: 0;
  border-radius: 8px;

  background-color: var(--bg-color-lighter-blue);
}
.forma textarea {
  max-width: 207px;
  width: auto;
  height: 60px;
  padding: 20px 30px;

  font-size: 14px;
  font-weight: var(--font-Regular);
  color: var(--main-text-color);
  font-family: var(--main-font);

  resize: none;

  border: 0;
  border-radius: 8px;

  background-color: var(--bg-color-lighter-blue);
}
.checkbox {
  text-align: center;
}
.form-section .checkbox-wrap {
  margin-top: 35px;
}
.checkbox-wrap {
  margin-top: 15px;
}
input[type="checkbox"] {
  position: relative;
}
input[type="checkbox"]::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: var(--bg-text-green);
  z-index: 1;
}
input[type="checkbox"]::before {
  display: none;
  position: absolute;
  content: "";
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}
.checkbox input:checked::before {
  display: flex;
}
.form-section .forma {
  position: absolute;
  z-index: 1;
  right: 20px;
  max-width: 750px;
  width: 100%;

  height: auto;
}
.forma {
  max-width: 350px;
  width: 100%;
  height: 512px;
  z-index: 1;
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.1);
}
.block-form__title {
  font-size: 24px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 28px;
}
.item-input {
  margin-bottom: 15px;
}
.form-section .item-input {
  margin-bottom: 0px;
}
.modal-wrap {
  position: relative;
  background: var(--white-color);
  width: auto;
  height: 442px;
  border: 1px dashed var(--text-color-gary);
  border-radius: 8px;
  padding: 30px 40px;
}
.modal-wrap::before {
  position: absolute;
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(255, 255, 255, 1);
  z-index: -1;

  border-radius: 8px;

  top: -10px;
  left: -10px;
}
.modal-wrap::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 45px;
  top: 20px;
  left: 0;
  background: var(--main-red-color);
}
.block-form {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.form-section .block-form {
  display: flex;
  align-items: inherit;
  flex-direction: column;
}
.form-section .modal-wrap {
  margin-top: 20px;
  position: relative;
  background: var(--white-color);
  width: auto;
  height: auto;
  border: 1px dashed var(--text-color-gary);
  border-radius: 8px;
  padding: 30px 50px;
}
.form-section .modal-wrap::before {
  position: absolute;
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(255, 255, 255, 1);
  z-index: -1;

  border-radius: 8px;

  top: -10px;
  left: -10px;
}
.form-section .modal-wrap::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 45px;
  top: 20px;
  left: 0;
  background: var(--main-red-color);
}
.forma__wrap {
  display: flex;
  align-items: flex-end;
}
.forma__wrap .red-btn {
  max-width: 271px;
  margin-left: 70px;
}
.item-input p {
  margin-bottom: 15px;
}

/* ========== WHY-US ========== */
.why-us {
  position: relative;
  padding-bottom: 72px;
}
.why-us img {
  position: absolute;
  bottom: 50px;
  right: 100px;
  max-width: 820px;
}
.why-us .subtitle {
  max-width: 670px;
  text-align: center;
  margin: 0px auto;
}
.why-us__wrap {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(265px, auto);
  gap: 40px;
}
.card_green-border::before {
  background: var(--bg-color-lighter-blue);
}
.card__name_why-us {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 44px;
}
.card__desc_why-us {
  font-size: 16px;
  font-weight: var(--font-Medium);
  line-height: 25px;
}

/* ========== PORTFOLIO ========== */
.portfolio {
  position: relative;
  padding: 60px 0;
}
.portfolio::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg.jpg") no-repeat center top / cover;
  opacity: 0.3;
  z-index: -1;
}
.portfolio .title {
  max-width: 765px;
  margin: 0px auto;

  margin-bottom: 25px;
}
.portfolio .subtitle {
  max-width: 700px;
  margin: 0px auto;
}
.text-red {
  color: var(--main-red-color);
}
.portfolio__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 40px;
}
.portfolio__wrap .green-btn {
  margin-top: 20px;
}
.portfolio__wrap_slider {
  position: relative;
  /* display: flex; */
  width: 100%;
  /* height: 504px; */
}
.portfolio__wrap_slider .slick-track {
  /* height: 534px; */
  display: flex;
}
.portfolio__box {
  /* position: relative; */
  padding: 15px;
  background: var(--white-color);

  max-width: 1300px;
  width: auto;
  height: 504px;

  border-radius: 8px;

  display: flex;

  margin: 0 auto;
  /* margin-bottom: 30px; */
}
.portfolio__box img {
  max-width: 750px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.portfolio__box-text {
  border-radius: 0px 8px 8px 0px;
  padding: 26px 30px;
  border-top: 1px dashed #b8b8b8;
  border-bottom: 1px dashed #b8b8b8;
  border-right: 1px dashed #b8b8b8;

  width: 100%;

  display: flex;
  flex-direction: column;
}
.box-text__title {
  font-size: 24px;
  font-weight: var(--font-Bold);

  margin-bottom: 15px;
}
.box-text__adderss {
  display: flex;
  align-items: center;

  font-size: 14px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 60px;
}
.box-text__adderss img {
  max-width: 25px;
  margin-right: 10px;
}
.box-text__desc {
  margin-bottom: 40px;
}
.box-text__desc-title {
  font-size: 18px !important;
  font-weight: var(--font-Semi-bold);

  margin-bottom: 15px;
}
.box-text__desc p {
  font-size: 14px;
}

/* ========== TO-UP ========== */
.to-up {
  position: fixed;
  left: 0;
  top: 0;
  width: 80px;
  z-index: 2;
  height: 100%;
  background: rgba(229, 237, 244, 0.3);

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
#scroller {
  display: none;
}
.to-up:hover {
  background: rgba(229, 237, 244, 1);
}

/* ========== MAIN-CONTACT ========== */
.main-contact {
  padding: 0px 0px 120px;
}
.main-contact__wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.main-contact .title {
  text-align: left;
  margin-bottom: 50px;
}
.main-contact__wrap-item {
  max-width: 274px;
  width: 100%;
}
.main-contact__wrap-item .accordion__body {
  padding: 20px 0 0;
}
.wrap-item__title {
  font-size: 36px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 56px;
}
.wrap-item__list {
  font-size: 14px;
}
.wrap-item__list li {
  margin-bottom: 25px;
}
.wrap-item__list li:last-child {
  margin-bottom: 0px;
}
.wrap-item__list a {
  font-weight: var(--font-Regular);
}
.wrap-item__list p {
  line-height: 25px;
}
.btn-requisites {
  font-size: 16px;
  font-weight: var(--font-Semi-bold) !important;
  color: var(--main-red-color);
  text-decoration: underline;
}
.contacts__map {
  max-width: 650px;
  width: 100%;
  height: 512px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.1);
}

/* ========== ACCORDION ========== */
.catalog__nav .accordion__wrap {
  margin-bottom: 1px;
  width: 275px;
  margin-right: 20px;
  background: var(--bg-color-lighter-blue);
}
.catalog__nav .accordion__head {
  font-size: 18px;
  font-weight: 600;

  background: var(--color-blue);
}
.catalog__nav .accordion__body {
  background: var(--gradient-card-catalog);
  color: var(--color-white);
}
.catalog__nav .accordion__body::-webkit-scrollbar {
  width: 0;
}
.catalog__nav .accordion__body ul li {
  position: relative;
  margin: 0px 0px 30px;
  font-size: 15px;
  transition: all 0.3s;
  left: 20px;
}
.catalog__nav .accordion__head_active {
  position: relative;
  background: var(--gradient-tab-product);
}
.catalog__nav .accordion__body {
  max-height: 354px;
  overflow-y: scroll;
}
.catalog__nav .accordion__body ul li a {
  transition: all 0.3s;
}
.catalog__nav .accordion__body ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 7px;
  left: -20px;
  border-radius: 50%;
  background: var(--main-red-color);

  transition: all 0.3s;
}
.catalog__nav .accordion__body ul li:last-child {
  margin: 0px 0px 0px;
}
.main-catalog__wrap {
  margin-bottom: 45px;
  display: flex;
}
.catalog__items-wrap {
  width: 77%;
}
.catalog__item {
  /* position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  grid-gap: 20px; */
}
.catalog__item_slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.catalog__item_slider .slick-track {
  display: flex;
}
.catalog__item_slider .card {
  margin: 0 5px;
}
.catalog__item-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  grid-gap: 20px;

  margin-bottom: 30px;
}
.catalog__item-product .product__card img {
  max-width: 100%;
  width: 100%;
}
.catalog__nav_mobile {
  display: none;
  align-items: center;
  justify-content: space-between;

  width: 200px;
  padding: 10px;

  background: var(--bg-color-ligft-blue);
}
.catalog__nav_mobile i {
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: var(--font-Semi-bold);
  color: var(--color-white);
  transition: all 0.3s;
}
.item__accordion {
  max-width: 1175px;
  width: 100%;
}
.accordion__wrap:first-child {
  border-radius: 8px 8px 0px 0px;
}
.accordion__wrap:last-child {
  margin-bottom: 0px;
}
.accordion__head {
  position: relative;
  display: flex;
  align-items: center;

  width: auto;

  padding: 24px 29px;

  color: var(--main-text-color);

  font-size: 30px;
  font-weight: 900;

  cursor: pointer;
}
.accordion__head i {
  color: var(--main-red-color);
  position: absolute;
  right: 37px;
  transform: rotate(180deg);
  transition: all 0.5s;
  font-size: 12px;
}
.rotate {
  display: flex;
  transform: rotate(0deg) !important;
}
.accordion__body {
  width: auto;
  display: none;
  background: white;

  padding: 20px 25px;

  color: var(--color-dark-blue);
}
.catalog__item .card img {
  width: 100%;
  height: 125px;
  display: flex;
  margin: 10px auto 0;
  object-fit: contain;
}
.filter {
  display: flex;
  margin: 35px 0 24px;
  align-items: center;
}
.filter .select__head::after {
  right: 0;
}

.filter p {
  margin-right: 10px;
}

/* ========== PAGINATION ========== */
.pager {
  display: flex;
  align-items: center;
  max-width: 228px;
  width: 100%;
  margin: 0 auto;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0px 10px;
  min-width: 30px;
  height: 30px;

  font-weight: var(--font-Medium);
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.5s;
}
.page-numbers:hover {
  background: var(--bg-color-lighter-blue);
}
.current {
  background: var(--bg-color-lighter-blue);
  border-radius: 6px;
  font-weight: normal;
}
.prev,
.next {
  color: var(--main-red-color);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  margin: 35px 0;
  overflow-x: scroll;
}
.breadcrumb::-webkit-scrollbar {
  width: 0;
}
.breadcrumb ol {
  font-size: 13px;
  display: flex;
  align-items: center;
  color: var(--text-color-gary);
  width: max-content;
}
.breadcrumb ol li {
  margin-right: 15px;
}
.breadcrumb ol a {
  color: var(--text-color-gary);
}
.span_m_l_20 {
  margin-left: 15px;
}

.breadcrumb .navxt {
  font-size: 13px;
  color: var(--text-color-gary);
}

/* ========== MAIN-CALC ========== */
.main-calc .bg-wrap {
  max-width: max-content;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 35px;
}
.main-calc .bg-wrap span {
  margin-right: 20px;
}
.roof-dimensions {
  margin-bottom: 60px;
}
.roofs-tabs__wrap {
  display: flex;
  gap: 35px;
  overflow-x: scroll;

  margin-bottom: 60px;
}
.roofs-tabs__wrap::-webkit-scrollbar {
  width: 0;
}
.roofs-tabs__item {
  max-width: 202px;
  width: 100%;
  height: 178px;

  padding: 20px;
}
.roofs-tabs__item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.roofs-tabs__item a:hover {
  opacity: 1;
}
.main-calc_bg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  border-radius: 8px;
  border: 1px dashed #b8b8b8;

  background: var(--white-color);
  transition: all 0.5s;

  cursor: pointer;
}
.main-calc_bg:hover {
  opacity: 1;
  background: var(--bg-color-lighter-blue);
}
.main-calc_bg-active {
  opacity: 1;
  background: var(--bg-color-lighter-blue);
  border: 1px dashed var(--main-red-color);
}
.roofs-tabs__item img {
  margin-bottom: 25px;
}
.roofs-tabs__item p {
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
}
.select-material__wrap {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.select-material__btn {
  max-width: 242px;
  width: 100%;
  height: 66px;
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
}
.select-section {
  max-width: 355px;
  width: 100%;
}
.form-row {
  position: relative;
  max-width: 355px;
  width: 100%;
  height: 62px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: var(--white-color);

  margin-bottom: 20px;
}
.form-row__title {
  top: 40%;
  left: 30px;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  font-size: 14px;
  background: var(--white-color);
  position: absolute;
  line-height: 0.54rem;
  font-weight: var(--font-Medium);
  white-space: nowrap;
  width: max-content;
  height: 15px;
  pointer-events: none;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.form-control {
  width: 100%;
  height: 100%;
  border: none !important;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  padding-left: 30px;
}
.form-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 42px;
  height: 42px;

  border-radius: 3px;

  margin-right: 14px;
  background: var(--bg-color-lighter-blue);
  color: var(--main-text-color);

  font-size: 16px;
  font-weight: var(--font-Bold);
  transition: all 0.5s;
}
.form-row__title-active {
  top: 0px;
  left: 10px;
  font-size: 10px;
}
.form-control:focus ~ .form-row__icon {
  background: var(--main-red-color);
  color: var(--white-color);
}
.error-msg {
  display: none;
  position: absolute;
  font-size: 12px;
  bottom: -15px;
  right: 0;
  color: var(--main-red-color);
}
.select-roof {
  display: flex;
  position: relative;

  max-width: 100%;
  width: auto;
}
.roof-img-section {
  position: relative;
  top: -50px;
  right: -200px;
}
.roof-img-section img {
  width: auto;
  height: auto;
}
.find-price__list {
  max-width: max-content;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.find-price__list li {
  max-width: 465px;
  width: 100%;
  font-size: 16px;
  font-weight: var(--font-Semi-bold);

  margin-bottom: 30px;
}
.main-calc .forma {
  position: relative;
  max-width: 750px;
  width: 100%;
  height: max-content;
  margin: 0 auto;
  z-index: 2;
  margin-bottom: 90px;
}
.main-calc .forma .modal-wrap {
  height: max-content;
}
.main-calc .forma .item-input {
  margin-bottom: 0;
}
.main-calc .block-form {
  display: flex;
  align-items: inherit;
  flex-direction: column;
}
.main-calc .checkbox,
.form-section .checkbox {
  text-align: left;
}

/* ========== main-projects ========== */
.main-projects {
  margin-bottom: 60px;
}
.main-projects .title {
  margin-bottom: 30px;
}
.main-projects__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(432px, auto);
  gap: 50px;
  margin-bottom: 40px;
}
.main-projects__item {
  max-width: 390px;
  width: auto;
  height: 402px;

  padding: 15px;

  border-radius: 8px;
  background: var(--white-color);
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);

  transition: all 0.5s;
}
.main-projects__item:hover {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  transform: scale(1.01);
}
.main-projects__img-box {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;

  border: 1px dashed #b7b7b7;
}
.main-projects__img-box:hover {
  opacity: 1;
}
.main-projects__img-box:hover img {
  transform: scale(1.1);
}
.main-projects__img-box img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 0.5s;
}
.main-projects__item img:hover ~ .main-projects__name p {
  transform: translateX(10px);
}
.main-projects__name {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
  color: var(--white-color);
  transition: all 0.5s;
}
.main-projects__name p {
  position: relative;
  font-size: 18px;
  font-weight: var(--font-Bold);
  padding: 0 20px;
  margin-bottom: 10px;
  transition: all 0.5s;
}
.main-projects__name span {
  display: flex;
  padding: 0px 20px 20px;

  font-size: 14px;
  font-weight: var(--font-Semi-bold);
}
.main-projects__name span img {
  max-width: 11px;
  height: 14px;
  margin-right: 20px;
}
.main-projects__name::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80px;
  background: var(--gradient-project-card);
  bottom: 0;
  z-index: -1;
}

/* ========== main-project ========== */
.portfolio__box_position {
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.portfolio__box_position .portfolio__box-text {
  border-radius: 8px 0px 0px 8px;
  border-right: 0px dashed #b8b8b8;
  border-left: 1px dashed #b8b8b8;
}
.desc_size {
  font-size: 18px;
  font-weight: var(--font-Semi-bold);
}
.box-text__list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
}
.box-text__list li {
  font-size: 14px;
}
.box-text__list li span {
  display: flex;
  margin-bottom: 15px;
}

/* ========== GELLARY SLIDER ========== */
.main-info__gallery-img {
  position: relative;
  max-width: 845px;
  width: 100%;

  display: flex;
}
.slick-list {
  overflow: hidden;
}
.gallery-img__slider-small {
  background: var(--bg-color-lighter-blue);
  position: absolute;
  padding: 20px 15px;

  display: block;
  max-width: 130px;
  width: 100%;
  height: 465px;

  border-radius: 8px;
  right: 15px;
  z-index: 2;
}
.gallery-img__slider-small .slick-track {
  display: block;
}
.slider-small__item {
  max-width: initial;
  height: 130px;
  margin-bottom: 25px;
}
.slider-small__item img {
  max-width: 130px !important;
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.slider-small__item:not(.slick-current) img {
  opacity: 0.6;
}
.gallery-img__slider-big {
  max-width: 750px;
  width: 100%;
  height: 504px;
  position: relative;
}
.gallery-img__slider-big .slick-track {
  display: flex;
}
.portfolio__gallery-img {
  max-width: 750px;
  width: 100%;
}
.slider-big__item {
  max-width: 750px;
  width: 100% !important;
  height: 504px;
}
.slider-big__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots li {
  list-style: none;
  margin: 0px 5px;
}
.slick-dots button {
  font-size: 0;
  border: 1px solid var(--main-red-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: var(--white-color);
}
.slick-dots .slick-active button {
  background: var(--main-red-color);
}

/* ==================== form-parallax ==================== */
.form-parallax {
  position: relative;
  background: url("../img/form-bg.jpg") no-repeat center top / cover;
  padding-top: 100px;
  z-index: 1;
  pointer-events: all;
}
.form-parallax .form-section {
  background: none;
  margin: 0;
  height: max-content;
}
.form-parallax .form-parallax__content {
  position: relative;
  height: 840px;
  pointer-events: all;
  z-index: 100;
}
.form-parallax .forma {
  right: inherit;
  box-shadow: none;
  position: relative;
}
.form-parallax .modal-wrap::before {
  box-shadow: 0 10px 10px 5px rgb(0 0 0 / 10%);
}
.parallax-men {
  position: absolute;
  bottom: 0;
  right: 20px;
  height: 777px;
  z-index: 3;
  pointer-events: none;
}
.form-parallax__text {
  max-width: 750px;
}
.form-parallax__text .form-section__desc {
  max-width: 650px;
}
.form-parallax__title {
}
.font_medium {
  font-size: 40px;
  font-weight: var(--font-Medium);
}

/* ==================== MAP ==================== */
.map-links {
  max-width: 400px;
  width: auto;
  height: auto;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 25px;
  margin: 50px auto 0;
}
.map-links p {
  font-size: 30px;
  text-align: center;
  color: #730510;
  margin-bottom: 20px;
}
.map-links ol {
  list-style: decimal;
}
.map-links li {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 20px;
  list-style: inside decimal;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgb(189, 189, 189);
}
.map-links span {
  font-size: 10px;
}
.map-links__done {
  color: #3ea25b;
}
.map-links__in-progress {
  color: var(--footer-bg-color);
}
.map-links__wait {
  color: orange;
}
.map-links__done_new {
  color: darkblue;
}

/* ========== ABOUT COMPANY ========== */
.about-company {
  padding-bottom: 100px;
}
.about-company__wrap {
  display: flex;
  gap: 30px;
}
.about-company__tab_container {
  max-width: 957px;
  width: 100%;
}
/* .about-company__tab_content {} */
.a-c__tabs {
  min-width: 372px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.a-c__tabs li {
  width: auto;
  height: 80px;

  background: var(--bg-color-lighter-blue);
  border-radius: 8px;

  display: flex;
  align-items: center;

  padding-left: 40px;
  transition: all 0.5s;

  font-size: 16px;
  font-weight: var(--font-Semi-bold);
}
.a-c__tabs li a {
  opacity: 1;
}
.a-c__tabs li:hover {
  background: var(--bg-color-ligft-blue);
}
.a-c__tabs li:hover:not(.a-c__tabs_active) a {
  opacity: 0.4;
}
.a-c__tabs_active {
  background: var(--bg-color-ligft-blue) !important;
}
.tab_content__title {
  font-size: 30px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 30px;
}
.tab_content__subtitle {
  font-size: 24px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 25px;
}
.a-c-img {
  max-width: 100%;
  width: auto;
  height: 394px;
  border-radius: 8px;
  margin-bottom: 35px;
  object-fit: cover;
}
.a-c-img_big {
  background: var(--bg-color-ligft-blue);
}
.a-c-text {
  display: grid;
  gap: 30px;
  font-size: 14px;
  font-weight: var(--font-Regular);
}
.grid-specifications__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 458px));
  row-gap: 30px;
  column-gap: 40px;
  margin-bottom: 45px;
}
.grid-specifications__cards .card {
  padding: 20px 40px;
}
.num_block {
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: baseline;
}
.num_block p {
  font-size: 72px;
  font-weight: var(--font-Bold);
}
.num_block span {
  font-size: 30px;
  font-weight: var(--font-Bold);
}
.desc_block {
  font-size: 16px;
}
.a-c__text_bg {
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 25px 40px;
  border-radius: 8px;
  background: var(--bg-color-ligft-blue);

  color: var(--main-text-color);
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
  line-height: 25px;
}
.a-c__text_bg li {
  display: flex;
  position: relative;
  margin-bottom: 20px;
}
.a-c__text_bg li::before {
  position: relative;
  content: "";
  background: url("../img/line-stile-img.png");
  width: 23px;
  height: 23px;
  margin-right: 15px;
}
.a-c__text_bg .card p {
  font-size: 14px;
  font-weight: var(--font-Medium);
}
.about-company__slider {
  display: grid;
  position: relative;
  max-height: 401px;
  background: var(--bg-color-ligft-blue);
  padding: 10px;
  border-radius: 8px;
  margin-top: 25px;
}
.about-company__slider-item {
  max-height: 401px;
  border-radius: 8px;
}
.about-company__slider-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px dashed #b7b7b7;
  object-fit: cover;
}
.about-company__slider .slick-track {
  display: flex;
  overflow: hidden;
}
.slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;

  border-radius: 3px;

  margin: 0 -10px;

  color: var(--main-red-color);
  background: var(--bg-color-ligft-blue);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.slick-prev {
  position: absolute;
  left: 0;
}
.slick-next {
  position: absolute;
  right: 0;
}
.slick-prev i,
.slick-next i {
  transition: all 0.2s;
}
.slick-prev:hover i {
  transform: translateX(-3px);
}
.slick-next:hover i {
  transform: translateX(3px);
}
.slick-prev:active i {
  transform: translateX(0);
}
.slick-next:active i {
  transform: translateX(0);
}
.grid-team__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.team__person {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team__person_img {
  position: relative;
  border-radius: 50%;
  min-width: 143px;
  max-width: 143px;
  height: 143px;
}
.team__person_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.online {
  position: absolute;
  top: 0px;
  left: 25px;
  display: flex;
  width: 12px;
  height: 12px;
  background: #64c400;
  border: 2px solid #fff;
  border-radius: 50%;
}
.team__about {
  margin-top: 25px;
}
.team__person-name {
  font-size: 18px;
  font-weight: var(--font-Semi-bold);
}
/* .team__contacts {} */
.hr_color {
  width: calc(100% + 40px);
  margin: 35px 0px 25px -20px;
  background: var(--bg-color-ligft-blue);
  border: 0;
  height: 1px;
}
.team__contacts {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.team__contacts li p {
  margin-bottom: 10px;
  font-size: 14px;
}
.team__contacts li a {
  font-size: 16px;
  font-weight: var(--font-Bold);
}
.about-company__reviews-slider {
  position: relative;
  display: grid;
}
.about-company__reviews-slider .slick-slider {
  max-width: 900px;
  width: auto;
}
.about-company__reviews-slider .slick-track {
  display: flex;
  width: auto;
}
/* .about-company__reviews-slider .slick-list { padding-bottom: 20px; } */
.reviews-slider-item {
  margin: 0 20px 20px;
}
.reviews-slider-item .card {
  height: calc(100% - 70px);
}
.reviews-slider__date {
  font-size: 14px;
  color: #666666;
  padding: 5px 8px;
  background: var(--bg-color-ligft-blue);
}
.reviews-slider__name {
  font-size: 18px;
  font-weight: var(--font-Semi-bold);
  margin: 27px 0;
}
.reviews-slider__review {
  font-size: 14px;
  margin-bottom: 30px;
}
.btn_red {
  position: relative;
  width: auto;
  font-size: 14px;
  color: var(--main-red-color);
}
.btn_red::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--main-red-color);
  bottom: 0;
}
/* .about-company__accordion {} */
.partners__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.partners__item {
  border-radius: 8px;
  border: 1px dashed #b7b7b7;
  height: 164px;

  display: grid;
  align-items: center;
  justify-content: center;
}
.partners__item img {
  max-width: 132px;
  height: 48px;
  object-fit: contain;
}
.certif {
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.certif img {
  width: 30px;
  height: 36px;
  margin-right: 30px;
}
.certif a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.certif .card_green-border:before {
  box-shadow: 0 10px 10px 5px rgb(0 0 0 / 10%);
}
.item__accordion_vacancy {
  max-width: 100%;
  width: auto;
  display: block !important;
}
.item__accordion_vacancy .accordion__wrap {
  max-width: 100%;
  width: auto;
  margin-bottom: 40px;
}
.item__accordion_vacancy .card::before {
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.2);
}
.item__accordion_vacancy .accordion__wrap:first-child {
  border-radius: 8px;
}
.item__accordion_vacancy .accordion__head {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: var(--font-Semi-bold);
  padding: 0px 30px 0px 0px;
}
.item__accordion_vacancy .accordion__head i {
  right: 0;
  font-size: 20px;
  transform: rotate(45deg);
}
.accordion__body_vacancy ul {
  font-size: 14px;
  font-weight: var(--font-Medium);
}
.accordion__body_vacancy li {
  margin-bottom: 15px;
}
.accordion__body_vacancy .a-c-text {
  margin: 30px 0;
}
.item__accordion_vacancy .card::after {
  display: none;
}
.dotted-list li {
  position: relative;
  margin-bottom: 30px;
  margin-left: 20px;
  font-size: 14px;
}
.dotted-list li::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  background: #000;
  border-radius: 50%;
  top: 7px;
  left: -20px;
}
.table-wrapper {
  overflow-x: scroll;
}
.table-wrapper::-webkit-scrollbar {
  background: transparent;
  max-width: 5px;
  max-height: 5px;
}
.table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--main-red-color);
  border-radius: 10px;
}
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px 8px 8px 8px;
}
.table-wrapper thead tr th {
  background: var(--bg-color-ligft-blue);
  padding: 20px 25px;
  font-size: 16px;
  font-weight: var(--font-Medium);
}
.table-wrapper thead tr th:first-child {
  border-radius: 8px 0px 0px 8px;
}
.table-wrapper thead tr th:last-child {
  border-radius: 0px 8px 8px 0px;
  text-align: left;
}
.table-wrapper tbody {
  border: 15px solid var(--bg-color-lighter-blue);
}
.table-wrapper tr td {
  border-bottom: 1px solid var(--bg-color-lighter-blue);
  padding: 20px 25px;
  background: #fff;
}
.table-wrapper tr td:last-child,
.table-wrapper tr td:nth-child(2) {
  text-align: center;
}
.grid-partners__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 36px;
  row-gap: 26px;
  margin-bottom: 30px;
}
.forma_large {
  max-width: 100%;
  width: auto;
  height: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.form-grid .item-input {
  margin: 0;
}
.form-grid .item-input:last-child {
  grid-column: 1 / -1;
}
.form-grid .item-input input {
  max-width: 100%;
}
.form-grid .item-input textarea {
  max-width: 100%;
  width: calc(100% - 60px);
}
.about-company__tab_content form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about-company__tab_content .modal-wrap {
  height: auto;
}
.about-company__tab_content .btn-2 {
  margin: 20px auto 0;
}

/* ==================== NEWS ==================== */
.main-news {
  padding-bottom: 100px;
}
.main-news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin-bottom: 35px;
}
.main-news__item {
  position: relative;
  max-width: 417px;
  min-height: 486px;
  padding: 10px;
  background: var(--bg-color-lighter-blue);
  border-radius: 8px;
}
.main-news__item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-radius: 9px;
  top: -1px;
  left: -1px;
  background: transparent;
  z-index: -1;
  transition: all 0.7s;
}
.main-news__item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-radius: 9px;
  bottom: -1px;
  right: -1px;
  background: transparent;
  z-index: -1;
  transition: all 0.7s;
}
.main-news__item:hover::before {
  border-left: 1px solid var(--main-red-color);
  border-top: 1px solid var(--main-red-color);
  width: calc(100% + 1px);
  height: calc(100% + 1px);
}
.main-news__item:hover::after {
  border-right: 1px solid var(--main-red-color);
  border-bottom: 1px solid var(--main-red-color);
  width: calc(100% + 1px);
  height: calc(100% + 1px);
}
.main-news__item img {
  width: 100%;
  max-height: 244px;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s;
}
.main-news__item a:hover:first-child {
  opacity: 1;
}
.main-news__item a:hover img {
  transform: scale(1.01);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.main-news__content {
  max-width: 100%;
  width: auto;
  padding: 27px 19px 19px;
}
.main-news__content .reviews-slider__date {
  display: block;
  margin-bottom: 22px;
  width: max-content;
}
.main-news__content a {
  font-size: 24px;
  font-weight: bold;
}
.main-news__desc {
  max-height: 75px;
  overflow: hidden;
  text-overflow: ellipsis;
  -ms-line-clamp: 3;
  -webkit-line-clamp: 3;

  font-size: 14px;
  line-height: 25px;
  font-weight: var(--font-Medium);
  margin-top: 32px;
}

/* ==================== ARTICLE  ====================*/
.main-article {
  margin-bottom: 100px;
}
.article-title {
  font-size: 36px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 20px;
}
.article__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.news-article {
  max-width: 720px;
  width: 100%;
}
.news-article p {
  font-size: 14px;
  font-weight: var(--font-Regular);
  padding: 15px 0;
  line-height: 25px;
}
.news-article ul,
.news-article ol {
  position: relative;
}
.news-article li {
  padding: 15px 0;
}
.news-article ul {
  font-size: 16px;
  font-weight: var(--font-Semi-bold);
}
.news-article ul li {
  margin-left: 39px;
  display: flex;
  align-items: center;
}
.news-article ul li::before {
  position: absolute;
  content: "";
  background: url("../img/line-stile-img.png");
  width: 23px;
  height: 23px;
  left: 0;
}
.news-article ol li {
  margin-left: 20px;
  font-size: 14px;
}
.news-article ol li::before {
  position: absolute;
  content: "•";
  left: 0px;
}
.news-article blockquote {
  margin: 15px 0;
  border-radius: 8px;
  padding: 25px 39px;
  width: auto;

  font-size: 14px;
  line-height: 25px;
  font-weight: var(--font-Medium);
  background: var(--bg-color-lighter-blue);
}
.news-article h2 {
  font-size: 30px;
  font-weight: var(--font-Semi-bold);
  padding: 35px 0 15px;
}
.article__right-side img {
  max-width: 597px;
  max-height: 394px;

  width: 100%;
  height: 100%;

  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 55px;
}
.article__right-side blockquote {
  position: relative;
  max-width: 507px;
  width: auto;
  padding: 40px 45px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 25px;
  font-style: italic;
  background: var(--bg-color-lighter-blue);
}
.article__right-side blockquote::before {
  position: absolute;
  content: ",,";
  font-size: 72px;
  color: var(--main-red-color);

  top: -38px;
  left: 35px;
  font-style: normal;
  font-weight: var(--font-Semi-bold);
}
.article__right-side blockquote::after {
  position: absolute;
  content: ",,";
  font-size: 72px;
  color: var(--main-red-color);

  bottom: 13px;
  right: 35px;
  font-style: normal;
  font-weight: var(--font-Semi-bold);
}

/* ==================== PRODUCT-CARD  ==================== */
.product-card {
  margin-bottom: 100px;
}
.product-card__wrap {
  max-width: 100%;
  width: auto;
  height: auto;
  /* min-height: 670px; */
  border-radius: 8px;
  background: var(--bg-color-lighter-blue);
  padding: 10px;

  display: flex;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 50px;
}
.product-card__gallery {
  position: relative;
  max-width: 589px;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slick-list {
  overflow: hidden;
}
.product-card__small-slider {
  position: relative;
  display: flex;
  max-height: 148px;
}
.product-card__small-slider .slick-track {
  display: flex;
  gap: 10px;
  width: auto !important;
}
.product-card__small-slider .small-slider__item {
  max-width: 189px;
  width: 100% !important;
  height: 148px;
  border-radius: 8px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-card__small-slider .small-slider__item img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.product-card__small-slider .slick-current {
  border: 1px dashed var(--main-red-color);
  position: relative;
}
.product-card__small-slider .slick-current::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 42px;
  background: var(--main-red-color);
  left: -2px;
  top: 20px;
}
.product-card__big-slider {
  max-width: 100%;
  width: 100%;
  height: 492px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.product-card__big-slider .slick-track {
  display: flex;
}
.big-slider__item {
  width: 100% !important;
  height: 492px;
}
.big-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__small-slider .slick-arrow {
  transform: translateY(-40%);
  margin: 0 -30px;
}
.product-card__desc {
  position: relative;
  padding: 20px 30px;
  /* max-width: 650px; */
}
.product-card__desc-title {
  font-size: 30px;
  font-weight: var(--font-Bold);
}
.product-card__desc-list {
  margin-top: 50px;
  margin-bottom: 100px;
  /* max-height: 300px; */
  overflow-y: scroll;
  /* overflow: hidden; */
}
.product-card__desc-list::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  border-radius: 10px;
}
.product-card__desc-list::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
.product-card__desc-list::-webkit-scrollbar-thumb {
  border-radius: 10px;

  background: var(--main-red-color);
}
.desc-list__item {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin-bottom: 40px;
}
.desc-list__item p {
  max-width: max-content;
  width: 100%;
}
.line-feature {
  overflow: hidden;
}
.line-feature::after {
  display: block;
  white-space: nowrap;
  content: "....................................................................................................................................................................................................................................................................................................................";
  color: #b7b7b7;
}
.product-card__price-btn {
  position: absolute;
  display: flex;
  width: 100%;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  right: 30px;
  bottom: 30px;
}
.product-card__price-btn span {
  font-size: 30px;
  font-weight: var(--font-Bold);
}
.product-card__price-btn .red-btn {
  max-width: 204px;
}
.product-card__info-tab_container .card::before {
  box-shadow: 0px 0px 10px 0px var(--shadow-color);
}
.product-card__info-tab_container .card::after {
  display: none;
}
#tab1.product-card__info-tab_content {
  display: flex;
  gap: 50px;
}
#tab1.product-card__info-tab_content .product-card__desc-list {
  margin: 0;
  max-height: max-content;
  width: 50%;
}
#tab2.product-card__info-tab_content {
  /* display: grid;
  grid-template-columns: 728px auto;
  gap: 65px; */
  line-height: 35px;
}
/* .info-tab-content__desc {
  max-width: 728px;
} */
#tab3.product-card__info-tab_content {
  margin-top: 20px;
}
#tab3.product-card__info-tab_content input:not(input[type="checkbox"]) {
  max-width: 237px;
  width: -webkit-fill-available;
  height: 65px;
  padding-left: 30px;
  font-size: 14px;
  font-weight: var(--font-Regular);
  color: var(--main-text-color);
  font-family: var(--main-font);
  border: 0;
  border-radius: 8px;
  background-color: var(--bg-color-lighter-blue);
}
#tab3.product-card__info-tab_content textarea {
  max-width: 207px;
  width: auto;
  height: 60px;
  padding: 20px 30px;
  font-size: 14px;
  font-weight: var(--font-Regular);
  color: var(--main-text-color);
  font-family: var(--main-font);
  resize: none;
  border: 0;
  border-radius: 8px;
  background-color: var(--bg-color-lighter-blue);
  margin-bottom: 20px;
}
.info-tab-content-desc__wrap {
  font-size: 14px;
  font-weight: var(--font-Regular);
}
.info-tab-content-desc__wrap p {
  margin-bottom: 30px;
}
.product-card__info-tab_wrap .tabs {
  display: inline-flex;
  justify-content: space-between;
  /* max-width: 634px; */
  max-width: 400px;
  width: 100%;
}
.product-card__info-tab_wrap .tabs li {
  margin: 0;
}
.certif li div span {
  font-size: 14px;
  font-weight: var(--font-Medium);
  color: #666666;
}
.product-card__info-doc {
  margin-top: 10px;
}
.info-doc-title {
  font-size: 30px;
  font-weight: var(--font-Semi-bold);
  margin-bottom: 20px;
}
.similar-products {
  margin-top: 50px;
}
/* .similar-products__slider {
  position: relative;
  display: flex;
} */
.similar-products__slider .slick-track {
  display: flex;
  /* gap: 30px; */
}
.similar-products__item {
  max-width: 100%;
  /* width: 100%; */
  margin: 0 15px;
}
.similar-products__item .product__card img {
  max-width: 100%;
  width: 100%;
}

/* ==================== question-answer ====================*/
.question-answer {
  padding-bottom: 60px;
}
.question-answer__wrap {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.question-answer__item {
  max-width: 906px;
  width: 100%;
}
.question-answer__item .accordion__body {
  padding: 30px 0 0;
}
.question-answer__item .accordion__body p {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: var(--font-Regular);
}
.question-answer__item .accordion__body ul li {
  margin-bottom: 15px;
  font-weight: var(--font-Regular);
}
.callback-question {
  max-width: 354px;
  width: 100%;
  height: 396px;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.callback-question.card::after {
  content: none;
}
.callback-question.card::before {
  box-shadow: 0 10px 10px 5px rgb(0 0 0 / 20%);
}
.callback-question img {
  position: relative;
  top: -60px;
  width: 159px;
  height: 187px;
}
.callback-question__title {
  position: relative;
  top: -30px;
  text-align: center;
  font-size: 24px;
  font-weight: var(--font-Semi-bold);
}
.callback-question__desc {
  position: relative;
  top: -10px;
  font-size: 18px;
  text-align: center;
  max-width: 300px;
  line-height: 25px;
  margin-bottom: 30px;
}

/* ==================== price-list ==================== */
.price-list {
  padding-bottom: 100px;
}
.attention-section {
  margin-top: 80px;
}
.attention-text {
  max-width: 730px;
  font-size: 30px;
  font-weight: var(--font-Bold);
}
.attention-text span {
  color: var(--main-red-color);
}
.attention-section__wrap {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}
.attention-section__docs {
  max-width: 878px;
  width: 100%;
}
.attention-section__wrap .forma {
  height: max-content;
}
.attention-section__wrap .modal-wrap {
  height: auto;
}

/*****/
/* header {
  z-index: 3;
} */
.wpcr3_check_confirm input[type="checkbox"]::after {
  content: unset;
}
.catalog__nav .accordion__body ul li a.active,
.accordion__head_active {
  text-decoration: underline;
}

.card_hover.active {
  border: 1px dashed var(--main-red-color);
}
.fancybox-inner {
  overflow-x: hidden !important;
}
.forma.form-modal,
.modal-wrap {
  height: auto;
}

div.wpcf7-validation-errors {
  border: 0px;
  font-size: 0px;
  opacity: 0;
  position: absolute;
}

span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 12px !important;
  font-weight: normal;
  display: block;
  position: relative;
  top: -10px;
  display: none !important;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.input-form.wpcf7-not-valid,
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.input-form.wpcf7-not-valid {
  border: 1px solid red !important;
}

form .wpcf7-response-output {
  display: none !important;
}
div.wpcf7-mail-sent-ok {
  font-size: 0px;
  border: 0px !important;
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: absolute;
  top: 17px;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.error-404 {
  height: 400px;
  padding-top: 150px;
}

.error-404 h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.error-404 a {
  color: #666;
  text-decoration: underline;
}
.form-modal {
  display: none;
}
.fancybox-inner {
  overflow: hidden !important;
}
.form-btn-wr {
  margin: 0 auto;
}

.block-form__title {
  text-align: center;
}
.result-search {
  padding-bottom: 40px;
  /* background-color: #f7f6f5; */
  background-color: #fff;
}
.result-search__header {
  padding-top: 25px;
  padding-bottom: 33px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}
.result-search__header input {
  font-family: var(--main-font);
  border: 1px solid var(--text-color-gary);
  border-radius: 8px;
  padding: 10px;
}
.title-section_left {
  padding-top: 0;
  text-align: left;
  margin: 0;
  max-width: 100%;
  padding-bottom: 0;
}
.search-page {
  width: 715px;
  left: 30px;
  max-width: 100%;
  position: relative;
}
.result-search .row {
  margin-bottom: 30px;
}
.result-search header {
  position: unset;
}

.result-search .catalog {
  position: unset;
  top: 0;
  background: transparent;
}
.result-search article {
  padding-top: 20px;
}
.site-main header {
  position: unset;
}
.site-main .news-article {
  max-width: 100%;
}

.filter select {
  font-family: var(--main-font);
  border: 1px solid var(--text-color-gary);
  border-radius: 8px;
  padding: 10px;
}

/****/
.search-sity {
  margin-top: 26px;
  position: relative;
}

.icon-search {
  width: 55px;
  height: 48px;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: #000;
}

.search-sity input {
  height: 48px;
  padding: 0 55px;
  background-color: #ffffff;
  box-shadow: inset 0px 3px 3px 0px rgb(200 201 204 / 34%);
  border-radius: 8px;
  border: none;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #373c3d;
  font-family: "Proxima Nova";
  width: 100%;
}

.clear-search {
  height: 48px;
  width: 48px;
  font-size: 16px;
  color: #373c3d;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
}

.link-page {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  color: #176a74;
  display: inline-block;
  border-bottom: 1px solid #176a74;
  transition: all 0.3s;
}

.dropdown-city .link-page {
  color: #373c3d;
  cursor: pointer;
  border-bottom: 1px solid #373c3d;
}

.select-city__value i {
  font-size: 10px;
  margin-left: 10px;
  color: #176a74;
}
.select-city__value span {
  color: #373c3d;
  border-bottom: 1px solid #cdcdcd;
  transition: all 0.3s;
}
.select-city__value {
  cursor: pointer;
}
.dropdown-city__title {
  font-weight: 700;
  text-align: center;
}
.dropdown-city__title span {
  font-size: 18px;
  display: block;
  text-align: center;
}
.dropdown-city {
  background-color: var(--bg-color-ligft-blue);
  border-radius: 6px;
  width: 100%;
  padding: 25px;
  padding-bottom: 30px;
  max-width: 268px;
  position: absolute;
  top: 100%;
  margin-top: 20px;
  text-align: center;
  display: none;
  z-index: 90;
  left: 0;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}
.dropdown-city::after {
  position: absolute;
  display: block;
  content: " ";
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  bottom: 100%;
  left: 91px;
  border-bottom: 10px var(--bg-color-ligft-blue) solid;
}
.header-top__wrap {
  position: relative;
}
.btn-main_page {
  background-color: #a5cc3d;
  border-radius: 28px;
  box-shadow: none;
  cursor: pointer;
}
.dropdown-city .btn-main {
  margin: 7px auto;
  padding: 1em;
  display: block;
  width: max-content;
  height: 15px;
}
.dropdown-city .link-page {
  color: #373c3d;
  cursor: pointer;
  border-bottom: 1px solid #373c3d;
}
.dropdown-city .link-page:hover {
  border-color: transparent;
}
.close-dropdown {
  top: 9px;
  right: 9px;
  font-size: 16px;
  color: #1f7680;
  position: absolute;
  cursor: pointer;
}
.title-modal {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.modal-city {
  padding: 22px 30px;
  padding-bottom: 38px;
  top: 100%;
  right: 0;
  width: 100%;
  margin-top: 20px;
  background-color: #e9f1f2;
  box-shadow: 0px 10px 30px 0px rgba(29, 117, 128, 0.38);
  border-radius: 6px;
  display: none;
  z-index: 90;
  position: absolute;
}
.list-cities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.list-cities a {
  height: 50px;
  padding: 0 20px;
  min-width: 208px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d7580;
  margin-right: 13px;
  margin-top: 13px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(29, 117, 128, 0);
  border: 1px solid #09aba6 !important;
  border-radius: 8px;
  transition: all 0.3s;
}
.list-cities li:last-child a {
  margin-right: 0;
}
.list-cities a:hover,
.list-cities .active a {
  background-color: #1d7580;
  color: #fff;
}
.search-sity {
  margin-top: 26px;
  position: relative;
}
.search-sity input {
  height: 48px;
  padding: 0 55px;
  background-color: #ffffff;
  box-shadow: inset 0px 3px 3px 0px rgba(200, 201, 204, 0.34);
  border-radius: 8px;
  border: none;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #373c3d;
  font-family: "Proxima Nova";
  width: 100%;
}
.clear-search {
  height: 48px;
  width: 48px;
  font-size: 16px;
  color: #373c3d;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
}
.icon-search {
  width: 55px;
  height: 48px;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: #000;
}
.close-dropdown {
  width: 10px;
  height: 10px;
  top: 9px;
  right: 9px;
  font-size: 16px;
  color: #1f7680;
  position: absolute;
  cursor: pointer;
}
.close-dropdown:after {
  content: "x";
  position: absolute;
  font-size: 24px;
  left: 0;
  top: 0;
}
.select__head::after {
  display: none;
}
.product__btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--main-red-color);
  /* box-shadow: 0px 0px 10px 0px var(--main-green-color); */
  border-radius: 8px;
  border: none;
  max-width: 147px;
  width: 100%;
  height: 30px;
  color: var(--white-color);
  transition: all 0.5s;
  font-size: 14px;
  font-weight: var(--font-Medium);
}

.forma__wrap {
  justify-content: space-around;
}

form .btn-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-wr {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 25px;
}

.img-wr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-search .product__card {
  height: auto;
}

.screen-reader-text,
.nav-links {
  display: none;
}

.wpcr3_button_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-btn-green) !important;
  background-size: 100% 100%;

  box-shadow: 0px 0px 10px 0px var(--main-green-color);

  border-radius: 8px !important;
  border: none !important;
  border-bottom: 6px solid var(--main-green-color) !important;

  /* max-width: 275px;
  width: 100%;
  height: 65px; */

  color: var(--white-color) !important;
  transition: all 0.5s;

  font-size: 14px;
  font-weight: var(--font-Semi-bold) !important;
  cursor: pointer;
  margin-top: 20px;
}
.wpcr3_button_1:hover {
  opacity: 1;
  background-size: 200% 200%;
  box-shadow: 0px 0px 10px 2px var(--main-green-color);
  transform: scale(1.01);
}

.wpcr3_admin_response,
.wpcr3_review {
  margin-top: 0px !important;
  position: relative;
  background: var(--white-color);
  width: auto;
  height: auto;
  border: 1px dashed var(--text-color-gary);
  border-radius: 8px;
  padding: 25px 22px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  color: #000 !important;
}

.wpcr3_review {
}

.wpcr3_review_datePublished,
.wpcr3_review_author {
  font-weight: var(--font-Bold);
}

.wpcr3_admin_response::before {
  position: absolute;
  content: "\f3bf";
  left: -20px;
  top: 0;
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  color: #000;
  font-size: 20px;
  transform: scale(-1, 1);
}

.forma-calcuralor {
  display: none;
  height: auto;
  max-width: 100%;
  width: auto;
}

.forma-calcuralor form {
  max-width: 600px;
  width: 100%;
}

.items-input__wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.items-input__wrapper .item-input {
  margin-bottom: 0 !important;
  grid-column: 1 / 3;
}
.items-input__wrapper .red-btn,
.items-input__wrapper .item-input input {
  max-width: 100%;
}

.forma-calcuralor .find-price__list li {
  border-bottom: 1px solid var(--main-red-color);
}

.forma-calcuralor .block-form__title {
  font-weight: var(--font-Regular);
}

.search {
  overflow: hidden;
}
.search.active {
  overflow: visible;
}
.product-card__desc {
  min-width: 0;
}
.product-card__desc .desc-list__item::after {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  content: "...............................................................................................................................................................................................";
}
.product-card__desc .desc-list__item p:first-child {
  float: left;
}
.product-card__desc .desc-list__item p:last-child {
  float: right;
}
.product-card__desc .desc-list__item {
  display: block;
}
.main-catalog__wrap .title {
  text-align: left;
}
.thanks__wrap {
  padding: 30px;
}
.thanks__wrap .news-article {
  margin-bottom: 25px;
}
/**/
.form_radio_btn {
  display: inline-block;
  margin-right: 10px;
}
.form_radio_btn input[type="radio"] {
  display: none;
}
.form_radio_btn label {
  display: inline-block;
  cursor: pointer;
  padding: 0px 15px;
  line-height: 34px;
  border: 1px solid #999;
  border-radius: 6px;
  user-select: none;
}

/* Checked */
.form_radio_btn input[type="radio"]:checked + label {
  background: #ffe0a6;
}

/* Hover */
.form_radio_btn label:hover {
  color: #666;
}

/* Disabled */
.form_radio_btn input[type="radio"]:disabled + label {
  background: #efefef;
  color: #666;
}
.product-card__thickness {
  margin-bottom: 15px;
}
.asl_w_container {
  display: none;
}
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.header-search.active .asl_w_container {
  display: block;
}
.search.active {
  width: 300px;
}

/* form-block */
.form-block {
  position: relative;
  padding: 45px;
  background: #e5edf4;
  color: #030304;
  text-align: center;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  margin-top: -70px;
  margin-bottom: 50px;
}
.form-block:before {
  box-shadow: 0px 2px 10px rgb(0 0 0 / 20%);
}
.form-block__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-block__text {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 25px;
}

.form-block__popup {
  background: #fff;
  width: 1070px;
  margin: 0 auto;
}
.form-block__popup .form__item input:not(.red-btn) {
  background: #f6f9fc !important;
}
.form-block__popup .checkbox {
  text-align: left !important;
}
.form-block__popup .form-block__title {
  text-align: left;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.form-block__list {
  position: relative;
  margin-bottom: 50px;
  text-align: left;
}
.form-block__list li {
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  font-weight: 600;
}
.form-block__list li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -3px;
  width: 25px;
  height: 25px;
  background: url("../img/check-circle.png") 50% 50% no-repeat;
  background-size: cover;
}
.form-block__list li:not(:last-child) {
  margin-bottom: 15px;
}
.form-block__image {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 291px;
}
.form-block__image img {
  vertical-align: top;
  width: 100%;
}

@media (max-width: 1100px) {
  .form-block__popup {
    padding: 15px;
    width: 960px;
  }
}

@media (max-width: 991px) {
  .form-block__popup {
    width: 740px;
  }
  .form-block__image {
    position: absolute;
    right: 25px;
    top: 95px;
    width: 191px;
  }
}
@media (max-width: 768px) {
  .form-block__popup .form-block__title {
    text-align: left;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .form-block__popup {
    width: 530px;
  }
}
@media (max-width: 568px) {
  .form-block__popup {
    width: 285px;
  }
  .form-block__popup .form-block__title {
    text-align: left;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .form-block__list {
    margin-bottom: 30px;
  }
  .form-block__list li {
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    line-height: 21px;
  }
  .form-block__list li:before {
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
  }
  .form-block__list li:not(:last-child) {
    margin-bottom: 10px;
  }
  .form-block__image {
    display: none;
  }
}

/* popup-block */

.popup-block {
  position: relative;
  /* margin: 100px 0; */
}

/* form */
.form-block .form {
  width: 100%;
}
.form-block .form_line .form__item {
  margin: 0;
  width: 33.3333333333%;
}
.form-block .form_line .form__item:not(:last-child) {
  margin: 0px;
  margin-right: 15px;
  position: relative;
}
.form-block .form_line .form__item input {
  width: 100%;
  padding: 0 12px 0 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 56px;
  background: #fff;
  outline: none;
  border: none;
  border-radius: 6px;
}
.form-block .form_line .form__item-button .button {
  max-width: 250px;
  padding: 0;
}

.form-block .form__wrap-fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
.form-block .form__item input {
  width: 100%;
  padding: 0 12px 0 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #bdbdbd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 14px;
  line-height: 50px;
  background: #fff;
  outline: none;
}

@media screen and (max-width: 768px) {
  .form-block .form__wrap-fl {
    flex-direction: column;
  }
  .form-block .form_line .form__item {
    margin: 0;
    width: 100%;
  }
  .form-block .form_line .form__item:not(:last-child) {
    margin: 0px;
    margin-right: 0;
    margin-bottom: 15px;
    position: relative;
  }
  .form-block .form_line .form__item-button .red-btn {
    max-width: 100%;
    padding: 0;
  }
}

.line-form {
  width: 100%;
  position: relative;
}
.line-form .checkbox {
  text-align: left;
}
.line-form .form__item:not(:last-child) {
  margin: 0 0 4px;
  position: relative;
}
.line-form button {
  width: calc(45% + 25px);
  position: absolute;
  top: -2px;
  right: 0px;
  line-height: 72px;
  min-height: 72px;
  min-width: 60px;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  max-width: 100%;
}
.line-form button span {
  -webkit-transform: translate(0, 0px);
  transform: translate(0, 0px);
  display: inline-block;
}
.line-form__query {
  position: relative;
  display: block;
  min-height: 60px;
  background: transparent;
  border-radius: 0px;
}
.line-form__query input {
  width: 55%;
  padding: 0 12px 0 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #fff;
  border-radius: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 64px;
  min-height: 64px;
  background: #fff;
  outline: none;
  color: #000;
}
@media (max-width: 461px) {
  .line-form {
    width: 100%;
    position: relative;
  }
  .line-form button {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    line-height: 50px;
    min-height: 50px;
    min-width: 100px;
    padding: 0;
  }
  .line-form__query {
    position: relative;
    display: block;
    max-height: 50px;
    background: transparent;
    margin-bottom: 20px;
  }
  .line-form__query input {
    width: 100%;
    padding: 0 12px 0 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #fff;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 14px;
    line-height: 65px;
    min-height: 65x;
    outline: none;
    color: #fff;
  }
}

.why-us_roznica {
  margin-top: 20px;
  padding-top: 10px;
  background-color: #f6f9fc;
}
.why-us_roznica .why-us__wrap {
  grid-template-columns: repeat(12, 1fr);
}
.why-us_roznica .card {
  grid-column: span 4;
  padding-right: 150px;
}
.why-us_roznica .card-large {
  grid-column: span 6;
}
.why-us_roznica .card__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  text-align: right;
}
.why-us_roznica .card__image img {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: 100%;
  vertical-align: top;
}
.card__name_why-us,
.card__desc_why-us {
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1230px) {
  .why-us_roznica .card {
    grid-column: span 6;
    padding-right: 150px;
  }
  .why-us_roznica .why-us__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .why-us_roznica {
    margin-top: 0px;
    padding-top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .why-us_roznica .card {
    grid-column: span 12;
    padding-right: 150px;
  }
  .why-us_roznica .why-us__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .why-us_roznica .card__image img {
    display: inline-block;
  }
}
@media screen and (max-width: 650px) {
  .why-us_roznica {
    margin-top: 20px;
    padding-top: 35px;
  }
}
@media screen and (max-width: 461px) {
  .why-us_roznica .card__image {
    display: none;
  }
  .why-us_roznica .card {
    padding-right: 22px;
  }
  .why-us_roznica .card__name_why-us {
    margin-bottom: 18px;
  }
}

/* text-image */

.text-image {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
}
.text-image .title {
  margin-bottom: 20px;
}
.text-image .title span {
  color: #860714;
}
.text-image__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.text-image__text {
  padding-bottom: 30px;
}
.text-image__text p:not(:last-child) {
  margin-bottom: 20px;
}
.text-image__image {
  align-self: stretch;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.text-image__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
@media screen and (max-width: 1230px) {
  .text-image .title br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .text-image__wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .text-image__text {
    padding-bottom: 0px;
  }
  .text-image__image {
    padding-bottom: 44%;
    order: -1;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .text-image {
    padding-bottom: 40px;
  }
}

/* calculation */
.calculation {
  position: relative;
  padding-top: 20px;
  padding-bottom: 130px;
  background: #f6f9fc;
}
.calculation__content {
  width: 45%;
}
.calculation__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 68px;
  margin-bottom: 40px;
}
.calculation__title span {
  background: #65ce63;
  display: inline-block;
  border-radius: 10px;
  padding: 0 10px;
  color: #fff;
}
.calculation__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 50px;
}
.calculation__text a {
  text-decoration: underline;
}
.calculation__text a:hover {
  text-decoration: none;
}
.calculation__image {
  position: absolute;
  width: 55%;
  height: 100%;
  right: 0;
  top: 0;
}
.calculation__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}
@media screen and (max-width: 1400px) {
  .calculation__title {
    font-size: 42px;
    line-height: 54px;
    margin-bottom: 30px;
  }
  .calculation__text {
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1230px) {
  .calculation__title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 25px;
  }
  .calculation__text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .calculation {
    position: relative;
    padding-top: 40px;
    padding-bottom: 130px;
  }
  .calculation__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .calculation__text {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .calculation__content {
    width: 50%;
  }
  .calculation__image {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .calculation__image {
    display: none;
  }
  .calculation__content {
    width: 100%;
  }
  .calculation {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .calculation__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .calculation__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
  }
}

/* finished-works */
.finished-works {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
}
.finished-works__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.finished-works__item {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.finished-works__image {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  border-radius: 8px;
  overflow: hidden;
}
.finished-works__image:before {
  width: 100%;
  height: 35%;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, black);
  z-index: 1;
}
.finished-works__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.finished-works__image-content {
  position: absolute;
  left: 17px;
  bottom: 17px;
  color: #fff;
  z-index: 1;
}
.finished-works__image-content p {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
}
.finished-works__image-content span {
  position: relative;
  display: inline-block;
  padding-left: 17px;
}
.finished-works__image-content span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 14px;
  background: url("../img/pin-white.png") 50% 50% no-repeat;
  background-size: cover;
}
.finished-works__button {
  text-align: center;
  margin-bottom: 90px;
}

@media screen and (max-width: 1230px) {
  .finished-works__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  .finished-works__item {
    padding: 10px;
  }
  .finished-works__image-content p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .finished-works__image-content span {
    padding-left: 17px;
    font-size: 13px;
    line-height: 19px;
  }
  .finished-works__button {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .finished-works__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
  }
  .finished-works__item {
    padding: 8px;
  }
  .finished-works__image-content {
    padding-right: 10px;
  }
  .finished-works__button {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .finished-works__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
  }
  .finished-works__button {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .finished-works__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 25px;
  }
  .finished-works__button {
    margin-bottom: 30px;
  }
}

/* download-block */
.download-block {
  background: #e5edf4;
}
.download-block:before {
  box-shadow: 0px 2px 10px rgb(0 0 0 / 20%);
}
.download-block__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}
.download-block__image {
  position: absolute;
  left: 55%;
  top: 50%;
  height: 140%;
  width: 31%;
  transform: translate(-50%, -50%);
}
.download-block__image img {
  position: absolute;
  height: 100%;
}
.download-block__button {
  width: 240px;
  position: relative;
  z-index: 1;
}
.download-block__text {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  position: relative;
  z-index: 1;
}
.download-block__text span {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}
@media screen and (max-width: 1230px) {
  .download-block__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
  }
  .download-block__text {
    margin-bottom: 30px;
  }
  .download-block__image {
    position: absolute;
    left: auto;
    top: 50%;
    right: 0;
    height: 100%;
    width: 450px;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 991px) {
  .download-block__wrap {
    padding: 20px 0;
  }
  .download-block__text {
    margin-bottom: 20px;
  }
  .download-block__image {
    position: absolute;
    left: auto;
    top: 50%;
    right: 0;
    height: 100%;
    width: 365px;
    transform: translate(0, -50%);
  }
  .download-block__text {
    font-size: 26px;
    line-height: 32px;
  }
  .download-block__text span {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .download-block__wrap {
    padding: 10px 0;
  }
  .download-block__text {
    margin-bottom: 15px;
  }
  .download-block__image {
    position: absolute;
    left: auto;
    top: 50%;
    right: 0;
    height: 100%;
    width: 328px;
    transform: translate(0, -50%);
  }
  .download-block__text {
    font-size: 24px;
    line-height: 32px;
  }
  .download-block__text span {
    font-size: 19px;
    line-height: 32px;
  }
}
@media screen and (max-width: 500px) {
  .download-block__image {
    display: none;
  }
  .download-block__wrap {
    padding: 0;
  }
}

/* delivery-block */
.delivery-block {
  position: relative;
  padding-top: 20px;
  padding-bottom: 130px;
  background: #f6f9fc;
}
.delivery-block__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.delivery-block__item {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.delivery-block__image {
  position: relative;
  width: 100%;
  padding-bottom: 44%;
  border-radius: 8px;
  overflow: hidden;
}
.delivery-block__image:before {
  width: 100%;
  height: 35%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, transparent, black);
  z-index: 1;
}
.delivery-block__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.delivery-block__image-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 30px;
  color: #fff;
  z-index: 1;
}
.delivery-block .product__btn {
  max-width: none;
  width: auto;
  padding: 0 20px;
}
.delivery-block__image-content p {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.delivery-block .title {
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .delivery-block {
    padding-top: 35px;
    padding-bottom: 100px;
  }
  .delivery-block__wrap {
    gap: 20px;
  }
  .delivery-block__image-content {
    padding: 20px;
  }
  .delivery-block__image-content p {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (max-width: 991px) {
  .delivery-block {
    padding-top: 35px;
    padding-bottom: 100px;
  }
  .delivery-block__wrap {
    gap: 10px;
  }
  .delivery-block__image-content {
    padding: 20px;
  }
  .delivery-block__image-content p {
    font-size: 19px;
    line-height: 26px;
  }
  .delivery-block__item {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .delivery-block__wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .delivery-block .title {
    margin-bottom: 20px;
  }
  .delivery-block {
    padding-top: 35px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 468px) {
  .delivery-block {
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .delivery-block__wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .delivery-block__image-content {
    padding: 15px;
  }
  .delivery-block__image-content p {
    font-size: 16px;
    line-height: 24px;
  }
  .delivery-block .title {
    margin-bottom: 10px;
  }
}

/* about-block */

.about-block {
  position: relative;
  padding: 80px 0;
}
.about-block__wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
.about-block__content {
  grid-column: span 5;
}
.about-block__info {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.about-block .card {
  margin-top: 0;
}
.about-block__title {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-block__subtitle {
  color: #860714;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 35px;
}
.about-block__text {
  padding: 25px 25px 25px 35px;
  background: #f6f9fc;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}

@media screen and (max-width: 1230px) {
  .about-block__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .about-block__subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 35px;
  }
  .about-block__text {
    padding: 25px 25px 25px 35px;
    font-size: 15px;
    line-height: 24px;
  }
  .about-block .num_block p {
    font-size: 58px;
  }
  .about-block .num_block span {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .about-block__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .about-block__subtitle {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 25px;
  }
  .about-block__text {
    padding: 20px 20px 20px 25px;
    font-size: 14px;
    line-height: 21px;
  }
  .about-block .num_block p {
    font-size: 52px;
  }
  .about-block .num_block span {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .about-block__content {
    grid-column: span 12;
  }
  .about-block__info {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 568px) {
  .about-block {
    padding: 50px 0;
  }
  .about-block__info {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .about-block__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}

/* block-text */
.block-text {
  position: relative;
}
.block-text__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
}
.block-text__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.block-text__item {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 991px) {
  .block-text__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .block-text__wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .block-text__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 568px) {
  .block-text__title {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}

/* polycarbonate */
.polycarbonate {
  padding-top: 50px;
}
.polycarbonate .form-block {
  margin-top: 0;
}
.polycarbonate .top-seller-tabs__wrap {
  margin-bottom: 40px;
}

/* info-block */
.info-block {
  position: relative;
  background: #e5edf4;
  margin-bottom: 60px;
}
.info-block:before {
  box-shadow: 0px 2px 10px rgb(0 0 0 / 20%);
}
.info-block__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.info-block__content {
  position: relative;
  z-index: 1;
}
.info-block__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
}
.info-block__image img {
  width: 100%;
  vertical-align: top;
}
.info-block__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.info-block__title span {
  font-size: 30px;
  line-height: 48px;
  font-weight: 800;
  text-transform: uppercase;
}
.info-block__text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.info-block__phone {
  font-size: 30px;
  line-height: 21px;
  font-weight: 700;
}
.info-block__button {
  position: relative;
  z-index: 1;
}
.info-block__button .red-btn {
  width: 240px;
}
@media screen and (max-width: 991px) {
  .info-block {
    margin-bottom: 40px;
  }
  .info-block__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .info-block__title span {
    font-size: 26px;
    line-height: 42px;
  }
  .info-block__text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .info-block__phone {
    font-size: 26px;
    line-height: 21px;
  }
  .info-block__image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .info-block {
    margin-bottom: 30px;
  }
  .info-block__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .info-block__title span {
    font-size: 24px;
    line-height: 36px;
  }
  .info-block__text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .info-block__phone {
    font-size: 24px;
    line-height: 21px;
  }
  .info-block__wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .info-block__content {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 461px) {
  .info-block {
    margin-bottom: 20px;
  }
  .info-block__title {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .info-block__title span {
    font-size: 21px;
    line-height: 32px;
  }
  .info-block__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .info-block__phone {
    font-size: 21px;
    line-height: 21px;
  }
  .info-block__wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .info-block__content {
    margin-bottom: 30px;
  }
}

/* characteristics */
.characteristics {
  position: relative;
  background: #f8f5fc;
  padding: 50px 0;
}
.characteristics__wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: url("../img/characteristics_bg.png") 50% 50% no-repeat;
  background-size: contain;
}
.characteristics__item {
  max-width: 370px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
}
@media screen and (max-width: 1230px) {
  .characteristics__item {
    max-width: 340px;
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .characteristics__item {
    max-width: 300px;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .characteristics__item {
    max-width: 50%;
    gap: 20px;
  }
  .characteristics__wrap {
    background: transparent;
  }
}
@media screen and (max-width: 568px) {
  .characteristics__item {
    max-width: 100%;
    gap: 20px;
  }
  .characteristics__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .characteristics__wrap {
    background: transparent;
    flex-direction: column;
  }
}

/* characteristics-item */
.characteristics-item {
  padding-left: 30px;
  position: relative;
}
.characteristics-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 25px;
  height: 25px;
  background: url("../img/check-circle.png") 50% 50% no-repeat;
  background-size: cover;
}
.characteristics-item_righ {
  text-align: right;
  padding-right: 30px;
}
.characteristics-item_righ:before {
  left: auto;
  right: 0;
}
.characteristics-item__name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}
.characteristics-item__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1230px) {
  .characteristics-item__name {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .characteristics-item__text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .characteristics-item__name {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 14px;
  }
  .characteristics-item__text {
    font-size: 14px;
    line-height: 21px;
  }
  .characteristics-item_righ {
    text-align: left;
    padding-right: 0;
    padding-left: 30px;
  }
  .characteristics-item_righ:before {
    left: 0;
    right: auto;
  }
  .characteristics-item {
    padding-right: 20px;
  }
  .characteristics-item:before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 568px) {
  .characteristics-item {
    padding-right: 0px;
  }
  .characteristics-item__name {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .characteristics-item__text {
    font-size: 13px;
    line-height: 19px;
  }
}

/* advantage-block */
.advantage-block {
  position: relative;
  padding-top: 35px;
  padding-bottom: 80px;
  background: #f6f9fc;
}
.advantage-block .title {
  margin-bottom: 30px;
}
.advantage-block__wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 1;
  margin-bottom: 45px;
}
.advantage-block__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.advantage-block__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 25px;
}
.advantage-block__text {
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 10px;
}
.advantage-block__link {
  color: #860714;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  align-self: flex-end;
}

@media screen and (max-width: 1230px) {
  .advantage-block__name {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .advantage-block__text {
    font-weight: 500;
    line-height: 22px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .advantage-block__link {
    color: #860714;
    text-decoration: underline;
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
  }
}
@media screen and (max-width: 991px) {
  .advantage-block {
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .advantage-block__name {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .advantage-block__text {
    line-height: 21px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .advantage-block__link {
    font-size: 12px;
    line-height: 17px;
  }
  .advantage-block__item {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  .advantage-block {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .advantage-block__wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  .advantage-block .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .advantage-block {
    margin-top: -30px;
  }
}
@media screen and (max-width: 568px) {
  .advantage-block {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

/* using-block */
.using-block {
  position: relative;
}
.advantage-block__title {
  position: relative;
  text-align: left;
  padding-left: 40px;
}
.advantage-block__title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -5px;
  width: 31px;
  height: 31px;
  background: url("../img/attention.png") 50% 50% no-repeat;
  background-size: cover;
}
.using-block__wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.using-block__item {
}
.using-block__name {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 36px;
}
.using-block__image {
  position: relative;
  padding-bottom: 54%;
  border-radius: 12px;
  overflow: hidden;
}
.using-block__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

@media screen and (max-width: 1230px) {
  .using-block__name {
    font-size: 21px;
    margin-bottom: 15px;
    line-height: 28px;
  }
  .using-block__wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .using-block__name {
    font-size: 19px;
    margin-bottom: 15px;
    line-height: 26px;
  }
  .using-block__wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}
@media screen and (max-width: 991px) {
  .using-block__name {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 24px;
  }
  .using-block__wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .using-block__name {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .using-block__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 568px) {
  .using-block__name {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .using-block__wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/* main-section_policarbonat */
.main-section_policarbonat {
  background: url("../img/main-block-bg-policarbonat.png") no-repeat center top /
    cover;
}
.main-section_policarbonat .box-container {
  height: 100%;
  box-sizing: border-box;
}
.main-section_policarbonat .main-section__wrap {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.main-section_policarbonat .main-section__content {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.main-section_policarbonat .main-section__form {
  width: 570px;
  margin-top: 50px;
}

.main-section_policarbonat .main-section__card {
  max-width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-section_policarbonat .main-section__card-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.main-section_policarbonat .main-section__card-name:not(:last-child) {
  margin-bottom: 50px;
}

.main-section_policarbonat .main-section__circle {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: #860714;
  animation: pulse2 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translate(-50%, 0);
}
.main-section_policarbonat .main-section__circle-text {
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  text-align: center;
}
.main-section_policarbonat .main-section__subtitle {
  line-height: 56px;
}

@media screen and (max-width: 1024px) {
  .main-section_policarbonat .main-section__content {
    flex-direction: column;
    padding-bottom: 80px;
  }
  .main-section_policarbonat .main-section__card {
    max-width: 330px;
    order: -1;
  }
  .main-section_policarbonat .main-section__card-name:not(:last-child) {
    margin-bottom: 35px;
  }
  .main-section_policarbonat .main-section__form {
    width: 520px;
    margin-top: 50px;
  }
  .main-section_policarbonat .main-section__circle {
    position: absolute;
    left: auto;
    right: 30px;
    bottom: 90px;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  .main-section_policarbonat .main-section__content {
    flex-direction: column;
    padding-bottom: 80px;
  }
  .main-section_policarbonat .main-section__card {
    max-width: 330px;
    order: -1;
  }
  .main-section_policarbonat .main-section__card-name:not(:last-child) {
    margin-bottom: 35px;
  }
  .main-section_policarbonat .main-section__form {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .main-section_policarbonat .main-section__circle {
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background: #860714;
    animation: pulse2 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 0);
    align-self: center;
  }
  .main-section_policarbonat .main-section__subtitle {
    line-height: 42px;
  }
}
@media screen and (max-width: 550px) {
  .main-section_policarbonat .main-section__subtitle {
    line-height: 36px;
  }
  .main-section_policarbonat .main-section__subtitle br {
    display: none;
  }
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(134, 7, 20, 0.6);
    box-shadow: 0 0 0 0 rgba(134, 7, 20, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 204, 95, 0);
    box-shadow: 0 0 0 20px rgba(255, 204, 95, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 204, 95, 0);
    box-shadow: 0 0 0 0 rgba(255, 204, 95, 0);
  }
}

.flex-form {
  display: flex;
}

.flex-form .line-form__query input {
  width: 100%;
}

.form-block .form_line .form__item input.red-btn,
.form-block__popup .form__item input.red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn-red);
  background-size: 100% 100%;
  box-shadow: 0px 0px 10px 0px var(--main-red-color);
  border-radius: 8px;
  border: none;
  border-bottom: 6px solid var(--main-red-color);
  max-width: 275px;
  width: 100%;
  height: 65px;
  color: var(--white-color);
  transition: all 0.5s;
  font-size: 14px;
  font-weight: var(--font-Semi-bold);
  cursor: pointer;
}
.wpcf7-spinner {
  display: none !important;
}
