@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Manrope:wght@600;700&display=swap);
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}


/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: 15px;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}


/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean button:focus:not(.focused):not(.disabled) {
  outline: none;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}


/*CSS Animations*/

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

.has-main-blue-color{color:#0091d5}.has-dark-blue-color{color:#0068a3}.has-green-blue-color{color:#2dccd3}.has-beige-color{color:#c7b299}.has-orange-color{color:#ff6900}.has-lilac-color{color:#7d82ea}.has-purple-color{color:#8031a7}.has-light-gray-color{color:#adb3b7}.has-extra-light-gray-color{color:#f8f8f8}.has-gray-color{color:#5b6770}.has-main-blue-background-color{background-color:#0091d5}.has-dark-blue-background-color{background-color:#0068a3}.has-green-blue-background-color{background-color:#2dccd3}.has-beige-background-color{background-color:#c7b299}.has-orange-background-color{background-color:#ff6900}.has-lilac-background-color{background-color:#7d82ea}.has-purple-background-color{background-color:#8031a7}.has-light-gray-background-color{background-color:#adb3b7}.has-extra-light-gray-background-color{background-color:#f8f8f8}.has-gray-background-color{background-color:#5b6770}@keyframes services-item-image{from{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes image-hover-effect{0%{left:-20%}100%{left:120%}}@keyframes form-alert{0%{bottom:-100%}10%{bottom:2rem}85%{bottom:2rem}100%{bottom:-100%}}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}*{box-sizing:border-box}html{font-size:16px;scroll-behavior:smooth}@media screen and (min-width: 769px)and (max-width: 1440px){html{font-size:15px}}@media screen and (max-width: 768px){html{font-size:14px}}body{position:relative;font-family:"Inter",sans-serif;width:100vw;min-height:100vh;overflow-x:hidden;z-index:1}body.menu-open .menu-overlay{opacity:1;z-index:8;pointer-events:auto}body.menu-mobile-open{overflow:hidden}b{font-weight:bold}section#content{min-height:70vh;z-index:1}.wrapper{position:relative;width:100%;max-width:1440px;margin-left:auto;margin-right:auto;padding-bottom:2rem;margin-top:141px;padding-bottom:0;transition:margin-top .2s ease-in-out}@media screen and (min-width: 769px)and (max-width: 1440px){.wrapper{width:calc(100vw - 8rem);margin-left:4rem;margin-right:4rem}}@media screen and (max-width: 768px){.wrapper{width:100%;padding-left:1rem;padding-right:1rem}}@media screen and (max-width: 1024px){.wrapper{margin-top:unset}}.wrapper .alignfull{margin-left:calc((100vw - 1440px) / -2);margin-right:calc((100vw - 1440px) / -2);padding-left:1rem;padding-right:1rem}@media screen and (min-width: 769px)and (max-width: 1440px){.wrapper .alignfull{margin-left:-4rem;margin-right:-4rem}}@media screen and (max-width: 768px){.wrapper .alignfull{margin-left:-1rem;margin-right:-1rem;padding-right:1rem;padding-left:1rem}}.content-wrapper.post-type{padding-top:2rem;padding-bottom:2rem}body.blog .wrapper{padding-top:2rem;padding-bottom:8rem}.screen-reader-text{display:none}.menu-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.55);opacity:0;z-index:9;pointer-events:none;transition:opacity .4s ease-in-out}button:focus{outline:none}input[type=search i]{appearance:initial}.vmi-grid{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:2rem;margin-top:2rem;margin-bottom:2rem}@media screen and (max-width: 1300px){.vmi-grid{grid-template-columns:repeat(2, 1fr)}}@media screen and (max-width: 768px){.vmi-grid{grid-template-columns:repeat(2, 1fr)}}@media screen and (max-width: 576px){.vmi-grid{grid-template-columns:repeat(1, 1fr)}}.food .product-card-min .card-content{background-color:#c7b299}.health .product-card-min .card-content{background-color:#7d82ea}.product-card-min{position:relative;display:flex;flex-direction:column;align-items:center;height:246px;max-width:470px;font-size:16px;color:#fff;text-align:center;border-radius:8px;box-shadow:0 0 6px #0000001A;overflow:hidden}.product-card-min:hover .card-content{height:108px}.product-card-min:hover .card-content svg{transform:rotate(0)}.product-card-min picture,.product-card-min .card-content{transition:height .2s ease-in-out}.product-card-min picture{display:flex;width:100%;height:178px;overflow:hidden}.product-card-min picture img{width:100%;height:100%;object-fit:cover}.product-card-min .card-content{position:absolute;bottom:0;width:100%;height:68px;padding-left:10px;padding-right:10px;overflow:hidden;background-color:#5b6770}.product-card-min .card-content span{display:flex;justify-content:center;align-items:center;width:100%;height:68px}.product-card-min .card-content svg{display:block;width:28px;height:28px;margin-left:auto;margin-right:auto;transform:rotate(-45deg);transition:transform .2s ease-in-out .15s}.copy-link-message{position:absolute;right:1rem;top:26%;display:block;padding:6px 12px;color:#fff;font-size:14px;background-color:#0091d5;border-radius:10px;pointer-events:none;opacity:0;transform:translate(0, 10px);box-shadow:0 0 6px #0000001A;z-index:999;user-select:none;transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09),opacity .3s ease-in-out}.copy-link-message.active{opacity:1;transform:translate(0, 0)}.copy-link-input{position:absolute;right:0;opacity:0;pointer-events:none;z-index:-1}.decorations{position:absolute;z-index:-1}@media screen and (max-width: 768px){.decorations{display:none}}.decorations.even{left:0;transform:translateX(-76%)}.decorations.odd{right:0;transform:translateX(76%)}.wsp-container ul:first-of-type{margin-left:0}#tarteaucitronRoot::before{content:unset !important}#tarteaucitronRoot #tarteaucitronAlertBig{top:unset !important;left:.8rem !important;bottom:.8rem !important;width:500px !important;padding:1.6rem !important;background:#74cdf7 !important;box-shadow:0 0 10px 4px rgba(0,0,0,.2) !important;transform:translate(0, 0) !important}#tarteaucitronRoot #tarteaucitronAlertBig::before{content:unset !important}#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2{background-color:#21999f !important}#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronAllDenied2{background-color:#ff9b57 !important}#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert{font-size:18px}#tarteaucitronIcon #tarteaucitronManager{transform:translateX(-70px);transition:transform .6s cubic-bezier(0.07, 0.32, 0.015, 1.09)}#tarteaucitronIcon #tarteaucitronManager:hover{transform:translateX(0)}#tarteaucitronIcon #tarteaucitronManager img{width:90px !important;height:auto !important}.crisp-client #crisp-chatbox.cc-kv6t[data-full-view=true] .cc-1xry .cc-unoo{bottom:65px !important}h1,h2,h3{font-family:Manrope,"Manrope",sans-serif}@media screen and (max-width: 768px){h1.min-container,h2.min-container,h3.min-container{max-width:90%;padding:1rem 1.2rem}}@media screen and (max-width: 768px){h1,h2,h3{text-align:center}}h1{margin-bottom:4rem;font-size:1.875rem;font-weight:700;line-height:1.2}@media screen and (max-width: 768px){h1{margin-bottom:2.6666666667rem}}@media screen and (max-width: 576px){h1{margin-bottom:2rem}}body.blog h1{text-align:center}h2{margin-bottom:1.3333333333rem;font-size:1.5625rem;font-weight:700}p+h2{margin-top:4rem}h3{margin-bottom:1rem;font-size:1.25rem;font-weight:600}p+h3{margin-top:2rem}h4{margin-bottom:.5rem;font-size:1rem;font-weight:600}.content-wrapper.food h1{color:#c7b299}.content-wrapper.food .card-content h4{color:#c7b299}.content-wrapper.health h1{color:#7d82ea}.content-wrapper.health .card-content h4{color:#7d82ea}p{margin-bottom:1rem;font-size:1rem;line-height:1.2}p:last-child{margin-bottom:0}a{text-decoration:none}i,em{font-style:italic !important}strong{font-weight:bold}.has-small-font-size{font-size:.875rem}.has-normal-font-size{font-size:1rem}.has-large-font-size{font-size:1.125rem}.has-extra-large-font-size{font-size:2.5rem}.search-form form,.menu-mobile-search-form form{display:flex;justify-content:center;width:100%}.search-form form>div,.menu-mobile-search-form form>div{display:flex;align-items:center;width:70%}.search-form form>div input[type=search],.menu-mobile-search-form form>div input[type=search]{width:100%;padding:6px 0;font-size:18px;border:none;border-bottom:2px solid #5b6770;background-color:transparent}.search-form form>div input[type=search]:focus,.search-form form>div input[type=search]:active,.menu-mobile-search-form form>div input[type=search]:focus,.menu-mobile-search-form form>div input[type=search]:active{outline:none}.search-form form>div button[type=submit],.menu-mobile-search-form form>div button[type=submit]{background-color:transparent;border:none;outline:none;cursor:pointer}.search-form form>div button[type=submit] svg,.menu-mobile-search-form form>div button[type=submit] svg{width:45px;height:45px;padding:10px}.search-form form .icon-cross,.menu-mobile-search-form form .icon-cross{position:absolute;right:2vw;width:45px;height:45px;padding:12px;cursor:pointer}.pagination-block{width:100%;display:flex;justify-content:center;margin-top:2rem;margin-bottom:4rem}@media screen and (max-width: 576px){.pagination-block{position:fixed;left:0;bottom:calc(70px + 1rem);margin-bottom:0;z-index:90}}.pagination-block .pagination{display:flex;align-items:center}@media screen and (max-width: 576px){.pagination-block .pagination{justify-content:center;flex-wrap:wrap;max-width:280px;padding:1rem 1.4rem .4rem;background-color:#fff;border-radius:8px 8px 0 0;box-shadow:0 0 6px #0000001A}}.pagination-block .pagination li{margin:0 4px}@media screen and (max-width: 576px){.pagination-block .pagination li{margin-bottom:.6rem !important}}.pagination-block .pagination li a,.pagination-block .pagination li span{display:flex;justify-content:center;align-items:center;width:30px;height:30px;color:#000;font-size:10px;font-weight:700;border:2px solid #000;border-radius:50%;transition:all .15s ease-in-out}.pagination-block .pagination li a:not(.current):hover,.pagination-block .pagination li span:not(.current):hover{background-color:#0091d5;color:#fff;border-color:#0091d5}.pagination-block .pagination li.current .current{color:#fff;background-color:#000}.pagination-block .pagination li.prev,.pagination-block .pagination li.next{margin:0 6px}.pagination-block .pagination li.prev a,.pagination-block .pagination li.prev span,.pagination-block .pagination li.next a,.pagination-block .pagination li.next span{width:26px;height:26px;border-radius:50%;border:2px solid #000}.pagination-block .pagination li.prev a svg,.pagination-block .pagination li.prev span svg,.pagination-block .pagination li.next a svg,.pagination-block .pagination li.next span svg{width:12px;height:12px}.pagination-block .pagination li.prev a:hover,.pagination-block .pagination li.prev span:hover,.pagination-block .pagination li.next a:hover,.pagination-block .pagination li.next span:hover{color:#fff;border-color:#000;background-color:#000}.pagination-block .pagination li.prev svg{transform:rotate(180deg)}.pagination-block .pagination li.last.disabled,.pagination-block .pagination li.first.disabled,.pagination-block .pagination li.prev.disabled,.pagination-block .pagination li.next.disabled{display:none}.pagination-block .pagination li.last,.pagination-block .pagination li.first{margin:0 12px;text-transform:lowercase}@media screen and (max-width: 576px){.pagination-block .pagination li.last,.pagination-block .pagination li.first{display:none}}.pagination-block .pagination li.last a,.pagination-block .pagination li.last span,.pagination-block .pagination li.first a,.pagination-block .pagination li.first span{width:auto;height:auto;border:none;color:#0091d5;font-size:1rem;font-weight:500}.pagination-block .pagination li.last a:hover,.pagination-block .pagination li.last span:hover,.pagination-block .pagination li.first a:hover,.pagination-block .pagination li.first span:hover{color:#0091d5;text-decoration:underline;background-color:transparent}.page-header{display:flex;flex-direction:column;align-items:center;padding-top:4rem}.page-header h1{margin-bottom:2rem}.copy-link{position:absolute;bottom:0;right:2rem;cursor:pointer}@media screen and (max-width: 576px){.copy-link{right:1rem}}.copy-link svg{width:32px;height:32px;color:#0091d5}.news-filter,.events-filter{width:100%;margin-top:2rem;margin-bottom:4rem}@media screen and (max-width: 768px){.news-filter,.events-filter{display:flex;overflow-x:auto}}.news-filter ul,.events-filter ul{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}@media screen and (max-width: 768px){.news-filter ul,.events-filter ul{flex-wrap:nowrap}}.news-filter ul li,.events-filter ul li{display:flex;align-items:center;margin-right:2rem;padding:10px 0;cursor:pointer}@media screen and (max-width: 768px){.news-filter ul li,.events-filter ul li{margin-right:1rem;padding:10px 20px;border:2px solid;border-radius:30px}}.news-filter ul li.title,.events-filter ul li.title{pointer-events:none}@media screen and (max-width: 768px){.news-filter ul li.title,.events-filter ul li.title{display:none}}.news-filter ul li.reset-button,.events-filter ul li.reset-button{position:relative}.news-filter ul li.reset-button.active-loading .reset-content,.events-filter ul li.reset-button.active-loading .reset-content{opacity:0}.news-filter ul li.reset-button.active-loading .loading-content,.events-filter ul li.reset-button.active-loading .loading-content{opacity:1}.news-filter ul li.reset-button .reset-content,.events-filter ul li.reset-button .reset-content{display:flex;align-items:center}.news-filter ul li.reset-button .loading-content,.events-filter ul li.reset-button .loading-content{position:absolute;opacity:0}.news-filter ul li:hover .fake-checkbox,.events-filter ul li:hover .fake-checkbox{background-color:#0091d54D}.news-filter ul li.active .fake-checkbox svg,.events-filter ul li.active .fake-checkbox svg{opacity:1;transform:translate(0, 0) scale(1) rotate(0)}@media screen and (max-width: 768px){.news-filter ul li.active,.events-filter ul li.active{color:#fff;background-color:#5b6770;border-color:#5b6770}}@media screen and (max-width: 768px){.news-filter ul li.active.food,.events-filter ul li.active.food{background-color:#c7b299;border-color:#c7b299}}@media screen and (max-width: 768px){.news-filter ul li.active.health,.events-filter ul li.active.health{background-color:#7d82ea;border-color:#7d82ea}}.news-filter ul li:last-child,.events-filter ul li:last-child{margin-right:0}.news-filter ul li svg.icon-cross,.events-filter ul li svg.icon-cross{width:14px;height:14px;margin-right:4px}.news-filter ul li .fake-checkbox,.events-filter ul li .fake-checkbox{position:relative;width:18px;height:18px;flex-shrink:0;margin-right:8px;border:2px solid #0091d5;border-radius:50%}@media screen and (max-width: 768px){.news-filter ul li .fake-checkbox,.events-filter ul li .fake-checkbox{display:none}}.news-filter ul li .fake-checkbox svg,.events-filter ul li .fake-checkbox svg{position:absolute;left:0;bottom:0;width:20px;height:20px;opacity:0;transform:translate(4px, 6px) scale(0.4) rotate(-30deg);transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09) .1s,opacity .2s ease-in-out}.news-filter ul li span,.events-filter ul li span{font-size:14px;white-space:nowrap}.news-filter ul li a,.events-filter ul li a{display:flex;align-items:center;color:currentColor}.news-filter ul li a svg,.events-filter ul li a svg{width:20px;height:20px;margin-right:.4rem;color:#0091d5}@media screen and (max-width: 768px){.news-filter ul li a svg,.events-filter ul li a svg{width:18px;height:10px;color:#fff}}@media screen and (max-width: 768px){.news-filter ul li.blog{color:#fff;background-color:#0091d5;border-color:#0091d5}}.single-post-nav{margin-top:8rem;margin-bottom:4rem;display:flex;justify-content:space-between}@media screen and (max-width: 576px){.single-post-nav{flex-direction:column}}.single-post-nav.food .news-title{color:#c7b299}.single-post-nav.health .news-title{color:#7d82ea}.single-post-nav a{display:flex;flex-direction:column;max-width:48%;padding-top:1rem;color:#000;line-height:1.2;border-top:2px dotted #000}@media screen and (max-width: 576px){.single-post-nav a{width:100%;max-width:unset;margin-bottom:2rem}}@media screen and (max-width: 576px){.single-post-nav a:last-child{margin-bottom:0}}.single-post-nav a:hover .news-title{text-decoration:underline}.single-post-nav a>div{display:flex;align-items:center;margin-bottom:6px}.single-post-nav a.post-prev:hover svg{transform:translateX(-6px) rotate(180deg)}.single-post-nav a.post-prev svg{transform:rotate(180deg)}.single-post-nav a.post-next{margin-left:auto;text-align:right}.single-post-nav a.post-next:hover svg{transform:translateX(6px)}.single-post-nav a.post-next>div{margin-left:auto}.single-post-nav a svg{width:26px;height:14px;transition:transform .3s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-post-nav a .news-label{font-size:.875rem}.single-post-nav a .news-title{color:#0091d5;font-size:1rem}.mce-button{display:flex;width:fit-content;margin:16px 0 0;padding:22px 40px;color:#fff;font-size:14px;text-align:center;border-radius:40px;transition:background-color .3s ease-out}@media screen and (max-width: 768px){.mce-button{margin:16px auto 0}}.mce-button a,.mce-button span,.mce-button p{color:#fff !important}.mce-button a:hover{text-decoration:none !important}.mce-button.button-vmi{background-color:#0091d5}.mce-button.button-vmi:hover{background-color:#006ea2}.mce-button.button-health{background-color:#7d82ea}.mce-button.button-health:hover{background-color:#5158e3}.mce-button.button-food{background-color:#c7b299}.mce-button.button-food:hover{background-color:#b59978}.mce-button.button-health-bg-white{background-color:#fff;border:2px solid #fff;transition:box-shadow .3s ease-out,border-color .3s ease-out}.mce-button.button-health-bg-white:hover{box-shadow:0 0 24px rgba(0,0,0,.25);border-color:#8031a7}.mce-button.button-health-bg-white a{color:#8031a7 !important;font-weight:600}.mce-button.button-food-bg-white{background-color:#fff;border:2px solid #fff;transition:box-shadow .3s ease-out,border-color .3s ease-out}.mce-button.button-food-bg-white:hover{box-shadow:0 0 14px rgba(0,0,0,.16);border-color:#ff6900}.mce-button.button-food-bg-white a{color:#ff6900 !important;font-weight:600}p.no-post{max-width:400px;margin-left:auto;margin-right:auto;font-size:1.2rem;line-height:1.2;text-align:center}header{position:relative;z-index:10}header .top-bar,header .main-bar{transition:all .2s ease-in-out}@media screen and (max-width: 1024px){header .top-bar,header .main-bar{display:none}}header .mobile-bar{display:none;justify-content:space-between;align-items:center;max-width:100vw;height:70px;padding:0 2rem;background-color:#eee}header .mobile-bar .vmi-logo{width:80px}header .mobile-bar .vmi-logo img{width:100%;height:100%}header .mobile-bar .languages a,header .mobile-bar .languages span{color:#000;background-color:#eee}@media screen and (max-width: 1024px){header .mobile-bar{display:flex}}header .top-bar{position:fixed;top:0;width:100%;background-color:#0091d5;z-index:2}header .main-bar{position:fixed;top:47px;width:100%;height:94px;background-color:#eee}header.fixed .top-bar{transform:translateY(-100%)}header.fixed .main-bar{height:62px;transform:translateY(-47px)}header.fixed .main-bar .vmi-logo img{width:90px}header.fixed .main-bar nav ul.level_1>li>a::after{top:calc((62px / 2) + 25%)}header .top-bar-content,header .main-bar-content{display:flex;width:100%;max-width:1920px;margin-right:auto;margin-left:auto;padding-left:2rem;padding-right:2rem}@media screen and (min-width: 769px)and (max-width: 1440px){header .top-bar-content,header .main-bar-content{padding-left:2vw;padding-right:2vw}}header .top-bar-content ul,header .main-bar-content ul{display:flex}header .top-bar-content ul li a,header .main-bar-content ul li a{text-decoration:none}header .top-bar-content{justify-content:space-between;align-items:center;height:47px;color:#fff}header .top-bar-content nav ul li{margin-right:1rem;padding-right:1rem;border-right:1px solid #fff}header .top-bar-content nav ul li:hover a,header .top-bar-content nav ul li.current-menu-item a{opacity:1;text-shadow:0 0 1px #fff}header .top-bar-content nav ul li:first-child>a{padding:.6rem 1.4rem;color:#0091d5;font-weight:700;background-color:#fff;border-radius:30px}header .top-bar-content nav ul li:first-child>a:hover{box-shadow:0 0 6px 2px rgba(255,255,255,.2)}header .top-bar-content nav ul li:last-child{margin-right:0;padding-right:0;border-right:none}header .top-bar-content nav ul li a{color:#fff;font-size:14px;opacity:.95;transition:all .2s ease-in-out}header .top-bar-content>div{display:flex;align-items:center}header .top-bar-content>div .socials li{margin-right:1rem}header .top-bar-content>div .socials li:last-child{margin-right:0}header .top-bar-content>div .socials li button{display:inline-block;width:20px;height:20px;padding:0;color:#fff;background-color:transparent;border:none;cursor:pointer}header .top-bar-content>div .socials li button:hover svg{transform:scale(1.1)}header .top-bar-content>div .socials li button svg{width:100%;height:100%;transition:transform .2s ease-in-out}header .main-bar-content{position:relative;align-items:center;height:100%;color:#000}header .main-bar-content .vmi-logo img{width:127px;height:auto;transition:width .2s ease-in-out}@media screen and (min-width: 769px)and (max-width: 1440px){header .main-bar-content .vmi-logo img{width:100px}}@media screen and (max-width: 1024px){header .main-bar-content .vmi-logo img{width:80px}}header .main-bar-content nav{width:100%;height:100%;margin-right:2vw;margin-left:2vw}@media screen and (min-width: 769px)and (max-width: 1440px){header .main-bar-content nav{margin-right:1vw;margin-left:1vw}}header .main-bar-content nav>ul{display:flex;justify-content:center;height:100%}header .main-bar-content nav>ul.level_1>li{min-width:260px;padding:0 2rem}@media screen and (min-width: 769px)and (max-width: 1440px){header .main-bar-content nav>ul.level_1>li{min-width:200px}}@media screen and (max-width: 1024px){header .main-bar-content nav>ul.level_1>li{min-width:100px}}header .main-bar-content nav>ul.level_1>li:after{content:"";position:absolute;right:-1px;width:2px;height:40px;background-color:#d9d9d9}header .main-bar-content nav>ul.level_1>li:last-child:after{content:none}header .main-bar-content nav>ul.level_1>li>a{position:relative}header .main-bar-content nav>ul.level_1>li>a::after{content:"";position:absolute;top:calc((94px / 2) + 25%);left:0;width:100%;height:4px;border-radius:4px;background-color:#0091d5;opacity:0;z-index:2;transition:all .1s ease-in-out}header .main-bar-content nav>ul.level_1>li.current-menu-item>a{font-weight:700}header .main-bar-content nav>ul li{position:relative;display:flex;justify-content:center;align-items:center;height:100%;padding:0 1rem}header .main-bar-content nav>ul li a{font-size:1.1rem;color:#1a1a1a;transition:all .1s ease-in-out}@media screen and (min-width: 769px)and (max-width: 1440px){header .main-bar-content nav>ul li a{font-size:1rem}}header .main-bar-content nav>ul li:hover>a:after{opacity:1}header .main-bar-content nav>ul li.current-menu-item>a:after{opacity:1}header .main-bar-content nav>ul li.menu-item-has-children.food>a::after{background-color:#c7b299}header .main-bar-content nav>ul li.menu-item-has-children.health>a::after{background-color:#7d82ea}header .main-bar-content nav>ul li.menu-item-has-children ul{position:absolute;top:100%;left:-5%;flex-direction:column;width:110%;padding:1rem 20px;background-color:#eee;opacity:0;pointer-events:none;transform:translate(0, -20%);transition:all .3s ease-in-out;overflow:hidden;z-index:1}header .main-bar-content nav>ul li.menu-item-has-children ul li{display:flex;align-items:center;justify-content:flex-start;padding:10px 0;transform:translateX(-20%);opacity:0;transition:all .2s ease-in-out .2s}header .main-bar-content nav>ul li.menu-item-has-children ul li:hover svg,header .main-bar-content nav>ul li.menu-item-has-children ul li.current-menu-item svg{opacity:1;transform:translateX(0)}header .main-bar-content nav>ul li.menu-item-has-children ul li:hover a,header .main-bar-content nav>ul li.menu-item-has-children ul li.current-menu-item a{transform:translateX(0)}header .main-bar-content nav>ul li.menu-item-has-children ul li svg{width:12px;height:12px;margin-right:6px;opacity:0;transform:translateX(-8px);transition:opacity .05s ease-in-out .1s,transform .15s ease-in-out .1s}header .main-bar-content nav>ul li.menu-item-has-children ul li a{font-size:14px;transform:translateX(-22px);transition:transform .25s ease-in-out}header .main-bar-content nav>ul li.menu-item-has-children:hover ul{opacity:1;transform:translate(0, 0);pointer-events:all}header .main-bar-content nav>ul li.menu-item-has-children:hover ul li{opacity:1;transform:translateX(0)}header .main-bar-content.search-open nav{pointer-events:none}header .main-bar-content.search-open .search-form{opacity:1;pointer-events:auto}header .main-bar-content .search-icon svg{width:45px;height:45px;padding:10px;cursor:pointer}header .main-bar-content .search-form{position:absolute;left:0;top:0;display:flex;align-items:center;width:100%;height:100%;background-color:#eee;opacity:0;pointer-events:none;transition:opacity .2s ease-in-out;z-index:2}header .languages{position:relative;margin-left:5vw;transition:transform .2s ease-in-out .1s}header .languages:hover ul{opacity:1;pointer-events:auto}header .languages span,header .languages a{padding:6px 8px;color:#fff;font-size:1rem;text-transform:capitalize}header .languages span{display:flex}header .languages span.multi-lang{cursor:pointer;pointer-events:none}@media screen and (max-width: 1024px){header .languages span.multi-lang{display:flex;justify-content:center;align-items:center;width:56px;height:56px}}header .languages span svg{width:8px;height:6px;margin-top:6px;margin-left:4px}header .languages ul{position:absolute;right:-50%;flex-direction:column;align-items:center;background-color:#0091d5;width:auto;opacity:0;pointer-events:none;transition:opacity .3s ease-out}@media screen and (max-width: 1024px){header .languages ul{right:0;background-color:#eee}}header .languages ul li{width:100%;text-align:center;white-space:nowrap}header .languages ul li a{display:inline-block;width:100%;padding:10px 12px}header .languages ul li a:hover{background-color:#0068a3}.newsletter{display:flex;flex-direction:column;align-items:center;padding-top:2.8571428571rem;color:#fff;background-color:#0091d5}.newsletter.open .wp-block-buttons{opacity:0}.newsletter .newsletter-header{margin-bottom:2rem}@media screen and (max-width: 768px){.newsletter .newsletter-header{padding-left:1rem;padding-right:1rem;text-align:center}}.newsletter .newsletter-header>div{display:flex;justify-content:center}.newsletter .newsletter-header>div svg{width:20px;height:20px;margin-right:1rem}.newsletter .newsletter-header>div h3{font-size:1.375rem}.newsletter .wp-block-buttons{margin-top:0;margin-bottom:2.8571428571rem;overflow:hidden;transition:height .3s ease-in-out,opacity .4s ease-out .3s}.newsletter .wp-block-buttons .wp-block-button__link{color:#0091d5;background-color:#fff}.newsletter .newsletter-form-container{position:relative;width:100%;color:#000;background-color:#fff;transition:height .4s ease-out;overflow:hidden}.newsletter .newsletter-form-container .newsletter-form{max-width:500px;margin-right:auto;margin-left:auto;padding:4rem 0}@media screen and (max-width: 768px){.newsletter .newsletter-form-container .newsletter-form{padding:5rem 1rem}}.newsletter .newsletter-form-container .newsletter-form svg.icon-cross{position:absolute;top:2rem;right:2rem;width:46px;height:46px;padding:14px;cursor:pointer;transition:padding .3s ease-in-out,transform .3s ease-in-out}.newsletter .newsletter-form-container .newsletter-form svg.icon-cross:hover{padding:12px;transform:rotate(90deg)}footer{padding:4.8rem 0 2rem 0;color:#fff;font-size:14px;line-height:1.2;font-weight:normal;background-color:#000}@media screen and (max-width: 1024px){footer{padding-bottom:calc(70px + 4rem)}}footer a{color:#fff;opacity:.95;transition:all .2s ease-in-out}footer a:hover{opacity:1;text-shadow:0 0 1px #fff}footer>div{display:flex;margin:0 auto}@media screen and (min-width: 769px)and (max-width: 1440px){footer>div{padding-left:1rem;padding-right:1rem}}@media screen and (max-width: 800px){footer>div{flex-direction:column;align-items:center}}footer>div:first-child{justify-content:space-between;max-width:1140px}footer>div:first-child>div{max-width:25%}@media screen and (max-width: 800px){footer>div:first-child>div{max-width:80%;margin-bottom:1.5rem;text-align:center}}footer>div:first-child .logo img{max-width:230px;width:100%}footer>div:first-child .contact .phone{margin-top:2rem}footer>div:first-child .certifications strong{display:block;margin-bottom:.5rem}footer>div:first-child .certifications .logo-container{display:flex;justify-content:space-between;margin-left:-4px;margin-right:-4px}footer>div:first-child .certifications .logo-container img{width:100%;height:auto;max-width:60px;max-height:60px;margin:4px}footer>div:first-child .e-service .title{display:flex;align-items:center;margin-bottom:2rem}@media screen and (max-width: 800px){footer>div:first-child .e-service .title{justify-content:center;margin-bottom:1rem}}footer>div:first-child .e-service .title svg{width:18px;height:18px;margin-right:.6rem}footer>div:first-child .e-service p,footer>div:first-child .e-service a{font-size:12px}footer>div:first-child .e-service a{text-decoration:underline}footer>div:last-child{justify-content:center;width:100%;margin-top:4rem}@media screen and (max-width: 800px){footer>div:last-child{flex-direction:row}}@media screen and (max-width: 768px){footer>div:last-child{flex-direction:column}}@media screen and (max-width: 768px){footer>div:last-child span .separator{display:none}}footer>div:last-child nav ul{display:flex}footer>div:last-child nav ul li{margin:0;padding:0}footer>div:last-child nav ul li::after{content:"-";margin:0 .8rem}footer>div:last-child nav ul li:last-child::after{content:""}.menu-mobile{position:relative;display:none;width:100vw;font-family:Manrope,"Manrope",sans-serif;z-index:200}@media screen and (max-width: 1024px){.menu-mobile{display:block}}.menu-mobile.open .menu-mobile-navbar .menu-button:not(.burger-button){opacity:.3}.menu-mobile.open .menu-mobile-navbar .burger-menu>div:first-child{width:30px;transform:translateY(8px) rotate(45deg)}.menu-mobile.open .menu-mobile-navbar .burger-menu>div:nth-child(2)::after,.menu-mobile.open .menu-mobile-navbar .burger-menu>div:nth-child(2)::before{width:0}.menu-mobile.open .menu-mobile-navbar .burger-menu>div:last-child{width:30px;transform:translateY(-10px) rotate(-45deg)}.menu-mobile.open .menu-mobile-items{transform:translate(-50%, 0)}@media screen and (max-width: 576px){.menu-mobile.open .menu-mobile-items{transform:translate(0, 0)}}.menu-mobile.open .menu-mobile-overlay{opacity:.7;pointer-events:auto;z-index:1}.menu-mobile.search-open .menu-mobile-navbar .menu-button:not(.search-button){opacity:.3}.menu-mobile.search-open .menu-mobile-navbar .search-button .icon-group .icon-cross{opacity:1}.menu-mobile.search-open .menu-mobile-navbar .search-button .icon-group .icon-search{opacity:0}.menu-mobile.search-open .menu-mobile-search-form{opacity:1;transform:translate(-50%, 0)}.menu-mobile .menu-mobile-search-form{position:fixed;top:0;left:50%;width:100%;max-width:100vw;padding:10px 0;background-color:#f8f8f8;opacity:0;box-shadow:0 0 6px #0000001A;transform:translate(-50%, -100%);transition:opacity .2s ease-in-out,transform .3s ease-in-out}.menu-mobile .menu-mobile-search-form form>div{width:90%}.menu-mobile .menu-mobile-search-form form>div input[type=search]{border:none}.menu-mobile .menu-mobile-search-form form>div button[type=submit]{display:none}.menu-mobile .menu-mobile-search-form form .icon-cross{display:none}.menu-mobile .menu-mobile-navbar{position:fixed;bottom:2rem;display:flex;justify-content:center;min-width:300px;height:70px;left:50%;background-color:#fff;transform:translate(-50%, 0);box-shadow:0 0 6px #0000001A;border-radius:8px;z-index:3}@media screen and (max-width: 768px){.menu-mobile .menu-mobile-navbar{bottom:1rem}}.menu-mobile .menu-mobile-navbar .menu-button{display:flex;flex-direction:column;justify-content:center;align-items:center;width:60px;margin:0 1.2rem;color:#000;cursor:pointer;transition:opacity .2s ease-in-out}.menu-mobile .menu-mobile-navbar .menu-button.current-page{opacity:.3}.menu-mobile .menu-mobile-navbar .menu-button .icon-group{position:relative;width:20px;height:20px}.menu-mobile .menu-mobile-navbar .menu-button .icon-group .icon-cross{opacity:0}.menu-mobile .menu-mobile-navbar .menu-button .icon-group svg{position:absolute;top:0;left:0;transition:opacity .3s ease-in-out}.menu-mobile .menu-mobile-navbar .menu-button svg{width:20px;height:20px}.menu-mobile .menu-mobile-navbar .menu-button span{margin-top:.6rem;font-size:12px;text-transform:lowercase}.menu-mobile .menu-mobile-navbar .burger-menu{display:flex;flex-direction:column;justify-content:space-between;width:28px;height:20px}.menu-mobile .menu-mobile-navbar .burger-menu>div{width:28px;height:2px;background-color:#000;transition:all .2s ease-in-out}.menu-mobile .menu-mobile-navbar .burger-menu>div:first-child{transform-origin:center}.menu-mobile .menu-mobile-navbar .burger-menu>div:nth-child(2){position:relative;background-color:transparent}.menu-mobile .menu-mobile-navbar .burger-menu>div:nth-child(2)::after,.menu-mobile .menu-mobile-navbar .burger-menu>div:nth-child(2)::before{content:"";position:absolute;top:0;width:14px;height:2px;background-color:#000;transition:width .2s}.menu-mobile .menu-mobile-navbar .burger-menu>div:nth-child(2)::before{left:0}.menu-mobile .menu-mobile-navbar .burger-menu>div:nth-child(2)::after{right:0}.menu-mobile .menu-mobile-navbar .burger-menu>div:last-child{transform-origin:center}.menu-mobile .menu-mobile-items{position:fixed;bottom:0;left:50%;display:flex;flex-direction:column;width:100%;min-width:320px;max-width:500px;height:100%;max-height:850px;padding-bottom:calc(70px + 4rem);background-color:#fff;transform:translate(-50%, 100%);overflow-x:hidden;overflow-y:auto;z-index:2;transition:transform .3s ease-in-out}@media screen and (max-width: 576px){.menu-mobile .menu-mobile-items{left:0;width:100vw;min-width:300px;transform:translate(0, 100%)}}.menu-mobile .menu-mobile-items .main-menu{position:relative}.menu-mobile .menu-mobile-items .main-menu .grid{display:grid;grid-template-columns:repeat(2, 1fr)}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-card{position:relative}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-card .item{position:absolute;display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:100%;padding:22%;color:#fff;font-size:1rem;line-height:1.2;text-align:center;cursor:pointer}@media screen and (max-width: 768px){.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-card .item{padding:14%}}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-card .item svg{width:50px;height:50px;margin-bottom:1rem}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-card:after{content:"";display:block;padding-bottom:100%}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content{position:absolute;top:0;left:0;width:100%;height:100%;padding:4rem;color:#fff;opacity:0;transform:translateX(100%);pointer-events:none;transition:opacity .2s ease-in-out,transform .3s cubic-bezier(0.07, 0.32, 0.015, 1.09);z-index:10}@media screen and (max-width: 768px){.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content{padding:2rem}}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content.active{transform:translateX(0);opacity:1;pointer-events:auto}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content.active ul{transform:translateX(0)}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content a{color:#fff}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content>a{display:flex;flex-direction:column;font-size:1rem;line-height:1.2}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content>a svg{width:36px;height:36px;margin-bottom:.6rem}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content ul{margin-top:2rem;transform:translateX(-10px);transition:transform .2s ease-in-out .2s}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content ul li a{display:flex;align-items:center;padding:1rem 0}@media screen and (max-width: 768px){.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content ul li a{padding:.6rem 0}}.menu-mobile .menu-mobile-items .main-menu .grid .menu-item-content ul li a svg{width:18px;height:18px;margin-right:.8rem}.menu-mobile .menu-mobile-items .main-menu .back-button{position:absolute;top:20px;right:20px;display:flex;flex-direction:column;align-items:center;opacity:0;cursor:pointer;z-index:-1;pointer-events:none;transition:opacity .3s ease-in-out .2s}.menu-mobile .menu-mobile-items .main-menu .back-button.active{opacity:1;z-index:20;pointer-events:auto}.menu-mobile .menu-mobile-items .main-menu .back-button svg{width:25px;height:25px;margin-bottom:4px;transform:rotate(180deg)}.menu-mobile .menu-mobile-items .main-menu .back-button span{font-size:10px;text-transform:lowercase}.menu-mobile .menu-mobile-items .secondary-menu{display:grid;grid-template-columns:repeat(2, 1fr);width:70%;margin:auto;padding-top:2rem}@media screen and (max-width: 768px){.menu-mobile .menu-mobile-items .secondary-menu{width:100%;padding-left:1rem;padding-right:1rem}}.menu-mobile .menu-mobile-items .secondary-menu li a{display:block;padding:1rem 0;color:#000;font-size:1rem;font-weight:600}.menu-mobile .menu-mobile-items .socials{display:flex;justify-content:space-between;width:70%;margin:auto auto 0 auto;padding-top:2rem}@media screen and (max-width: 768px){.menu-mobile .menu-mobile-items .socials{width:100%;padding-left:1rem;padding-right:1rem}}.menu-mobile .menu-mobile-items .socials li{margin-right:2rem}@media screen and (max-width: 576px){.menu-mobile .menu-mobile-items .socials li{margin-right:0}}.menu-mobile .menu-mobile-items .socials li:hover svg{transform:scale(1.1)}.menu-mobile .menu-mobile-items .socials li button{color:#000;background-color:transparent;border:none}.menu-mobile .menu-mobile-items .socials li:last-child{margin-right:0}.menu-mobile .menu-mobile-items .socials li svg{width:30px;height:30px;transition:transform .3s ease-in-out}.menu-mobile .menu-mobile-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:#000;opacity:0;pointer-events:none;cursor:pointer;z-index:-1;transition:opacity .2s ease-in-out}body.home .wrapper{padding-top:4rem}body.home .title{margin-bottom:4rem}@media screen and (max-width: 576px){body.home .title{max-width:300px;margin-right:auto;margin-left:auto}}body.home .title h1{margin-bottom:.4rem;text-align:center}body.home .title .subtitle{font-size:1.6rem;text-align:center}@media screen and (max-width: 576px){body.home .title .subtitle{font-size:1.2rem}}body.home .home-header{position:relative;display:flex;justify-content:space-between;margin-bottom:4rem;padding:0 1rem}@media screen and (max-width: 768px){body.home .home-header{padding:0}}@media screen and (max-width: 576px){body.home .home-header{margin-right:-1rem;margin-left:-1rem}}body.home .home-header>a{position:relative;width:50%;padding:0 1rem}@media screen and (max-width: 768px){body.home .home-header>a{padding:0}}body.home .home-header>a .sector-container{position:relative;height:550px;padding:110px 40px 30px;overflow:hidden;transition:padding .2s ease-in-out}@media screen and (max-width: 768px){body.home .home-header>a .sector-container{height:360px;padding:4rem 1.4rem 0 1.4rem}}body.home .home-header>a .sector-container .sector-content{position:relative;display:flex;flex-direction:column;align-items:center;height:100%;color:#fff;z-index:3}@media screen and (max-width: 768px){body.home .home-header>a .sector-container .sector-content{justify-content:space-between}}body.home .home-header>a .sector-container .sector-content .sprite-icon{flex-shrink:0;width:147px;height:147px;transition:all .2s ease-in-out}@media screen and (max-width: 768px){body.home .home-header>a .sector-container .sector-content .sprite-icon{width:104px;height:104px}}body.home .home-header>a .sector-container .sector-content h2{margin:1rem 0 2rem 0;font-size:2.375rem;line-height:1.1;text-align:center;transition:all .2s ease-in-out}@media screen and (min-width: 769px)and (max-width: 1440px){body.home .home-header>a .sector-container .sector-content h2{font-size:calc(1.4rem + 1.6vw)}}@media screen and (max-width: 768px){body.home .home-header>a .sector-container .sector-content h2{margin:0;max-width:164px;font-size:1.4rem}}body.home .home-header>a .sector-container .sector-content p{max-width:500px;font-size:.875rem;line-height:1.2;font-weight:300;text-align:center;opacity:0;transform:scale(0.8);transition:opacity .4s ease-in-out,transform .2s ease-in-out;text-shadow:0 1px 4px #000}@media screen and (max-width: 768px){body.home .home-header>a .sector-container .sector-content p{display:none}}body.home .home-header>a .sector-container .sector-content .wp-block-button{position:absolute;bottom:2rem;display:flex;justify-content:center;width:100%}@media screen and (max-width: 768px){body.home .home-header>a .sector-container .sector-content .wp-block-button{position:relative;bottom:unset}}@media screen and (max-width: 768px){body.home .home-header>a .sector-container .sector-content .wp-block-button .wp-block-button__link{font-size:14px;font-weight:500;text-decoration:underline;border-color:transparent !important;background-color:transparent !important}}body.home .home-header>a .sector-container .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.4);z-index:2;transition:background-color .3s ease-in-out .1s}body.home .home-header>a .sector-container img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;z-index:1}@media screen and (min-width: 769px){body.home .home-header>a:hover .sector-container{padding:20px 40px 30px}body.home .home-header>a:hover .sector-container .sector-content svg{width:107px;height:107px}body.home .home-header>a:hover .sector-container .sector-content h2{font-size:2rem}}@media screen and (min-width: 769px)and (min-width: 769px)and (max-width: 1440px){body.home .home-header>a:hover .sector-container .sector-content h2{font-size:calc(1.2rem + 1.6vw)}}@media screen and (min-width: 769px){body.home .home-header>a:hover .sector-container .sector-content p{opacity:1;transform:scale(1)}}@media screen and (min-width: 769px){body.home .home-header>a:hover .sector-container .overlay{background-color:rgba(0,0,0,.3)}}@media screen and (min-width: 1024px){body.home .home-header>a:hover .sector-container .sector-content svg{width:137px;height:137px}}.events-news{display:flex;justify-content:space-between;margin-top:8rem;margin-bottom:8rem}@media screen and (max-width: 1024px){.events-news{flex-direction:column}}@media screen and (max-width: 1024px){.events-news h2{text-align:center}}.events-news .events{width:40%}@media screen and (max-width: 1024px){.events-news .events{width:100%;margin-bottom:4rem}}@media screen and (max-width: 1024px){.events-news .events .events-short-list{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:2rem}}@media screen and (max-width: 768px){.events-news .events .events-short-list{display:flex;flex-direction:column}}.events-news .news{width:calc(60% - 100px)}@media screen and (max-width: 1024px){.events-news .news{width:100%}}@media screen and (max-width: 1024px){.events-news .news .news-short-list{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:2rem}}@media screen and (max-width: 768px){.events-news .news .news-short-list{grid-template-columns:repeat(2, 1fr)}}@media screen and (max-width: 576px){.events-news .news .news-short-list{display:flex;flex-direction:column}}.events-news .wp-block-buttons{display:flex;justify-content:center}.content-wrapper.equipments{padding-top:4rem;min-height:75vh;transition:height .3s ease-in-out .03s;overflow:hidden}.content-wrapper.equipments .content{display:flex;justify-content:space-between;align-items:flex-start;height:100%}@media screen and (max-width: 768px){.content-wrapper.equipments .content{flex-direction:column;height:auto}}.content-wrapper.equipments .content h2{margin-top:0}.content-wrapper.equipments .content .filters-container{width:264px;height:100%}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container{width:100%;margin-bottom:4rem}}.content-wrapper.equipments .content .filters-container .filters{width:264px;padding:1.6rem 0 1.6rem 1.6rem;background-color:#fff;box-shadow:0 0 6px #0000001A;border-radius:8px;transition:top .15s ease-in-out}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters{width:100%;padding:0;box-shadow:unset;background-color:transparent;overflow-x:auto}}.content-wrapper.equipments .content .filters-container .filters .filters-header{position:relative;width:100%}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters .filters-header{display:none}}.content-wrapper.equipments .content .filters-container .filters .filters-header h2{margin-bottom:10px;font-size:14px}.content-wrapper.equipments .content .filters-container .filters .filters-header span[data-slug=reset]{position:absolute;top:-20px;right:0;width:44px;height:44px;margin-right:calc(1.6rem - 13px);opacity:0;cursor:pointer;pointer-events:none;transition:opacity .2s ease-in-out;z-index:1}.content-wrapper.equipments .content .filters-container .filters .filters-header span[data-slug=reset] svg{position:absolute;top:50%;left:50%;width:20px;height:20px;transform:translate(-50%, -50%)}.content-wrapper.equipments .content .filters-container .filters .filters-header span[data-slug=reset].active{opacity:1;pointer-events:auto}.content-wrapper.equipments .content .filters-container .filters hr{height:1px;background-color:#1e1e1e;margin-right:1.6rem}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters hr{display:none}}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters ul{display:flex}}.content-wrapper.equipments .content .filters-container .filters ul li{position:relative;margin:1rem 0;padding:6px 1rem 6px 0;cursor:pointer;transition:all .2s ease-in-out}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters ul li{margin-right:1rem;padding:1rem 2rem;border:2px solid;white-space:nowrap;border-radius:23px}}.content-wrapper.equipments .content .filters-container .filters ul li.active::before{opacity:1}.content-wrapper.equipments .content .filters-container .filters ul li::before{content:"";position:absolute;top:50%;right:0;height:80%;width:3px;opacity:0;transform:translateY(-50%);transition:opacity .15s ease-in-out,height .1s ease-out .1s}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters ul li::before{content:unset}}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters ul li[data-slug=reset]{color:#1a1a1a !important}}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters ul li[data-slug=reset]{color:#fff !important;background-color:#1a1a1a !important;border-color:#1a1a1a !important}}.content-wrapper.equipments .content .filters-container .filters ul li:last-child{margin-bottom:0}@media screen and (max-width: 768px){.content-wrapper.equipments .content .filters-container .filters ul li:last-child{margin-bottom:1rem}}.content-wrapper.equipments .content .filters-container .filters ul li:hover:before{height:100%;opacity:1}.content-wrapper.equipments .content .products-list{position:relative;width:calc(100% - 264px - 4rem)}@media screen and (max-width: 768px){.content-wrapper.equipments .content .products-list{width:100%}}.content-wrapper.equipments .content .products-list .product-grid{width:100%;margin-bottom:4rem;background-color:#fff;transition:opacity .3s ease-in-out}.content-wrapper.equipments .content .products-list .product-grid.visible{position:absolute;opacity:1;pointer-events:auto}.content-wrapper.equipments .content .products-list .product-grid.hide{position:absolute;opacity:0;pointer-events:none}.content-wrapper.equipments .content .products-list .product-grid:last-child{margin-bottom:0}.content-wrapper.equipments .content .products-list .product-grid h3{margin-top:0}.content-wrapper.equipments .content .products-list .product-grid h3 a{position:relative;color:#000}.content-wrapper.equipments .content .products-list .product-grid h3 a::after{position:absolute;top:100%;left:0;content:"";width:100%;height:2px;background-color:#000;transform:scaleX(1);transition:transform .3s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.content-wrapper.equipments .content .products-list .product-grid h3 a:hover::after{transform:scaleX(0.1)}@media screen and (max-width: 1024px){.content-wrapper.equipments .content .products-list .product-grid .vmi-grid{grid-template-columns:repeat(1, 1fr)}}@media screen and (max-width: 768px){.content-wrapper.equipments .content .products-list .product-grid .vmi-grid{grid-template-columns:repeat(2, 1fr)}}@media screen and (max-width: 576px){.content-wrapper.equipments .content .products-list .product-grid .vmi-grid{grid-template-columns:repeat(1, 1fr)}}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card{display:flex;flex-direction:column;max-width:413px;color:#000;border-radius:8px;box-shadow:0 0 6px #0000001A;overflow:hidden}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card:hover .card-image img{transform:scale(1.1)}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card:hover .card-content a{transform:translateY(0)}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-image{position:relative;min-height:170px;max-height:170px;overflow:hidden}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-image img{width:100%;height:100%;object-fit:cover;transition:transform .2s ease-in-out .175s}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content{position:relative;display:flex;flex-direction:column;height:100%;padding:1.25rem}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content h4{margin-bottom:10px;font-weight:600}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content .excerpt{margin-bottom:10px;font-size:12px;line-height:16px}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content .features-item{margin-top:auto}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content .features-item .label{display:flex;align-items:center;font-weight:bold;margin-bottom:.4rem}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content .features-item em{font-size:.8rem}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content .features-item svg{flex-shrink:0;width:18px;height:18px;margin-right:10px}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content a{position:absolute;top:0;left:0;display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:102%;color:#fff;font-size:1rem;font-weight:700;text-align:center;background-color:#5b6770;transform:translateY(100%);transition:transform .3s cubic-bezier(0.07, 0.32, 0.015, 1.09) .05s;z-index:2}.content-wrapper.equipments .content .products-list .product-grid .vmi-grid .product-card .card-content a .title{max-width:80%;margin-bottom:.8rem}.content-wrapper.equipments.food .content .products-list .product-grid .vmi-grid .product-card .card-content a{background-color:#c7b299}.content-wrapper.equipments.health .content .products-list .product-grid .vmi-grid .product-card .card-content a{background-color:#7d82ea}.content-wrapper.equipments.food .content .filters ul li::before{background-color:#c7b299}.content-wrapper.equipments.health .content .filters ul li::before{background-color:#7d82ea}.content-wrapper.equipments.food .content .filters-container .filters ul li.active,.content-wrapper.equipments.food .content .filters-container .filters ul li:hover{color:#c7b299;text-shadow:0 0 1px #c7b299}@media screen and (max-width: 768px){.content-wrapper.equipments.food .content .filters-container .filters ul li.active,.content-wrapper.equipments.food .content .filters-container .filters ul li:hover{color:#fff;background-color:#c7b299;border-color:#c7b299}}.content-wrapper.equipments.health .content .filters-container .filters ul li.active,.content-wrapper.equipments.health .content .filters-container .filters ul li:hover{color:#7d82ea;text-shadow:0 0 1px #7d82ea}@media screen and (max-width: 768px){.content-wrapper.equipments.health .content .filters-container .filters ul li.active,.content-wrapper.equipments.health .content .filters-container .filters ul li:hover{color:#fff;background-color:#8031a7;border-color:#8031a7}}.single-post .post-header{position:relative;display:flex;justify-content:center;padding-top:4rem;margin-bottom:2rem}.single-post .post-header a{position:absolute;top:1rem;left:0;display:flex;align-items:center;color:#000;font-size:12px;font-weight:700}.single-post .post-header a svg{width:20px;height:14px;margin-right:6px;transform:rotate(180deg)}.single-post .post-header .post-information{text-align:center}.single-post .post-header .post-information .post-date{font-size:14px}.single-post .post-header .post-information .post-category{margin-top:10px;padding:4px 10px;color:#fff;font-size:12px;border-radius:12px}.single-post .post-content h1{max-width:500px;margin-left:auto;margin-right:auto;text-align:center}.single-service{padding-top:1rem}@media screen and (max-width: 576px){.single-service{padding-top:0}}.single-service h1{display:flex;align-items:center;margin-top:1rem}.single-service h1 .service-icon{display:flex;justify-content:center;align-items:center;width:40px;height:40px;padding:8px;margin-right:10px;color:#fff;border-radius:50%}.single-service .service-contact-form{max-width:830px;margin:8rem auto}.single-service .service-contact-form h2{text-align:center}.single-event{display:flex;align-items:stretch;padding-top:4rem;padding-bottom:4rem}@media screen and (max-width: 768px){.single-event{flex-direction:column}}.single-event.food .event-icon .icon-container{background-color:#c7b299}.single-event.food .event-content .event-header .event-category span{background-color:#c7b299}.single-event.health .event-icon .icon-container{background-color:#7d82ea}.single-event.health .event-content .event-header .event-category span{background-color:#7d82ea}.single-event .event-icon{position:relative;display:flex;flex-direction:column;align-items:center;width:40%}@media screen and (max-width: 768px){.single-event .event-icon{width:100%}}.single-event .event-icon .event-overlay{position:absolute;top:-4rem;left:calc((100vw - 1440px) / -2);width:calc(((100vw - 1440px) / 2) + 40%);height:380px;background-color:#f8f8f8;z-index:-1}@media screen and (min-width: 769px)and (max-width: 1440px){.single-event .event-icon .event-overlay{left:-4rem;width:calc(4rem + 40%)}}@media screen and (max-width: 768px){.single-event .event-icon .event-overlay{left:-1rem;width:50%;height:315px}}@media screen and (max-width: 576px){.single-event .event-icon .event-overlay{height:252px}}.single-event .event-icon>div{margin-top:3rem}@media screen and (max-width: 768px){.single-event .event-icon>div{display:flex;flex-direction:column}}.single-event .event-icon .back-link{display:flex;align-items:center;margin-bottom:1.2rem;color:#000;font-size:12px;font-weight:600}@media screen and (max-width: 768px){.single-event .event-icon .back-link{justify-content:center;margin-top:1rem;font-size:14px;order:2}}.single-event .event-icon .back-link:hover{text-decoration:underline}.single-event .event-icon .back-link:hover svg{transform:rotate(180deg) translateX(6px)}.single-event .event-icon .back-link svg{width:26px;height:14px;transform:rotate(180deg);transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-event .event-icon .icon-container{display:flex;justify-content:center;align-items:center;width:278px;height:315px;background-color:#5b6770}@media screen and (max-width: 768px){.single-event .event-icon .icon-container{order:1}}@media screen and (max-width: 576px){.single-event .event-icon .icon-container{width:221px;height:252px}}.single-event .event-icon .icon-container svg{color:#fff}.single-event .event-content{width:60%}@media screen and (max-width: 768px){.single-event .event-content{width:100%;margin-top:2rem}}.single-event .event-content .event-header{position:relative}@media screen and (max-width: 768px){.single-event .event-content .event-header{display:flex;flex-direction:column;align-items:center}}.single-event .event-content .event-header h1{max-width:800px}@media screen and (min-width: 769px)and (max-width: 1440px){.single-event .event-content .event-header h1{max-width:560px}}@media screen and (max-width: 768px){.single-event .event-content .event-header h1{max-width:calc(70% - 1rem)}}.single-event .event-content .event-header .event-category{flex-basis:100%;margin-bottom:.8rem;margin-bottom:1.4rem}.single-event .event-content .event-header .event-category span{padding:4px 12px;color:#fff;font-size:12px;background-color:#5b6770;border-radius:15px}.single-event .event-content .event-header .copy-link{top:50%;bottom:unset;transform:translateY(-50%)}.single-event .event-content .event-header .copy-link-message{top:unset;bottom:-20px}@media screen and (max-width: 768px){.single-event .event-content .event-body{max-width:500px;margin-left:auto;margin-right:auto}}.single-event .event-content .event-body .event-dates{display:flex;align-items:center;margin-bottom:1rem}@media screen and (max-width: 768px){.single-event .event-content .event-body .event-dates{justify-content:center}}.single-event .event-content .event-body .event-dates time{font-size:14px;font-weight:600}.single-event .event-content .event-body .event-dates svg{width:17px;height:17px;margin-right:.4rem}.single-event .event-content .event-body .wp-content{line-height:1.2}.single-event .event-content .event-body .wp-content div{margin-bottom:1rem}.single-event .event-content .event-body .wp-content ul{margin-top:.6rem}@media screen and (max-width: 768px){.single-event .event-content .event-body .wp-content{text-align:center}}.single-event .event-content .event-body .event-information{display:flex;margin-top:2rem}@media screen and (max-width: 576px){.single-event .event-content .event-body .event-information{flex-direction:column}}.single-event .event-content .event-body .event-information>div{display:flex;flex-direction:column;width:50%}@media screen and (max-width: 576px){.single-event .event-content .event-body .event-information>div{width:100%}}.single-event .event-content .event-body .event-information a:hover{text-decoration:underline}.single-event .event-content .event-body .event-information a:hover svg{transform:translateX(-4px)}.single-event .event-content .event-body .event-information .information-item{display:flex;align-items:center;margin-top:6px;margin-bottom:6px;color:#000}.single-event .event-content .event-body .event-information .information-item svg{width:18px;height:18px;margin-right:8px;transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.event-contact-form{max-width:830px;margin:8rem auto}.event-contact-form h2{margin-bottom:4rem;text-align:center}.single-hybrid{padding-top:4rem}.single-hybrid .related{margin-top:8rem;padding:4rem 0;background-color:#f8f8f8}.single-hybrid .related h2{margin-top:0;margin-bottom:4.8rem;text-align:center}.single-hybrid .related .related-container{width:100%;max-width:1440px;margin-left:auto;margin-right:auto;padding-bottom:2rem;display:flex;justify-content:center;align-items:stretch;flex-wrap:wrap;padding-bottom:0}@media screen and (min-width: 769px)and (max-width: 1440px){.single-hybrid .related .related-container{width:calc(100vw - 8rem);margin-left:4rem;margin-right:4rem}}@media screen and (max-width: 768px){.single-hybrid .related .related-container{width:100%;padding-left:1rem;padding-right:1rem}}@media screen and (max-width: 1024px){.single-hybrid .related .related-container{flex-direction:column;align-items:center}}.single-hybrid .related .related-container>.related-item{position:relative;width:calc(100% / 4 - 2rem);margin:1rem;color:#000;border-radius:8px;box-shadow:0 0 6px #0000001A;background-color:#fff;overflow:hidden}@media screen and (max-width: 1440px){.single-hybrid .related .related-container>.related-item{width:calc(100% / 3 - 2rem)}}@media screen and (max-width: 1024px){.single-hybrid .related .related-container>.related-item{width:350px;margin-right:0;margin-bottom:2rem}}@media screen and (max-width: 1024px){.single-hybrid .related .related-container>.related-item{max-width:350px;width:100%}}.single-hybrid .related .related-container>.related-item picture{display:block;width:100%;height:170px;overflow:hidden;background-color:#0091d5}.single-hybrid .related .related-container>.related-item picture img{width:100%;height:100%;object-fit:cover;object-position:center}.single-hybrid .related .related-container>.related-item .content{padding:2rem 2rem 3rem 2rem}.single-hybrid .related .related-container>.related-item .content h3{font-size:1rem}.single-hybrid .related .related-container>.related-item .content .excerpt{font-size:.8rem}.single-hybrid .related .related-container>.related-item .content .read-more{position:absolute;bottom:1rem;right:2rem;opacity:0;font-size:.8rem;font-weight:bold;transform:translateX(-20px);transition:all .4s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-hybrid .related .related-container>.related-item:hover .read-more{opacity:1;transform:translateX(0)}.single-hybrid .related .related-container>.related-item:last-child{margin-right:0}.single-product_family .product-family-container.food .header .image-container .image-background{background-color:#c7b299}.single-product_family .product-family-container.food .header .features .features-item svg{color:#ff6900}.single-product_family .product-family-container.food .products-list nav ul li::after{background-color:#c7b299}.single-product_family .product-family-container.food .products-list nav ul li a{color:#ff6900}.single-product_family .product-family-container.food .products-list .products-container .product-card h2{color:#c7b299}.single-product_family .product-family-container.food .products-list .products-container .product-card .product-content ul li{color:#ff6900}.single-product_family .product-family-container.food .products-list .products-container .product-card .product-content ul li:hover,.single-product_family .product-family-container.food .products-list .products-container .product-card .product-content ul li.active{color:#fff;background-color:#ff6900}.single-product_family .product-family-container.food .products-list .products-container .product-card .product-footer a{color:#ff6900}.single-product_family .product-family-container.food .products-list .products-container .product-card .product-footer a .bg-layer{background-color:#ff6900}.single-product_family .product-family-container.food .product-application .application-content{background-color:#c7b299}.single-product_family .product-family-container.food .product-card-min .card-content{background-color:#c7b299}.single-product_family .product-family-container.food .related-container .swiper-buttons .swiper-button-prev,.single-product_family .product-family-container.food .related-container .swiper-buttons .swiper-button-next{color:#c7b299}.single-product_family .product-family-container.food .wp-block-button .wp-block-button__link.with-arrow .arrow{background-color:#c7b299}.single-product_family .product-family-container.food .products-list .products-container :target h2{color:#ff6900 !important}.single-product_family .product-family-container.health .header .image-container .image-background{background-color:#7d82ea}.single-product_family .product-family-container.health .header .features .features-item svg{color:#8031a7}.single-product_family .product-family-container.health .products-list nav ul li::after{background-color:#7d82ea}.single-product_family .product-family-container.health .products-list nav ul li a{color:#8031a7}.single-product_family .product-family-container.health .products-list .products-container .product-card h2{color:#7d82ea}.single-product_family .product-family-container.health .products-list .products-container .product-card .product-content ul li{color:#7d82ea}.single-product_family .product-family-container.health .products-list .products-container .product-card .product-content ul li:hover,.single-product_family .product-family-container.health .products-list .products-container .product-card .product-content ul li.active{color:#fff;background-color:#7d82ea}.single-product_family .product-family-container.health .products-list .products-container .product-card .product-footer a{color:#8031a7}.single-product_family .product-family-container.health .products-list .products-container .product-card .product-footer a .bg-layer{background-color:#8031a7}.single-product_family .product-family-container.health .product-application .application-content{background-color:#7d82ea}.single-product_family .product-family-container.health .product-card-min .card-content{background-color:#7d82ea}.single-product_family .product-family-container.health .related-container .swiper-buttons .swiper-button-prev,.single-product_family .product-family-container.health .related-container .swiper-buttons .swiper-button-next{color:#7d82ea}.single-product_family .product-family-container.health .wp-block-button .wp-block-button__link.with-arrow .arrow{background-color:#7d82ea}.single-product_family .product-family-container.health .products-list .products-container :target h2{color:#8031a7 !important}.single-product_family .product-family-container .header{display:flex;height:768px;overflow:hidden}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header{flex-direction:column;height:auto;max-height:unset;padding:0}}.single-product_family .product-family-container .header>div{height:100%}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header>div{height:auto}}.single-product_family .product-family-container .header>div:first-child{width:40%;flex-shrink:0}@media screen and (max-width: 1366px){.single-product_family .product-family-container .header>div:first-child{width:36%}}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header>div:first-child{width:100%}}.single-product_family .product-family-container .header>div:last-child{width:60%}@media screen and (max-width: 1366px){.single-product_family .product-family-container .header>div:last-child{width:64%}}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header>div:last-child{width:100%}}.single-product_family .product-family-container .header .image-container{position:relative;width:100%;flex-shrink:0}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .image-container{height:40vh;min-height:334px}}.single-product_family .product-family-container .header .image-container::after{content:"";display:block;padding-bottom:100%;pointer-events:none}.single-product_family .product-family-container .header .image-container picture,.single-product_family .product-family-container .header .image-container .image-background{position:absolute;top:-25%;width:1100px;height:1100px;border-radius:50%}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .image-container picture,.single-product_family .product-family-container .header .image-container .image-background{top:0;left:0;width:100%;height:100%;border-radius:0}}.single-product_family .product-family-container .header .image-container picture{right:5.5rem;overflow:hidden;opacity:1;transition:opacity .4s ease-in-out}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .image-container picture{right:unset;display:flex;height:calc(100% - 10px)}}.single-product_family .product-family-container .header .image-container picture.hide{opacity:0}.single-product_family .product-family-container .header .image-container picture img{width:100%;height:100%;object-fit:cover}.single-product_family .product-family-container .header .image-container .image-background{right:3.5rem;background-color:#f8f8f8;z-index:-1}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .image-container .image-background{right:unset}}.single-product_family .product-family-container .header .content-container{display:flex;flex-direction:column;padding-top:2rem;padding-left:2rem}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .content-container{padding:2rem}}@media screen and (max-width: 768px){.single-product_family .product-family-container .header .content-container{padding:1rem}}.single-product_family .product-family-container .header .content-container .content-header .back-button{display:flex;align-items:center;margin-top:16px;color:#000;font-size:12px;font-weight:600}.single-product_family .product-family-container .header .content-container .content-header .back-button:hover svg{transform:rotate(180deg) translateX(10px)}.single-product_family .product-family-container .header .content-container .content-header .back-button svg{width:26px;height:14px;transform:rotate(180deg) translateX(0);transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-product_family .product-family-container .header .content-container .content{display:flex;flex-direction:column;justify-content:center;width:100%;height:100%;margin-top:1rem;padding-right:4rem}@media screen and (max-width: 1366px){.single-product_family .product-family-container .header .content-container .content{padding-right:0}}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .content-container .content{text-align:center}}.single-product_family .product-family-container .header .content-container .content h1{margin-bottom:1rem}.single-product_family .product-family-container .header .content-container .content .post-content{max-width:800px}.single-product_family .product-family-container .header .content-container .content .features{display:flex;align-items:center;margin-top:2rem}@media screen and (max-width: 1024px){.single-product_family .product-family-container .header .content-container .content .features{justify-content:center}}@media screen and (max-width: 768px){.single-product_family .product-family-container .header .content-container .content .features{flex-direction:column;text-align:left;align-items:flex-start;max-width:320px;margin-left:auto;margin-right:auto}}.single-product_family .product-family-container .header .content-container .content .features .features-item{max-width:340px;margin-right:2rem}@media screen and (max-width: 768px){.single-product_family .product-family-container .header .content-container .content .features .features-item{margin-bottom:2rem;margin-right:0}}.single-product_family .product-family-container .header .content-container .content .features .features-item:hover svg{transform:translateX(-2px) scale(1.2)}.single-product_family .product-family-container .header .content-container .content .features .features-item:last-child{margin-right:0}@media screen and (max-width: 576px){.single-product_family .product-family-container .header .content-container .content .features .features-item:last-child{margin-bottom:0}}.single-product_family .product-family-container .header .content-container .content .features .features-item svg{flex-shrink:0;width:18px;height:18px;margin-right:6px;transform:translateX(0) scale(1);transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-product_family .product-family-container .header .content-container .content .features .features-item em{font-size:.8rem}.single-product_family .product-family-container .header .content-container .content .features .features-item .label{display:flex;align-items:center;margin-bottom:.4rem;font-weight:bold}.single-product_family .product-family-container .header .content-container .content .wp-block-button{margin-top:4rem;margin-bottom:4rem}.single-product_family .product-family-container .products-list nav{margin:6rem 0 4.8rem 0}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list nav{margin:1rem 0 4rem}}.single-product_family .product-family-container .products-list nav ul{display:flex;justify-content:center}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list nav ul{flex-direction:column;align-items:center}}.single-product_family .product-family-container .products-list nav ul li{display:flex;align-items:center;max-width:280px}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list nav ul li{display:flex;justify-content:center;align-items:center;max-width:unset;margin-bottom:1rem}}.single-product_family .product-family-container .products-list nav ul li::after{content:"";display:inline-block;flex-shrink:0;width:6px;height:6px;margin:0 1rem;background-color:#adb3b7;border-radius:100%}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list nav ul li::after{content:unset}}.single-product_family .product-family-container .products-list nav ul li a{text-align:center}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list nav ul li a{width:100%;height:100%;padding:1rem 4rem;border:1px solid currentColor;border-radius:30px}}.single-product_family .product-family-container .products-list nav ul li:last-child::after{content:unset}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list nav ul li:last-child{margin-bottom:0}}.single-product_family .product-family-container .products-list .products-container{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:4rem}@media screen and (max-width: 1200px){.single-product_family .product-family-container .products-list .products-container{grid-template-columns:repeat(1, 1fr)}}.single-product_family .product-family-container .products-list .products-container.single-product{display:flex;justify-content:center}.single-product_family .product-family-container .products-list .products-container.single-product .product-card{width:100%;max-width:900px}.single-product_family .product-family-container .products-list .products-container .product-card{position:relative;display:flex;flex-direction:column;max-width:690px;padding:94px 4.8rem 2rem;background-color:#fff;box-shadow:0 0 6px #0000001A}@media screen and (max-width: 1200px){.single-product_family .product-family-container .products-list .products-container .product-card{width:100%;margin-left:auto;margin-right:auto}}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list .products-container .product-card{padding:84px 2rem 1rem}}.single-product_family .product-family-container .products-list .products-container .product-card .origin-france{position:absolute;top:0;left:1rem;width:120px;height:120px;object-fit:contain;z-index:1}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list .products-container .product-card .origin-france{width:80px;height:80px}}.single-product_family .product-family-container .products-list .products-container .product-card h2{max-width:400px;margin-top:0;margin-left:auto;margin-right:auto;font-size:25px;font-weight:600;text-align:center;z-index:2}@media screen and (max-width: 1366px){.single-product_family .product-family-container .products-list .products-container .product-card h2{max-width:320px}}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery{display:flex;flex-direction:column;align-items:center;margin-bottom:2rem}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content{position:relative;width:338px;height:284px}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content{width:227px;height:190px}}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item{position:absolute;display:flex;justify-content:center;width:100%;height:100%;border-radius:8px;overflow:hidden;opacity:0;pointer-events:none}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item.video-item{overflow:unset}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item.video-item:hover img{transform:scale(1)}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item:hover img{transform:scale(1.1)}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item.active{opacity:1;pointer-events:auto}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item svg{position:absolute;top:50%;width:70px;color:#000;transform:translateY(-50%)}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-content .item img{object-fit:contain;transition:transform .2s ease-in-out}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs{display:grid;grid-template-columns:repeat(6, 1fr);grid-gap:.5rem;margin-top:1.3333333333rem}@media screen and (max-width: 768px){.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs{grid-template-columns:repeat(3, 1fr)}}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item{position:relative;display:block;width:58px;height:58px;border-radius:8px;overflow:hidden;cursor:pointer}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item:hover .overlay,.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item.active .overlay{opacity:0}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item:last-child{margin-right:0}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item .icon-youtube{position:absolute;top:50%;left:50%;width:22px;height:16px;transform:translate(-50%, -50%)}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item img{width:100%;height:100%;object-fit:cover}.single-product_family .product-family-container .products-list .products-container .product-card .product-gallery .gallery-thumbs .thumb-item .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:.25;transition:opacity .2s ease-in-out}.single-product_family .product-family-container .products-list .products-container .product-card .product-content{margin-top:2.6666666667rem}.single-product_family .product-family-container .products-list .products-container .product-card .product-content ul{display:flex;margin-bottom:1rem}.single-product_family .product-family-container .products-list .products-container .product-card .product-content ul li{margin-right:1rem;padding:7px 13px;font-size:14px;border-radius:15px;cursor:pointer;transition:all .2s ease-in-out}.single-product_family .product-family-container .products-list .products-container .product-card .product-content ul li:last-child{margin-right:0}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content{position:relative;overflow:hidden;transition:height .6s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .features,.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .description{top:0;width:100%;opacity:0;pointer-events:none;transform:translateX(60%);transition:opacity .2s ease-in-out .1s,transform .5s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .features.active,.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .description.active{opacity:1;pointer-events:auto;transform:translateX(0)}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .features>div{display:flex;align-items:center;padding:6px 0}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .features>div svg{flex-shrink:0;width:20px;height:14px;margin-right:10px}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .description ul{display:block;padding-left:2.4rem}.single-product_family .product-family-container .products-list .products-container .product-card .product-content .content .description ul li{padding:10px 0;color:#000;list-style:disc;background-color:transparent}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer{margin-top:auto;padding:2rem 0 10px 0}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer a{position:relative;display:inline-block;height:30px;padding-right:16px;font-size:14px;z-index:1;transition:color .25s ease-in-out .1s}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer a svg{display:inline-block;width:30px;height:30px;margin-right:10px;padding:8px;color:#fff}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer a span{display:inline-block;vertical-align:top;height:30px;line-height:30px}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer a .bg-layer{position:absolute;top:0;left:0;width:30px;height:30px;border-radius:15px;z-index:-1;transition:width .3s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer a:hover{color:#fff}.single-product_family .product-family-container .products-list .products-container .product-card .product-footer a:hover .bg-layer{width:100%}.single-product_family .product-family-container .product-application{position:relative;display:flex;align-items:center;margin-top:9.6rem;margin-bottom:9.6rem}@media screen and (max-width: 768px){.single-product_family .product-family-container .product-application{flex-direction:column}}.single-product_family .product-family-container .product-application .application-content{width:40vw;margin-left:-1rem;padding:8vw 14vw 8vw 10vw;color:#fff}@media screen and (max-width: 1366px){.single-product_family .product-family-container .product-application .application-content{width:46vw;padding:10vw 14vw 10vw 10vw}}@media screen and (max-width: 768px){.single-product_family .product-family-container .product-application .application-content{width:100%}}.single-product_family .product-family-container .product-application .application-content h2{margin-top:0}.single-product_family .product-family-container .product-application .gallery-container{width:70vw;margin-left:-10vw;overflow:hidden}@media screen and (max-width: 1366px){.single-product_family .product-family-container .product-application .gallery-container{width:64vw}}@media screen and (max-width: 768px){.single-product_family .product-family-container .product-application .gallery-container{width:100%;margin-left:auto;margin-right:auto}}.single-product_family .product-family-container .related-products{margin-top:8rem;padding:4rem;background-color:#f8f8f8}.single-product_family .product-family-container .related-products h2{margin-top:0;margin-bottom:4.8rem;text-align:center}.single-product_family .product-family-container .related-products .related-container{display:flex;justify-content:center}.single-product_family .product-family-container .quote-form{max-width:830px;margin:8rem auto}.single-product_family .product-family-container .quote-form h2{margin-top:0;margin-bottom:4.8rem;text-align:center}.blog .blog-section{padding-top:94px}.blog .blog-section h2{display:flex;align-items:center}@media screen and (max-width: 576px){.blog .blog-section h2{justify-content:center}}.blog .blog-section h2 svg{width:22px;height:22px;margin-right:.8rem}.blog .blog-section .blog-news-container{display:grid;grid-template-columns:repeat(2, 1fr);grid-gap:4rem}@media screen and (max-width: 576px){.blog .blog-section .blog-news-container{grid-template-columns:repeat(1, 1fr);grid-gap:2rem}}.blog .blog-section .blog-news-container .news-short{margin-top:0;margin-bottom:0}.page-template-template-events .events-list,.post-type-archive-tribe_events .events-list{margin-bottom:4rem}.page-template-template-events .pagination-block,.post-type-archive-tribe_events .pagination-block{justify-content:flex-end}.page-template-contact-page .post-header{display:flex;flex-direction:column;align-items:center;padding-top:4rem}.page-template-contact-page .post-header h1{margin-bottom:2rem}.search-results h1{display:flex;justify-content:center;align-items:center}.search-results h1 svg{width:36px;height:36px;margin-right:10px}.search-results .results-list{max-width:800px;margin:0 auto}.search-results .results-list .search-teaser{position:relative;display:flex;align-items:center;height:200px;margin-bottom:2rem;color:#000;box-shadow:0 0 6px #0000001A;border-radius:8px;overflow:hidden}@media screen and (max-width: 576px){.search-results .results-list .search-teaser{flex-direction:column;height:auto}}.search-results .results-list .search-teaser.hybrid .search-tag{display:none}.search-results .results-list .search-teaser.tribe_events .image-container svg{width:110px;height:110px}.search-results .results-list .search-teaser.tribe_events .content>div{display:flex;align-items:center;margin-top:1.2rem}.search-results .results-list .search-teaser.tribe_events .content>div div{display:flex;align-items:center;margin-right:.625rem;font-size:.75rem}.search-results .results-list .search-teaser.tribe_events .content>div div:last-child{margin-right:0}.search-results .results-list .search-teaser.tribe_events .content>div div span{margin-right:.25rem}.search-results .results-list .search-teaser.tribe_events .content>div div span:last-child{margin-right:0}.search-results .results-list .search-teaser.tribe_events .content>div div svg{width:.75rem;height:.75rem;margin-right:.375rem}.search-results .results-list .search-teaser:hover .more-button{opacity:1}.search-results .results-list .search-teaser:hover .more-button svg{transform:translateX(0)}.search-results .results-list .search-teaser .image-container{display:flex;align-items:center;justify-content:center;width:200px;height:100%;flex-shrink:0}@media screen and (max-width: 576px){.search-results .results-list .search-teaser .image-container{width:100%;height:120px;overflow:hidden}}.search-results .results-list .search-teaser .image-container picture{display:flex;width:100%;height:100%}.search-results .results-list .search-teaser .image-container picture img{width:100%;height:100%;object-fit:cover}.search-results .results-list .search-teaser .image-container svg{width:60px;height:60px;color:#fff}.search-results .results-list .search-teaser .search-tag{position:absolute;left:0;top:1rem;font-size:11px;padding:4px 8px;border-radius:0 5px 5px 0;background-color:#fff;box-shadow:0 0 6px #0000001A}.search-results .results-list .search-teaser .search-tag.service{color:#fff;background-color:#5b6770}.search-results .results-list .search-teaser .content{padding:2rem 8rem 2rem 4rem}@media screen and (max-width: 768px){.search-results .results-list .search-teaser .content{padding:1rem 4rem 1rem 2rem}}@media screen and (max-width: 576px){.search-results .results-list .search-teaser .content{padding:1rem 1.5rem 2rem}}.search-results .results-list .search-teaser .content time{display:inline-block;margin-bottom:8px;font-size:12px;font-weight:400}.search-results .results-list .search-teaser .content h2{margin-bottom:.6rem;font-size:1.4rem}@media screen and (max-width: 768px){.search-results .results-list .search-teaser .content h2{text-align:left}}.search-results .results-list .search-teaser .content p{font-size:.9rem}.search-results .results-list .search-teaser .content .tag-category{position:absolute;top:1rem;right:0;display:flex;align-items:center;width:34px;height:27px;border-radius:30px 0 0 30px;background-color:#5b6770}.search-results .results-list .search-teaser .content .tag-category.food{background-color:#c7b299}.search-results .results-list .search-teaser .content .tag-category.health{background-color:#7d82ea}.search-results .results-list .search-teaser .content .tag-category svg{width:18px;height:18px;margin-left:6px;color:#fff}.search-results .results-list .search-teaser .more-button{position:absolute;right:1rem;bottom:1rem;display:flex;align-items:center;height:1.2rem;opacity:0;transition:opacity .3s ease-out}.search-results .results-list .search-teaser .more-button span{font-size:12px}.search-results .results-list .search-teaser .more-button svg{width:18px;margin-left:10px;transform:translateX(10px);transition:transform .4s cubic-bezier(0.07, 0.32, 0.015, 1.09) .1s}body.error404 .wrapper h1{margin-top:calc(4rem + 94px + 47px);margin-bottom:0;color:#a3aab3;font-size:35px;font-family:Manrope,"Manrope",sans-serif;text-align:center;font-weight:700;text-transform:uppercase}@media screen and (max-width: 768px){body.error404 .wrapper h1{margin-top:calc(2rem + 70px)}}body.error404 .wrapper .logo{display:flex;align-items:center;justify-content:center;font-family:Inter,"Inter",sans-serif;color:#a3aab3}body.error404 .wrapper .logo span{font-size:180px;font-weight:600}@media screen and (max-width: 576px){body.error404 .wrapper .logo span{font-size:130px}}body.error404 .wrapper .logo span svg{width:113px;height:132px}@media screen and (max-width: 576px){body.error404 .wrapper .logo span svg{width:90px;height:110px}}body.error404 .wrapper p{margin-top:4rem;font-family:Manrope,"Manrope",sans-serif;font-size:25px;font-weight:700;text-align:center}body.error404 .wrapper .wp-block-buttons{margin-top:4rem}.caldera-grid{margin-bottom:4rem}.caldera-grid .row .form-group{position:relative;margin:12px}.caldera-grid .row .form-group.email-pro .help-block{display:none;font-size:.8rem;color:red}.caldera-grid .row .form-group.country-input input[type=text]{pointer-events:none}.caldera-grid .row .form-group.state-input{display:none}.caldera-grid .row .form-group label{margin-bottom:10px;font-size:14px;font-weight:normal;color:currentColor}.caldera-grid .row .form-group input,.caldera-grid .row .form-group select,.caldera-grid .row .form-group textarea{border:none;background-color:#f8f8f8}.caldera-grid .row .form-group input,.caldera-grid .row .form-group select{height:60px;padding:20px;font-size:12px;border:none;background-color:#f8f8f8}.caldera-grid .row .form-group input:focus{border-bottom:2px solid #0091d5}.caldera-grid .row .form-group textarea{max-width:100%}.caldera-grid .row .form-group .caldera-forms-consent-field{display:flex;align-items:center}.caldera-grid .row .form-group .caldera-forms-consent-field label{margin-bottom:0}.caldera-grid .row .form-group .wp-block-button{display:flex;justify-content:center;margin-top:2rem}.caldera-grid .row .form-group .wp-block-button .wp-block-button__link.disabled{opacity:.5;pointer-events:none}.caldera-grid .row .form-group .wp-block-button .wp-block-button__link.disabled .arrow{background-color:#adb3b7}.caldera-grid .row .form-group .intl-tel-input{width:100%}.caldera-grid .row .form-group.conditional-input{max-width:330px;margin-left:auto;margin-right:auto;margin-bottom:2rem}.caldera-grid .row .form-group.conditional-input label{width:100%;text-align:center}.caldera-grid .row .form-group.conditional-input select{border:2px solid #000;background-color:#fff}.caldera-grid .row .form-group.has-error .parsley-required{display:inline-block;margin-top:8px;font-size:12px;font-weight:600}.caldera-grid .row .field_required{color:#0091d5 !important}.caldera-grid .row .checkbox-container{position:relative;display:block;flex-shrink:0;width:20px;height:20px;margin-left:-20px;user-select:none;cursor:pointer}.caldera-grid .row .checkbox-container input{position:absolute;top:0;left:0;opacity:0;cursor:pointer;width:100%;height:100%;margin-left:0 !important;padding:0}.caldera-grid .row .checkbox-container input:hover~.checkmark{background-color:#0091d54D}.caldera-grid .row .checkbox-container input:checked~.checkmark{background-color:#0091d5}.caldera-grid .row .checkbox-container input:checked~.checkmark svg{transform:translate(-50%, -50%) scale(1);opacity:1}.caldera-grid .row .checkbox-container .checkmark{position:absolute;top:0;left:0;width:100%;height:100%;color:#fff;border:2px solid #0091d5;border-radius:50%;pointer-events:none}.caldera-grid .row .checkbox-container .checkmark svg{position:absolute;top:50%;left:50%;width:12px;height:12px;transform:translate(-50%, -50%) scale(1.4);opacity:0;transition:opacity .4s ease-in-out,transform .3s cubic-bezier(0.07, 0.32, 0.015, 1.09) .2s}.caldera-grid .row .checkbox-inline .field_required{position:absolute;top:0;right:0}.caldera-grid .row .checkbox-inline .caldera-forms-gdpr-field-label{max-width:700px}.caldera-grid .row .checkbox-inline .caldera-forms-gdpr-field-label>div{display:inline !important}.caldera-grid .row .checkbox-inline .caldera-forms-gdpr-field-label .caldera-forms-consent-field-agreement .field_required{display:none}.caldera-grid .row .checkbox-inline .caldera-forms-gdpr-field-label .caldera-forms-consent-field-linked_text{font-size:1rem;color:#0091d5}.caldera-grid .row .form-information{margin-top:2rem}.caldera-grid .row .form-information p{font-size:.8rem;font-style:italic}.caldera-grid .row .single .button-group{display:flex;flex-wrap:wrap;justify-content:center;margin-top:1rem}.caldera-grid .row .single .button-group a{display:inline-block;min-width:200px;margin-right:.5rem;margin-left:.5rem;padding:22px 40px;color:#fff;font-size:14px;font-weight:600;text-decoration:none;text-align:center;background-color:#0091d5;border-radius:40px;transition:background-color .3s ease-out}@media screen and (max-width: 576px){.caldera-grid .row .single .button-group a{margin-bottom:1rem}}.caldera-grid .row .single .button-group a:hover{background-color:#006ea2}.caldera-grid .row .help-block{font-size:.9rem;font-style:italic}.page-template-template-contact .caldera-grid{max-width:946px;margin-left:auto;margin-right:auto;margin-bottom:8rem;padding:4rem;box-shadow:0 0 6px #0000001A;border-radius:8px}@media screen and (max-width: 768px){.page-template-template-contact .caldera-grid{padding:2rem}}.product_family-template-default .caldera-grid .alert{position:fixed;left:50%;bottom:2rem;padding:1.6rem;animation:8s ease-in-out forwards form-alert;transform:translateX(-50%);z-index:9999}.news-short{position:relative;display:flex;align-items:center;height:156px;margin-top:2rem;margin-bottom:2rem;color:#000;border-radius:8px;box-shadow:0 0 6px #0000001A;overflow:hidden;background-color:#fff}@media screen and (max-width: 1024px){.news-short{flex-direction:column;height:auto;max-width:310px;margin-right:auto;margin-left:auto}}@media screen and (max-width: 576px){.news-short{margin-top:1rem;margin-bottom:1rem}}.news-short:hover picture img{transform:scale(1)}.news-short:hover .news-category-icon{width:40px}.news-short:hover .read-more svg{transform:translateX(2px)}.news-short picture{display:flex;justify-content:center;align-items:center;width:156px;height:156px;overflow:hidden}@media screen and (max-width: 1024px){.news-short picture{width:100%;height:100%;max-height:160px}}.news-short picture img{width:100%;height:100%;object-fit:cover;transform:scale(1.1);transition:transform .3s ease-in-out .05s}.news-short .preview{display:flex;flex-direction:column;justify-content:center;max-width:66%;height:100%;padding-left:2rem}@media screen and (max-width: 1024px){.news-short .preview{width:100%;max-width:unset;padding:2rem 2rem 3rem 2rem}}.news-short .preview h3{max-width:80%;font-size:1.125rem;font-weight:600}.news-short .preview>div{font-size:14px;font-weight:300;line-height:1.2}.news-short .news-category-icon{position:absolute;top:1rem;right:0;display:flex;align-items:center;width:34px;height:27px;border-radius:30px 0 0 30px;transition:width .2s ease-in-out}.news-short .news-category-icon svg{width:18px;height:18px;margin-left:6px;color:#fff}.news-short .read-more{position:absolute;right:1rem;bottom:1rem;display:flex;align-items:center;color:#0091d5;font-size:14px;text-decoration:underline}@media screen and (max-width: 1024px){.news-short .read-more{bottom:0;height:46px}}.news-short .read-more svg{width:14px;height:14px;margin-left:10px;transition:transform .15s ease-out}.news-list{display:grid;grid-template-columns:repeat(3, 1fr);grid-gap:2rem;margin-bottom:4rem}@media screen and (max-width: 1024px){.news-list{grid-template-columns:repeat(2, 1fr)}}@media screen and (max-width: 576px){.news-list{grid-template-columns:repeat(1, 1fr);grid-gap:2rem}}.news-card{position:relative;width:100%;max-width:437px;color:#000;background-color:#fff;box-shadow:0 0 6px #0000001A;border-radius:8px;overflow:hidden;background-color:#fff}.news-card.food h2{color:#c7b299}.news-card.health h2{color:#7d82ea}.news-card:hover .card-content span{opacity:1}.news-card:hover .card-content span svg{transform:translateX(0)}.news-card:hover .news-category-icon{width:48px}.news-card .card-header picture{display:flex;width:100%;height:200px;overflow:hidden}.news-card .card-header picture img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease-out .05s}.news-card .card-content{display:flex;flex-direction:column;padding:2rem 2rem 4rem 2rem}.news-card .card-content h2{text-align:left;margin-bottom:1rem;font-size:1rem;font-weight:600}.news-card .card-content span{position:absolute;bottom:1rem;right:1rem;display:flex;align-items:center;color:#0091d5;text-decoration:underline;opacity:0;transition:opacity .4s ease-out}@media screen and (max-width: 1024px){.news-card .card-content span{opacity:1}}.news-card .card-content span svg{width:18px;height:18px;margin-left:.8rem;transform:translateX(-20px);transition:.6s cubic-bezier(0.07, 0.32, 0.015, 1.09)}@media screen and (max-width: 1024px){.news-card .card-content span svg{transform:translateX(0)}}.news-card .news-category-icon{position:absolute;top:1rem;left:0;display:flex;align-items:center;width:44px;height:35px;border-radius:0 30px 30px 0;transition:width .3s ease-out}.news-card .news-category-icon svg{position:absolute;right:8px;width:22px;height:22px;color:#fff}.events-news .events.food .event-short .event-dates{border-color:#c7b299}.events-news .events.food .event-short a.event-link{color:#c7b299}.events-news .events.health .event-short .event-dates{border-color:#7d82ea}.events-news .events.health .event-short a.event-link{color:#7d82ea}.event-short{display:flex;align-items:center;height:152px;margin-top:2rem;margin-bottom:2rem;border-radius:8px;background-color:#fff;box-shadow:0 0 6px #0000001A}@media screen and (max-width: 768px){.event-short{position:relative;flex-wrap:wrap;width:100%;height:auto;margin-left:auto;margin-right:auto;padding-top:1rem}}@media screen and (max-width: 576px){.event-short{max-width:410px;margin-top:1rem;margin-bottom:1rem}}@media screen and (max-width: 350px){.event-short{flex-direction:column}}.event-short .event-dates{display:flex;flex-direction:column;justify-content:center;align-items:center;flex-shrink:0;min-width:172px;margin-right:2rem;padding-right:2rem;padding-left:2rem;border-right:2px solid;text-align:center;line-height:1.2}@media screen and (min-width: 769px)and (max-width: 1440px){.event-short .event-dates{min-width:132px;padding-left:1rem;padding-right:1rem}}@media screen and (max-width: 768px){.event-short .event-dates{min-width:126px;margin-right:1rem;padding-right:1rem;padding-left:1rem;line-height:1.4}}@media screen and (max-width: 350px){.event-short .event-dates{width:70%;margin-right:auto;margin-left:auto;margin-bottom:1rem;padding-bottom:1rem;border-bottom:2px solid;border-right:unset}}.event-short .event-dates span{display:block}@media screen and (max-width: 350px){.event-short .event-dates br{display:none}}.event-short .event-dates hr{width:35px;height:2px;border:none;background-color:#000}.event-short .event-preview{width:100%;padding-right:1rem}@media screen and (max-width: 768px){.event-short .event-preview{width:calc(100% - (2rem + 126px))}}@media screen and (max-width: 350px){.event-short .event-preview{width:100%;padding:1rem}}@media screen and (max-width: 768px){.event-short .event-preview h3{text-align:left}}.event-short .event-preview address>div{display:flex;align-items:center;flex-wrap:wrap}.event-short .event-preview address span{margin-top:4px;margin-bottom:4px;padding-left:4px}.event-short .event-preview address svg{width:9px;height:12px;flex-shrink:0}.event-short .event-preview address .map-link{display:none;color:#000}.event-short .event-preview address .map-link svg{width:20px;height:20px}.event-short .event-links{display:flex;flex-direction:column;align-items:flex-end;justify-content:space-between;width:30%;height:100%;padding:2rem 1rem 2rem 0}@media screen and (max-width: 576px){.event-short .event-links{width:100%;height:auto;padding:1rem 2rem}}.event-short .event-links svg{width:20px;height:20px;color:#000}.event-short .event-links a{font-size:14px;text-decoration:underline}@media screen and (max-width: 768px){.event-short .event-links a.map-link{position:absolute;bottom:1rem;right:1rem;display:flex;justify-content:center;align-items:center;width:46px;height:46px}}.event-short .event-links a.event-link{display:inline-block;margin-top:auto;color:#000}@media screen and (max-width: 768px){.event-short .event-links a.event-link{width:100%;height:46px;text-align:center;line-height:46px}}.event-short .event-links a:hover{text-decoration:none}.events-month-separator{margin-top:4rem;margin-bottom:1rem;font-family:Manrope,"Manrope",sans-serif;font-size:1.56rem;font-weight:600;text-transform:capitalize}.events-group{display:flex;flex-wrap:wrap;justify-content:space-between}.events-group .event-short{width:calc(50% - (2rem));margin-top:1rem;margin-bottom:1rem}@media screen and (max-width: 1440px){.events-group .event-short{width:100%}}.events-group .event-short.food .event-dates{border-color:#c7b299}.events-group .event-short.food .event-category span{background-color:#c7b299}.events-group .event-short.food .map-link svg{color:#c7b299}.events-group .event-short.health .event-dates{border-color:#7d82ea}.events-group .event-short.health .event-category span{background-color:#7d82ea}.events-group .event-short.health .map-link svg{color:#7d82ea}.events-group .event-short:nth-child(odd):last-child{width:100%}.events-group .event-short:nth-child(odd):last-child .event-preview{display:flex;flex-wrap:wrap;align-items:center}@media screen and (max-width: 768px){.events-group .event-short:nth-child(odd):last-child .event-preview{flex-direction:column;align-items:flex-start}}.events-group .event-short:nth-child(odd):last-child .event-preview .event-category{margin-bottom:1.2rem}.events-group .event-short:nth-child(odd):last-child .event-preview address{display:flex}@media screen and (max-width: 768px){.events-group .event-short:nth-child(odd):last-child .event-preview address{flex-direction:column}}.events-group .event-short:nth-child(odd):last-child .event-preview address>div,.events-group .event-short:nth-child(odd):last-child .event-preview address>a{margin-left:4rem}@media screen and (max-width: 768px){.events-group .event-short:nth-child(odd):last-child .event-preview address>div,.events-group .event-short:nth-child(odd):last-child .event-preview address>a{margin-left:0}}.events-group .event-short:nth-child(odd):last-child .event-preview address .map-link{display:none}@media screen and (max-width: 1440px){.events-group .event-short:nth-child(odd):last-child .event-preview address .map-link{display:block}}@media screen and (max-width: 768px){.events-group .event-short:nth-child(odd):last-child .event-preview address .map-link{display:none}}.events-group .event-short:nth-child(odd):last-child .event-links .map-link{display:flex}@media screen and (max-width: 1440px){.events-group .event-short:nth-child(odd):last-child .event-links .map-link{display:none}}@media screen and (max-width: 768px){.events-group .event-short:nth-child(odd):last-child .event-links .map-link{display:flex}}.events-group .event-short hr{background-color:#adb3b7}.events-group .event-short .event-category{flex-basis:100%;margin-bottom:.8rem}.events-group .event-short .event-category span{padding:4px 12px;color:#fff;font-size:12px;background-color:#5b6770;border-radius:15px}@media screen and (max-width: 576px){.events-group .event-short .event-category{display:none}}.events-group .event-short h3{margin-bottom:.2rem}@media screen and (max-width: 1440px){.events-group .event-short .event-preview{display:flex;flex-wrap:wrap;align-items:center}}@media screen and (max-width: 768px){.events-group .event-short .event-preview{flex-direction:column;align-items:flex-start}}@media screen and (max-width: 1440px){.events-group .event-short .event-preview address{display:flex}}@media screen and (max-width: 768px){.events-group .event-short .event-preview address{flex-direction:column}}.events-group .event-short .event-preview address>div,.events-group .event-short .event-preview address>a{margin-left:4rem}@media screen and (max-width: 768px){.events-group .event-short .event-preview address>div,.events-group .event-short .event-preview address>a{margin-left:0}}.events-group .event-short .event-preview address .map-link{display:none}@media screen and (max-width: 1440px){.events-group .event-short .event-preview address .map-link{display:block}}@media screen and (max-width: 768px){.events-group .event-short .event-preview address .map-link{display:none}}@media screen and (max-width: 768px){.events-group .event-short .event-links{width:100%;height:auto;padding-bottom:1rem}}.events-group .event-short .event-links .map-link{display:flex}@media screen and (max-width: 1440px){.events-group .event-short .event-links .map-link{display:none}}@media screen and (max-width: 768px){.events-group .event-short .event-links .map-link{display:flex}}@media screen and (max-width: 768px){.breadcrumb{margin-top:.8rem;margin-bottom:.8rem}}.breadcrumb ul{display:flex;flex-wrap:wrap;align-items:center;margin:0;padding:0}@media screen and (max-width: 768px){.breadcrumb ul{justify-content:center}}.breadcrumb ul li{padding:4px 0;color:#000;font-size:10px;line-height:1.2}@media screen and (max-width: 768px){.breadcrumb ul li{padding:2px;font-size:12px;text-align:center}}.breadcrumb ul li.active{font-weight:700}.breadcrumb ul li::after{content:">";font-size:8px;margin-right:8px;margin-left:8px}.breadcrumb ul li:last-child::after{content:"";margin:0}.breadcrumb ul li a{padding:4px 0;color:#000;font-size:10px;line-height:1.2}@media screen and (max-width: 768px){.breadcrumb ul li a{padding:2px;font-size:12px}}.breadcrumb ul li a:hover{text-decoration:underline}body.blog .breadcrumb{margin-bottom:.4rem}body.blog .breadcrumb ul{justify-content:center}body.single-hybrid .breadcrumb{margin-bottom:1rem}.wp-block-button__link{min-width:200px;padding:22px 40px;border-radius:40px;font-size:14px;font-weight:600;text-decoration:none;transition:all .3s ease-in-out}.wp-block-button__link.has-beige-background-color:hover{border-color:#b59978;background-color:#b59978}.wp-block-button__link.has-purple-background-color:hover{border-color:#5158e3;background-color:#5158e3}.wp-block-button__link.has-main-blue-background-color:hover{border-color:#006ea2;background-color:#006ea2}.wp-block-button__link.has-dark-blue-background-color:hover{border-color:#004770;background-color:#004770}.wp-block-button__link:hover{text-decoration:none !important}.wp-block-button__link.with-arrow{position:relative;height:58px;padding:0;border:none !important}.wp-block-button__link.with-arrow:hover{border:none !important}.wp-block-button__link.with-arrow:hover .arrow{width:105%}.wp-block-button__link.with-arrow:hover .arrow svg{transform:translateY(-50%) translateX(0);opacity:1}.wp-block-button__link.with-arrow button{height:58px;color:#fff !important;font-size:14px !important;border:none !important;background-color:transparent !important}.wp-block-button__link.with-arrow .label{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:100%;padding:0 2.6666666667rem;color:#fff;font-weight:600;z-index:2}.wp-block-button__link.with-arrow .arrow{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#0091d5;border-radius:30px;transition:width .3s ease-in-out;z-index:1}.wp-block-button__link.with-arrow .arrow svg{position:absolute;top:50%;right:0;width:60px;height:60px;padding:22px;border-radius:30px;opacity:0;transform:translateY(-50%) translateX(-10px);transition:all .3s ease-in-out}.wp-block-buttons{margin-top:4rem}@media screen and (max-width: 768px){.wp-block-buttons{justify-content:center;margin-top:2rem}}.wp-block-button.is-style-vmi-button .wp-block-button__link{color:#fff;background-color:#0091d5;border:3px solid #0091d5}.wp-block-button.is-style-vmi-button .wp-block-button__link:hover{border-color:#006ea2;background-color:#006ea2}.wp-block-button.is-style-vmi-button-health .wp-block-button__link{color:#fff;background-color:#7d82ea;border:3px solid #7d82ea}.wp-block-button.is-style-vmi-button-health .wp-block-button__link:hover{border-color:#5158e3 !important;background-color:#5158e3 !important}.wp-block-button.is-style-vmi-button-food .wp-block-button__link{color:#fff;background-color:#c7b299;border:3px solid #c7b299}.wp-block-button.is-style-vmi-button-food .wp-block-button__link:hover{border-color:#b59978;background-color:#b59978}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link{background-color:transparent;border:3px solid currentColor}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link:hover{text-decoration:none}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-main-blue-color{color:#0091d5}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-dark-blue-color{color:#0068a3}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-green-blue-color{color:#2dccd3}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-beige-color{color:#c7b299}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-orange-color{color:#ff6900}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-lilac-color{color:#7d82ea}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-purple-color{color:#8031a7}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-light-gray-color{color:#adb3b7}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-gray-color{color:#5b6770}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-main-blue-color:hover{color:#fff;background-color:#0091d5;border-color:#0091d5}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-dark-blue-color:hover{color:#fff;background-color:#0068a3;border-color:#0068a3}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-green-blue-color:hover{color:#fff;background-color:#2dccd3;border-color:#2dccd3}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-beige-color:hover{color:#fff;background-color:#c7b299;border-color:#c7b299}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-orange-color:hover{color:#fff;background-color:#ff6900;border-color:#ff6900}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-lilac-color:hover{color:#fff;background-color:#7d82ea;border-color:#7d82ea}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-purple-color:hover{color:#fff;background-color:#8031a7;border-color:#8031a7}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-light-gray-color:hover{color:#fff;background-color:#adb3b7;border-color:#adb3b7}.wp-block-button.is-style-vmi-button-outline .wp-block-button__link.has-gray-color:hover{color:#fff;background-color:#5b6770;border-color:#5b6770}.wp-block-button.alignright{text-align:right}.sticky-buttons{position:fixed;bottom:60vh;right:2rem;display:flex;flex-direction:column;z-index:100}@media screen and (max-width: 1024px){.sticky-buttons{display:none}}.sticky-buttons.hide a{transform:translateX(100%)}.sticky-buttons a{position:relative;display:flex;justify-content:center;align-items:center;width:80px;height:80px;margin:0 0 1rem;color:#fff;border-radius:100%;background-color:#0068a3;z-index:1}.sticky-buttons a svg{width:46px;height:46px;background-color:#0068a3;z-index:2}.sticky-buttons a:first-child{transition:transform .15s ease-in-out .15s}.sticky-buttons a:nth-child(2){transition:transform .15s ease-in-out .1s}.sticky-buttons a:last-child{margin-bottom:0}.sticky-buttons a:hover .label{width:160px;padding:0 80px 0 20px}.sticky-buttons a:hover .label p{opacity:1;transform:translateX(0)}.sticky-buttons a .label{position:absolute;top:0;right:0;width:80px;height:100%;padding:0;border-radius:40px;background-color:#0068a3;z-index:1;overflow:hidden;transition:width .24s ease-in-out,padding .2s ease-in-out;box-shadow:0 3px 10px rgba(0,0,0,.2)}.sticky-buttons a .label p{color:#fff;font-size:14px;line-height:80px;opacity:0;transform:translateX(10px);transition:transform .2s ease-in-out .14s,opacity .2s ease-in-out}.swiper-container{width:calc(56px * 5);height:50px}@media screen and (max-width: 768px){.swiper-container{width:calc(50px * 5);height:44px}}.application-swiper-container{width:calc(220px * 6);height:350px;padding-top:20px;padding-bottom:20px;padding-left:15px;overflow:hidden}@media screen and (max-width: 1440px){.application-swiper-container{width:calc(217px * 5)}}@media screen and (max-width: 1200px){.application-swiper-container{width:calc(217px * 4)}}@media screen and (max-width: 768px){.application-swiper-container{width:calc(217px * 3);margin-right:auto;margin-left:auto}}@media screen and (max-width: 576px){.application-swiper-container{width:calc(217px * 2)}}.application-swiper-container .swiper-slide{transition:transform .3s ease-in-out}.application-swiper-container .swiper-slide-active{margin-left:32px;transform:scale(1.1) translateX(-8px)}.application-swiper-container img{width:100%;height:100%;object-fit:cover}.related-container{position:relative}.related-container .related-swiper-container{width:calc(217px * 5);height:246px;padding-top:10px;padding-bottom:10px;overflow:hidden}@media screen and (max-width: 1200px){.related-container .related-swiper-container{width:calc(217px * 3)}}@media screen and (max-width: 768px){.related-container .related-swiper-container{width:calc(217px * 2)}}@media screen and (max-width: 576px){.related-container .related-swiper-container{width:217px}}@media screen and (min-width: 1200px){.related-container .swiper-wrapper{justify-content:center}}.related-container .swiper-button-prev,.related-container .swiper-button-next{position:absolute}.related-container .swiper-button-prev svg,.related-container .swiper-button-next svg{width:30px;height:30px}.related-container .swiper-buttons{position:absolute;top:50%;left:50%;width:100%;max-width:calc(276px * 4);margin:0 auto;transform:translateX(-50%);z-index:2}.related-container .swiper-buttons .swiper-button-prev,.related-container .swiper-buttons .swiper-button-next{cursor:pointer;transition:transform .2s ease-in-out}.related-container .swiper-buttons .swiper-button-prev:focus,.related-container .swiper-buttons .swiper-button-next:focus{outline:none}.related-container .swiper-buttons .swiper-button-prev:hover,.related-container .swiper-buttons .swiper-button-next:hover{transform:scale(1.05)}.related-container .swiper-buttons .swiper-button-disabled{display:none}.related-container .swiper-buttons .swiper-button-prev:hover{transform:scale(1.05) rotate(180deg)}.related-container .swiper-buttons .swiper-button-prev{left:0;transform:rotate(180deg)}.related-container .swiper-buttons .swiper-button-next{right:0}.wp-block-table,.wp-block-cover,.wp-block-media-text{margin-top:4rem;margin-bottom:4rem}.wp-block-columns{margin-bottom:4rem}@media screen and (max-width: 992px){.wp-block-columns{flex-direction:column}}@media screen and (max-width: 768px){.wp-block-columns{margin-top:2rem;margin-bottom:2rem}}.wp-block-columns.has-background{padding:4rem 8rem}@media screen and (max-width: 768px){.wp-block-columns.has-background{padding:4rem}}@media screen and (max-width: 576px){.wp-block-columns.has-background{margin-right:-1rem;margin-left:-1rem;padding:2rem}}.wp-block-columns.alignfull{padding-left:4rem;padding-right:4rem}.wp-block-columns .wp-block-column:not(:first-child){margin-left:4rem}@media screen and (max-width: 992px){.wp-block-columns .wp-block-column:not(:first-child){margin-left:0}}@media screen and (max-width: 992px){.wp-block-columns .wp-block-column{width:100%;margin-bottom:2rem}}.wp-block-columns .wp-block-column:last-child{margin-bottom:0}@media screen and (max-width: 992px){.wp-block-columns .wp-block-column:last-child{margin-bottom:0}}@media screen and (max-width: 768px){.wp-block-table{max-width:100%;padding-bottom:1rem;overflow-x:auto}.wp-block-table table{min-width:500px;width:100%}}.wp-block-pullquote{margin-top:4rem;margin-bottom:4rem}@media screen and (max-width: 768px){.wp-block-pullquote{margin:2rem -1rem}}@media screen and (max-width: 768px){.wp-block-pullquote.is-style-solid-color blockquote{max-width:80%}}@media screen and (max-width: 768px){.wp-block-pullquote blockquote{max-width:80%;margin-right:auto;margin-left:auto}}.wp-block-pullquote blockquote p{line-height:1}.wp-block-gallery ul{width:100%;padding-left:0}.wp-block-gallery ul li figure{overflow:hidden;cursor:pointer}.wp-block-gallery ul li figure img{transform:scale(1.1);transition:transform .4s ease-out}.wp-block-gallery ul li figure img:hover{transform:scale(1)}.wp-block-embed.is-type-video{position:relative;width:100% !important;max-width:700px;margin:2rem auto}@media screen and (max-width: 560px){.wp-block-embed.is-type-video{max-width:90vw}}.wp-block-vmi-services+.wp-block-buttons{margin-top:-4rem}@media screen and (max-width: 768px){.wp-block-image.size-full,.wp-block-image.size-large,.wp-block-image .size-full,.wp-block-image .size-large{display:flex;justify-content:center}}.wp-block-image.size-full img,.wp-block-image.size-large img,.wp-block-image .size-full img,.wp-block-image .size-large img{height:auto;max-height:70vh;object-fit:contain}@media screen and (max-width: 576px){.wp-block-image figure,.wp-block-image figure.alignright,.wp-block-image figure.alignleft{float:unset;margin-left:auto;margin-right:auto}}.wp-block-columns+.wp-block-vmi-product-list{margin-top:-2rem}@media screen and (max-width: 768px){.wp-block-columns+.wp-block-vmi-product-list{margin-top:0}}p+.wp-block-buttons{margin-top:2.5rem}p+.wp-block-group,p+.wp-block-group.has-background{margin-top:4rem}h2+.wp-block-columns,h3+.wp-block-columns,h4+.wp-block-columns{margin-top:0}.wp-block-group,.wp-block-group.has-background{margin-bottom:4rem}@media screen and (max-width: 768px){.wp-block-group,.wp-block-group.has-background{margin-top:2rem;margin-bottom:2rem}}.wp-block-group:last-child{margin-bottom:0}.wp-block-group.has-background{padding:4rem 8rem}@media screen and (max-width: 768px){.wp-block-group.has-background{padding:4rem}}@media screen and (max-width: 576px){.wp-block-group.has-background{margin-left:-1rem;margin-right:-1rem;padding:2rem}}.wp-block-group.alignfull .wp-block-group__inner-container{width:100%;max-width:1440px;margin-left:auto;margin-right:auto;padding-bottom:2rem;padding:0}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-group.alignfull .wp-block-group__inner-container{width:calc(100vw - 8rem);margin-left:4rem;margin-right:4rem}}@media screen and (max-width: 768px){.wp-block-group.alignfull .wp-block-group__inner-container{width:100%;padding-left:1rem;padding-right:1rem}}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-group.alignfull .wp-block-group__inner-container{width:100%;margin-left:0;margin-right:0}}.wp-content{color:#1a1a1a;line-height:1.1}.wp-content .alignleft{display:inline;float:left;margin-right:1.5em}.wp-content ul,.wp-content ol{margin-top:1.2rem;margin-bottom:1.2rem;padding-left:1rem}.wp-content ul li,.wp-content ol li{padding-top:2px;padding-bottom:2px;text-align:left}.wp-content ul li h1,.wp-content ul li h2,.wp-content ul li h3,.wp-content ul li h4,.wp-content ul li h5,.wp-content ul li h6,.wp-content ol li h1,.wp-content ol li h2,.wp-content ol li h3,.wp-content ol li h4,.wp-content ol li h5,.wp-content ol li h6{text-align:left}.wp-content ul li>ul,.wp-content ul li ol,.wp-content ol li>ul,.wp-content ol li ol{margin-top:.3rem;margin-bottom:.3rem}.wp-content ul li>ul li>ul,.wp-content ul li>ul li ol,.wp-content ul li ol li>ul,.wp-content ul li ol li ol,.wp-content ol li>ul li>ul,.wp-content ol li>ul li ol,.wp-content ol li ol li>ul,.wp-content ol li ol li ol{margin-top:.2rem;margin-bottom:.2rem}.wp-content ul{margin-left:2.6rem}@media screen and (max-width: 768px){.wp-content ul{margin-left:1rem}}.wp-content ul li{list-style:disc}.wp-content ul li>ul{margin-left:1rem}.wp-content ul li>ul li{list-style:circle}.wp-content ul li>ul li>ul{padding-left:.6rem}.wp-content ul li>ul li>ul li{padding-top:1px;padding-bottom:1px;list-style:square}.wp-content ol li{list-style:decimal}.wp-content a{color:#0091d5}.wp-content a.wp-block-button__link.has-background{color:#fff}.wp-content a:hover{text-decoration:underline}@media screen and (max-width: 576px){.wp-block-media-text{display:flex;flex-direction:column}.wp-block-media-text>*{width:100%}}.min-container{max-width:844px;margin-right:auto;margin-left:auto}@media screen and (max-width: 768px){.min-container{max-width:500px}}@media screen and (max-width: 576px){.min-container{max-width:246px}}.content-wrapper.food .wp-block-vmi-home-sector h1{color:#c7b299}@media screen and (max-width: 1024px){.content-wrapper.food .wp-block-vmi-home-sector .image-container{border-color:#c7b299}}.content-wrapper.food .wp-block-vmi-home-sector .image-container .image-background{background-color:#c7b299}.content-wrapper.health .wp-block-vmi-home-sector h1{color:#7d82ea}@media screen and (max-width: 1024px){.content-wrapper.health .wp-block-vmi-home-sector .image-container{border-color:#7d82ea}}.content-wrapper.health .wp-block-vmi-home-sector .image-container .image-background{background-color:#7d82ea}.wp-block-vmi-home-sector{display:flex;justify-content:space-between;height:calc(100vh - 47px - 94px);min-height:500px;max-height:768px;margin-bottom:8rem;transition:height .2s ease-in-out}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector{flex-direction:column;height:auto;max-height:unset;margin-bottom:4rem}}.wp-block-vmi-home-sector>div{width:100%;height:100%}.wp-block-vmi-home-sector .image-container{position:relative;max-width:45%;margin-left:-1rem;flex-shrink:0;overflow:hidden}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container{display:flex;justify-content:center;width:100vw;height:40vh;max-width:unset;border-bottom:10px solid;overflow:unset}}.wp-block-vmi-home-sector .image-container .main-image{position:relative;width:100%}.wp-block-vmi-home-sector .image-container .main-image::after{content:"";display:block;padding-bottom:100%;pointer-events:none}.wp-block-vmi-home-sector .image-container .main-image picture,.wp-block-vmi-home-sector .image-container .main-image .image-background{position:absolute;top:-25%;width:150%;height:150%;border-radius:50%}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container .main-image picture,.wp-block-vmi-home-sector .image-container .main-image .image-background{top:0;width:100%;height:100%;border-radius:0;overflow:hidden}}.wp-block-vmi-home-sector .image-container .main-image picture{right:5.5rem;overflow:hidden;opacity:1;transition:opacity .4s ease-in-out}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container .main-image picture{right:0}}.wp-block-vmi-home-sector .image-container .main-image picture.hide{opacity:0}.wp-block-vmi-home-sector .image-container .main-image picture img{width:100%;height:100%;object-fit:cover}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container .main-image picture img{max-width:100%}}.wp-block-vmi-home-sector .image-container .main-image .image-background{right:3.5rem;background-color:#f8f8f8;z-index:-1}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container .main-image .image-background{display:none}}.wp-block-vmi-home-sector .image-container .gallery{position:absolute;bottom:2rem;right:0;padding:0 5px;box-sizing:initial}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container .gallery{left:unset;right:unset;bottom:-26px;margin-right:auto;margin-left:auto}}.wp-block-vmi-home-sector .image-container .gallery .swiper-slide{position:relative;width:50px;height:50px;margin-right:6px;border-radius:50%;overflow:hidden;cursor:pointer}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .image-container .gallery .swiper-slide{width:44px;height:44px}}.wp-block-vmi-home-sector .image-container .gallery .swiper-slide:hover .thumb-overlay{opacity:.3}.wp-block-vmi-home-sector .image-container .gallery .swiper-slide.swiper-slide-active .thumb-overlay{opacity:0}.wp-block-vmi-home-sector .image-container .gallery .swiper-slide .thumb-overlay{position:absolute;top:0;left:0;width:105%;height:105%;background-color:#bebebe;opacity:.75;transition:opacity .3s ease-in-out}.wp-block-vmi-home-sector .image-container .gallery .swiper-slide img{width:100%;height:100%}.wp-block-vmi-home-sector .content-container{display:flex;flex-direction:column;justify-content:center;max-width:55%;margin-right:-1rem;padding:0 16rem 0 8rem}@media screen and (max-width: 1280px){.wp-block-vmi-home-sector .content-container{padding:0 8rem 0 4rem}}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .content-container{align-items:center;max-width:unset;width:100%;margin-top:45px;padding:2rem 1rem}}.wp-block-vmi-home-sector .content-container .breadcrumb ul{margin-left:0;padding-left:0}.wp-block-vmi-home-sector .content-container .breadcrumb ul li{list-style:none}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .content-container .content{text-align:center}}.wp-block-vmi-home-sector .content-container .content .wp-block-buttons{margin-top:4rem}@media screen and (max-width: 1024px){.wp-block-vmi-home-sector .content-container .content .wp-block-buttons{justify-content:center}}.wp-block-vmi-services{margin:8rem 0}@media screen and (max-width: 768px){.wp-block-vmi-services{display:none}}.wp-block-vmi-services .services-container{display:flex;max-width:940px;margin-left:auto;margin-right:auto;background-color:#f8f8f8;border-radius:8px;overflow:hidden}.wp-block-vmi-services .services-container>div{width:50%}.wp-block-vmi-services .services-container .services-content{padding:4rem 2rem}.wp-block-vmi-services .services-container .services-content h2{margin-top:0;text-align:center}.wp-block-vmi-services .services-container .services-content ul{display:flex;flex-direction:column;align-items:center}.wp-block-vmi-services .services-container .services-content ul li{position:relative;width:290px;height:62px;margin-bottom:.75rem;border-radius:30px;background-color:#fff;box-shadow:0 0 15px #00000029;list-style:none;z-index:1}.wp-block-vmi-services .services-container .services-content ul li:last-child{margin-bottom:0}.wp-block-vmi-services .services-container .services-content ul li:hover .services-icon,.wp-block-vmi-services .services-container .services-content ul li.active .services-icon{width:304px;border-radius:30px}.wp-block-vmi-services .services-container .services-content ul li:hover .services-icon svg,.wp-block-vmi-services .services-container .services-content ul li.active .services-icon svg{opacity:0}.wp-block-vmi-services .services-container .services-content ul li:hover a,.wp-block-vmi-services .services-container .services-content ul li.active a{color:#fff;margin-left:41.3333333333px}.wp-block-vmi-services .services-container .services-content ul li:hover a:hover,.wp-block-vmi-services .services-container .services-content ul li.active a:hover{text-decoration:none}.wp-block-vmi-services .services-container .services-content ul li:hover a svg,.wp-block-vmi-services .services-container .services-content ul li.active a svg{transform:translateX(10px)}.wp-block-vmi-services .services-container .services-content ul li .services-icon{position:absolute;top:0;left:0;width:62px;height:62px;border-radius:62px;z-index:1;transition:all .3s ease-in-out}.wp-block-vmi-services .services-container .services-content ul li .services-icon svg{width:31px;height:31px;margin-top:calc((31px) / 2);margin-left:calc((31px) / 2);color:#fff;transition:opacity .15s ease-in-out .05s}.wp-block-vmi-services .services-container .services-content ul li a{position:relative;display:flex;align-items:center;justify-content:space-between;height:100%;margin-left:62px;padding:1rem;color:currentColor;font-size:14px;transition:color .3s ease-in-out,margin-left .2s ease-in-out;z-index:2}.wp-block-vmi-services .services-container .services-content ul li a span{max-width:160px}.wp-block-vmi-services .services-container .services-content ul li a svg{width:28px;height:28px;transition:transform .15s ease-in-out .2s}.wp-block-vmi-services .services-container .services-item-container{position:relative;overflow:hidden;z-index:1}.wp-block-vmi-services .services-container .services-item-container.active .default-image{opacity:0}.wp-block-vmi-services .services-container .services-item-container .services-item-content{position:absolute;top:0;left:0;width:100%;height:100%;color:#fff;z-index:2}.wp-block-vmi-services .services-container .services-item-container .services-item-content.active .item-content{transform:translateY(0.5rem)}.wp-block-vmi-services .services-container .services-item-container .services-item-content.active .item-image{opacity:1;filter:grayscale(0)}.wp-block-vmi-services .services-container .services-item-container .services-item-content .item-content{position:absolute;bottom:0;padding:1rem;padding-bottom:1.5rem;transform:translateY(100%);transition:transform .4s ease-in-out}.wp-block-vmi-services .services-container .services-item-container .services-item-content .item-image{height:100%;opacity:0;filter:grayscale(80%);transition:opacity .3s ease-in-out,filter .5s ease-in-out}.wp-block-vmi-services .services-container .services-item-container .default-image{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;transition:opacity .3s ease-in-out}.wp-block-vmi-services .services-container .services-item-container img{width:100%;height:100%;object-fit:cover}.wp-block-vmi-services-mobile{max-width:500px;margin:4rem auto}.wp-block-vmi-services-mobile h2{text-align:center}.wp-block-vmi-services-mobile ul{margin:0;padding:0}.wp-block-vmi-services-mobile ul li{margin-bottom:1.6rem;list-style:none}.wp-block-vmi-services-mobile ul li:last-child{margin-bottom:0}.wp-block-vmi-services-mobile ul li.open .deploy-icon svg{transform:rotate(180deg)}.wp-block-vmi-services-mobile ul li .item-title{display:flex;align-items:center;height:68px;border-radius:68px;box-shadow:0 0 6px #0000001A}.wp-block-vmi-services-mobile ul li .item-title .services-icon{width:68px;height:68px;margin-right:1.2rem;border-radius:68px;z-index:1;transition:all .3s ease-in-out}.wp-block-vmi-services-mobile ul li .item-title .services-icon svg{width:31px;height:31px;margin-top:calc((37px) / 2);margin-left:calc((37px) / 2);color:#fff;transition:opacity .15s ease-in-out .05s}.wp-block-vmi-services-mobile ul li .item-title h3{margin-bottom:0;font-family:Inter,"Inter",sans-serif;font-size:14px;font-weight:500}.wp-block-vmi-services-mobile ul li .item-title .deploy-icon{display:flex;align-items:center;justify-content:center;width:32px;height:32px;margin-right:1.2rem;margin-left:auto;border-radius:50%;border:1px solid}.wp-block-vmi-services-mobile ul li .item-title .deploy-icon svg{width:14px;height:14px;transition:transform .3s ease-in-out}.wp-block-vmi-services-mobile ul li .item-content-container{display:block;width:80%;margin-left:auto;margin-right:auto;border-radius:0 0 8px 8px;overflow:hidden;transition:height .3s ease-out}.wp-block-vmi-services-mobile ul li .item-content-container:hover{text-decoration:none}.wp-block-vmi-services-mobile ul li .item-content-container .item-content{padding:1rem;color:#fff}.wp-block-vmi-services-mobile ul li .item-content-container .item-content span{display:block;padding:1rem 0;color:#fff;font-weight:600;text-decoration:underline}.wp-block-vmi-services-mobile ul li .item-content-container .item-image{display:flex;height:150px}.wp-block-vmi-services-mobile ul li .item-content-container .item-image img{width:100%;height:100%;object-fit:cover}.wp-block-vmi-product-list{max-width:844px;margin-left:auto;margin-right:auto}@media screen and (max-width: 768px){.wp-block-vmi-product-list{max-width:500px}}@media screen and (max-width: 576px){.wp-block-vmi-product-list{max-width:246px}}.wp-block-vmi-product-list a{color:#fff}.wp-block-vmi-square-image-with-text{display:flex;align-items:stretch;margin-top:8rem;margin-bottom:8rem}@media screen and (max-width: 1024px){.wp-block-vmi-square-image-with-text{flex-direction:column}}.wp-block-vmi-square-image-with-text picture{width:40%}@media screen and (max-width: 1024px){.wp-block-vmi-square-image-with-text picture{display:flex;justify-content:center;align-items:center;width:100%;max-height:40vh;overflow:hidden}}.wp-block-vmi-square-image-with-text picture img{width:100%;height:100%;object-fit:cover}.wp-block-vmi-square-image-with-text .block-content{display:flex;justify-content:center;align-items:center;padding:4rem;width:60%;background-color:#f8f8f8}@media screen and (max-width: 1024px){.wp-block-vmi-square-image-with-text .block-content{width:100%}}.wp-block-vmi-square-image-with-text .block-content>div{max-width:560px}.wp-block-vmi-icon-with-text{display:flex;align-items:center;margin-top:0;margin-bottom:.5rem}.wp-block-vmi-icon-with-text .svg-icon{flex-shrink:0;width:20px;height:20px;margin-right:1rem}.wp-block-vmi-icon-with-text .svg-icon svg{width:20px;height:20px}.wp-block-vmi-icon-with-text .block-editor-rich-text__editable{margin-top:0;margin-bottom:0}.wp-block-vmi-image-with-text{display:flex;align-items:center;margin-top:7rem;margin-bottom:4rem}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text{flex-direction:column}}.wp-block-vmi-image-with-text.right-direction .image-container{order:2}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text.right-direction .image-container{justify-content:flex-end;order:1}}.wp-block-vmi-image-with-text.right-direction .image-container .image-overlay{left:unset;right:calc((100vw - 1440px) / -2)}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-vmi-image-with-text.right-direction .image-container .image-overlay{right:-4rem}}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text.right-direction .image-container .image-overlay{right:calc(50% - 4rem);width:250px;height:300px;transform:translateX(50%)}}@media screen and (max-width: 576px){.wp-block-vmi-image-with-text.right-direction .image-container .image-overlay{right:-1rem;transform:translateX(0)}}.wp-block-vmi-image-with-text.right-direction .block-content{order:1}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text.right-direction .block-content{order:2}}.wp-block-vmi-image-with-text .image-container{position:relative;display:flex;align-items:center;justify-content:center;width:490px}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-vmi-image-with-text .image-container{width:390px}}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text .image-container{width:100%;margin-bottom:2rem;justify-content:flex-start}}.wp-block-vmi-image-with-text .image-container picture{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:590px;z-index:2}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-vmi-image-with-text .image-container picture{height:490px}}@media screen and (max-width: 1024px){.wp-block-vmi-image-with-text .image-container picture{width:280px;height:350px}}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text .image-container picture{width:250px;height:300px;margin-left:auto;margin-right:auto}}.wp-block-vmi-image-with-text .image-container picture img{position:absolute;width:100%;height:100%;object-fit:cover}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text .image-container picture img{object-fit:contain}}.wp-block-vmi-image-with-text .image-container .image-overlay{position:absolute;top:-3rem;left:calc((100vw - 1440px) / -2);width:calc(70% + ((100vw - 1440px) / 2));height:100%;z-index:1}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-vmi-image-with-text .image-container .image-overlay{left:-4rem;width:calc(70% + 4rem)}}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text .image-container .image-overlay{left:calc(50% - 4rem);width:250px;height:300px;transform:translateX(-50%)}}@media screen and (max-width: 576px){.wp-block-vmi-image-with-text .image-container .image-overlay{left:-1rem;transform:translateX(0)}}.wp-block-vmi-image-with-text .block-content{width:calc(100% - 490px);padding:0 8rem}@media screen and (min-width: 769px)and (max-width: 1440px){.wp-block-vmi-image-with-text .block-content{width:calc(100% - 390px);padding:0 calc(4rem + 2vw)}}@media screen and (max-width: 1024px){.wp-block-vmi-image-with-text .block-content{width:calc(100% - 280px);padding:0 2rem}}@media screen and (max-width: 768px){.wp-block-vmi-image-with-text .block-content{width:100%;padding:0}}.wp-block-vmi-internal-link-list{display:flex;flex-direction:column;align-items:center;max-width:360px;margin-top:4rem;margin-left:auto;margin-right:auto;padding:1.5rem;border-top:2px dotted #000}.wp-block-vmi-internal-link-list p.content{font-size:18px}.wp-block-vmi-internal-link-list ul{width:100%;margin-top:0;padding-left:0}.wp-block-vmi-internal-link-list ul li{position:relative;display:flex;align-items:center;width:100%;padding-top:.4rem;padding-bottom:.4rem;padding-left:40px;line-height:1.2;list-style:none}.wp-block-vmi-internal-link-list ul li:hover::before{transform:translateX(10px)}.wp-block-vmi-internal-link-list ul li:hover a{text-decoration:underline}.wp-block-vmi-internal-link-list ul li::before{content:url(d397ae93b6ea392a19c26c841c4b90ce.svg);position:absolute;left:0;width:20px;height:20px;transition:transform .6s cubic-bezier(0.07, 0.32, 0.015, 1.09)}.wp-block-vmi-internal-link-list ul li a{color:#000;text-decoration:none}.wp-block-vmi-shortcode-button .wp-block-button{margin-bottom:1rem}.wp-block-vmi-shortcode-button .wp-block-button.alignleft{display:block;float:unset}.wp-block-vmi-shortcode-button .wp-block-column{height:auto;transition:height .5s ease-in-out;overflow:hidden}.vmi-news-button{display:flex}@media screen and (max-width: 576px){.vmi-news-button{justify-content:center}}.vmi-news-button.center{justify-content:center}@media screen and (max-width: 576px){.vmi-news-button.center{justify-content:center}}.vmi-news-button.right{justify-content:right}@media screen and (max-width: 576px){.vmi-news-button.right{justify-content:center}}.vmi-news-button a.news-short{max-width:900px;color:#000}@media screen and (max-width: 1024px){.vmi-news-button a.news-short{max-width:768px;flex-direction:row}}@media screen and (max-width: 576px){.vmi-news-button a.news-short{max-width:320px;flex-direction:column}}.vmi-news-button a.news-short:hover{text-decoration:none}@media screen and (max-width: 1024px){.vmi-news-button a.news-short picture{width:156px;height:156px}}@media screen and (max-width: 576px){.vmi-news-button a.news-short picture{width:100%;height:auto}}.wp-block-group.large-image-with-text{margin-top:8rem;margin-bottom:8rem}@media screen and (max-width: 768px){.wp-block-group.large-image-with-text{margin-top:4rem;margin-bottom:4rem}}.wp-block-group.large-image-with-text .wp-block-group__inner-container figure{display:flex;align-items:center;height:360px;overflow:hidden}.wp-block-group.large-image-with-text .wp-block-group__inner-container figure figcaption{display:none}@media screen and (max-width: 768px){.wp-block-group.large-image-with-text .wp-block-group__inner-container figure{margin-right:-1rem;margin-left:-1rem}}.wp-block-group.large-image-with-text .wp-block-group__inner-container figure img{width:100%;height:100%;object-fit:cover}.wp-block-group.large-image-with-text .wp-block-group__inner-container>.wp-block-group{position:relative;width:50%;margin-top:-280px;margin-left:auto;margin-right:2rem;padding:2.8571428571rem 4rem;background-color:#f8f8f8;border-radius:8px}@media screen and (max-width: 1024px){.wp-block-group.large-image-with-text .wp-block-group__inner-container>.wp-block-group{width:70%}}@media screen and (max-width: 992px){.wp-block-group.large-image-with-text .wp-block-group__inner-container>.wp-block-group{right:unset;margin-right:auto}}@media screen and (max-width: 768px){.wp-block-group.large-image-with-text .wp-block-group__inner-container>.wp-block-group{width:90%;padding:2rem}}.wp-block-group.large-image-with-text .wp-block-group__inner-container>.wp-block-group .wp-block-button{margin-bottom:0}.wp-block-columns.vmi-video-with-text{padding:4rem 4.8rem;background-color:#f8f8f8}@media screen and (max-width: 768px){.wp-block-columns.vmi-video-with-text{margin-left:-1rem;margin-right:-1rem;padding:2rem 1rem}}.wp-block-columns.vmi-video-with-text picture{max-height:330px}
@font-face{font-family:"swiper-icons";src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}
