html,
body {
  font-family: 'Montserrat';
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:focus {
  outline: none;
}

a:active,
a:focus {
  outline: none;
}

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'),
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'),
    url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'),
    url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'),
    url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'),
    url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
  font-weight: 800;
}

:root {
  --indigo: #11497b;
  --white: #fff;
  --dark-gray: #414141;
  --blue: #47a6ff;
  --light-green: #eef7f5;
}

.container {
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
  max-width: 1920px;
}

.product__container {
  margin: 55px auto 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1920px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--black);
}

.hidden {
  display: none;
}

.header__row .navbar-toggler {
  display: none;
}

.header {
  margin: 0;
  width: 100%;
  background-color: var(--indigo);
  position: fixed;
  top: 0;
  z-index: 1001;
}

.header__logo {
  margin-right: auto;
  padding: 5px 0;
  max-width: 200px;
}

.header__menu {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  align-items: center;
  overflow-x: hidden;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 60%;
  position: relative;
  overflow: hidden;
}

.nav__link {
  color: var(--white);
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 40px;
  width: 100%;
}

.nav__item {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  position: relative;
}

.nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 4px;
  background-color: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav__item:hover::after {
  transform: scaleX(1)
}

.mobile {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  max-width: 300px;
  z-index: 3000;
  display: none;
}

.mobile__btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 30px;
  width: 30px;
  height: 20px;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 1001;
}

.mobile__line {
  position: absolute;
  left: 0;
  top: 53%;
  width: 100%;
  height: 3px;
  background-color: var(--light-green);
  transform: translateY(-50%);
  transition: opacity 0.3s ease-in-out;
}

.mobile__btn::before,
.mobile__btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--light-green);
  transition: 0.8s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.mobile__btn::before {
  top: 0;
}

.mobile__btn::after {
  top: 100%;
  bottom: 0;
}

.mobile__btn--active .mobile__line {
  opacity: 0;
  background-color: var(--indigo);
}

.mobile__btn--active::before {
  top: 50%;
  transform: rotate(45deg);
  background-color: var(--indigo);
}

.mobile__btn--active::after {
  top: 50%;
  transform: rotate(-45deg);
  background-color: var(--indigo);
}

.mobile__btn--active::after {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}

.stop-scroll {
  overflow: hidden;
}

.mobile__head {
  padding: 30px;
  line-height: 1.8em;
  background-color: var(--light-green);
}

.mobile__menu {
  position: fixed;
  top: 0px;
  right: 0;
  margin: 0;
  height: 100vh;
  list-style: none;
  max-width: 350px;
  min-width: 180px;
  background-color: var(--white);
  line-height: 3em;
  color: var(--indigo);
  z-index: 999;
  transform: translateX(100%);
  transition: 0.6s ease-in-out;
  overflow-y: auto;
}

.mobile__menu--visible {
  transform: none;
  box-shadow: -5px -8px 16px 0px rgba(0, 0, 0, 0.2);
}

.mobile__list {
  margin: 0;
  padding: 30px;
  list-style: none;
  max-width: 350px;
  min-width: 180px;
  /* box-shadow: -5px -8px 16px 0px rgba(0, 0, 0, 0.2); */
  background-color: var(--white);
  line-height: 3em;
  color: var(--indigo);
  z-index: 999;
  transition: 0.6s ease-in-out;
}

.mobile__list--visible {
  transform: none;
  box-shadow: -5px -8px 16px 0px rgba(0, 0, 0, 0.2);
}

.mobile__list-item {
  padding: 20px 0;
  border-bottom: solid 1px var(--dark-gray);
}

.mobile__list-link {
  color: var(--indigo);
  text-decoration: none;
  transition: 0.3s ease-in-out;
  width: calc((100% - 20px) /3);
  font-size: 20px;
  line-height: normal;
}

.mobile__list-link:focus-visible {
  padding: 5px;
  outline: 1px solid var(--lite-orange);
}

