*, :after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font: 18px/1.556 'Arial', sans-serif;
  color: #2e2e2e;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.layout, .layout-fluid {
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

.layout {
  max-width: 1400px;
}

/* content */
.section {
  padding: 100px 0;
}

.section__body {
  margin-top: 70px;
}

.section__title {
  font-size: 45px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}

/* style */
p, ul, ol, li, dl, dd, h1, h2, h3, h4, h5, h6, blockquote {
  margin: 0;
  padding: 0;
}

a, .link {
  color: #c1260b;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color .4s ease;
  -moz-transition: color .4s ease;
  -o-transition: color .4s ease;
  transition: color .4s ease;
}

a:hover, .link:hover {
  color: #000;
}

ul, ol {
  list-style: none;
}

p:not(:last-child) {
  margin-bottom: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.is-hidden {
  display: none !important;
}

/* form */
button, input, select, textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

button, [type=button], [type=submit], [type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* input textarea */
.input, .select, .textarea {
  display: block;
  width: 100%;
  padding: 2px 0 7px;
  border-bottom: 2px solid #000;
  font-size: 18px;
  line-height: 1.3;
}

.input::placeholder, .select::placeholder, .textarea::placeholder {
  color: rgb(46 46 46 / 75%);
}

.ui-form__field.is-error .input, .ui-form__field.is-error .textarea {
  border-color: #f65555;
}

/* button */
.button {
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  height: 44px;
  padding: 0 22px;
  color: #fff;
  background: #c1260b;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}

.button:hover {
  color: #fff;
  background: #000;
}

/* ui form */
.ui-form__field:not(:last-child) {
  margin-bottom: 30px;
}

.ui-form__agreement {
  max-width: 300px;
  font-size: 13px;
  color: #869095;
}

.ui-form__success {
  display: none;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* icon */
.icon {
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* navbar */
.navbar {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  gap: 10px;
}

.navbar__item {
  margin-bottom: 10px;
}

.navbar__link {
  display: block;
  padding: 5px 22px;
  background: #000;
  color: #fff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  cursor: pointer;
}

.navbar__link:hover {
  background: #c1260b;
  color: #fff;
}

.navbar__item.is-current .navbar__link {
  background: #c1260b;
}

.navbar__item_phone .navbar__link,
.navbar__item_language .navbar__link {
  padding: 3px 15px;
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.navbar__item_phone .navbar__link:hover {
  color: #c1260b;
  border-color: #c1260b;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

/* main intro */
.main-intro {
  min-height: 100vh;
  /* background: url('../img/bg.png') 50% 50% no-repeat; */
  background: linear-gradient(45deg,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.3) 100%),url('../img/bg.png') 50% 50% no-repeat;
  background-size: cover;
}

.intro {
  padding: 40px 50px 100px;
  background: #fff;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}

.intro__logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.intro__title {
  max-width: 600px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 1.3;
  font-weight: normal;
  text-align: center;
}

/* products */
.product-list__item:not(:last-child) {
  margin-bottom: 70px;
}

.product-card {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.product-card.is-reverse {
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}

.product-card > * {
  width: 50%;
}

.product-card__cover {
  height: 400px;
  padding: 50px;
  background: #f6f6f6;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}

.product-card__cover img {
  display: block;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-card__info {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  padding: 20px 30px;
}

.product-card__title {
  font-size: 35px;
  text-transform: uppercase;
}

.product-card.is-reverse .product-card__title {
  text-align: right;
}

/* contacts */
.main-contacts {
  padding: 0 !important;
}

.main-contacts .section__head {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.contacts {
  padding: 100px 50px;
  background: linear-gradient(45deg,rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.6) 100%),url('../img/bg.png') 50% 50% no-repeat;
  background-size: cover;
  text-align: center;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}

.contacts .section__title {
  color: #fff;
}

.contacts__email {
  margin-top: 30px;
  font-size: 25px;
  color: #909090;
}

.contacts__email:hover {
  color: #fff;
}

.contacts__phone {
  margin-top: 20px;
  padding: 5px 20px;
  font-size: 25px;
  color: #fff;
  background: #5a5a5a36;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.contacts__phone:hover {
  background: #5a5a5a78;
  color: #fff;
}

.contacts__form {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}

.contacts__form .ui-form__agreement {
  margin: 0 auto;
}

/* video */
.main-video {
  border-bottom: 1px solid #eee;
}

.main-video video {
  width: 100%;
}

/* gallery */
.main-gallery {
  border-bottom: 1px solid #eee;
}

.gallery {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}

.gallery__item {
  width: 50%;
  object-fit: cover;
  font-size: 0;
  padding: 15px;
}

.gallery__item.is-full {
  width: 100%;
}

.gallery__item img {
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.gallery__item.is-full img {
  height: 600px;
}

/* footer */
.main-footer {
  text-align: center;
  padding: 30px 0 !important;
}

.footer__copyright {
  margin: 0 !important;
}

.footer__address {
  margin: 5px 0 0;
  font-size: 13px;
  color: #959595;
}

/* adaptive */
@media screen and (max-width: 1199px) {
  .section__title {
    font-size: 35px;
  }
  .product-card__title {
    font-size: 30px;
  }
}

@media screen and (max-width: 991px) {
  .layout, .layout-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .section {
    padding: 70px 0;
  }
  .main-intro {
    min-height: inherit;
  }
  .intro {
    padding: 40px 15px 70px;
  }
  .gallery__item img {
    height: 300px;
  }
  .gallery__item.is-full img {
    height: 500px;
  }
  .contacts {
    padding: 70px 15px;
  }
}

@media screen and (max-width: 767px) {
  .section__title {
    font-size: 30px;
  }
  .gallery__item {
    width: 100%;
  }
  .gallery__item img {
    height: 300px;
  }
  .gallery__item.is-full img {
    height: 300px;
  }
  .product-card__title {
    font-size: 25px;
  }
  .contacts__email {
    font-size: 20px;
  }
  .contacts__phone {
    font-size: 20px;
  }
  .contacts__form {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 575px) {
  .layout, .layout-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section {
    padding: 50px 0;
  }
  .section__body {
    margin-top: 50px;
  }
  .navbar {
    gap: 5px;
  }
  .navbar__link {
    padding: 5px 15px;
  }
  .intro {
    padding: 30px 15px 50px;
  }
  .intro__title {
    max-width: 400px;
    font-size: 18px;
  }
  .section__title {
    font-size: 25px;
  }
  .product-list__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .product-card > * {
    width: 100%;
  }
  .product-card__cover {
    height: 300px;
    padding: 30px;
  }
  .product-card__info {
    padding: 20px 15px;
  }
  .product-card__title {
    text-align: center !important;
    font-size: 18px;
  }
  .contacts {
    padding: 50px 15px 15px;
  }
}

@media screen and (max-width: 376px) {
  .contacts__form {
    padding: 30px 15px;
  }
}
