body {
  background-color: #F5F5F5;
  overflow: clip;
}
h3 {
  font-weight: 500;
}
.tab {
  display: none;
}

.banner {
  position: relative;
}
.banner__title, .banner__subtitle {
  max-width: 827px;
}
.banner__illustration {
  display: block !important;
  position: absolute;
  bottom: 0; right: 0;
  width: 47%;
  max-width: 900px;
}
.banner__illustration img {
  width: 100%;
  display: block;
}

.opportunities-top .title {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.opportunities-menu {
  width: 100%;
  padding: 10px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background-color: var(--white);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}
.opportunities-menu__item {
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  filter: grayscale(1) opacity(.5) brightness(.5);
  transition: all .2s ease;
  cursor: pointer;
}
.opportunities-menu__item * {
  pointer-events: none;
}
.opportunities-menu__item:hover {
  filter: grayscale(1) opacity(.75) brightness(.5);
}
.opportunities-menu__item.active {
  filter: none;
}
.opportunities-menu__item div {
  color: var(--accent);
}

.parent-navigation {
  width: 100vw;
}
.parent-navigation .swiper-button-next, .parent-navigation .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  transform: translateY(-50%);
}
.parent-navigation .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -45px);
}
.parent-navigation .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -45px);
}
@media screen and (min-width: 1920px) {
  .parent-navigation .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -150px);
  }
  .parent-navigation .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -150px);
  }
}
.parent-navigation .swiper-button-next::after, .parent-navigation .swiper-button-prev::after {
  content: '';
  display: block;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  background-image: url('../../img/doma-new/swiper-arrow-opacity.svg');
  background-position: center;
  background-position-x: 22px;
  background-repeat: no-repeat;
  background-color: #D3DDF1;
  border-radius: 50%;
  transition: all .2s ease;
}
.parent-navigation .swiper-button-next:not(.swiper-button-disabled):hover::after,
 .parent-navigation .swiper-button-prev:not(.swiper-button-disabled):hover::after {
  background-color: #AABEE6;
}
.parent-navigation .swiper-button-next::after {
  transform: rotate(180deg);
}
.swiper-button-disabled {
  opacity: 0 !important;
}