.mobile__contact {
  padding: 30px;
  line-height: 1.8em;
}

.mobile__contact-item {
  padding: 5px 0;
}

.mobile__contact-span {
  font-weight: 500;
}

.mobile__navigator {
  font-size: 14px;
}

.product {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.product__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.product__item {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  width: calc(100% / 3);
  background: rgba(0, 0, 0, 0.3);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in-out;
  min-height: 300px;
  background-blend-mode: multiply;
  align-content: center;
  color: var(--white);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-width: 0 1px 1px 0;
}

.product__item::before {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.product__title {
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  align-self: center;
  padding: 20px;
}

.product__item:hover:before,
.product__item:hover .product__title {
  opacity: 1;
}

.product__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-color: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
  color: var(--white);
}

.product__item:hover::after {
  transform: scaleX(1);
  color: var(--white);
}

.product__item:first-child {
  background-image: url(../images/1.jpg);
  color: var(--white);
  /* filter: brightness(80%); */
  background-blend-mode: multiply;
}

.product__item:nth-child(2) {
  background-image: url(../images/2.jpg);
}

.product__item:nth-child(3) {
  background-image: url(../images/3.jpg);
}

.product__item:nth-child(4) {
  background-image: url(../images/4.jpg);
}

.product__item:nth-child(5) {
  background-image: url(../images/5.jpg);
}

.product__item:nth-child(6) {
  background-image: url(../images/6.jpg);
}

.product__link {
  color: var(--white)
}

.product__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.about {
  padding: 50px 0;
  display: flex;
  align-content: center;
  gap: 100px;
  width: 100%;
  justify-content: space-between;
}

.about__logo {
  margin: 0 auto auto;
  width: fit-content;
}

.about__txt {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 200%;
  overflow: hidden;
}

.about__title {
  margin-bottom: 20px;
  color: var(--indigo);
  font-size: 40px;
  font-weight: normal;
  display: none;
}

.bay {
  padding: 0 0 50px 0;
  display: flex;
  align-content: center;
  gap: 100px;
  width: 100%;
  justify-content: space-between;
}

.bay__title {
  margin-bottom: 20px;
  color: var(--indigo);
  font-size: 40px;
  font-weight: normal;
}

.bay__txt {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 200%;
  overflow: hidden;
}

.banner {
  padding: 50px 0 0 0;
  align-items: center;
  background-color: var(--indigo);
}

.banner__title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 40px;
  font-weight: 500;
}

.banner__txt {
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 200%;
  color: var(--light-green);
}

.banner__tel {
  font-size: 40px;
  color: var(--white);
}

.banner__manager {
  position: absolute;
  bottom: 0;
  z-index: 1000;
}

.banner__consent {
  padding: 20px 0;
  color: var(--indigo);
  font-size: 14px;
  font-weight: 400;
}

.banner__consent-link {
  color: var(--indigo);
}

.banner__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.banner__forma {
  flex-direction: column;
  padding: 50px 50px 50px 150px;
  position: relative;
  margin-left: 280px;
  background-color: var(--light-green);
}

.banner__title-form {
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 400;
  color: var(--indigo);
}

.banner__input {
  margin-bottom: 25px;
  padding: 14px 24px;
  width: 100%;
  border-radius: 16px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--white);
  background-color: var(--dark-gray);
  outline: none;
  transition: 0.3s ease-in-out;
}

.banner__input::placeholder {
  color: var(--lite-gray);
}

.banner__input:focus {
  background-color: var(--indigo);
}

.banner__input:hover {
  background-color: var(--indigo);
  transition: 0.3s ease-in-out;
}

.banner__input:active {
  background-color: var(--indigo);
  color: var(--white);
}

.banner__message {
  margin-bottom: 28px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 0;
  width: 100%;
  font-size: 16px;
  line-height: 32px;
  color: var(--white);
  background-color: var(--dark-gray);
  outline: none;
  height: 150px;
  resize: none;
  transition: background-color 0.3s ease-in-out;
  font-weight: 400;
}

