.info-block-image {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
.info-block-image:last-child {
  margin-bottom: 0;
}
.info-block-image__picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.info-block-image__img {
  object-fit: cover;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.info-block-text {
  background-color: #0977C4;
}
.info-block-text-wrap {
  max-width: 410px;
  color: #fff;
  padding: 30px 16px;
  margin-left: auto;
  margin-right: auto;
}
.info-block-text-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.info-block-text-wrap p {
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  margin: 20px 0;
}
.info-block-text-wrap p:first-child {
  margin-top: 0;
}
.info-block-text-wrap p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .info-block {
    display: grid;
    gap: 11px;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  }
  .info-block-image {
    max-width: 292px;
    height: 309px;
    margin-bottom: 0;
  }
  .info-block-image__img {
    height: 100%;
  }
  .info-block-text {
    padding: 20px 44px 42px 20px;
    margin: 0;
  }
  .info-block-text-wrap {
    max-width: none;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .info-block-text-wrap p {
    margin: 15px 0;
  }
}
@media screen and (min-width: 1280px) {
  .info-block {
    gap: 12px;
  }
  .info-block-image {
    max-width: 419px;
    height: 443px;
  }
  .info-block-text {
    padding: 30px 35px 30px 28px;
  }
  .info-block-text-wrap h3 > p {
    margin-top: 18px;
  }
  .info-block-text-wrap p {
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
    margin: 20px 0;
  }
}
.card-list {
  margin: 40px 0;
}
.card-list__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #333;
  margin-bottom: 23px;
}
.card-list__title em {
  font-style: normal;
  color: #0865A7;
}
.card-list-items {
  display: grid;
  gap: 20px;
}
.card-list-item_flip .card-list-item-content {
  transform: rotateY(180deg);
}
.card-list-item-content {
  display: grid;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100%;
  min-height: 479px;
  color: #fff;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.9s;
  box-shadow: 2px 2px 10px 0 rgba(14, 63, 98, 0.2);
}
.card-list-item-description {
  margin-bottom: 40px;
}
.card-list-item-icon {
  display: flex;
  height: 56px;
  padding: 10px;
  margin-bottom: 10px;
}
.card-list-item-icon svg {
  height: 100%;
  width: auto;
}
.card-list-item__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}
.card-list-item__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 10px;
}
.card-list-item__button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: auto;
}
.card-list-item__button svg {
  width: 14px;
}
.card-list-item-content_front,
.card-list-item-content_back {
  display: flex;
  flex-direction: column;
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: #0977C4;
  padding: 25px 15px 20px 20px;
}
.card-list-item-content_front {
  z-index: 10;
  transform: rotateY(0deg);
  background: radial-gradient(50% 50% at 0% 100%, rgba(27, 227, 240, 0.6) 0%, rgb(9, 119, 196) 100%);
}
.card-list-item-content_back {
  z-index: 9;
  background-color: #fff;
  color: #1B1B1B;
  border: 1px solid rgba(51, 51, 51, 0.1019607843);
  box-shadow: 2px 2px 10px 0 rgba(14, 63, 98, 0.0392156863);
  transform: rotateY(180deg);
}
.card-list-item-content_back .card-list-item-icon svg path {
  stroke: #0977C4;
}
.card-list-item-content_back .card-list-item__button {
  background-color: #0977C4;
}
@media screen and (min-width: 768px) {
  .card-list {
    margin: 60px 0;
  }
  .card-list__title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 40px;
  }
  .card-list__title .mobile-show {
    display: none;
  }
  .card-list-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .card-list-item-content {
    min-height: 489px;
    box-shadow: 2px 2px 10px 0 rgba(14, 63, 98, 0.0392156863);
  }
  .card-list-item-content_front,
  .card-list-item-content_back {
    padding-bottom: 30px;
  }
  .card-list-item__title {
    min-height: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .card-list__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .card-list-items {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }
  .card-list-item:nth-child(-n+2) {
    grid-column: span 3;
  }
  .card-list-item:nth-child(-n+2) .card-list-item-content_front,
  .card-list-item:nth-child(-n+2) .card-list-item-content_back {
    padding-right: 40px;
  }
  .card-list-item:nth-child(-n+2) .card-list-item__title {
    font-size: 18px;
    line-height: 32px;
    min-height: 64px;
  }
  .card-list-item:nth-child(n+3) {
    grid-column: span 2;
  }
  .card-list-item:nth-child(n+3) .card-list-item__title {
    font-size: 16px;
  }
  .card-list-item:hover .card-list-item-content {
    transform: rotateY(180deg);
  }
  .card-list-item-content_front,
  .card-list-item-content_back {
    padding: 30px 30px 36px 30px;
  }
  .card-list-item__title {
    min-height: 56px;
  }
  .card-list-item__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
  }
  .card-list-item__button {
    width: 56px;
    height: 56px;
  }
  .card-list-item__button svg {
    width: 19px;
  }
}
.product-list__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.product-list__title em {
  font-style: normal;
  color: #0865A7;
}
.product-list__subtitle {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  color: #1B1B1B;
  margin-top: 10px;
}
.product-list-items {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.product-list-item {
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, 0.1);
  padding: 10px 10px 0 10px;
  min-width: 0;
}
.product-list-item-top {
  position: relative;
}
.product-list-item-slide {
  width: 100% !important;
}
.product-list-item-image {
  display: flex;
  justify-content: center;
  width: auto;
  height: 196px;
  background-color: #f8f8f8;
}
.product-list-item__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  position: static;
  margin-top: 10px;
  display: flex;
  width: 100%;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 100%;
  height: 3px;
  border-radius: 0;
  background-color: #C0C6CA;
  transition: 0.3s;
  margin-right: 5px;
  margin-left: 0;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #397FB0;
}
.product-list-item-characteristics {
  position: absolute;
  z-index: 1;
  display: flex;
  gap: 4px 6px;
  flex-wrap: wrap;
  bottom: 13px;
}
.product-list-item__characteristic {
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  background-color: #397FB0;
  padding: 7px 8px;
}
.product-list-item-description {
  display: flex;
  flex-direction: column;
}
.product-list-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.product-list-item__subtitle {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.7);
  margin-top: auto;
}
.product-list-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  color: #0865A7;
  background-color: #E5ECF1;
  padding: 18px;
  margin: 20px -10px 0 -10px;
}
.product-list-item__link svg {
  margin-left: 9px;
}
@media screen and (min-width: 768px) {
  .product-list__title {
    font-size: 32px;
    line-height: 48px;
  }
  .product-list__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
  }
  .product-list-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
  }
  .product-list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    margin-bottom: 0;
  }
  .product-list-item-image {
    height: 218px;
  }
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    margin-top: 8px;
  }
  .product-list-item-characteristics {
    bottom: 11px;
  }
  .product-list-item__characteristic {
    font-size: 13px;
  }
  .product-list-item-description {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .product-list-item__title {
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .product-list-item__subtitle {
    margin-top: auto;
  }
  .product-list-item__link {
    margin-top: 31px;
  }
}
@media screen and (min-width: 1280px) {
  .product-list__title {
    font-size: 36px;
  }
  .product-list-items {
    gap: 20px;
  }
  .product-list-item {
    min-height: 590px;
    padding: 14px 15px 0 15px;
  }
  .product-list-item-image {
    height: 332px;
  }
  .product-list-item-characteristics {
    gap: 12px;
    left: 10px;
    bottom: 22px;
  }
  .product-list-item__title {
    font-size: 18px;
    line-height: 24px;
    margin-top: 30px;
  }
  .product-list-item__subtitle {
    font-size: 14px;
  }
  .product-list-item__link {
    transition: 0.3s;
    margin: 32px -15px 0 -15px;
  }
  .product-list-item__link:hover {
    background-color: #0865A7;
    color: #fff;
  }
  .product-list-item__link:hover svg path {
    fill: #fff;
    stroke: #fff;
  }
  .product-list-item__link svg path {
    transition: 0.3s;
  }
  .product-list-item-slider-nav {
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .product-list-item-slider-nav-item {
    flex: 1;
    cursor: pointer;
  }
}
.product-list-item-slider-pagination .swiper-pagination-bullet:before {
  content: none;
  display: none;
}
.contacts {
  margin-top: 40px;
}
.contacts__title {
  color: #0865A7;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.contacts__title .tablet-show {
  display: none;
}
.contacts-info {
  background-color: #0865A7;
  color: #FFFFFF;
  padding: 20px 24px 30px 24px;
}
.contacts-info-wrap {
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
}
.contacts-info__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 15px;
}
.contacts-info__address {
  font-size: 13px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 17px;
}
.contacts-info__address .desktop-show {
  display: none;
}
.contacts-info-connection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contacts-info__connect {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 10px;
}
.contacts-info__connect:last-child {
  margin-bottom: 0;
}
.contacts-info__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #0865A7;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px;
  margin-top: 40px;
}
.contacts-map-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 403px;
}
.contacts-map__img {
  object-fit: cover;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 768px) {
  .contacts {
    margin-top: 50px;
  }
  .contacts__title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 20px !important;
  }
  .contacts__title .tablet-show {
    display: inline;
  }
  .contacts-wrap {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  }
  .contacts-info {
    max-width: 400px;
    padding: 20px 15px 20px 20px;
  }
  .contacts-info__text {
    margin-bottom: 20px;
  }
  .contacts-info__address {
    margin-bottom: 18px;
  }
  .contacts-info-connection {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 11px 23px;
  }
  .contacts-info__connect {
    margin-bottom: 0;
  }
  .contacts-info__link {
    margin-top: 19px;
  }
  .contacts-map-wrap {
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .contacts {
    margin-top: 60px;
  }
  .contacts__title {
    margin-bottom: 30px !important;
  }
  .contacts__title .tablet-show {
    display: none;
  }
  .contacts-info {
    max-width: 445px;
    padding: 40px;
  }
  .contacts-info__text {
    font-size: 13px;
  }
  .contacts-info__address {
    font-size: 16px;
    line-height: 28px;
  }
  .contacts-info__address .desktop-show {
    display: inline;
  }
  .contacts-info-connection {
    flex-direction: column;
    gap: 24px;
  }
  .contacts-info__connect {
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
  }
  .contacts-info__connect:hover {
    border-bottom: 1px solid #fff;
  }
  .contacts-info__link {
    border: 1px solid transparent;
    transition: 0.3s;
    margin-top: 35px;
  }
  .contacts-info__link:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
  }
}
.showroom-gallery-columns {
  margin-top: 30px;
}
.showroom-gallery-wrap .showroom-gallery {
  margin-right: -16px;
}
.showroom-gallery .showroom-gallery-slide {
  width: 210px;
  aspect-ratio: 1/1;
  position: relative;
  margin-right: 12px;
}
.showroom-gallery .showroom-gallery-slide:last-child {
  margin-right: 0;
}
.showroom-gallery-slide__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showroom-gallery-pagination {
  display: none;
}
.showroom-gallery-scrollbar {
  margin-top: 10px;
  height: 3px;
  background-color: #D9D9D9;
}
.showroom-gallery-scrollbar__drag {
  background-color: #0977C4;
  height: 100%;
}
.showroom-gallery-thumb {
  display: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .showroom-gallery-columns {
    padding-top: 30px;
    border-top: 1px solid #EEEEEE;
  }
  .showroom-gallery-wrap .showroom-gallery {
    margin-right: -32px;
  }
  .showroom-gallery .showroom-gallery-slide {
    width: 317px;
  }
}
@media screen and (min-width: 1280px) {
  .showroom-gallery-wrap {
    min-width: 0;
    flex-grow: 1;
  }
  .showroom-gallery-wrap .showroom-gallery {
    margin-right: 0;
  }
  .showroom-gallery-scrollbar {
    display: none;
  }
  .showroom-gallery .showroom-gallery-slide {
    margin-right: 0;
  }
  .showroom-gallery-columns {
    position: relative;
    display: flex;
    gap: 22px;
    width: 100%;
  }
  .showroom-gallery-columns .showroom-gallery-pagination {
    display: block;
    position: absolute;
    left: 40px;
    bottom: 42px;
    z-index: 2;
    font-size: 40px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
  }
  .showroom-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 35%;
    flex-shrink: 0;
  }
  .showroom-gallery-thumb {
    display: block;
  }
  .showroom-gallery-thumb-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .showroom-gallery-thumb-slide {
    position: relative;
  }
  .showroom-gallery-thumb-slide__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .showroom-gallery-thumb_1 {
    flex-grow: 1;
    min-height: 0;
  }
  .showroom-gallery-thumb_2 {
    height: 41%;
    flex-shrink: 0;
    position: relative;
  }
  .showroom-gallery-thumb_2:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0977C4;
    opacity: 0.9;
    z-index: 2;
  }
}
.showroom--gallerycontainer {
  color: #333333;
  padding: 30px 24px 40px;
}
.info-block-container {
  padding: 0;
  max-width: none;
}
.product-list-container {
  padding: 40px 0;
  margin: 0 -16px;
  background-color: #F8F8F8;
}
@media screen and (min-width: 768px) {
  .showroom-container {
    padding: 30px 0 80px;
  }
  .info-block-container {
    max-width: 768px;
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .product-list-container {
    padding: 60px 0;
    margin: 0 -30px;
  }
  .product-list-container .container {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .info-block-container, .card-list, .slider,
  .showroom-container, .product-list {
    max-width: 1064px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .showroom-gallery-container {
    padding: 0;
  }
  .product-list-container {
    background-color: transparent;
    margin: 0;
  }
  .product-list-container .container {
    padding-left: 0;
    padding-right: 0;
  }
}