.bg-white {
  background-color: white !important;
}

.bg-black {
  background-color: black !important;
}

.mi.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px !important;
  color: white;
  margin-inline: auto;
}

.mi.product.grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mi.product .product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #092f51;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}

@media (max-width: 600px) {
  .mi.product .product-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.mi.product .product-card__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 30px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

@media (max-width: 1024px) {
  .mi.product .product-card__content {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .mi.product .product-card__content {
    padding: 30px;
  }
}

.mi.product .product-card__content-title {
  font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

@media (max-width: 600px) {
  .mi.product .product-card__content-title {
    font-size: 22px;
  }
}

.mi.product .product-card__content-desc {
  font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
  font-size: 100%;
}

@media (max-width: 600px) {
  .mi.product .product-card__content-desc {
    font-size: 14px;
  }
}

.mi.product .product-card__content-desc ul {
  padding-left: 16px;
}

.mi.product .product-card__content-desc li {
  list-style-type: none;
  position: relative;
  margin-left: 30px;
  line-height: 1.2;
  margin-top: 8px;
}

.mi.product .product-card__content-desc li::before {
  content: url("../images/check.svg");
  position: absolute;
  left: -30px;
}

.mi.product .product-card__content-button {
  font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
  font-size: 100%;
  color: #092f51;
  background-color: white;
  -webkit-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  padding: 8px 24px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  font-weight: 500;
}

@media (max-width: 600px) {
  .mi.product .product-card__content-button {
    width: auto;
  }
}

@media (max-width: 600px) {
  .mi.product .product-card__content-button span {
    line-height: 1;
    width: auto;
  }
}

@media (max-width: 600px) {
  .mi.product .product-card__content-button {
    padding: 6px 20px;
    font-size: 14px;
  }
}

.mi.product .product-card__content-button:hover {
  padding: 8px 14px;
}

@media (max-width: 600px) {
  .mi.product .product-card__content-button:hover {
    padding: 6px 12px;
  }
}

.mi.product .product-card__content-button:hover > svg {
  width: 24px;
  -webkit-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 600px) {
  .mi.product .product-card__content-button:hover > svg {
    width: 22px;
  }
}

.mi.product .product-card__content-button > svg {
  -webkit-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  width: 0;
  height: 30px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}

.mi.product .product-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: white;
  position: relative;
}

.mi.product .product-card__image > svg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: auto;
}

@media (max-width: 1024px) {
  .mi.product .product-card__image > svg {
    width: 100px;
  }
}

.mi.product .product-card__image-img {
  width: 100%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.mi.product .product-card__image-img.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 600px) {
  .mi.product .product-card__image-img.md-absolute {
    position: absolute;
  }
}

@media (max-width: 600px) {
  .mi.product .product-card__image-img {
    height: 220px;
  }
}

.mi.product .product-card.block .product-card__image {
  background-color: #092f51;
}

.mi.product .product-card.block .product-card__image-img {
  height: 100%;
}

.mi.product .product-card.block .product-card__content-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.mi.product .product-card.block .product-card__content-button {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .mi.product .product-card.block .product-card__content-button:hover {
    padding: 6px 20px;
  }
}

@media (max-width: 1024px) {
  .mi.product .product-card.block .product-card__content-button:hover > svg {
    width: 0;
    height: 30px;
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}

.mi.product .product-card.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 600px) {
  .mi.product .product-card.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.mi.product .product-card.grid {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333% - (40px * 2 / 3));
          flex: 0 0 calc(33.3333% - (40px * 2 / 3));
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (max-width: 1024px) {
  .mi.product .product-card.grid {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - (40px * 1 / 2));
            flex: 0 0 calc(50% - (40px * 1 / 2));
  }
}

@media (max-width: 600px) {
  .mi.product .product-card.grid {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.mi.product .product-card.grid .product-card__content {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding: 30px;
}

.mi.product .product-card.grid .product-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #092f51;
}

.mi.product .product-card.grid .product-card__image-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mi.product .product-card.grid .product-card__image > svg {
  width: 125px;
}

.adventages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px !important;
  color: #092f51;
  margin-inline: auto;
}

.adventages__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .adventages__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.adventages__head-title {
  font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #092f51;
}

@media (max-width: 600px) {
  .adventages__head-title {
    font-size: 22px;
  }
}

.adventages__head-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.adventages__head-map .adventages__dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.adventages__head-map .adventages__dots .slick-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.adventages__head-map .adventages__dots .slick-dots .slick-active button {
  background-color: #092f51;
}

.adventages__head-map .adventages__dots .slick-dots button {
  border: solid 2px #092f51;
  background-color: transparent;
  padding: 12px 1px;
  font-size: 0;
  border-radius: 2px;
  -webkit-transform: skew(-24deg);
          transform: skew(-24deg);
}

.adventages__head-map .adventages__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
}

.adventages__head-map .adventages__arrows .slick-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.adventages__head-map .adventages__arrows .slick-disabled svg {
  opacity: 0.5;
  cursor: default;
}

.adventages__head-map .adventages__arrows > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adventages__head-map .adventages__arrows svg {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.adventages__body {
  cursor: -webkit-grab;
  cursor: grab;
}

.adventages__body .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adventages__body .slider__card {
  padding-inline: 15px;
}

@media (max-width: 600px) {
  .adventages__body .slider__card {
    padding-inline: 0;
  }
}

.adventages__body .slider__card-wrapper {
  border: dashed 2px #092f51;
  padding: 16px;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 0.5fr 2fr;
}

.adventages__body .slider__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .adventages__body .slider__card-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.adventages__body .slider__card-head__img {
  height: 64px;
  width: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.adventages__body .slider__card-head__title {
  font-size: 24px;
  font-weight: 700;
}

.adventages__body .slider__card-body {
  font-size: 16px;
  font-weight: 400;
}
/*# sourceMappingURL=styles-mi.css.map */