.banner__message::placeholder {
  color: var(--lite-gray);
}

.banner__message:focus {
  background-color: var(--indigo);
}

.banner__message:hover {
  background-color: var(--indigo);
}

.banner__message:active {
  background-color: var(--indigo);
  color: var(--lite-gray);
}

.banner__send {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  cursor: pointer;
  user-select: none;
}

.banner__btn {
  margin-right: 22px;
  padding: 19px 54px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--indigo);
  transition: background-color 0.3s ease-in-out;
  width: fit-content;
}

.banner__btn:focus {
  background-color: var(--blue);
}

.banner__btn:hover {
  background-color: var(--blue);
}

.banner__btn:active {
  background-color: var(--blue);
}


.request__dialog {
  width: 80%;
  margin: 30px auto;
}

.request__header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.request__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--light-green);
}

.request__close {
  float: right;
  font-size: 50px;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
}

.request__close:focus,
.request__close:hover {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
  opacity: .50;
}

.request__body {
  position: relative;
  overflow: auto;
  color: var(--dark-gray);
}

.request__forma {
  flex-direction: column;
  position: relative;
}

.request__title-form {
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 400;
  color: var(--indigo);
}

.request__input {
  margin-bottom: 25px;
  padding: 14px 24px;
  width: 100%;
  border-radius: 16px;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--indigo);
  background-color: var(--light-green);
  outline: none;
  transition: 0.3s ease-in-out;
}

.request__input::placeholder {
  color: var(--dark-gray);
}

.request__input:focus {
  background-color: var(--indigo);
  color: var(--light-green);
}

.request__input:hover {
  background-color: var(--indigo);
  transition: 0.3s ease-in-out;
}

.request__input:hover::placeholder {
  background-color: var(--indigo);
  color: var(--light-green);
  transition: 0.3s ease-in-out;
}

.request__input:active {
  background-color: var(--indigo);
  color: var(--white);
}

.request__message {
  margin-bottom: 28px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 0;
  width: 100%;
  font-size: 16px;
  line-height: 32px;
  color: var(--indigo);
  background-color: var(--light-green);
  outline: none;
  height: 150px;
  resize: none;
  transition: background-color 0.3s ease-in-out;
  font-weight: 400;
}

.request__message::placeholder {
  color: var(--dark-gray);
}

.request__message:focus {
  background-color: var(--indigo);
}

.request__message:hover::placeholder {
  background-color: var(--indigo);
  color: var(--light-green);
}

.request__message:hover {
  background-color: var(--indigo);
  color: var(--light-green);
}

.request__message:active {
  background-color: var(--indigo);
  color: var(--white);
}

.request__send {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.request__btn {
  padding: 19px 54px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--indigo);
  transition: background-color 0.3s ease-in-out;
  width: fit-content;
}

.request__btn:focus {
  background-color: var(--blue);
}

.request__btn:hover {
  background-color: var(--blue);
}

.request__btn:active {
  background-color: var(--blue);
}

.contact {
  padding: 50px 0;
}

.contact__title {
  margin-bottom: 20px;
  color: var(--indigo);
  font-size: 40px;
  font-weight: normal;
}

.contact__subtitle {
  margin-bottom: 18px;
  color: var(--indigo);
  font-size: 40px;
  font-weight: 400;
}

.contact__txt {
  margin-bottom: 20px;
  color: var(--indigo);
  font-size: 20px;
  font-weight: 400;
  line-height: 200%;
}

.contact__span {
  font-weight: 600;
}

.footer {
  padding: 40px 0;
  background-color: var(--indigo);
  width: 100%;
}

.footer__logo {
  width: 200px;
  padding-bottom: 20px;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--white);
  align-content: center;
  gap: 20px;
}

.footer__item {
  display: flex;
  width: calc((100% - 40px) /3);
  line-height: 200%;
}

