.annonce-item {
  display: flex;
  flex-grow: 1;
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .annonce-item {
    flex-direction: column;
  }
}
.annonce-item_image-wrapper {
  margin-left: 48px;
  width: calc(50% - 48px);
  position: relative;
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
  min-height: 320px;
}
@media screen and (max-width: 900px) {
  .annonce-item_image-wrapper {
    margin-bottom: 30px;
    margin-left: 0;
    order: -1;
    width: 100%;
    min-height: 0;
    height: 50vw;
  }
}
.annonce-item_image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  object-position: center;
  -moz-object-position: center;
  -webkit-object-position: center;
  width: 100%;
  height: 100%;
}
.annonce-item_content-wrapper {
  width: 50%;
  flex-shrink: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .annonce-item_content-wrapper {
    width: 100%;
    justify-content: flex-start;
  }
}
.annonce-item_button {
  margin-top: 20px;
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
}
.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #00455B;
  margin: 4px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #FF78B9;
}
.tags {
  display: flex;
  flex-wrap: wrap;
}
.tag {
  white-space: nowrap;
  display: inline-block;
  font-family: Lexend;
  border-radius: 6px;
  padding: 4.5px 6px 4.5px 6px;
  margin: 0 6px 6px 0;
  text-transform: uppercase;
  font-size: 10px;
  color: #012A37;
  background-color: #DBDEFF;
  line-height: 12px;
}
