@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

button {
  padding: 0 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  max-width: 100%;
  cursor: pointer;
  background: transparent;
}

input {
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 12px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding-top: 110px;
}

.btn-w {
  padding: 0 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  max-width: 100%;
  cursor: pointer;
  background: transparent;
  border-radius: 30px;
  height: 55px;
  width: 200px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-w:hover {
  opacity: 0.8;
}

.btn {
  padding: 0 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  max-width: 100%;
  cursor: pointer;
  background: transparent;
  background: rgb(242, 5, 25);
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  border-radius: 12px;
  height: 55px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  background: rgb(202, 2, 19);
}

.mt-110 {
  margin-top: 110px;
}

.title__section {
  font-size: 45px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}

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

.container {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 18px 0;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
nav ul .close {
  display: none;
}
nav ul a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav ul a:hover {
  opacity: 0.8;
}

header {
  background: #000;
}

h1 {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

main {
  background: url(../img/fon.png) no-repeat center center;
  background-size: cover;
  padding: 210px 0;
}
main form {
  width: 680px;
  max-width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
main form input {
  width: 100%;
  max-width: 100%;
  height: 55px;
}
main form button {
  font-weight: 600;
}

.popap {
  width: 400px;
  max-width: 100%;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  display: none;
}
.popap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popap .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  padding: 0;
}
.popap .close img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.popap .title {
  font-size: 28px;
  font-weight: 500;
}
.popap form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.popap form input {
  width: 100%;
  height: 50px;
  border: 1px solid #000;
}
.popap form button {
  width: 100%;
}

.slider__container {
  position: relative;
  max-width: 100%;
}
.slider__container .sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  min-width: 10000000%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider__container .slides__container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.slider__container .slide {
  width: 350px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #000;
}
.slider__container .slide .image {
  width: 100%;
  max-width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 35px;
}
.slider__container .slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__container .slide .slide__data ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.slider__container .slide .slide__data ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgb(73, 80, 87);
  width: 100%;
  max-width: 100%;
}
.slider__container .slide .slide__data ul li span {
  color: #000;
}
.slider__container .slide .slide__data a {
  width: 100%;
  margin-top: 25px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slider__container .slider__nav {
  position: absolute;
  width: 120%;
  max-width: 120%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
.slider__container .slider__nav button {
  width: 60px;
  max-width: 100%;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: all;
}
.slider__container .slider__nav button:hover {
  opacity: 0.5;
}
.slider__container .slider__nav button img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.slider__container .slider__nav .next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.cards__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.cards__container .card {
  width: 330px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cards__container .card img {
  height: 82px;
  display: block;
}
.cards__container .card p {
  text-align: center;
}
.cards__container .card .card__title {
  font-size: 24px;
  font-weight: 600;
}

.number__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.number__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.number__list li p {
  font-size: 24px;
}
.number__list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 2px solid rgb(242, 5, 25);
  color: rgb(242, 5, 25);
}

.under-header {
  font-size: 24px;
  color: rgb(73, 80, 87);
  margin-top: 40px;
  text-align: center;
}

.tovar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8%;
}
.tovar__container > div {
  width: 46%;
  max-width: 100%;
}
.tovar__container .slider__image {
  width: 100%;
  height: 400px;
  max-width: 100%;
  overflow: hidden;
}
.tovar__container .slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tovar__container .slider__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.tovar__container .slider__dots .dot {
  width: 100%;
  max-width: 100%;
  height: 95px;
}
.tovar__container .slider__dots .dot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tovar__container .tovar__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.tovar__container .tovar__data .block__title {
  font-size: 28px;
  font-weight: 500;
}
.tovar__container .tovar__data ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.tovar__container .tovar__data ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgb(181, 181, 181);
  padding-bottom: 3px;
}
.tovar__container .tovar__data ul li.head {
  border: none;
}
.tovar__container .tovar__data ul li.head p {
  font-weight: 500;
  font-size: 20px;
}
.tovar__container .tovar__data ul li span {
  color: rgb(73, 80, 87);
}

.map {
  width: 100%;
  max-width: 100%;
}
.map img {
  width: 100%;
  max-width: 100%;
}

footer {
  background: #000;
  padding: 45px 0;
  color: #fff;
}
footer .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer__container .footer__item {
  width: 520px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-weight: 300;
}
footer .footer__container .footer__item a {
  display: block;
  color: #fff;
}
footer .footer__container .footer__item:last-child {
  text-align: right;
  gap: 0;
  opacity: 0.8;
}

#slider {
  overflow: hidden;
}

.logo {
  width: 112px;
  max-width: 100%;
  display: block;
}
.logo img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.burger {
  width: 32px;
  max-width: 100%;
  display: none;
  padding: 0;
}
.burger img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.map iframe {
  width: 100%;
  max-width: 100%;
  height: 600px;
  border: none;
}

.bg {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98px;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.bg.active {
  display: block;
}

@media screen and (max-width: 1401px) {
  .slider__container .slides__container {
    width: 760px;
    margin: auto;
  }
  .slider__container .slider__nav {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .cards__container .card {
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .burger {
    display: block;
  }
  nav ul .close {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    max-width: 100%;
    padding: 0;
  }
  nav ul .close img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  h1 {
    font-size: 40px;
  }
  .logo {
    width: 70px;
    max-width: 100%;
    display: block;
  }
  nav ul {
    position: fixed;
    width: 80%;
    max-width: 100%;
    height: 100%;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    top: 0;
    left: 0;
    z-index: 99;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  nav ul.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  nav ul li a {
    font-size: 20px;
  }
  nav button.btn-w {
    display: none;
  }
  footer .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  footer .footer__container .footer__item:last-child {
    text-align: center;
    margin-top: 10px;
    gap: 10px;
  }
  .tovar__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .tovar__container > div {
    width: 100%;
    max-width: 100%;
  }
  section {
    padding-top: 70px;
  }
  .slider__container .slides__container {
    width: 350px;
    margin: auto;
  }
  .slider__container .slider__nav {
    width: 80%;
  }
  .map iframe {
    height: 400px;
  }
}
@media screen and (max-width: 751px) {
  .cards__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .slider__container .slider__nav {
    width: 100%;
  }
}
@media screen and (max-width: 561px) {
  .tovar__container .slider__dots .dot {
    height: 70px;
  }
  .title__section.text-left {
    margin-bottom: 30px;
  }
  .tovar__container .tovar__data {
    gap: 20px;
  }
  h1 {
    font-size: 32px;
    margin-bottom: 35px;
  }
  main {
    padding: 150px 0;
  }
  .slider__container .slide {
    width: 280px;
  }
  .slider__container .slides__container {
    width: 280px;
  }
}
@media screen and (max-width: 476px) {
  .slider__container .slide {
    width: 240px;
  }
  .slider__container .slides__container {
    width: 240px;
  }
  .slider__container .slider__nav button {
    width: 40px;
  }
  .slider__container .slide {
    padding: 20px;
  }
  .slider__container .slide .slide__data ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .slider__container .slide .image {
    margin-bottom: 15px;
  }
  .slider__container .slide .slide__data a {
    margin-top: 15px;
  }
  .title__section {
    font-size: 28px;
  }
  .title__section {
    margin-bottom: 30px;
  }
  .number__list li p {
    font-size: 16px;
  }
  .number__list {
    gap: 15px;
  }
  .number__list li span {
    min-width: 20px;
    height: 20px;
  }
  .under-header,
  .cards__container .card .card__title {
    font-size: 20px;
  }
  .cards__container .card img {
    height: 50px;
  }
  .cards__container .card {
    gap: 5px;
  }
  .pt-30 {
    padding-top: 30px;
  }
}