.block-banner .top {
  display: flex;
  grid-column-gap: 30px;
}
.block-banner .top__slider-navigations {
  width: 100%;
}
.block-banner .top__slider {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}
.block-banner .top__offer {
  width: 50%;
  background-image: url("./images/bg.svg");
  background-repeat: repeat;
  background-color: var(--bg-primary-second);
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
}
.block-banner .top__image {
  width: 50%;
  border-radius: 30px;
  overflow: hidden;
}
.block-banner .top__image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
.block-banner .top .banner-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.block-banner .top .banner-slide__title {
  margin-bottom: 15px;
  margin-top: 0;
}
.block-banner .top .banner-slide__preview {
  margin-bottom: 30px;
}
.block-banner .top .banner-slide__btn {
  margin-left: auto;
  margin-right: auto;
}
.block-banner .bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-top: 40px;
}
.block-banner .bottom .bottom-item {
  border: 1px solid var(--bg-primary-stroke);
  border-radius: 25px;
  overflow: hidden;
  padding: 10px;
  display: flex;
  background-color: var(--bg-primary-main);
  transition: background-color 0.3s ease;
}
.block-banner .bottom .bottom-item:hover {
  background-color: var(--colors-second);
}
.block-banner .bottom .bottom-item:hover .bottom-item__image {
  background-color: var(--hover-second);
}
.block-banner .bottom .bottom-item:hover .line__text {
  background-color: var(--colors-second);
  border: 1px solid var(--colors-main);
  color: var(--colors-main);
}
.block-banner .bottom .bottom-item:hover .line__arrow {
  border: 1px solid var(--hover-main);
  background: var(--colors-main);
}
.block-banner .bottom .bottom-item:hover .line__arrow svg path {
  stroke: var(--bg-primary-main);
}
.block-banner .bottom .bottom-item:hover .line__text.green {
  border: 1px solid var(--colors-main);
  background: var(--colors-main);
  color: var(--text-alt-head);
}
.block-banner .bottom .bottom-item:hover .line__text.green a {
  color: var(--text-alt-head);
}
.block-banner .bottom .bottom-item__image {
  min-width: 125px;
  width: 125px;
  height: 150px;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}
.block-banner .bottom .bottom-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block-banner .bottom .bottom-item__image.is-placeholder img {
  object-fit: contain;
}
.block-banner .bottom .bottom-item__offer {
  padding: 10px;
  flex-grow: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.block-banner .bottom .bottom-item .line {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
}
.block-banner .bottom .bottom-item .line__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-second);
  background: var(--bg-primary-third);
  border: 1px solid var(--bg-primary-third);
  padding: 7px 15px;
  border-radius: 100px;
  overflow: hidden;
  width: max-content;
  max-width: 100%;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.block-banner .bottom .bottom-item .line__text.green {
  border: 1px solid var(--hover-main);
  background: var(--bg-alt-third);
  color: var(--colors-main);
}
.block-banner .bottom .bottom-item .line__arrow {
  height: 60px;
  min-width: 60px;
  width: 60px;
  background: var(--bg-primary-main);
  border: 1px solid var(--bg-primary-third);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: border 0.3s, background 0.3s ease;
  margin-left: auto;
}
.block-banner .bottom .bottom-item .line__arrow svg {
  object-fit: contain;
  display: block;
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}
.block-banner .bottom .bottom-item .line__arrow svg path {
  transition: stroke 0.3s ease;
}

@media (max-width: 1400px) {
  .block-banner .top {
    grid-column-gap: 15px;
  }
  .block-banner .top__offer {
    width: 60%;
  }
  .block-banner .top__image {
    width: 40%;
  }
  .block-banner .bottom .bottom-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .block-banner .bottom .bottom-item__image {
    min-width: 80px;
    width: 80px;
    height: 90px;
    margin-bottom: 15px;
  }
  .block-banner .bottom .bottom-item__name {
    font-size: 20px;
  }
  .block-banner .bottom .bottom-item .line__arrow {
    display: none;
  }
}
@media (max-width: 1200px) {
  .block-banner .top__offer {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .block-banner .top {
    flex-direction: column;
  }
  .block-banner .top__offer {
    width: 100%;
  }
  .block-banner .top__image {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .block-banner .top__image img {
    width: max-content;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
  }
  .block-banner .bottom {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
  .block-banner .bottom .bottom-item {
    margin-bottom: 15px;
  }
  .block-banner .bottom .bottom-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .block-banner .bottom .bottom-item__image {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
