

/* Start:/local/templates/soft/components/bitrix/news.detail/partners/style.css?167526137016486*/
.news-detail .title-wrapper {
  margin-top: 50px;
}

.news-detail-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0 90px;
}

.news-detail-top-text {
  width: 65%;
}

.news-detail-top-subtitle {
  font-weight: 800;
  font-size: 19px;
  line-height: 27px;
  margin-bottom: 20px;
}

.news-detail-top-subtitle strong {
  font-weight: 800;
}

.news-detail-top-description p {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  margin: 20px 0;
}

.news-detail-top-description strong, .news-detail-top-description b {
  font-weight: 700;
}
.news-detail-top-description i {
  font-style: italic;
}

.news-detail-top-description ul, .news-detail-top-description ol {
  padding-left: 17px;
}

.news-detail-top-description ul li {
  list-style: disc;
}

.news-detail-top-description ol li {
  list-style: decimal;
}

.news-detail-top-description a {
  color: #4082BC;
}

.news-detail-top-description ul {
  margin: 20px 0;
}

.news-detail-top-file {
  width: 27%;
}

.news-detail-top-file-wrapper {
  position: relative;
  padding: 65px 55px;
  border-radius: 20px;
}

.news-detail-top-file-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.news-detail-top-file-wrapper:hover .news-detail-top-file-icon {
  -webkit-animation: pulseIcon .7s linear;
  animation: pulseIcon .7s linear;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.news-detail-top-file-name {
  font-weight: 800;
  font-size: 21px;
  line-height: 27px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 25px;
}

.news-detail-top-file-download {
  text-align: center;
}

.news-detail__advantages-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 85px;
}

.news-detail__advantages-item {
  width: 50%;
  border-radius: 20px;
  padding: 1px;
  display: inline-block;
  vertical-align: top;
  background: -o-radial-gradient(45.12% 137.5%, 405.27% 912.57%, #4093BC 0%, #802FB9 32.14%, #D7697B 67.78%, #4093BC 100%);
  background: radial-gradient(405.27% 912.57% at 45.12% 137.5%, #4093BC 0%, #802FB9 32.14%, #D7697B 67.78%, #4093BC 100%);
}

.news-detail__advantages-item-content {
  background-color: #FFFFFF;
  padding: 20px 15px;
  border-radius: 20px;
}

.news-detail__advantages-item-name {
  font-weight: 800;
  font-size: 17px;
  line-height: 23px;
  color: #000000;
  margin-bottom: 15px;
}

.news-detail__advantages-item-list ul li {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.news-detail__advantages-item-list ul li:last-child {
  margin-bottom: 0;
}

.news-detail__advantages-item-list ul li:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000000;
  margin: 8px 10px 0 0;
}

.news-detail__advantages-of-us {
  background: url("/local/templates/soft/components/bitrix/news.detail/partners/../../../../pictures/content/advantages-background.svg") no-repeat center/cover;
  padding: 90px 0;
}

.news-detail__advantages-of-us-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
  max-width: 1075px;
  margin-top: 60px;
}

.news-detail__advantages-of-us-item {
  width: calc(100% / 2 - 80px);
}

.news-detail__advantages-of-us-item-image {
  margin-bottom: 10px;
}

.news-detail__advantages-of-us-item-name {
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #FFFFFF;
}

.news-detail__advantages-of-us-item-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 10px;
}

.news-detail .feedback-form__wrapper {
  padding: 40px 0 175px 0;
}

.news-detail .preview-text p {
  margin: 20px 0;
}

.news-detail .preview-text strong {
  font-weight: 800;
}