.opportunities-slider {
  margin-top: 32px;
  border-radius: 24px;
  overflow: visible;
  display: none;

  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.opportunities-slider.active {
  display: block;
}
.opportunities-slider__item {
  position: relative;
  height: auto;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 764px;
  gap: 32px;
  border-radius: 24px;
  background-color: var(--white);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}
.opportunities-slider__item:not(.swiper-slide-active) {
  filter: blur(2px);
}
.opportunities-slider__item::after {
  content: '';
  display: block;
  position: absolute;
  background-color: var(--white);
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  z-index: 0;
  transition: all .2s ease;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.opportunities-slider__item:not(.swiper-slide-active)::after {
  opacity: .75;
  z-index: 5;
}

.opportunities-slider__item .content {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.opportunities-slider__item .content h3 {
  margin-top: 64px;
}

.person__img {
  width: 90px;
  height: 90px;
}
.person__name {
  font-size: 24px;
  line-height: 120%;
}
.opportunities-slider__item h2 {
  display: none;
}
.opportunities-slider__item .description {
  font-size: 18px;
  line-height: 130%;
}
.opportunities-slider__item .description br {
  content: " ";
  display: block;
  margin: 4px;
}
.render-wrapper {
  position: relative;
  border: 1px solid #275EC780;
  border-radius: 24px;
  overflow: hidden;
  background-clip: padding-box;
  background-color: #275EC710; /* Полупрозрачный фон того же цвета */
}
.render-wrapper > img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px; /* Компенсируем border */
  display: block;
}
.render-wrapper > img._mob {
  display: none;
}
.render-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: absolute;
  padding: 10px 5px;
  width: fit-content;
  z-index: 4;
  background-color: var(--white);
  cursor: pointer;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.render-item._right-corner {
  border-radius: 16px 0 16px 16px;
}
.render-item._left-corner {
  border-radius: 0 16px 16px 16px;
}
.render-item._bottom-left-corner {
  border-radius: 16px 16px 16px 0;
}
.render-item._bottom-right-corner {
  border-radius: 16px 16px 0 16px;
}
.render-item p {
  font-size: 11px;
  line-height: 12px;
  padding: 0 4px;
  align-self: flex-start;
}
.render-item img {
  width: 85px;
}


#light-1 #render-link-1 {
  left: 16.5%;
  top: 12%;
}
#light-1 #render-link-2 {
  right: 27%;
  bottom: 11%;
}
#light-2 #render-link-3 {
  right: 38%;
  top: 10%;
}
#light-2 #render-link-4 {
  right: 40%;
  bottom: 25%;
}
#light-2 #render-link-5 {
  left: 3%;
  top: 23%;
}
#light-2 #render-link-6 {
  right: 10.5%;
  bottom: 13%;
}
#light-3 #render-link-7 {
  right: 31%;
  top: 34%;
}
#climate-1 #render-link-8 {
  left: 13.5%;
  top: 47%;
}
#climate-1 #render-link-9 {
  right: 36%;
  top: 30%;
}
#climate-1 #render-link-10 {
  left: 9%;
  bottom: 4%;
}
#climate-2 #render-link-11 {
  left: 20%;
  bottom: 30%;
}
#climate-2 #render-link-12 {
  right: 33%;
  bottom: 31%;
}
#security-1 #render-link-13 {
  right: 23%;
  bottom: 34%;
}
#security-1 #render-link-14 {
  left: 14%;
  top: 24%;
}
#security-1 #render-link-15 {
  left: 32%;
  top: 44%;
}
#security-2 #render-link-16 {
  right: 6%;
  bottom: 34%;
}
#security-2 #render-link-17 {
  right: 22%;
  bottom: 23%;
}
#security-2 #render-link-18 {
  left: 36%;
  top: 11%;
}
#security-2 #render-link-19 {
  left: 27%;
  bottom: 31%;
}
#security-2 #render-link-20 {
  left: 5%;
  bottom: 12.5%;
}
#video-1 #render-link-21 {
  right: 39%;
  top: 9%;
}
#video-1 #render-link-22 {
  left: 26%;
  bottom: 32%;
}


