* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}

.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1048px;
  width: 100%;
}

.big-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
  width: 100%;
  background-color: white;
}

body {
  background-color: gray;
}

button {
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu {
  display: none;
}
.header__link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}
.header__link:hover {
  color: crimson;
}
@media (max-width: 750px) {
  .header__list {
    display: none;
  }
  .header__menu {
    display: block;
  }
}

.modal__list {
  display: flex;
  position: absolute;
  gap: 20px;
  flex-direction: column;
  background-color: black;
  color: white;
  padding: 20px;
  width: 50%;
  height: 100vh;
  top: 100%;
  left: -100%;
  transition: 0.5s ease all;
}

.modal__list--off {
  align-self: flex-end;
}

.inp {
  display: none;
}

.inp:checked ~ .modal__list {
  left: 0%;
}

.modal__link:hover {
  color: crimson;
}

.shoces__wrap {
  background-image: url(./../imgs/shocese.png);
  background-repeat: no-repeat;
  padding: 135px 0px;
}

.shoces__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.shoces__heading {
  max-width: 800px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.shoces__text {
  max-width: 750px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 32px;
}

@media (max-width: 800px) {
  .shoces__wrap {
    padding: 95px 0px;
  }
  .shoces__heading {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .shoces__wrap {
    padding: 55px 0px;
  }
}
@media (max-width: 500px) {
  .shoces__wrap {
    padding: 25px 0px;
  }
}
.button {
  background: #E05100;
  border-radius: 30px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  padding: 20px 85px;
}

@media (max-width: 800px) {
  .button {
    padding: 10px 45px;
  }
}
.card__container {
  text-align: center;
  padding: 120px 0px;
}

.card__heading {
  margin-bottom: 56px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #000000;
}

.card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 70px;
}

.card__item {
  background: #FFFFFF;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  width: 230px;
  height: 264px;
  text-align: center;
  padding-top: 60px;
}

.card__img {
  margin-bottom: 40px;
}

.card__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #000000;
}

.master__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 60px;
  background: #404040;
  gap: 20px;
}

.master__right {
  max-width: 700px;
}

.master__heading1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  color: #FFFFFF;
  margin-bottom: 80px;
}

.master__heading2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 31px;
}

.master__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .master__wrapper {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
    padding-right: 0px;
  }
  .master__right {
    padding-bottom: 40px;
  }
}
@media (max-width: 800px) {
  .master__img {
    max-width: 600px;
  }
  .master__heading1 {
    margin-bottom: 40px;
  }
}
@media (max-width: 650px) {
  .master__img {
    max-width: 500px;
  }
}
@media (max-width: 550px) {
  .master__img {
    max-width: 400px;
  }
}
@media (max-width: 450px) {
  .master__img {
    max-width: 350px;
  }
}
@media (max-width: 370px) {
  .master__img {
    max-width: 300px;
  }
}
.card2__container {
  padding: 120px 0px;
  text-align: center;
}

.card2__heading {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #000000;
  margin-bottom: 80px;
}

.card2__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  justify-content: center;
}

.card2__item1 {
  max-width: 480px;
  display: flex;
  padding-left: 23px;
  background: #FFFFFF;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}

.card2__item-wrapper {
  display: flex;
}

.card2__item-wrapper img {
  margin-bottom: 27px;
}

.card2__left {
  padding-top: 20px;
  padding-right: 24px;
}

.card2__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 12px;
  text-align: start;
}

.card2__razmer {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 9px;
  text-align: start;
}

.card2_divs {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.card2_div {
  width: 15px;
  height: 15px;
}

.card2_div1 {
  background-color: #737373;
}

.card2_div2 {
  background: #9C0909;
}

.card2_div3 {
  background: #D48D37;
}

.card2_div4 {
  background: #964B00;
}

.card2_div5 {
  background: #DC143C;
}

.card2_div6 {
  background: #49423D;
}

.card2_div7 {
  background: #D77D31;
}

.card2_div8 {
  background: #000000;
}

.card2__list2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
  padding-right: 50px;
}

.card2__right {
  background: #404040;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  padding-top: 16px;
}

.card2__item-heading {
  text-align: start;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 149.4%;
  color: #FFFFFF;
}

.card2__item-text {
  text-align: start;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 149.4%;
  color: #FFFFFF;
}

.card2__btn {
  align-self: flex-end;
  padding: 20px 28px;
  border-top-left-radius: 30px;
  font-size: 20px;
  background: #E05100;
  color: white;
}

@media (max-width: 800px) {
  .card2__left img {
    width: 200px;
  }
}
.tovar__section {
  background: #404040;
}

.tovar__container {
  text-align: center;
  padding: 120px 0px;
}

.tovar__heading {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 80px;
}

.tovar__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tovar__logo-wrap {
  width: 231px;
  height: 74px;
  background: #FFFFFF;
  border-radius: 30px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tovar__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tovar__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tovar__text {
  max-width: 238px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  text-align: start;
}

.tovar__right iframe {
  width: 685px;
  height: 385px;
}

@media (max-width: 800px) {
  .tovar__right iframe {
    width: 456px;
    height: 256px;
  }
}
@media (max-width: 650px) {
  .tovar__right iframe {
    width: 338px;
    height: 190px;
  }
}
.card3__container {
  text-align: center;
  padding: 120px 0px;
}

.card3__heading {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #000000;
  margin-bottom: 70px;
}

.card3_text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #000000;
  margin-bottom: 70px;
}

.card3__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card3__img {
  width: 310px;
}

.card4-section {
  background: #404040;
}

.card4__container {
  text-align: center;
  padding: 120px 0px;
}

.card4__heading {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 70px;
}

.card4__list {
  display: flex;
  gap: 30px;
  overflow-x: scroll;
}

.card4__list::-webkit-scrollbar {
  display: none;
}

.card4__item {
  width: 300px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 25px;
}

.card4__img {
  width: 70px;
  height: 80px;
  margin-bottom: 30px;
}

.card4__card-heading {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-align: start;
  margin-bottom: 30px;
}

.card4__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-align: start;
  width: 300px;
}

.footer__container {
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__left--heading {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #E05100;
}

.footer__left--text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}

.footer__left_rejim-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer__left_rejim-wrapper2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer_rejim_text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}

.footer__list {
  display: flex;
  gap: 70px;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}
.footer__link:hover {
  color: #e00000;
  font-size: 18px;
}

.activ {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #E05100;
}

@media (max-width: 800px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  .footer__left {
    align-items: center;
    margin-bottom: 30px;
  }
  .footer__list {
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .footer__list {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=stayli.css.map */