@-webkit-keyframes pulseIcon {
  0% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulseIcon {
  0% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@media screen and (min-width: 2000px) {
  .news-detail .feedback-form__wrapper {
    padding: 40px 0 250px 0;
  }
}

@media screen and (max-width: 1024px) {
  .news-detail-top-text {
    width: 60%;
  }

  .news-detail-top-file {
    width: 35%;
  }
}

@media screen and (max-width: 992px) {
  .news-detail-top-text {
    width: 100%;
  }

  .news-detail-top-subtitle {
    font-size: 19px;
    line-height: 27px;
  }

  .news-detail-top-description p {
    font-size: 13px;
    line-height: 19px;
  }

  .news-detail-top-file {
    width: 100%;
  }

  .news-detail__advantages-list {
    max-height: none !important;
  }

  .news-detail__advantages-item {
    width: 100%;
  }

  .news-detail__advantages-of-us {
    background: url("/local/templates/soft/components/bitrix/news.detail/partners/../../../../pictures/content/advantages-background-mobile.svg") no-repeat center/100% 200%;
    padding: 35px 0;
  }

  .news-detail__advantages-of-us-item {
    width: 100%;
    text-align: center;
  }

  .news-detail__advantages-of-us-item-image img {
    margin: 0 auto;
  }

  .news-detail .feedback-form__wrapper {
    padding: 40px 0 130px 0;
  }
}

/* additional solutions */
.additional-news {
  /*margin-bottom: 150px;*/
}

.additional-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px 20px;
  margin-top: 75px;
}

.additional-news-item {
  position: relative;
  padding-bottom: 25px;
  width: calc(100% / 4 - 20px);
}

.additional-news-item:hover .additional-news-item__image {
  -webkit-box-shadow: -15px -15px 35px rgba(254, 61, 52, 0.3), 0px 15px 35px rgba(2, 150, 190, 0.2), 10px 10px 35px rgba(121, 38, 184, 0.3);
  box-shadow: -15px -15px 35px rgba(254, 61, 52, 0.3), 0px 15px 35px rgba(2, 150, 190, 0.2), 10px 10px 35px rgba(121, 38, 184, 0.3);
}

.additional-news-item__name {
  position: relative;
  margin-bottom: 15px;
}

.additional-news-item__name a {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.additional-news-item__name a:hover {
  color: #6516B3;
}

.additional-news-item__image {
  border-radius: 20px;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.additional-news-item__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.additional-news-item__image a img {
  display: block;
  width: 100%;
  height: 100%;
}

.additional-news-item-link {
  position: absolute;
  bottom: 0;
}

.additional-news-item-link a {
  position: relative;
  color: #6516B3;
  padding-right: 5px;
}

.additional-news-item-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 100%;
  background: url("/local/templates/soft/pictures/icons/arrow-right.svg");
  width: 7px;
  height: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.additional-news-item-link a:hover:after {
  -webkit-transform: translateY(-50%) translateX(6px);
  -ms-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

@media screen and (max-width: 992px) {
  .news-detail .title-wrapper {
    margin-top: 0;
  }
  .additional-news {
    margin-bottom: 0;
  }

  .additional-news-list {
    gap: 30px;
  }

  .additional-news-item {
    width: calc(100% / 2 - 30px);
  }
}

@media screen and (max-width: 768px) {
  .additional-news-item {
    width: 90%;
    margin: 0 auto;
  }

  .additional-news-item__image {
    height: 260px;
  }
}

@media screen and (max-width: 540px) {
  .additional-news-item__image {
    height: auto;
  }
}
/* /additional solutions */

/* portfolio */
.portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.projects-number {
  font-weight: 800;
  font-size: 19px;
  line-height: 27px;
  color: #191919;
  margin-bottom: 40px;
}

.portfolio > .container {
  width: 75%;
  margin-left: 10%;
  margin-right: 50px;
  padding: 0;
}

.portfolio-slider {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.portfolio-slider-wrapper {
  padding: 35px !important;
}

.portfolio-slider-prev,
.portfolio-slider-next {
  position: absolute;
  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;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  width: 39px;
  height: 45px;
  z-index: 5;
  top: 50%;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.portfolio-slider-prev {
  z-index: -5;
  opacity: 0;
  left: 15px;
}

.portfolio-slider-prev img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.portfolio-slider-prev.show {
  opacity: 1;
  z-index: 5;
}

.portfolio-slider-next {
  right: 15%;
}

.portfolio-number {
  font-weight: 800;
  font-size: 19px;
  line-height: 27px;
  color: #191919;
  margin-bottom: 40px;
}

.portfolio-slide-item {
  background: #FFFFFF;
  -webkit-box-shadow: 15px 15px 35px rgba(254, 61, 52, 0.07), 0px -10px 35px rgba(2, 150, 190, 0.07), 0px 10px 35px rgba(121, 38, 184, 0.07);
  box-shadow: 15px 15px 35px rgba(254, 61, 52, 0.07), 0px -10px 35px rgba(2, 150, 190, 0.07), 0px 10px 35px rgba(121, 38, 184, 0.07);
  border-radius: 25px;
  padding-bottom: 30px;
}

.portfolio-slide-item-image {
  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;
  width: 100%;
  margin: 0 0 20px;
}

.portfolio-slide-item-image img {
  width: 100%;
}

.portfolio-slide-item-name {
  padding: 0 15px;
}

.portfolio-slide-item-name span {
  font-weight: 800;
  font-size: 17px;
  line-height: 20px;
}

.portfolio-slide-item-description {
  position: relative;
  padding: 30px 15px 0;
  margin-top: 15px;
  margin-bottom: 25px;
}

.portfolio-slide-item-description p {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
}

.portfolio-slide-item-description:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 2px;
  background: -o-linear-gradient(355.2deg, #802FB9 -16.13%, #FF3E2D 110.23%);
  background: linear-gradient(94.8deg, #802FB9 -16.13%, #FF3E2D 110.23%);
}

.portfolio-slide-item-link {
  padding: 0 15px;
}

.portfolio-slide-item-link a {
  position: relative;
  color: #6516B3;
  padding-right: 5px;
}

.portfolio-slide-item-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 100%;
  background: url("/local/templates/soft/pictures/icons/arrow-right.svg");
  width: 7px;
  height: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.portfolio-slide-item-link a:hover:after {
  -webkit-transform: translateY(-50%) translateX(6px);
  -ms-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

@media screen and (min-width: 2500px) {
  .portfolio > .container {
    width: 20%;
  }
}

@media screen and (max-width: 1024px) {
  .portfolio {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .portfolio > .container {
    width: 100%;
    margin: 0;
  }

  .portfolio-slider-wrapper {
    width: 100%;
  }

  .portfolio-slider-next {
    right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-slide-item {
    width: 100% !important;
  }
}
/* /portfolio */

/* products */
.related-procuts-list {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 65px 20px;
}

.related-product-item {
  background: #FFFFFF;
  box-shadow: 15px 15px 35px rgba(254, 61, 52, 0.07), 0 -10px 35px rgba(2, 150, 190, 0.07), 0 10px 35px rgba(121, 38, 184, 0.07);
  border-radius: 25px;
  width: calc(100% / 2 - 20px);
  padding: 30px 25px;
}

.related-product-item-name {
  position: relative;
  font-weight: 800;
  font-size: 18px;
  line-height: 19px;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.related-product-item-name:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(94.8deg, #802FB9 -16.13%, #FF3E2D 110.23%);
}

.related-product-item-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}

.related-product-item-link a {
  position: relative;
  color: #6516B3;
  padding-right: 5px;
}

.related-product-item-link a:before {
  content: "";
  position: absolute;
  background-color: #6516B3;
  height: 1px;
  width: 0;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
  -webkit-transition: .3s cubic-bezier(0.65, 0.05, 0.36, 1);
  -o-transition: .3s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: .3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.related-product-item-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -10px;
  background: url("/local/templates/soft/pictures/icons/arrow-right.svg");
  width: 7px;
  height: 10px;
  -webkit-transition: .3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  -o-transition: .3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition: .3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.related-product-item-link a:hover:before {
  right: -15px;
  width: 15px;
}

.related-product-item-link a:hover:after {
  -webkit-transform: translateY(-50%) translateX(9px);
  -ms-transform: translateY(-50%) translateX(9px);
  transform: translateY(-50%) translateX(9px);
}
/* /products */

.news-detail-top-picture-wrapper {
  border-radius: 20px;
  background: #fff;
  padding: 60px;
  box-shadow: 15px 15px 35px rgb(254 61 52 / 7%), 0 -10px 35px rgb(2 150 190 / 7%), 0 10px 35px rgb(121 38 184 / 7%);
  align-self: start;
  margin-left: 3%;
  width: 30%;
}

.news-detail-top-picture {
  margin-bottom: 60px;
}

.news-detail-top-picture img {
  width: 100%;
}

.news-detail-top-picture-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  /*background: linear-gradient(91.55deg, #BFBFBF -0.9%, rgba(97, 95, 95, 0.94) 36.55%, rgba(120, 120, 120, 0.420762) 68.02%, #B0B0B0 97.59%);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
}

@media screen and (max-width: 992px) {
  .news-detail-top-picture-wrapper {
    width: 50%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {

  .related-product-item {
    width: 100%;
  }
  .news-detail-top-picture {
    margin-bottom: 30px;
  }
  .news-detail-top-picture-wrapper {
    width: 90%;
    padding: 20px;
    margin: 0 auto;
  }
  .news-detail-top-picture-text {
    font-size: 18px;
  }
}
/* End */
/* /local/templates/soft/components/bitrix/news.detail/partners/style.css?167526137016486 */