.devices-slider {
  width: 100%;
  padding-right: 40px;
  padding-top: 32px;
  margin: 0;
  overflow: visible;
  z-index: 5;
}
.devices-slider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.devices-slider__card {
  position: relative;
  width: 100%;
  max-width: 172px;
  height: auto;
  min-height: 68px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  background-color: #F5F5F5;
  overflow: visible !important;
  transition: all .2s ease !important;
}
.devices-slider__card > p {
  font-size: 14px;
  line-height: 16px;
}
.devices-slider__card > img {
  width: 100%;
  display: none;
}
.devices-slider__card .counter {
  position: absolute;
  bottom: -10px; right: -8px;
  width: 33px; height: 33px;
  border-radius: 50%;
  background-color: var(--accent);
  font-size: 12px;
  line-height: 140%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parent-pagination {
  position: relative !important;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  top: initial !important;
  bottom: initial !important;
}
.parent-pagination .swiper-pagination-bullet {
  background: var(--gray-extra-light);
  opacity: 1;
}
.parent-pagination .swiper-pagination-bullet-active {
  background: var(--white);
}
.description._mob {
  display: none;
}

.ideas {
 padding-top: 150px;
 border-radius: 32px 32px 0 0 ;
}
.ideas .container {
  display: flex;
  flex-direction: column;
  align-items: center;

  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ideas-cards {
  width: 100%;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.ideas-cards__item {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.ideas-cards__item:nth-of-type(1) {
  grid-column-start: 1;
  grid-column-end: 8;
  height: calc(100vw / 3.4782);
}
.ideas-cards__item:nth-of-type(2) {
  grid-column-start: 8;
  grid-column-end: 13;
  height: calc(100vw / 3.4782);
}
.ideas-cards__item:nth-of-type(3) {
  grid-column-start: 1;
  grid-column-end: 7;
  height: calc(100vw / 3.2);
}
.ideas-cards__item:nth-of-type(4) {
  grid-column-start: 7;
  grid-column-end: 13;
  height: calc(100vw / 3.2);
}
.ideas-cards__item .wrapper {
  position: absolute;
  padding: 32px;
  min-height: initial;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.ideas-cards__item .tabs {
  max-width: 332px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ideas-cards__item:nth-of-type(4) .tabs {
  max-width: 380px;
}
.ideas-cards__item .tabs a {
  padding: 6px 16px;
  color: var(--dark);
  background-color: var(--white);
  border-radius: 20px;
  transition: background-color .2s ease;
}
.ideas-cards__item .tabs a:hover {
  background-color: var(--gray-extra-light);
}
.ideas-cards__item .content {
  max-width: 470px;
}
.ideas-cards__item:nth-of-type(2) .content,
.ideas-cards__item:nth-of-type(4) .content {
  max-width: 420px;
}
.ideas-cards__item .content .title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
}
.ideas-cards__item .content .text {
  margin-top: 8px;
  font-size: 24px;
  line-height: 120%;
}
.ideas-cards__item .content .disclaimer {
  margin-top: 16px;
  font-size: 12px;
  line-height: 130%;
}
.ideas-cards__item img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.ideas-pagination {
  display: none;
}


.application {
  padding-top: 150px;
  padding-bottom: 150px;
}
.application .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.application .section-descr {
  max-width: initial;
}

.application-wrapper {
  width: 100%;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 74px;
  z-index: 1;
}
.application__content {
  max-width: 507px;
}
.application__content .text {
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
}
.application .download-app {
  display: none;
}
.application__content .qr {
  width: 236px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.application__content .qr__img {
  height: 91px;
  width: 91px;
}
.application__content .qr__descr {
  font-size: 13px;
}
.application__content .markets {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.application__content .markets img {
  display: block;
}

.application__wrapper {
  width: calc(100% / 1.946);
  max-width: 740px;
  margin-right: -2%;
}
.application__wrapper-img {
  width: 100%;
}
.application__wrapper-img img._mob {
  display: none;
}
.application__wrapper-img img._web {
  width: 100%;
  display: block;
}
.application-blur {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 120%;
  height: 200px;
  border-radius: 50%;
  background-color: var(--accent);
  filter: blur(120px);
  transform: rotate(-11deg);
  /* opacity: .8; */
}

footer {
  margin-top: 0 !important;
}


@media screen and (max-width: 1600px) {
	.container {
		max-width: 1200px;
	}
	.banner__illustration {
		width: 40%;
	}
	.render-wrapper > img {
		object-fit: cover;
	}
	.devices-slider .swiper-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 1440px) {
  .banner__title, .banner__subtitle {
    max-width: 780px;
  }

  .opportunities-slider__item .content h3 {
    margin-top: 0;
    font-size: 30px;
  }
  .opportunities-slider__item .description {
    font-size: 16px;
  }

	.parent-navigation .swiper-button-next {
		right: var(--swiper-navigation-sides-offset, -45px);
	}
	.parent-navigation .swiper-button-prev {
		left: var(--swiper-navigation-sides-offset, -45px);
	}

  .devices-slider {
    padding-right: initial;
  }
  .devices-slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1200px) {
  .tab {
    display: block;
  }
  .banner {
    height: 688px;
  }
  .banner__wrapper {
    align-items: initial;
  }
  .banner__title, .banner__subtitle {
    max-width: 598px;
  }

  .opportunities-slider__item {
    display: flex;
    flex-direction: column;
    height: initial;
  }
	.parent-navigation .swiper-button-next {
		right: var(--swiper-navigation-sides-offset, 6px);
	}
	.parent-navigation .swiper-button-prev {
		left: var(--swiper-navigation-sides-offset, 6px);
	}

  .devices-slider {
    width: 100%;
  }
  .devices-slider .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
  .devices-slider__card {
    width: 100%;
    max-width: initial;
  }
  
  .ideas-cards__item {
    height: auto !important;
  }
  .ideas-cards__item .wrapper {
    gap: 52px;
  }
}

@media screen and (max-width: 968px) {
	.parent-navigation {
		display: none;
	}
  .ideas-cards {
    margin-top: 32px;
    display: flex;
    gap: 0;
  }
  .ideas-cards__item {
    border-radius: 12px;
  }
  .ideas-cards__item .tabs {
    max-width: 75%;
  }
  .ideas-cards__item .tabs a {
    padding: 4px 12px;
    font-size: 12px;
	text-wrap: nowrap;
  }
  .ideas-cards__item img {
    object-fit: cover;
  }
  .ideas-cards__item .wrapper {
    padding: 16px;
    gap: 120px;
  }
  .ideas-cards__item .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* height: 140px; */
  }
  .ideas-cards__item .content .title {
    font-weight: 600;
    font-size: 28px;
    line-height: 110%;
  }
  .ideas-cards__item .content .text {
    margin-top: 6px;
    font-size: 20px;
  }
  .ideas-pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .application-wrapper {
    flex-direction: column-reverse;
  }
  .application__wrapper {
    padding-right: initial;
    width: 80%;
  }
  .application__content {
    width: 100%;
    max-width: initial;
  }
}

@media screen and (max-width: 768px) {
  .banner__illustration {
    width: 60%;
  }
}

@media screen and (max-width: 480px) {
  .banner {
    height: 594px;
  }
  .banner__illustration {
    width: 100%;
  }

  .opportunities-menu {
    margin-top: 32px;
    border-radius: 16px;
    gap: 8px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .opportunities-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .opportunities-menu__item img {
    width: 20px;
  }

  .opportunities-slider {
    margin-top: 24px;
  }
  .opportunities-slider__item {
    justify-content: space-between;
    padding: 16px 0 24px;
    border-radius: 16px;
    gap: 0;
  }
  .opportunities-slider__item h2 {
    height: 57px;
    display: block;
    text-align: left;
    padding: 0 16px;
  }
  .devices-slider .swiper-wrapper {
    gap: 0;
    display: flex;
  }
  .opportunities-slider__item .content {
    order: 1;
  }
  .opportunities-slider__item .content .content-wrapper {
    display: none;
  }
  .opportunities-slider__item .content .devices-slider {
    margin-top: 32px;
    padding: 0 16px;
  }
  .opportunities-slider__item .content .devices-slider img {
    display: block;
    height: 56px;
    width: 85px;
  }
  .render-wrapper {
    margin-top: 24px;
    z-index: 3;
  }
  .render-wrapper > img {
    border-radius: 12px;
    height: 100%;
  }
  .render-wrapper > img._web {
    display: none;
  }
  .render-wrapper > img._mob {
    display: block;
  }
  .render-item {
    width: 75px;
    padding: 5px;
  }
  .render-item._left-corner {
    border-radius: 0 6px 6px 6px;
  }
  .render-item._right-corner {
    border-radius: 6px 0 6px 6px;
  }
  .render-item img {
    display: none;
  }
  .render-item p {
    padding: 0;
    font-size: 8px;
    line-height: 9px;
    align-self: initial
  }

  #light-1 #render-link-1 {
    left: 7.5%;
    top: 11%;
  }
  #light-1 #render-link-2 {
    right: 7%;
    bottom: 44%;
  }
  #light-2 #render-link-3 {
    right: 24%;
    top: 9%;
  }
  #light-2 #render-link-4 {
    right: initial;
    left: 22%;
    bottom: 41%;
    border-radius: 6px 0 6px 6px;
  }
  #light-2 #render-link-5 {
    left: 13%;
    top: 26%;
    border-radius: 0 6px 6px 6px;
  }
  #light-2 #render-link-6 {
    right: 13.5%;
    bottom: 45%;
  }
  #light-3 #render-link-7 {
    right: 22%;
    top: 44%;
  }
  #climate-1 #render-link-8 {
    left: 21.5%;
    top: 36%;
  }
  #climate-1 #render-link-9 {
    right: 21%;
    top: 47%;
  }
  #climate-1 #render-link-10 {
    left: 15%;
    bottom: 34%;
  }
  #climate-2 #render-link-11 {
    left: 14%;
    bottom: 48%;
    border-radius: 6px 6px 6px 0;
  }
  #climate-2 #render-link-12 {
    right: 14%;
    bottom: 49%;
    border-radius: 6px 6px 0 6px;
  }
  #security-1 #render-link-13 {
    right: 16%;
    bottom: initial;
    top: 16%;
    border-radius: 6px 6px 0 6px;
  }
  #security-1 #render-link-15 {
    left: 44%;
    top: 46%;
  }
  #security-2 #render-link-16 {
    right: 8%;
    top: 25%;
    bottom: initial;
    border-radius: 6px 6px 0 6px;
  }
  #security-2 #render-link-17 {
    right: 26%;
    top: 42%;
    bottom: initial;
    border-radius: 6px 0 6px 6px;
  }
  #security-2 #render-link-18 {
    left: 33%;
    top: 11%;
  }
  #security-2 #render-link-19 {
    left: 18%;
    top: 25%;
    bottom: initial;
    border-radius: 6px 6px 0 6px;
  }
  #security-2 #render-link-20 {
    left: 13%;
    bottom: 43%;
    border-radius: 0 6px 6px 6px;
  }
  #video-1 #render-link-21 {
    right: 18%;
    top: 11%;
  }
  #video-1 #render-link-22 {
    left: 18%;
    bottom: 41%;
  }

  .description._mob {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 14px;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 16px;
    border-radius: 0 0 12px 12px;
    z-index: 1;
    transition: height .2s ease;
    background: #000000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 55%);

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: height;
  }
  .description._mob:not(:has(.desription-text._short)) {
    height: 100%;
    z-index: 4;
  }
  .description .desription-text {
    font-size: 14px;
    line-height: 130%;
    color: var(--white);
    max-height: none;
  }
  .description .desription-text._short {
    max-height: 88px;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .description .show-more {
    display: flex;
    gap: 2px;
    align-items: center;
  }
  .description .show-more p {
    color: var(--white);
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
  }
  .description .show-more img {
	width: 14px;
	height: 14px;
  }
  .description .desription-text:not(._short) ~ .show-more img {
	transform: rotate(180deg) translate(-2px, -1px);
  }


  .devices-slider {
    position: relative;
  }
  .devices-slider::before, .devices-slider::after {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 130%;
    background-color: aquamarine;
    z-index: 2;
  }
  .devices-slider::before {
    top: -5px;
    left: 0;
    background: linear-gradient(-90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }
  .devices-slider::after {
    top: -5px;
    right: 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }
  .devices-slider__card {
    width: 101px;
    padding: 8px;
    gap: 6px;
  }
  .devices-slider__card p {
    height: 48px;
    font-size: 12px;
    line-height: 100%;
  }

  .parent-navigation {
    display: none;
  }
  .parent-pagination {
    display: none;
  }

  .ideas {
    padding-top: 60px;
  }
  .ideas-cards__item {
    width: 100%;
    aspect-ratio: .7 / 1;
  }
  .ideas-cards__item .content {
    height: 140px;
  }
  .ideas-cards__item .content .title {
    font-size: 15px;
    line-height: 110%;
    font-weight: 600;
  }
  .ideas-cards__item .content .text {
    font-size: 14px;
    line-height: 130%;
  }
  .ideas-cards__item .content .disclaimer {
    margin-top: auto;
  }
  .ideas-pagination {
    margin-top: 16px;
  }

  .application {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .application-wrapper {
    margin-top: 32px;
    gap: 32px;
  }
  .application__wrapper {
    width: 100%;
  }
  .application__content .text {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
  }
  .application .download-app {
    display: block;
    margin-top: 32px;
  }
  .application__content .qr {
    display: none;
  }
  .application__content .markets {
    justify-content: center;
    margin-top: 16px;
  }
  .application-blur {
    height: 80px;
    bottom: 15%;
    filter: blur(90px);
  }
	.application__wrapper-img img._mob {
	  display: block;
	  width: 100%;
	}
	.application__wrapper-img img._web {
	  display: none;
	}
}


@media (pointer: fine) {
  .devices-slider__card:hover {
    background-color: #dfdfdf;
  }
}
