/**
 * Don't edit this file. Find all style at ./sass folder.
 **/
.base-container {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  padding: 16px;
}

.base-container .container-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.base-container .container-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.base-container .container-3 {
  height: 320px;
}

@media (max-width: 1024px) {
  .base-container .container-1 {
    width: 100%;
  }
}
.base-container .container-4 {
  position: relative;
  margin: 48px 0;
}

.owl-carousel .carousel-img {
  height: 320px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.owl-carousel .carousel-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.custom-prev,
.custom-next {
  background-color: white;
  color: var(--blue);
  padding: 8px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  box-shadow: 0px 4px 8px rgba(16, 16, 18, 0.05);
}

.custom-prev {
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}

.custom-next {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}

.custom-prev:hover,
.custom-next:hover {
  background-color: var(--blue);
  color: white;
}

.icon-left {
  margin-right: 8px;
}

.icon-right {
  margin-left: 8px;
}

.blue-background {
  background-image: url("/themes/custom/eume/images/svg/blue-background.svg");
  background-repeat: repeat-x;
  background-size: 1154px 100%;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 80px 32px;
}

.flex-container {
  display: flex;
  gap: 16px;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .base-container .container-2 {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
  .blue-background {
    background-image: url("/themes/custom/eume/images/svg/blue-background-mobile.svg");
    background-size: auto 100%;
    padding: 64px 32px;
  }
}
.flex-container > *:not(:last-child) {
  margin-right: auto;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .flex-container {
    overflow: auto;
  }
}

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