@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.offer {
  position: relative;
  padding-block: 40px 0;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .offer {
    padding-block: 60px 0;
  }
}
@media (max-width: 992px) {
  .offer {
    padding-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .offer {
    padding-block: 100px 115px;
  }
}
.offer::before {
  width: 100%;
  height: 50%;
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #d2dde7, transparent);
  top: 0;
  left: 0;
  z-index: -1;
}
.offer__title {
  font-family: gotham-book, sans-serif;
  margin-top: 22px;
}
.offer .container_top {
  display: grid;
  grid-template-columns: 29% 1fr;
  margin-bottom: 100px;
  padding-left: 67px;
  -moz-column-gap: 3%;
       column-gap: 3%;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .offer .container_top {
    grid-template-columns: 100%;
    margin-bottom: 30px;
    padding-inline: 16px;
    row-gap: 30px;
  }
}
@media (max-width: 992px) {
  .offer .container_bottom {
    display: flex;
    flex-direction: column-reverse;
  }
}
.offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(33% - 7px), 1fr));
  gap: 14px;
}
@media (max-width: 768px) {
  .offer-list {
    grid-template-columns: 100%;
  }
}
.offer-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-row: span 3;
  background-color: #fff;
  box-shadow: 0 0 33px 10px rgba(210, 221, 231, 0.2);
  padding: 37px 40px 41px;
  border-radius: 10px;
  transition: box-shadow 0.4s;
}
@media (max-width: 768px) {
  .offer-item {
    padding: 20px 25px 26px;
  }
}
.offer-item:hover {
  box-shadow: 0 0 23px 10px rgba(210, 221, 231, 0.6);
}
.offer-item:hover .btn_text::before {
  transform: translateX(5px);
}
.offer-item__title {
  color: currentColor;
  word-break: break-word;
  margin-bottom: 60px;
  color: #033e75;
}
@media (max-width: 768px) {
  .offer-item__title {
    margin-bottom: 30px;
  }
}
.offer-item__icon {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.offer .btn_text {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: gotham-bold, sans-serif;
}
.offer .btn_text::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  mask-image: url("../../../images/icons/strzalka-3@2.png");
  -webkit-mask-image: url("../../../images/icons/strzalka-3@2.png");
  mask-size: 10px;
  -webkit-mask-size: 10px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #0d8734;
  margin-right: 13px;
  transition: transform 0.3s ease;
}
.offer .bg_section {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 50%;
  z-index: 1;
}
@media (max-width: 992px) {
  .offer .bg_section {
    max-width: 100%;
    margin-top: -15vw;
    position: relative;
  }
}
.offer .bg_section img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.offer .marquee-wrapper {
  display: flex;
  animation: marquee 60s linear infinite;
  overflow: hidden;
  width: 200%;
}
.offer .counters {
  display: flex;
  width: 100%;
}
.offer .counters__item {
  flex: 0 0 20%;
  border-right: 1px solid rgba(157, 177, 192, 0.22);
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  min-width: 250px;
  padding: 35px 40px;
  text-align: center;
}
.offer .counters__number {
  color: #9db1c0;
  font-family: gotham-black, sans-serif;
  margin: 0;
}
.offer .counters__title p {
  color: #9db1c0;
  font-family: gotham-book, sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
}
.offer .counters--marquee {
  overflow: hidden;
  padding: 40px 0;
  display: flex;
}/*# sourceMappingURL=offer.css.map */