html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Godzilla";
  src: url("../fonts/Godzilla.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Kong";
  src: url("../fonts/Kong.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Medium";
  src: url("../fonts/OpenSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-ExtraBold";
  src: url("../fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Black";
  src: url("../fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
body {
  font-family: "OpenSans-Medium", Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 2030px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.hidden {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
}

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

.error404 {
  width: 100vw;
  height: 100vh;
  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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.title404 {
  font-size: 110px;
  line-height: 150px;
  font-family: "Roboto Bold", sans-serif;
}

.text404 {
  font-size: 21px;
  line-height: 25px;
}

.modal__messages {
  width: 100vw;
  height: 100vh;
  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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.modal__messages-items {
  padding-left: 15px;
  padding-right: 15px;
}

.modal__messages-item {
  max-width: 500px;
  width: 100%;
  padding: 21px 29px 30px 30px;
  border: 5px solid #ed1c24;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.18);
  border-radius: 5px;
}

.modal__message-title {
  font-size: 40px;
  line-height: 50px;
}

.modal__message-text {
  font-size: 21px;
  line-height: 25px;
}

.main-title {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  text-align: center;
  font-size: 72px;
  line-height: 80px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 6px;
  padding-top: 8px;
}

.title {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  font-weight: 800;
}

.subtitle {
  font-size: 36px;
  line-height: 42px;
  font-weight: 800;
}

.title,
.subtitle {
  margin-bottom: 40px;
}

@media (max-width: 1080px) {
  body {
    font-size: 19px;
    line-height: 23px;
  }
}
@media (max-width: 780px) {
  .title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 640px) {
  .title {
    font-size: 29px;
    line-height: 37px;
  }
}
@media (max-width: 560px) {
  .title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 18px;
    line-height: 24px;
  }
  .title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 380px) {
  body {
    font-size: 16px;
    line-height: 20px;
  }
  .title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 25px;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1180px) {
  .btn {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .btn {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .btn {
    font-size: 18px;
  }
}

.btn:active {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.btn-red {
  background-color: #ed1c24;
  color: #FFFFFF;
}

.btn-red:hover {
  background-color: #af0c11;
}

.btn-violet {
  background-color: #403e76;
  color: #FFFFFF;
}

.btn-violet:hover {
  background-color: #232249;
}

.menu {
  position: fixed;
  z-index: 50;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(18, 18, 18, 0.96);
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  display: flex;
}

.menu__item {
  width: 100%;
  padding-left: 13px;
  padding-right: 13px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__item:hover .menu__link {
  color: #403e76;
}

.menu__link {
  display: inline-block;
  font-size: 30px;
  line-height: 54px;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1180px) {
  .menu__link {
    font-size: 28px;
    line-height: 200%;
  }
}
@media (max-width: 780px) {
  .menu__link {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .menu__link {
    font-size: 18px;
  }
}

.menu__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  border: 1px solid #403e76;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 460px) {
  .menu__btn {
    width: 50px;
    height: 50px;
  }
}

.menu__btn--2 {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 50px;
  right: 30px;
}
@media (max-width: 1080px) {
  .menu__btn--2 {
    top: 20px;
    right: 10px;
  }
}

.menu__btn--2.on {
  opacity: 1;
  z-index: 999;
}

.menu__btn span:first-child,
.menu__btn span:nth-child(2),
.menu__btn span:nth-child(3),
.menu__btn span:last-child {
  right: 0;
  width: 30px;
  height: 4px;
  background-color: #403e76;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.menu__btn span:not(last-child) {
  margin-bottom: 2px;
}

.menu__btn.active span:first-child {
  top: 25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu__btn.active span:nth-child(2) {
  display: none;
}

.menu__btn.active span:nth-child(3) {
  display: none;
}

.menu__btn.active span:last-child {
  top: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          margin-top: -6px;
}

.menu.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.header {
  position: relative;
  z-index: 100;
  background-color: transparent;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.header__top-inner {
  max-width: 940px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 135px;
          flex: 0 0 135px;
  height: 82px;
}

.logo__link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.logo__img {
  width: 100%;
  height: 100%;
}

.header__contacts {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  line-height: 120%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-left: 20px;
}

.header__contacts-text {
  font-family: "OpenSans-Bold", Arial, sans-serif;
}

.header__contacts-link {
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header__contacts-link:hover {
  text-decoration: underline;
}

@media (max-width: 1380px) {
  .header__top {
    padding-top: 20px;
  }
  .logo {
    -ms-flex-preferred-size: 96px;
        flex-basis: 96px;
    height: 57px;
  }
}
@media (max-width: 1180px) {
  .header__top {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .header__contacts {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .header__top {
    padding-left: 0;
    padding-right: 0;
  }
  .logo {
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    height: 42px;
  }
  .header__contacts {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .header__contacts {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  .header__contacts-link {
    display: inline-block;
  }
  .header__contacts-text span {
    display: none;
  }
  .header__contacts {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .header__contacts {
    font-size: 12px;
  }
}
.topscreen {
  margin-top: -120px;
}
@media (max-width: 1180px) {
  .topscreen {
    margin-top: -82px;
  }
}
@media (max-width: 410px) {
  .topscreen {
    margin-top: -100px;
  }
}

.topscreen-container {
  padding: 0;
}

.topscreen__container {
  max-width: 600px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.topscreen__slider-container {
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 1180px) {
  .topscreen__slider-container {
    min-height: auto;
    height: auto;
  }
}

.topscreen__slider {
  width: 100%;
  height: 100%;
}

.topscreen__slider-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topscreen__text-wrap {
  -ms-flex-preferred-size: 86%;
      flex-basis: 86%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 80px;
}
@media (max-width: 1080px) {
  .topscreen__text-wrap {
    padding-left: 0;
  }
}

.topscreen__form-wrap {
  margin-bottom: 50px;
  padding-right: 80px;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-align: center;
}
@media (max-width: 1080px) {
  .topscreen__form-wrap {
    display: none;
  }
}

.topscreen__slider-text {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 34px;
  line-height: 120%;
  margin-bottom: 20px;
  text-shadow: 0 -1px 3px #FFFFFF, 0 -1px 3px #FFFFFF, 0 1px 3px #FFFFFF, 0 1px 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF;
}
@media (max-width: 1380px) {
  .topscreen__slider-text {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1180px) {
  .topscreen__slider-text {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1080px) {
  .topscreen__slider-text {
    margin-bottom: 15px;
  }
}
@media (max-width: 780px) {
  .topscreen__slider-text {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-text {
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.topscreen__slider-text img {
  width: 80px;
  height: 80px;
}
@media (max-width: 1380px) {
  .topscreen__slider-text img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1180px) {
  .topscreen__slider-text img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 780px) {
  .topscreen__slider-text img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-text img {
    width: 30px;
    height: 30px;
  }
}

.topscreen__slider-title {
  font-family: "Kong", Arial, sans-serif;
  line-height: 120%;
}

.topscreen__slider-title2 {
  font-family: "Roboto-Black", Arial, sans-serif;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 30px;
}

.topscreen__slider-title,
.topscreen__slider-title2 {
  font-size: 80px;
  color: #454381;
}
@media (max-width: 1380px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 70px;
  }
}
@media (max-width: 1180px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 60px;
  }
}
@media (max-width: 960px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-title,
.topscreen__slider-title2 {
    font-size: 25px;
  }
}

.topscreen__slider-button {
  max-width: 300px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .topscreen__slider-button {
    width: 250px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .topscreen__slider-button {
    width: 200px;
    height: 40px;
  }
}

.topscreen__img {
  max-width: 640px;
  width: 100%;
  height: 215px;
  margin: 0 auto;
}

.topscreen__img img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1380px) {
  .topscreen__img {
    height: 170px;
  }
}
@media (max-width: 1180px) {
  .topscreen__img {
    height: 140px;
  }
}
@media (max-width: 780px) {
  .topscreen__img {
    height: 100px;
  }
}
.topscreen__arrow {
  margin-top: 20px;
  -webkit-animation: 4s flash ease-in-out infinite;
          animation: 4s flash ease-in-out infinite;
}

.topscreen__arrow p {
  margin-top: 20px;
  font-weight: 800;
  text-shadow: 0 -1px 3px #FFFFFF, 0 -1px 3px #FFFFFF, 0 1px 3px #FFFFFF, 0 1px 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px 0 3px #FFFFFF, 1px 0 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF, -1px -1px 3px #FFFFFF, 1px -1px 3px #FFFFFF, -1px 1px 3px #FFFFFF, 1px 1px 3px #FFFFFF;
}

.topscreen__arrow img {
  width: 40px;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.form__send {
  margin: -25px auto 0;
  background-color: rgba(255, 255, 255, 0.71);
  max-width: 460px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100px;
  border-radius: 0 0 20px 20px;
}

.form__title {
  background-color: #ed1c24;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 34px;
  line-height: 130%;
  color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 10px;
  margin-right: -20px;
  margin-left: -20px;
}

@media (max-width: 1380px) {
  .form__title {
    font-size: 30px;
  }
}
@media (max-width: 1180px) {
  .form__title {
    font-size: 24px;
  }
}
.form__list {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 780px) {
  .form__list {
    padding-left: 0;
    padding-right: 0;
  }
}

.form__item {
  margin-bottom: 20px;
  padding-right: 20px;
}

.form__input {
  max-width: 410px;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border-color: #cccccc;
  padding-left: 10px;
  padding-right: 10px;
  outline: 0;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none;
}

.carousel__button:hover svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.form__button {
  max-width: 430px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1180px) {
  .form__button {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 960px) {
  .form__button {
    height: 45px;
  }
}
@media (max-width: 780px) {
  .form__button {
    height: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1180px) {
  .form__send {
    padding-bottom: 20px;
  }
  .form__list {
    padding-top: 20px;
  }
  .form__input {
    height: 35px;
  }
}
.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.topscreen__slider-slide {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  text-align: center;
}

.topscreen__slider-slide {
  padding-top: 120px;
  background-image: url("../img/topscreenslider/topscreen-2.jpg");
  background-size: cover;
  padding-bottom: 100px;
}
@media (max-width: 1919px) {
  .topscreen__slider-slide {
    height: auto;
    padding-bottom: 20px;
  }
}

.topscreen__slider .swiper-pagination-bullet {
  background-color: #ed1c24;
}

.topscreen .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 3px;
}

.swiper-button-next, .swiper-button-prev {
  color: #ed1c24;
  display:none;
}

.products {
  padding-top: 50px;
  padding-bottom: 80px;
}
@media (max-width: 1380px) {
  .products {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.products__subtitle {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 120%;
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 780px) {
  .products__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .products__subtitle {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .products__subtitle {
    font-size: 20px;
  }
}

.products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .products__list {
    display: block;
  }
}

.product__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 325px;
          flex: 0 0 325px;
  margin-bottom: 30px;
  background-color: #f3f3f5;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
 
}
.product__item1 {
  /*-webkit-box-flex: 0;*/
  /*    -ms-flex: 0 0 325px;*/
  /*        flex: 0 0 325px;*/
  margin-bottom: 30px;
  background-color: #f3f3f5;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
 width:420px;
}
@media (max-width: 1380px) {
  .product__item {
    -ms-flex-preferred-size: 280px;
        flex-basis: 280px;
  }
}
@media (max-width: 780px) {
  .product__item {
    -ms-flex-preferred-size: 230px;
        flex-basis: 230px;
  }
}
@media (max-width: 470px) {
  .product__item {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
  }
}

.product__item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.product__link {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 35px;
}
@media (max-width: 1380px) {
  .product__link {
    padding-top: 70px;
    padding-bottom: 25px;
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 780px) {
  .product__link {
    padding-top: 30px;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 470px) {
  .product__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}

.products__img-label {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 73px;
  height: 56px;
}
@media (max-width: 1380px) {
  .products__img-label {
    top: 5px;
    right: 5px;
  }
}
@media (max-width: 1380px) {
  .products__img-label {
    width: 55px;
    height: 45px;
  }
}

.product__label {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 8px;
  background-color: #454381;
  border-radius: 10px 0 0 0;
}

.product__label-text {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  text-transform: uppercase;
}


.product__label2 {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 8px;
  background-color: #e66e05;
  border-radius: 10px 0 0 0;
}

.product__label2-text {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  text-transform: uppercase;
}


@media (max-width: 1380px) {
  .product__label-text {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .product__label-text {
    font-size: 10px;
  }
}

.product__img {
  display: inline-block;
  height: 120px;
  margin-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1380px) {
  .product__img {
    height: 100px;
    margin-bottom: 20px;
  }
}
@media (max-width: 780px) {
  .product__img {
    margin-bottom: 15px;
  }
}
@media (max-width: 470px) {
  .product__img {
    max-width: 100px;
    height: 60px;
    padding-right: 0;
    padding-left: 0;
  }
}

.product__img img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product__img:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.product__text {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 15px;
}
@media (max-width: 1380px) {
  .product__text {
    font-size: 19px;
    margin-bottom: 15px;
  }
}
@media (max-width: 780px) {
  .product__text {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 470px) {
  .product__text {
    font-size: 15px;
    margin-bottom: 0;
  }
}
@media (max-width: 380px) {
  .product__text {
    font-size: 13px;
  }
}

@media (max-width: 470px) {
  .product__mobwrap {
    -ms-flex-preferred-size: 160px;
        flex-basis: 160px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 400px) {
  .product__mobwrap {
    -ms-flex-preferred-size: 120px;
        flex-basis: 120px;
  }
}
@media (max-width: 360px) {
  .product__mobwrap {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
}

.product__summaru {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
}
@media (max-width: 470px) {
  .product__summaru {
    margin-bottom: 0;
  }
}
@media (max-width: 380px) {
  .product__summaru {
    padding-left: 5px;
  }
}

.product__descr {
  text-align: left;
}

.product__descr .product__descr-title {
  font-family: "OpenSans-Bold", Arial, sans-serif;
     font-size: 15px;
}
@media (max-width: 1380px) {
  .product__descr .product__descr-title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 780px) {
  .product__descr .product__descr-title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 470px) {
  .product__descr .product__descr-title {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 380px) {
  .product__descr .product__descr-title {
    font-size: 13px;
    line-height: 17px;
  }
}

.product__descr p {
  font-size: 14px;
  line-height: 120%;
}


@media (max-width: 1380px) {
  .product__descr p {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .product__descr p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 470px) {
  .product__descr p {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 1380px) {
  .product__shopicon {
    display: none;
  }
}

.product__shopicon:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product__price {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  color: #ed1c24;
  text-align: right;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1380px) {
  .product__price {
    font-size: 20px;
  }
}
@media (max-width: 1180px) {
  .product__price {
    font-size: 18px;
  }
}
@media (max-width: 780px) {
  .product__price {
    right: 0;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .product__price {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .product__price {
    display: none;
  }
}

.advantages__wrap {
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: #ed1c24;
}
@media (max-width: 1840px) {
  .advantages__wrap {
    padding-bottom: 50px;
  }
}
@media (max-width: 1380px) {
  .advantages__wrap {
    padding-top: 30px;
  }
}
@media (max-width: 780px) {
  .advantages__wrap {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.advantages__title {
  color: #FFFFFF;
}
@media (max-width: 640px) {
  .advantages__title {
    margin-bottom: 20px;
  }
}

.advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1180px) {
  .advantages__list {
    gap: 15px;
  }
}
@media (max-width: 780px) {
  .advantages__list {
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.advantages__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 360px;
          flex: 0 1 360px;
  padding: 10px;
  background-color: #FFFFFF;
  -ms-flex-item-align: normal;
      -ms-grid-row-align: normal;
      align-self: normal;
}
@media (max-width: 1840px) {
  .advantages__item {
    -ms-flex-preferred-size: 240px;
        flex-basis: 240px;
  }
}
@media (max-width: 1180px) {
  .advantages__item {
    -ms-flex-preferred-size: 190px;
        flex-basis: 190px;
  }
}
@media (max-width: 960px) {
  .advantages__item {
    -ms-flex-preferred-size: 160px;
        flex-basis: 160px;
  }
}
@media (max-width: 640px) {
  .advantages__item {
    -ms-flex-preferred-size: 170px;
        flex-basis: 170px;
  }
}
@media (max-width: 640px) {
  .advantages__item {
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
  }
}

.advantages__item-img {
  width: 100%;
  height: 300px;
}
@media (max-width: 1840px) {
  .advantages__item-img {
    height: 220px;
  }
}
@media (max-width: 1180px) {
  .advantages__item-img {
    height: 150px;
  }
}
@media (max-width: 960px) {
  .advantages__item-img {
    height: 110px;
  }
}
@media (max-width: 480px) {
  .advantages__item-img {
    height: 100px;
  }
}

.advantages__item-text {
  padding-top: 10px;
  padding-bottom: 5px;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  line-height: 150%;
}
@media (max-width: 1380px) {
  .advantages__item-text {
    font-size: 20px;
    line-height: 120%;
  }
}
@media (max-width: 980px) {
  .advantages__item-text {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 640px) {
  .advantages__item-text {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .advantages__item-text {
    font-size: 16px;
  }
}

.advantages__text {
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  color: #FFFFFF;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  text-align: justify;
}
@media (max-width: 1840px) {
  .advantages__text {
    padding-top: 40px;
  }
}
@media (max-width: 1380px) {
  .advantages__text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 1200px) {
  .advantages__text {
    padding-left: 30px;
    padding-right: 20px;
  }
}
@media (max-width: 780px) {
  .advantages__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 680px) {
  .advantages__text {
    padding-left: 20px;
  }
}
@media (max-width: 480px) {
  .advantages__text {
    font-size: 16px;
    line-height: 20px;
    padding-top: 20px;
    text-align: center;
  }
}

.brand__wrap {
  padding: 50px 20px 80px 50px;
  background-image: url("../img/brand.jpg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
@media (max-width: 1380px) {
  .brand__wrap {
    background-position: center left;
  }
}
@media (max-width: 1200px) {
  .brand__wrap {
    padding-left: 30px;
  }
}
@media (max-width: 1080px) {
  .brand__wrap {
    padding-bottom: 50px;
  }
}
@media (max-width: 780px) {
  .brand__wrap {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
@media (max-width: 680px) {
  .brand__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .brand__wrap {
    padding-bottom: 30px;
  }
}

.brand__title {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 10px;
}

.brand__text {
  max-width: 940px;
  width: 100%;
  /*background-color: rgba(255, 255, 255, 0.5);*/
  text-align: justify;
  padding: 10px;
  /*-webkit-box-shadow: 0px 0px 8px 5px rgba(34, 60, 80, 0.2);*/
  /*        box-shadow: 0px 0px 8px 5px rgba(34, 60, 80, 0.2);*/
  /*border-radius: 3px;*/
}
@media (max-width: 1380px) {
  .brand__text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 780px) {
  .brand__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .brand__text {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }
}

.wherebuy {
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #f4f4f4;
}
@media (max-width: 1320px) {
  .wherebuy {
    padding-bottom: 50px;
  }
}
@media (max-width: 780px) {
  .wherebuy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 780px) {
  .wherebuy__title {
    margin-bottom: 30px;
  }
}

.wherebuy__list-title {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 780px) {
  .wherebuy__list-title {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .wherebuy__list-title {
    margin-top: 0;
  }
}

.wherebuy__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1320px) {
  .wherebuy__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    background-color: transparent;
  }
}

.wherebuy__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 740px;
          flex: 0 1 740px;
}
@media (max-width: 1320px) {
  .wherebuy__img {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    height: 250px;
  }
}
@media (max-width: 460px) {
  .wherebuy__img {
    height: 200px;
  }
}
@media (max-width: 360px) {
  .wherebuy__img {
    height: 150px;
  }
}

.wherebuy__list {
  -ms-flex-preferred-size: 1000px;
      flex-basis: 1000px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 30px;
  padding-right: 80px;
}
@media (max-width: 1600px) {
  .wherebuy__list {
    padding-right: 30px;
  }
}
@media (max-width: 1320px) {
  .wherebuy__list {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-bottom: 20px;
    max-width: 1000px;
    width: 100%;
  }
}
@media (max-width: 1080px) {
  .wherebuy__list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 780px) {
  .wherebuy__list {
    margin-bottom: 10px;
  }
}

.wherebuy__item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #000000;
}

@media (max-width: 760px) {
  .wherebuy__item-text {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .wherebuy__item-text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .wherebuy__item-text {
    font-size: 13px;
  }
}
@media (max-width: 460px) {
  .wherebuy__item-text {
    font-size: 12px;
  }
}

.wherebuy__item-text a:hover {
  text-decoration: underline;
}

.wherebuy__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wherebuy__text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wherebuy__text p:nth-child(1) {
  max-width: 600px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.wherebuy__text p:nth-child(2) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 20px;
}
@media (max-width: 460px) {
  .wherebuy__text p:nth-child(2) {
    margin-left: 8px;
  }
}

.wherebuy__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.wherebuy__item-link:hover {
  text-decoration: underline;
}

.wherebuy__item-img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
@media (max-width: 460px) {
  .wherebuy__item-img {
    width: 20px;
    height: 20px;
  }
}

.contacts__wrap {
  padding-left: 300px;
  padding-right: 300px;
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #454381;
  color: #FFFFFF;
}
@media (max-width: 1600px) {
  .contacts__wrap {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1380px) {
  .contacts__wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 780px) {
  .contacts__wrap {
    padding-top: 30px;
  }
}
@media (max-width: 460px) {
  .contacts__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 780px) {
  .contacts__title {
    margin-bottom: 30px;
  }
}

.contacts__subtitle {
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 26px;
  line-height: 120%;
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 1080px) {
  .contacts__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .contacts__subtitle {
    font-size: 22px;
  }
}
@media (max-width: 460px) {
  .contacts__subtitle {
    font-size: 20px;
  }
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .contacts__list {
    -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;
    margin-bottom: 20px;
  }
}

.contacts__item {
  text-align: left;
}
@media (max-width: 760px) {
  .contacts__item {
    margin-bottom: 10px;
  }
}

.contacts__item-title {
  font-family: "OpenSans-Bold", Arial, sans-serif;
}

.contacts__link {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 960px) {
  .contacts__link {
    display: block;
  }
}

.contacts__link:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 960px) {
  .contacts__link:not(:last-child) {
    margin-right: 0;
  }
}

.contacts__link:hover {
  text-decoration: underline;
}

.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social__item {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .social__item {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 760px) {
  .social__item {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .social__item {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 360px) {
  .social__item {
    width: 30px;
    height: 30px;
  }
}

.social__item:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.social__item:not(:last-child) {
  margin-right: 20px;
}

.social__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.map iframe {
  width: 100%;
  height: 80vh;
}

.footer {
  position: relative;
  margin-top: -5px;
  background-color: #ed1c24;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .footer {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.footer-top {
  position: absolute;
  top: 5px;
  right: 1%;
  width: 50px;
  height: 50px;
}
@media (max-width: 480px) {
  .footer-top {
    width: 40px;
    height: 40px;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}







.fly-button2 {
  position: fixed;
  z-index: 9999;
  bottom: 225px;
  right: 10px;
  -webkit-animation: 2s pulse ease-in-out infinite;
          animation: 2s pulse ease-in-out infinite;
}
@media (max-width: 780px) {
  .fly-button2 {
    bottom: 200px;
  }
}

.fly-button__img {
  position: relative;
  width: 81px;
  height: 111px;
}
@media (max-width: 780px) {
  .fly-button__img {
    width: 54px;
    height: 74px;
  }
}
@media (max-width: 480px) {
  .fly-button__img {
    width: 40px;
    height: 55px;
  }
}
























.fly-button {
  position: fixed;
  z-index: 9999;
  bottom: 120px;
  right: 10px;
  -webkit-animation: 2s pulse ease-in-out infinite;
          animation: 2s pulse ease-in-out infinite;
}
@media (max-width: 780px) {
  .fly-button {
    bottom: 110px;
  }
}

.fly-button__img {
  position: relative;
  width: 81px;
  height: 111px;
}
@media (max-width: 780px) {
  .fly-button__img {
    width: 54px;
    height: 74px;
  }
}
@media (max-width: 480px) {
  .fly-button__img {
    width: 40px;
    height: 55px;
  }
}

.fly-button__text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  font-size: 12px;
  border-radius: 10px;
  padding-left: 3px;
  padding-right: 3px;
}
.fly-button__text1 {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 75%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  font-size: 12px;
  border-radius: 10px;
  padding-left: 3px;
  padding-right: 3px;
}

.fly-button:hover .fly-button__text {
  opacity: 1;
  top: 1%;
}
.fly-button:hover .fly-button__text1 {
  opacity: 1;
  top: 1%;
}
.modal {
  display: none;
}

.modal-dialog {
  max-width: 600px;
  width: auto;
}

#ModalPresent .form {
  max-width: 600px;
  width: 100%;
  background-color: #FFFFFF;
  padding-bottom: 20px;
  border-radius: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.modal__title {
  background-color: #ed1c24;
  border-radius: 20px 20px 0 0;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 30px;
  line-height: 130%;
  color: #FFFFFF;
  padding: 10px 10px 10px 10px;
  margin-left: -20px;
  margin-right: -20px;
  text-align: center;
}

@media (max-width: 1380px) {
  .modal__title {
    font-size: 26px;
  }
}
@media (max-width: 1180px) {
  .modal__title {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .modal__title {
    font-size: 20px;
  }
}
.modal .form__list {
  text-align: center;
}

.modal.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  color: var(--fancybox-color, #fff);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#FF4D26), to(#EC694B));
  background: linear-gradient(90deg, #FF4D26, #EC694B);
}

.modal.fancybox__content {
  padding: 0;
  border-radius: 20px;
}

.modal .form__item {
  padding-right: 0;
}

.modal__more-title,
.modal__more-text {
  padding-left: 10px;
  padding-right: 10px;
}

.modal__more-title {
  padding-top: 20px;
  font-family: "OpenSans-Bold", Arial, sans-serif;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 1380px) {
  .modal__more-title {
    font-size: 30px;
  }
}
@media (max-width: 1180px) {
  .modal__more-title {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .modal__more-title {
    font-size: 20px;
  }
}

.modal__more-subtitle {
  font-size: 14px;
  line-height: 110%;
  text-align: justify;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 8px;
}
@media (max-width: 1080px) {
  .modal__more-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .modal__more-subtitle {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .modal__more-subtitle {
    font-size: 8px;
  }
}

.modal__more-text {
  font-size: 12px;
  line-height: 50%;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 7px;
}
@media (max-width: 1080px) {
  .modal__more-text {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .modal__more-text {
    font-size: 8px;
  }
}
@media (max-width: 480px) {
  .modal__more-text {
    font-size: 7px;
  }
}

.modal__more-text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
      justify-content: left; 
          align-items: center;
  margin-bottom: 3px;
      line-height: 24px;
}

.modal__more-text p img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
@media (max-width: 1080px) {
  .modal__more-text p img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 640px) {
  .modal__more-text p img {
    width: 30px;
    height: 30px;
  }
}


.modal__more-text-icon {
  font-size: 12px;
  text-align: center;
  padding-bottom: 3px;
}
@media (max-width: 1080px) {
  .modal__more-text-icon {
    font-size: 10px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .modal__more-text-icon {
    font-size: 8px;  
    text-align: center;
  }
}
@media (max-width: 480px) {
  .modal__more-text-icon {
    font-size: 7px;
    text-align: center;
  }
}

.modal__more-text-icon p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3px;
      line-height: 24px;
        padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 7px;
}

.modal__more-text-icon p img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
      text-align: center;
}
@media (max-width: 1080px) {
  .modal__more-text-icon p img {
    width: 35px;
    height: 35px;
        text-align: center;
  }
}
@media (max-width: 640px) {
  .modal__more-text-icon p img {
    width: 30px;
    height: 30px;
        text-align: center;
  }
}



.product__icon{
    
      display: flex;
      justify-content: center; 
      align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    
}
  .document-item {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            max-width: 500px;
        }

        .document-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .pdf-icon {
            width: 40px;
            height: 40px;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .pdf-icon svg {
            width: 100%;
            height: 100%;
            color: #e74c3c;
        }

        .document-info {
            flex-grow: 1;
            margin-right: 16px;
        }

        .document-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .document-size {
            font-size: 12px;
            color: #666;
        }

        .download-btn {
            background: #3498db;
            border: none;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.8s ease;
            flex-shrink: 0;
        }

        .download-btn:hover {
            background: #2980b9;
        }

        .download-btn svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        /* Стили для скрытого input файла */
        .file-input {
            display: none;
        }

        /* Дополнительные стили для контейнера */
        .container-two {
            max-width: 500px;
            margin: 0 auto;
        }

        .title-two{
            text-align: center;
             margin-top: 100px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .slider-container {
            width: 100%;
            max-width: 1405px;
            margin: 40px auto;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .slider {
            display: flex;
            width: 300%; /* 3 слайда = 300% */
            animation: slide 55s infinite;
        }

        .slide {
            width: 100%; /* Каждый слайд занимает 1/3 ширины контейнера */
            display: flex;
            min-height: 500px;
        }

        .slide-image {
            width: 50%;
            background-size: cover;
            background-position: center;
        }
        .slide-image2{
            display:flex;
            flex-direction:row;
        }

        .slide-content {
            width: 50%;
            padding: 40px;
            background-color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .slide-content h2 {
            color: #0066cc;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .slide-content p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .slide-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .slide-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }

        .slide-content th, .slide-content td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        .slide-content th {
            background-color: #f2f2f2;
        }

        /* Анимация слайдера */
        @keyframes slide {
            0%, 26% {
                transform: translateX(0);
            }
            33%, 59% {
                transform: translateX(-33.33%);
            }
            66%, 92% {
                transform: translateX(-66.66%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Индикаторы слайдов */
        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }

        .indicator.active {
            background-color: #0066cc;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .slide {
                flex-direction: column;
            }
            
            .slide-image, .slide-content {
                width: 100%;
            }
            
            .slide-image {
                height: 300px;
            }
        }
        .topscreen__slider-title .accent-title2 {font-size: 130px;
    color: #ff0000;
    text-align: end;}
        @media (max-width: 480px) {
  .topscreen__slider-title .accent-title2 {
    font-size: 14px !important;  
  }
}
/*Иконка вверх*/
/* Стили для кнопки "Наверх" */
.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.back-to-top:hover {
  background: #333;
  transform: translateY(-2px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .back-to-top {
    left: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    left: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}