.footer__contact-2 {
  display: flex;
  flex-direction: column;
  width: calc(100% /3);
  justify-content: end;
  align-self: flex-end;
}

.footer__tel {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.footer__adress {
  color: rgba(255, 255, 255, 0.83);
}

.footer__list-adress {
  margin-bottom: 10px;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer__item-tel {
  font-size: 30px;
  line-height: 150%;
}

.footer__item-adress {
  font-size: 24px;
  line-height: 150%;
}

.footer__link {
  font-size: 18px;
  width: fit-content;
  line-height: 25px;
  color: var(--lite-gray);
  outline-offset: 5px;
  transition: 0.3s ease-in-out;
}

.footer__tel-icon path {
  fill: rgba(255, 255, 255, 0.5);
}

.footer__link:focus-visible {
  outline-offset: 5px;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__link:active {
  color: var(--blue);
}

.footer__work {
  font-size: 20px;
  padding: 20px 0;
}

.footer__nav {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 24px;
}

.go-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 7000;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: var(--blue);
  color: var(--white);
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 4px;
}

/* * {
  outline: 1px solid red;
} */

.category {
  margin-top: 20px;
  padding: 50px 0 40px 0;
}

.category__nav {
  margin-bottom: 20px;
}

.category__link {
  color: var(--indigo);
}

.category__link:visited {
  color: var(--indigo);
}

.category__title {
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-size: 40px;
  font-weight: 500;
  width: 100%;
}

.category__subtitle {
  margin-bottom: 24px;
  color: var(--indigo);
  font-size: 24px;
  font-weight: 500;
  width: 100%;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: row; */
  cursor: pointer;
  gap: 20px;
  overflow-x: auto;
}


.card {
  color: var(--dark-gray);
  background-color: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 200px 30px 30px 30px;
  border: 1px solid var(--light-green);
  border-radius: 15px;
  position: relative;
  background-position: top 15px center;
  background-size: 200px 200px;
  background-repeat: no-repeat;
  width: calc((100% - 100px) / 6);
  /* max-width: 300px; */
  min-width: 200px;
  transition: 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0px 0px 21px -7px rgba(34, 60, 80, 0.6);
  border: 1px solid var(--indigo);
}

.card__img {
  margin-bottom: 30px;
  display: block;
  width: 100%;
}

.artikul {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: var(--blue);
}

.text {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 200px;
  font-size: 18px;
}

.card__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card__btn {
  margin-top: auto;
  background-color: var(--indigo);
  padding: 10px 20px;
  color: var(--white);
  transition: 0.3s ease-in-out;
  font-size: 16px;
  border-radius: 5px;
}

.card__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.card__btn:hover {
  background-color: var(--blue);
}

.wrapper__product {
  display: flex;
  flex-wrap: wrap;
}

.wrapper__product-param {
  width: 50%;
  font-size: 20px;
  line-height: 150%;
}

.wrapper__product-img {
  width: 50%;
}

.wrapper__price {
  font-size: 40px;
  padding: 20px 0;
  align-items: flex-end;
  color: var(--indigo);
}

.valuta {
  font-size: 14px;
}

.wrapper__product-btn {
  margin-top: auto;
  background-color: var(--indigo);
  padding: 10px 20px;
  color: var(--white);
  transition: 0.3s ease-in-out;
  font-size: 16px;
  border-radius: 5px;
}

.wrapper__span {
  font-weight: 600;
}


.write {
  margin-bottom: 40px;
  width: 100%;
}

.summary {
  color: var(--indigo)
}

summary {
  position: relative;
  padding: 20px 0;
  cursor: pointer;
}

summary::marker {
  content: none;
}

summary::before,
summary::after {
  content: '';
}

summary::before,
summary::after {
  width: 0.5em;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

summary::after {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}

[open] summary::after {
  transform: rotate(0deg);
  transition: transform 0.5s;
}

.write__title {
  color: var(--indigo);
  font-size: 30px;
}

.write__txt {
  color: var(--dark-gray);
  font-size: 20px;
  padding: 5px 0;
  line-height: 150%;
}

.write__item {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  color: var(--dark-gray);
  font-size: 20px;
}

.write__item-col {
  width: 50%;

}



/* свойства модального окна по умолчанию */
.modal {
  position: fixed;
  /* фиксированное положение */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  /* цвет фона */
  z-index: 1050;
  opacity: 0;
  /* по умолчанию модальное окно прозрачно */
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  /* анимация перехода */
  pointer-events: none;
  /* элемент невидим для событий мыши */
}

/* при отображении модального окно */
.modal:target {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

/* ширина модального окна и его отступы от экрана */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

@media (min-width: 576px) {
  .modal-dialog {
    width: 90%;
    margin: 30px auto;
  }
}

/* свойства для блока, содержащего контент модального окна */
.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}

@media (min-width: 768px) {
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
}

/* свойства для заголовка модального окна */
.modal-header {
  padding: 0 15px;
  border-bottom: 1px solid var(--light-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--indigo);
}

.modal__txt {
  font-size: 16px;
  font-weight: 400;
}

/* свойства для кнопки "Закрыть" */
.close {
  float: right;
  font-size: 50px;
  font-weight: 400;
  color: var(--indigo);
  text-decoration: none;
}

/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
.close:focus,
.close:hover {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
  opacity: .75;
}

/* свойства для блока, содержащего основное содержимое окна */
.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
  overflow: auto;
  color: var(--dark-gray);
  line-height: 200%;
}


@media (max-width: 1600px) {
  .card {
    width: calc((100% - 100px) / 5);
  }
}

@media (max-width: 1400px) {
  .card {
    width: calc((100% - 100px) / 4);
  }

  .footer__item-adress,
  .footer__work,
  .footer__nav {
    font-size: 18px;
  }

}

@media (max-width: 1039px) {

  .card {
    max-width: calc(50% - 20px);
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 679px) {
  .card {
    max-width: 100%;
    min-width: 100%;
  }

  .wrapper__product-param {
    width: 100%;
  }
}


@media (max-width: 1440px) {
  .footer__item-tel {
    font-size: 24px;
  }
}

@media (max-width: 1259px) {
  .footer__item-tel {
    font-size: 24px;
  }

  .banner__manager {
    display: none;
  }

  .banner__forma {
    margin: 0 auto;
    padding: 50px;
  }

}

@media (max-width: 1100px) {
  .footer__item-tel {
    font-size: 18px;
  }

  .about {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }

  .wrapper {
    flex-wrap: wrap;
  }

}

@media (max-width: 1000px) {

  html,
  body {
    overflow-x: hidden;
  }

  .nav {
    display: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .mobile__btn,
  .mobile {
    display: block;
  }

}


@media (max-width: 1001px) {

  .product__item {
    min-width: calc(100% / 2);
  }

  .banner__send {
    flex-wrap: wrap;
  }

  .footer__item {
    width: 44%;
  }

}

@media (max-width: 607px) {
  .banner__title-form {
    font-size: 35px;
  }

  .banner__forma {
    padding: 40px;
  }

  .container {
    padding: 0 20px;
  }

}


@media (max-width: 567px) {
  .product__item {
    width: 100%;
  }

  .footer__item {
    width: 100%;
  }

  .banner__container {
    padding: 0;
  }

  .category__title {
    font-size: 35px;
  }

  .banner__forma {
    padding: 40px 10px;
  }

  .banner__txt,
  .banner__title {
    padding: 0 20px;
  }

  .about__txt,
  .banner__txt,
  .contact__txt,
  .bay__txt {
    font-size: 20px;
  }

  .about,
  .banner,
  .contactt,
  .bay {
    padding: 20px 0;
  }

  .request__dialog {
    width: 90%;
  }

  .request__btn {
    padding: 10px 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--indigo);
    transition: background-color 0.3s ease-in-out;
    width: fit-content;
  }

}