@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900);
.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:not(.current) {
  pointer-events: none;
}

.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: 0;
  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;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

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 .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;
  }
}

html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,dfn,del,p,blockquote,fieldset,input,textarea,select,article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,button,canvas,video{margin:0;padding:0;line-height:1.2;vertical-align:baseline;background:none;box-shadow:none;height:auto}h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,th,dfn,del{font-weight:normal;font-style:normal}ul,ol{list-style:none}fieldset,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}input[type=button],input[type=submit],input[type=reset],button{cursor:pointer}input[type=button],input[type=submit],input[type=reset],button,input[type=search],input[type=text],input[type=email],input[type=tel],input[type=number],textarea{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none}input,button,textarea{line-height:normal;font-family:"Roboto",sans-serif}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=hidden],[hidden],.hidden{display:none}textarea{overflow:auto;resize:none}article,aside,details,figcaption,figure,footer,header,nav,section,.clearfix{display:block}audio,canvas,video{display:inline-block}a>img{vertical-align:bottom}strong,.strong,b{font-weight:bold}em,.italic,i{font-style:italic}del,.del{text-decoration:line-through}:focus{outline:none}img{max-width:100%;width:auto;height:auto}.map-canvas img{max-width:none}.clear{clear:both;display:block;line-height:0;height:0;font-size:0}.clearfix:after,.cf:after,.wrap:after,.spanning:after,.content:after,.main:after,aside:after,section:after,article:after,.text:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;font-size:0}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.align-left{float:left !important}.align-right{float:right !important}.overflow-hidden{overflow:hidden;display:block}*{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}*::before,*::after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}nav ul li{float:inherit}nav ul li a,nav ul li a:hover,nav ul li a:active,nav ul li a:visited{background-color:initial}body:before{display:none;visibility:hidden}@media(min-width: 0px){body:before{content:"xxxs"}}@media(min-width: 320px){body:before{content:"xxs"}}@media(min-width: 480px){body:before{content:"xs"}}@media(min-width: 768px){body:before{content:"sm"}}@media(min-width: 992px){body:before{content:"md"}}@media(min-width: 1280px){body:before{content:"lg"}}@media(min-width: 1440px){body:before{content:"xl"}}@media(min-width: 1640px){body:before{content:"xxl"}}@media(min-width: 2480px){body:before{content:"xxxl"}}html,body{min-height:100%;margin:0;padding:0;font-family:"Roboto",sans-serif;font-size:10px;color:#000;scroll-behavior:smooth;scroll-padding-top:20px}.spritemap{height:0;width:0;position:absolute;visibility:hidden}.collection-container{display:none;padding:2rem;box-sizing:border-box;background:rgba(0,0,0,.1);color:#000}.hidden{display:none !important}.preview .preview-input{position:relative;z-index:1;min-width:10rem;min-height:1em}.preview .preview-input::before{content:"";position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;width:100%;height:100%;display:block;background:rgba(0,110,255,.1);border:.2rem solid rgba(0,110,255,.2)}.preview .preview-outline{position:relative;z-index:1}.preview .preview-outline::before{content:"";position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;width:100%;height:100%;outline:.2rem solid rgba(0,110,255,.2)}body{text-align:center}@media(min-width: 768px){body{text-align:left}}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400;color:#38ccb7;line-height:1.3;margin:0 0 .5em;text-align:left}h1 strong,h2 strong,h3 strong,h4 strong,h5 strong,h6 strong,.h1 strong,.h2 strong,.h3 strong,.h4 strong,.h5 strong,.h6 strong{color:inherit;font-weight:500}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a,.h1 a,.h2 a,.h3 a,.h4 a,.h5 a,.h6 a{color:inherit}h1,.h1{font-size:4.2rem;color:#000}h2,.h2{font-size:3.2rem}h3,.h3{font-size:2.8rem}h4,h5,.h4,.h5{font-size:2.4rem}h5,.h5{color:#000}h6,.h6{font-size:1.8rem}h1.layout-1,h2.layout-1,h3.layout-1,h4.layout-1,h5.layout-1,h6.layout-1,.h1.layout-1,.h2.layout-1,.h3.layout-1,.h4.layout-1,.h5.layout-1,.h6.layout-1{font-size:6.7rem;line-height:1.16;font-weight:700}h1.layout-2,h2.layout-2,h3.layout-2,h4.layout-2,h5.layout-2,h6.layout-2,.h1.layout-2,.h2.layout-2,.h3.layout-2,.h4.layout-2,.h5.layout-2,.h6.layout-2{font-size:4.9rem;line-height:1.1;font-weight:700;margin:0 0 1em}h1.layout-3,h2.layout-3,h3.layout-3,h4.layout-3,h5.layout-3,h6.layout-3,.h1.layout-3,.h2.layout-3,.h3.layout-3,.h4.layout-3,.h5.layout-3,.h6.layout-3{font-size:2.8rem;line-height:1.3;font-weight:600;margin:0 0 1em;color:#000}h1.layout-3 strong,h2.layout-3 strong,h3.layout-3 strong,h4.layout-3 strong,h5.layout-3 strong,h6.layout-3 strong,.h1.layout-3 strong,.h2.layout-3 strong,.h3.layout-3 strong,.h4.layout-3 strong,.h5.layout-3 strong,.h6.layout-3 strong{color:#38ccb7}h1.weight-1,h2.weight-1,h3.weight-1,h4.weight-1,h5.weight-1,h6.weight-1,.h1.weight-1,.h2.weight-1,.h3.weight-1,.h4.weight-1,.h5.weight-1,.h6.weight-1{font-family:"Roboto",sans-serif;font-weight:400}h1.weight-2,h2.weight-2,h3.weight-2,h4.weight-2,h5.weight-2,h6.weight-2,.h1.weight-2,.h2.weight-2,.h3.weight-2,.h4.weight-2,.h5.weight-2,.h6.weight-2{font-family:"Roboto",sans-serif;font-weight:100}h1.headline--page-title,h2.headline--page-title,h3.headline--page-title,h4.headline--page-title,h5.headline--page-title,h6.headline--page-title,.h1.headline--page-title,.h2.headline--page-title,.h3.headline--page-title,.h4.headline--page-title,.h5.headline--page-title,.h6.headline--page-title{color:#38ccb7}a{text-align:left;cursor:pointer;color:#000;text-decoration:none}dl,p{text-align:left;font-size:1.8rem;font-weight:300;line-height:1.5;padding:0;margin:0 0 1em}dl a:hover,p a:hover{opacity:.85}dl a:active,p a:active{opacity:.7}dl strong,p strong{font-weight:500}dl span.title-2,p span.title-2{font-size:3.2rem;font-weight:500;color:#38ccb7}dl span.title-3,p span.title-3{font-size:2.5rem;font-weight:500;color:#38ccb7}dl span.title-4,p span.title-4{font-size:1.8rem;font-weight:500;color:#38ccb7}ul,ol{font-size:1.8rem;font-weight:300;margin:0 0 1em}li{text-align:left;font-size:1.8rem;font-weight:300;line-height:1.5;padding:0}li a:hover{opacity:.85}li a:active{opacity:.7}article{margin:0 0 .5em}hr{padding:0;margin:2em 0;border:0;border-bottom:.1rem solid #f3f2f2}.text-align--left{text-align:left}.text-align--center{text-align:center}.text-align--right{text-align:right}.lead{font-size:3rem}.headline{margin-bottom:.5em}.text>*:last-child{margin-bottom:0}@media(min-width: 320px)and (max-width: 991px){body.mm-visible{overflow:hidden}body.mm-visible::after{content:"";display:block;position:fixed;z-index:900;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.2)}}.icon{display:inline-block;vertical-align:middle}.main{overflow:hidden}@media(min-width: 320px)and (max-width: 991px){.main{padding-top:4.2rem;transition:.2s ease}.main .mm-visible{position:relative}.main .mm-visible:before{position:absolute;top:0;left:0;right:0;bottom:0;content:"";z-index:600;background-color:rgba(0,0,0,.2)}}.wrap{margin:0 auto;width:100%;max-width:1230px;padding-left:15px;padding-right:15px}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;min-height:4rem}@media(min-width: 768px){.container{width:75rem}}@media(min-width: 992px){.container{width:97rem}}@media(min-width: 1280px){.container{width:117rem}}.grid{margin-bottom:2rem;display:block}@media(min-width: 480px){.grid{display:grid;grid-auto-flow:dense;grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}}.grid .grid-columns{grid-column:span 12}.grid.show-grid .grid-columns{background:rgba(255,100,0,.4)}.grid:not(.fullwidth){margin-left:auto;margin-right:auto;width:100%;max-width:1230px;padding-left:15px;padding-right:15px}@media(min-width: 992px){.grid.grid--small{width:66.666666%}}.grid:not(.grid-collapsed){grid-column-gap:2rem;grid-row-gap:2rem}.grid-columns{display:flex;flex-direction:column;margin-bottom:15px}@media(min-width: 768px){.grid-columns{margin-bottom:0}}.grid-columns-6-6{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-6-6>.grid-columns{grid-column:span 6}.grid-columns-9-3,.grid-columns-3-9{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-9-3>.column-1,.grid-columns-3-9>.column-0{grid-column:span 3}.grid-columns-9-3>.column-0,.grid-columns-3-9>.column-1{grid-column:span 9}.grid-columns-8-4,.grid-columns-4-8{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-8-4>.column-1,.grid-columns-4-8>.column-0{grid-column:span 4}.grid-columns-8-4>.column-0,.grid-columns-4-8>.column-1{grid-column:span 8}.grid-columns-4-4-4{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-4-4-4>.grid-columns{grid-column:span 4}.grid-columns-6-3-3,.grid-columns-3-6-3,.grid-columns-3-3-6{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-6-3-3>.column-0,.grid-columns-3-6-3>.column-1,.grid-columns-3-3-6>.column-2{grid-column:span 6}.grid-columns-6-3-3>.column-1,.grid-columns-6-3-3>.column-2,.grid-columns-3-6-3>.column-0,.grid-columns-3-6-3>.column-2,.grid-columns-3-3-6>.column-0,.grid-columns-3-3-6>.column-1{grid-column:span 3}.grid-columns-8-2-2,.grid-columns-2-8-2,.grid-columns-2-2-8{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-8-2-2>.column-0,.grid-columns-2-8-2>.column-1,.grid-columns-2-2-8>.column-2{grid-column:span 8}.grid-columns-8-2-2>.column-1,.grid-columns-8-2-2>.column-2,.grid-columns-2-8-2>.column-0,.grid-columns-2-8-2>.column-2,.grid-columns-2-2-8>.column-0,.grid-columns-2-2-8>.column-1{grid-column:span 2}.grid-columns-10-1-1,.grid-columns-1-10-1,.grid-columns-1-1-10{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-10-1-1>.column-0,.grid-columns-1-10-1>.column-1,.grid-columns-1-1-10>.column-2{grid-column:span 10}.grid-columns-10-1-1>.column-1,.grid-columns-10-1-1>.column-2,.grid-columns-1-10-1>.column-0,.grid-columns-1-10-1>.column-2,.grid-columns-1-1-10>.column-0,.grid-columns-1-1-10>.column-1{grid-column:span 1}.grid-columns-3-3-3-3{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-3-3-3-3>.grid-columns{grid-column:span 3}.grid-columns-2-4-4-2,.grid-columns-2-4-4-2{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-2-4-4-2>.column-0,.grid-columns-2-4-4-2>.column-3{grid-column:span 2}.grid-columns-2-4-4-2>.column-1,.grid-columns-2-4-4-2>.column-2{grid-column:span 4}.grid-columns-1-5-5-1,.grid-columns-1-5-5-1{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-1-5-5-1>.column-0,.grid-columns-1-5-5-1>.column-3{grid-column:span 1}.grid-columns-1-5-5-1>.column-1,.grid-columns-1-5-5-1>.column-2{grid-column:span 5}.grid-columns-2-2-2-2-2-2{grid-template-columns:repeat(auto-fit, minmax(0.1rem, 1fr))}.grid-columns-2-2-2-2-2-2>.grid-columns{grid-column:span 2}@media(min-width: 768px){.grid-columns-sm-6-6>.grid-columns{grid-column:span 6}.grid-columns-sm-9-3>.column-1,.grid-columns-sm-3-9>.column-0{grid-column:span 3}.grid-columns-sm-9-3>.column-0,.grid-columns-sm-3-9>.column-1{grid-column:span 9}.grid-columns-sm-8-4>.column-1,.grid-columns-sm-4-8>.column-0{grid-column:span 4}.grid-columns-sm-8-4>.column-0,.grid-columns-sm-4-8>.column-1{grid-column:span 8}.grid-columns-sm-4-4-4>.grid-columns{grid-column:span 4}.grid-columns-sm-6-3-3>.column-0,.grid-columns-sm-3-6-3>.column-1,.grid-columns-sm-3-3-6>.column-2{grid-column:span 6}.grid-columns-sm-6-3-3>.column-1,.grid-columns-sm-6-3-3>.column-2,.grid-columns-sm-3-6-3>.column-0,.grid-columns-sm-3-6-3>.column-2,.grid-columns-sm-3-3-6>.column-0,.grid-columns-sm-3-3-6>.column-1{grid-column:span 3}.grid-columns-sm-8-2-2>.column-0,.grid-columns-sm-2-8-2>.column-1,.grid-columns-sm-2-2-8>.column-2{grid-column:span 8}.grid-columns-sm-8-2-2>.column-1,.grid-columns-sm-8-2-2>.column-2,.grid-columns-sm-2-8-2>.column-0,.grid-columns-sm-2-8-2>.column-2,.grid-columns-sm-2-2-8>.column-0,.grid-columns-sm-2-2-8>.column-1{grid-column:span 2}.grid-columns-sm-10-1-1>.column-0,.grid-columns-sm-1-10-1>.column-1,.grid-columns-sm-1-1-10>.column-2{grid-column:span 10}.grid-columns-sm-10-1-1>.column-1,.grid-columns-sm-10-1-1>.column-2,.grid-columns-sm-1-10-1>.column-0,.grid-columns-sm-1-10-1>.column-2,.grid-columns-sm-1-1-10>.column-0,.grid-columns-sm-1-1-10>.column-1{grid-column:span 1}.grid-columns-sm-3-3-3-3>.grid-columns{grid-column:span 3}.grid-columns-sm-2-4-4-2>.column-0,.grid-columns-sm-2-4-4-2>.column-3{grid-column:span 2}.grid-columns-sm-2-4-4-2>.column-1,.grid-columns-sm-2-4-4-2>.column-2{grid-column:span 4}.grid-columns-sm-1-5-5-1>.column-0,.grid-columns-sm-1-5-5-1>.column-3{grid-column:span 1}.grid-columns-sm-1-5-5-1>.column-1,.grid-columns-sm-1-5-5-1>.column-2{grid-column:span 5}.grid-columns-sm-2-2-2-2-2-2>.grid-columns{grid-column:span 2}}.grid.preview:not([class*=layout]){background:rgba(209,209,209,.08);outline:.2rem solid rgba(0,110,255,.2)}.grid.preview:not([class*=layout]) .grid-columns{background:inherit}.grid.preview:not([class*=layout]) .grid-columns div[class*=style__addEmptyContentCollectionOverlay]{outline:0}.l-section.layout-1{padding:4rem 0 0;background-color:#f3f2f2;border-top:.4rem solid #f3f2f2;border-bottom:.4rem solid #f3f2f2;margin:0}.l-section.layout-2{padding:4rem 0 0;background-color:#000;border-top:.4rem solid #000;border-bottom:.4rem solid #000;color:#fff;margin:0}.l-section.layout-2 .icon{fill:#fff}.l-section.layout-white-font{color:#fff}.l-section.layout-white-font .icon{fill:#fff}.l-section.layout-4{padding:4rem 0 0;background-color:#e8fcff;border-top:.4rem solid #e8fcff;border-bottom:.4rem solid #e8fcff;margin:0}.l-section.layout-5{padding:4.4rem 0 .4rem 0;background-color:rgba(0,0,0,0);margin:0;position:relative}.l-section.layout-5 .l-section__bg,.l-section.layout-5 .l-section__bg img{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;object-fit:cover;object-position:center;width:100%;height:100%}.grid.layout-3{position:relative;padding:.5rem 0 0;margin:0}.grid.layout-3::before{content:"";display:block;position:absolute;top:0;left:-15px;width:calc(100% + 15px + 15px);height:100%;background-color:rgba(57,195,220,.17)}.grid.layout-3 .grid-columns{position:relative;z-index:10}.spacer{display:block;clear:both;border:0;padding:0;margin:0}.spacer--xs{padding:1rem 0}.spacer--s{padding:2rem 0}.spacer--m{padding:4rem 0}.spacer--l{padding:8rem 0}.spacer--xl{padding:16rem 0}.spacer--border{border-bottom:.1rem solid #000;padding:0}.spacer--border.spacer--xs{margin:1rem 0}.spacer--border.spacer--s{margin:2rem 0}.spacer--border.spacer--m{margin:4rem 0}.spacer--border.spacer--l{margin:8rem 0}.spacer--border.spacer--xl{margin:16rem 0}.preview.spacer--border{position:relative;border:0}.preview.spacer--border::after{content:"";display:block;top:50%;width:100%;border-bottom:.1rem solid #000}@keyframes colorchange{0%{background:#59a77b}34%{background:#008f9e}67%{background:currentColor}100%{background:#59a77b}}@-webkit-keyframes colorchange{0%{background:#59a77b}34%{background:#008f9e}67%{background:currentColor}100%{background:#59a77b}}.image{line-height:0}.image.size-xs{width:60%;max-width:12rem}.image.size-xs figure,.image.size-xs picture,.image.size-xs img{width:60%;max-width:12rem}.image.size-s{width:85%;max-width:240rem}.image.size-s figure,.image.size-s picture,.image.size-s img{width:85%;max-width:240rem}.image.size-m{width:100%;max-width:480rem}.image.size-m figure,.image.size-m picture,.image.size-m img{width:100%;max-width:480rem}.image.size-l{width:115%;max-width:60rem}.image.size-l figure,.image.size-l picture,.image.size-l img{width:115%;max-width:60rem}.image.size-xl{width:115%;max-width:80rem}.image.size-xl figure,.image.size-xl picture,.image.size-xl img{width:115%;max-width:80rem}.image.size-header{width:100%;height:6.2rem;object-fit:cover}.image.size-header figure,.image.size-header picture,.image.size-header img{width:100%;height:6.2rem;object-fit:cover}.image.fullwidth-contain{width:100%;height:auto;object-fit:contain}.image.fullwidth-contain figure,.image.fullwidth-contain picture,.image.fullwidth-contain img{width:100%;height:auto;object-fit:contain}.image.fullwidth-cover{width:100%;height:100%;object-fit:cover}.image.fullwidth-cover figure,.image.fullwidth-cover picture,.image.fullwidth-cover img{width:100%;height:100%;object-fit:cover}.image.align-center{margin:0 auto;text-align:center}.image.align-center figure,.image.align-center picture,.image.align-center img{margin:0 auto;text-align:center}img.no-image{display:block;min-width:40%;padding:4rem;background-color:#f6f6f6;background-size:8rem 8rem;color:rgba(0,0,0,0);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 383.5'%3e%3cpath fill='%23A3A3A3' d='M45 337.295v-53.181l88.636-88.637 44.319 44.318L319.772 97.977 435 213.204v124.091zM45 106.841c0-14.773 5.17-27.329 15.511-37.67C70.852 58.83 83.408 53.66 98.181 53.66s27.33 5.17 37.67 15.511c10.341 10.341 15.512 22.897 15.512 37.67s-5.17 27.33-15.512 37.67c-10.341 10.341-22.897 15.511-37.67 15.511s-27.329-5.17-37.67-15.511C50.17 134.17 45 121.614 45 106.841z'/%3e%3cpath fill='%23A3A3A3' d='M476 4.136v375.5H4V4.136h472m4-4H0v383.5h480V.136z'/%3e%3c/svg%3e") center no-repeat}.mint-hover{position:relative}.mint-hover:before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;background-color:#38ccb7;opacity:0;transition:opacity .3s ease-out;pointer-events:none}.mint-hover:hover:before{opacity:.3}.icon-sprite{width:100%;height:100%}.btn{color:inherit}.btn strong{color:inherit;font-size:initial;font-weight:initial}.btn.btn--layout-1{color:#fff;background-color:#38ccb7;background-size:0 100%;background-repeat:no-repeat;transition:background-size 200ms ease-out;position:relative;display:inline-flex;align-items:center;padding:1.6rem 2.4rem;font-size:1.8rem;font-weight:300;border-radius:.4rem;border:0;cursor:pointer}.btn.btn--layout-1:hover{transform:scale(1.02)}.btn.btn--layout-1:active{transform:scale(0.98)}.btn.btn--layout-1:hover{background-image:linear-gradient(90deg, rgb(252, 105, 198) 0%, #38ccb7 100%);background-size:100% 100%}.btn.btn--layout-2{background:rgba(0,0,0,0);color:#38ccb7;position:relative;display:inline-flex;align-items:center;padding:1.6rem 2.4rem;font-size:1.8rem;font-weight:300;border-radius:.4rem;border:0;cursor:pointer}.btn.btn--layout-2:hover{transform:scale(1.02)}.btn.btn--layout-2:active{transform:scale(0.98)}.btn.btn--layout-2::before{border:.2rem solid #38ccb7;content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:.4rem}.btn.btn--layout-2:hover::before{filter:drop-shadow(0 0.3rem 0.3rem #38ccb7)}.btn.btn--layout-3{color:#fff;background-color:#39c3dc;background-size:200% 100%;background-position:-100% 0;background-repeat:no-repeat;transition:background-position 200ms ease-out,background-size 200ms ease-out;position:relative;display:inline-flex;align-items:center;padding:1.6rem 2.4rem;font-size:1.8rem;font-weight:300;border-radius:.4rem;border:0;cursor:pointer}.btn.btn--layout-3:hover{transform:scale(1.02)}.btn.btn--layout-3:active{transform:scale(0.98)}.btn.btn--layout-3:hover{background-image:linear-gradient(90deg, #39C3DC 0%, #38ccb7 100%);background-size:100% 100%;background-position:0 0}.btn.btn--layout-4{background:rgba(0,0,0,0);color:#39c3dc;position:relative;display:inline-flex;align-items:center;padding:1.6rem 2.4rem;font-size:1.8rem;font-weight:300;border-radius:.4rem;border:0;cursor:pointer}.btn.btn--layout-4:hover{transform:scale(1.02)}.btn.btn--layout-4:active{transform:scale(0.98)}.btn.btn--layout-4::before{border:.2rem solid #39c3dc;content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:.4rem}.btn.btn--layout-4:hover::before{filter:drop-shadow(0 0.3rem 0.3rem #39C3DC)}.btn.btn--align-center{margin:0 auto}.form{position:relative;display:flex;flex-direction:column}.form .message{position:relative;padding:1em;border:.1rem solid #000;padding-left:4rem;margin:0 0 1.2rem}.form .message .icon{position:absolute;top:50%;left:1.5rem;width:1rem;height:1rem;transform:translateY(-50%);fill:#f00058}.form .message>*:last-child{margin-bottom:0}.form .error{color:#f00058;border-color:#f00058}.form .success{color:#38ccb7;border-color:#38ccb7}.form .required .form__label::after{content:"*";display:inline-block}.form .disabled,.form [disabled]{color:#f3f2f2;border-color:#f3f2f2;cursor:default;opacity:.4}.form .form-group{margin:0 0 1.4rem}.form .form__label{display:flex;margin:0 0 .8rem;font-size:1.6rem;line-height:1.1}.form .form__select-box{position:relative}.form .form__select::before{content:"";position:absolute;width:.1rem;top:.1rem;bottom:.1rem;right:5rem;background-color:rgba(0,0,0,.2)}.form .form__select::after{content:"";position:absolute;width:1rem;height:1rem;top:50%;right:2rem;border-top:.1rem solid rgba(0,0,0,.2);border-right:.1rem solid rgba(0,0,0,.2);transform:translate(0, -50%) rotate(135deg)}.form .form__select select{position:relative;z-index:5;width:100%;height:5rem;padding:0 1.9rem;font-size:1.6rem;border:.1rem solid rgba(0,0,0,.2);border-radius:0;background-color:rgba(0,0,0,0);-webkit-appearance:none}.form .form__input input{width:100%;height:5rem;padding:0 1.9rem;font-size:1.6rem;border:.1rem solid rgba(0,0,0,.2)}.form .form__checkbox{position:relative}.form .form__checkbox input{display:none}.form .form__checkbox .form__label{cursor:pointer;position:relative;display:block;padding:0 0 0 3.3rem;font-size:1.4rem;line-height:1.5;font-weight:300}.form .form__checkbox .form__label::before{content:"";position:absolute;width:2rem;height:2rem;border:.1rem solid rgba(0,0,0,.2);top:0;left:0}.form .form__checkbox .form__label::after{content:"";position:absolute;transition:.2s ease;background:#38ccb7;box-shadow:0 .9rem 1.3rem 0 rgba(240,100,163,.31);width:1rem;height:1rem;top:.5rem;left:.5rem;opacity:0}.form .form__checkbox input:checked+label::after{opacity:1}.form .form__input+.form__checkbox{margin-top:.8rem}.form .form__text textarea{width:100%;min-height:14rem;padding:1rem 1.9rem;font-size:1.6rem;border:.1rem solid rgba(0,0,0,.2)}.form .btn{font-size:1.2rem;line-height:1.2;font-weight:700;letter-spacing:.1rem;color:#fff;text-transform:uppercase;display:inline-flex;align-items:center;justify-content:center;border:0;min-width:18.4rem;height:4.4rem;border-radius:5.7rem;padding:0 2rem;transition:.2s ease}.form .btn--medium{width:18.4rem}.form .btn--middle{width:auto}@media(min-width: 480px){.form .btn--large{width:33.8rem}}.form .btn--green{background:#38ccb7;box-shadow:0 .9rem 1.3rem 0 rgba(56,204,183,.31)}.form .btn--green .no-touchevents:hover{box-shadow:0 1.5rem 1.3rem 0 rgba(56,204,183,.15)}.form .btn--green .no-touchevents:active{box-shadow:none}.form .btn--banner{margin:0 auto}.form .btn--bordered{color:#000;border:.1rem solid #000;margin:0 auto;display:flex}.form .btn--bordered .no-touchevents:hover{box-shadow:0 .9rem 1.3rem 0 rgba(57,195,220,.15)}.form .btn--bordered .no-touchevents:active{box-shadow:none}.form .btn--bordered-blue{border-color:#39c3dc;color:#39c3dc}.form .btn--bordered-green{border-color:#38ccb7;color:#38ccb7;box-shadow:0 .9rem 1.3rem 0 rgba(56,204,183,.31)}@media(min-width: 768px){.form .btn--more{min-width:24.4rem}}.form .form__footer-text p{font-size:1.4rem}.form .form__footer-button{margin-top:.8rem;text-align:center}.form .form-panel{transition:all 300ms ease-in-out;transform-style:preserve-3d;width:100%}.form .form-panel-1{transform-origin:top left;transform:rotateY(0deg);background:linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)}.form .form-panel-2{transform-origin:top right;transform:rotateY(-90deg);background:linear-gradient(to right, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);position:absolute;top:50%}.form .form-panel__loading,.form .form-panel__content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.form .form-panel__loading .icon,.form .form-panel__content .icon{width:100%}.form.form--submit .form-panel-1{transform:rotateY(90deg);background:linear-gradient(to right, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.02) 100%)}.form.form--submit .form-panel-2{transform:rotateY(0deg);background:linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)}.recaptcha{display:flex;justify-content:center;margin:0 0 1rem}.preview.form .form__preview{background:rgba(0,110,255,.1);border:.2rem solid rgba(0,110,255,.2)}.preview.form .form__preview>*{min-width:4rem}.preview.form .form__body{outline:.2rem solid rgba(0,110,255,.2)}.video-desktop{max-width:100%;display:none}@media(min-width: 480px){.video-desktop{display:block}}.video-mobile{max-width:100%;display:block}@media(min-width: 480px){.video-mobile{display:none}}.hero-baner-wrap{position:relative;padding-top:2px;padding-bottom:2px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;background-color:#000}.hero-baner-wrap .icon__custom--check-mark-circle-banner-header{width:22px;height:22px}@media(min-width: 992px){.hero-baner-slider.wrap{padding:0 15px}}.hero-baner{display:flex;flex-direction:row;justify-content:space-between}@media(min-width: 992px){.hero-baner{gap:10px}}.hero-baner .hero-baner-usp{display:flex;justify-content:center;width:100%}@media(min-width: 992px){.hero-baner .hero-baner-usp{display:flex;justify-content:start;width:fit-content;flex:1 1 100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.hero-baner a,.hero-baner span{display:flex;align-items:center;flex-grow:0;gap:7px;color:#fff;text-align:left;font-size:18px;font-weight:300;line-height:1.5;padding:0}@media(min-width: 992px){.hero-baner a,.hero-baner span{font-size:14px}}.hero-baner a svg,.hero-baner span svg{display:flex;flex-grow:0}.hero-baner a,.hero-baner a:hover{text-decoration:underline}.hero-baner-show.js-scrolled .hero-baner-wrap{background-color:#000}.hero-baner-show .l-section-first .image.size-header img{height:9.2rem}.accordion{margin-left:-1rem;padding-bottom:2rem}.accordion__item{text-align:left}.accordion__title{cursor:pointer;position:relative;display:inline-block;margin:0;padding:.4em 3rem .8em 1rem;font-size:1.8rem;color:#000;font-weight:300}.accordion__title::after{position:absolute;content:"";display:block;top:.5em;right:.4rem;width:.8rem;height:.8rem;transition:.2s ease;border-top:.1rem solid rgba(0,0,0,.3);border-right:.1rem solid rgba(0,0,0,.3);transform:rotate(135deg)}.accordion__content{display:block;padding:0 1rem 1.5rem}.accordion__item.active .accordion__title{color:rgba(0,0,0,.8)}.accordion__item.active .accordion__title::after{transform:rotate(-45deg);top:1.4rem}.accordion__item.active .accordion__content{margin-bottom:1.5rem}body:not(.preview) .accordion__content{padding:0 1rem;overflow:hidden;max-height:0;transition:.2s ease}.accordion.preview .accordion__body{outline:.2rem solid rgba(0,110,255,.2)}.accordion.preview .accordion__title span{background:rgba(0,110,255,.1);border:.2rem solid rgba(0,110,255,.2)}.accordion.preview .accordion__content{outline:.2rem solid rgba(0,110,255,.2)}.badge{width:100%;max-width:34rem;position:relative;margin:0 auto}.badge main{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:100%;color:#fff;display:flex;align-content:center;justify-content:center;flex-direction:column;text-align:center;padding:3rem}.badge h2,.badge h3,.badge h4,.badge h5,.badge h6{font-size:3.2rem;color:#fff;margin-bottom:.5em;text-align:center}@media(min-width: 768px){.badge h2,.badge h3,.badge h4,.badge h5,.badge h6{font-size:2.4rem}}@media(min-width: 992px){.badge h2,.badge h3,.badge h4,.badge h5,.badge h6{font-size:3.2rem}}.badge p{font-size:2rem;width:100%;max-width:20rem;margin:0 auto;text-align:center}@media(min-width: 768px){.badge p{font-size:1.6rem}}@media(min-width: 992px){.badge p{font-size:2rem}}.bubble{width:100%;max-width:18rem;margin:0 auto}@media(min-width: 768px){.bubble{max-width:26rem}}.bubble header{position:relative;width:100%;margin:0 auto;max-width:18rem;margin-bottom:2em}@media(min-width: 768px){.bubble header{max-width:14rem}}.bubble header::before{content:"";display:block;padding-top:100%}.bubble main h4{font-size:1.6rem}@media(min-width: 480px){.bubble main h4{font-size:2rem}}@media(min-width: 768px){.bubble main h4{font-size:2.4rem}}.bubble .icon-sprite{position:absolute;top:0;left:0;width:100%;border-radius:100%;padding:1em;fill:#fff;background:#df00d7;background:linear-gradient(180deg, #af1453 20%, #311178 90%)}.instagram-feed__feed{display:flex;flex-wrap:wrap;justify-content:space-evenly;margin-left:-5px;width:calc(100% + 10px)}.instagram-feed__img-wrap{width:50%;padding-bottom:10px;padding-right:5px;padding-left:5px;box-sizing:border-box}.instagram-feed__img-wrap a{display:block;width:100%}.instagram-feed__img-wrap img{display:block;width:100%;height:auto;border-radius:6px;object-fit:contain}.instagram-feed__img-wrap.two img{border-radius:0px}@media all and (min-width: 416px){.instagram-feed__feed{justify-content:normal}.instagram-feed__img-wrap{width:33%}}@media all and (min-width: 728px){.instagram-feed__img-wrap{width:25%}}@media all and (min-width: 966px){.instagram-feed__feed{justify-content:flex-end;padding-right:0}}.partners{padding:4rem 0}.partners h3,.partners .h3{text-align:center;color:inherit;margin-bottom:2rem}.partners.layout-1{background:#000;color:#fff}.partners.layout-1 .icon svg{fill:#fff}.partners__body{text-align:center}@media(min-width: 992px){.partners__body{padding:0 10rem}}.partners__body .icon{display:inline-block;margin:1rem;padding:1rem;max-width:24rem;width:40%;transition:transform 160ms ease-in-out}@media(min-width: 768px){.partners__body .icon{width:30%}}.partners__body .icon svg{display:block;width:100%;height:3rem;fill:inherit}@media(min-width: 768px){.partners__body .icon svg{height:2.5rem}}@media(min-width: 768px){.partners__body .icon:nth-of-type(1) svg,.partners__body .icon:nth-of-type(2) svg,.partners__body .icon:nth-of-type(3) svg{height:7rem}}.partners__body .icon .icon__brands--apple_logo{height:10vw}@media(min-width: 768px){.partners__body .icon .icon__brands--mobilezone_logo{height:4rem}}@media(min-width: 768px){.partners__body .icon .icon__brands--mobilezone_reload_logo,.partners__body .icon .icon__brands--talktalk_buble_logo{height:15rem}}@media(min-width: 768px){.partners__body .icon .icon__brands--wingo_logo{height:5rem}}.partners__body .icon .icon__brands--swisscom_logo{height:11rem}@media(min-width: 768px){.partners__body .icon .icon__brands--swisscom_logo{height:100% !important}}.partners__body a.icon:hover{transform:scale(1.1, 1.1)}.payment-support{padding:0}.payment-support h3,.payment-support .h3{text-align:center;color:inherit;margin-bottom:0}.payment-support.layout-1{background:#000;color:#fff}.payment-support.layout-1 .icon svg{fill:#fff}.payment-support__wrap{margin:0 0 1rem}.payment-support__body{text-align:center;margin:1rem 0}.payment-support__body .icon{display:inline-block;padding:1rem;max-width:7rem;width:20%}@media(min-width: 768px){.payment-support__body .icon{width:10%}}.payment-support__body .icon img{display:block;width:100%;height:auto}.teaser__landingpage{position:relative}.teaser__landingpage .teaser__background,.teaser__landingpage .teaser__background picture,.teaser__landingpage .teaser__background picture img{width:100%;height:95vh;object-fit:cover}.teaser__landingpage .teaser__content{position:absolute;top:10%;left:10%}@media(min-width: 992px){.teaser__landingpage .teaser__content{top:10%;left:initial;right:50%}}.teaser__landingpage .teaser__content-logo{fill:#fff;width:16rem;text-align:left;filter:drop-shadow(0 0 1em rgba(57, 195, 220, 0.4))}@media(min-width: 992px){.teaser__landingpage .teaser__content-logo{width:24rem}}.teaser__landingpage .teaser__content-title{margin-top:16vh;width:100%;text-align:right;color:#fff;font-size:4rem;font-weight:200;text-shadow:0 0 .7em rgba(57,195,220,.5)}@media(min-width: 992px){.teaser__landingpage .teaser__content-title{font-size:6rem;margin-top:14vh}}.teaser__landingpage .teaser__content-title strong{font-weight:500}.teaser__mega{position:relative}.teaser__mega .teaser__background,.teaser__mega .teaser__background picture,.teaser__mega .teaser__background picture img{width:100%;height:630px;object-fit:cover}.teaser__mega .teaser__content{position:absolute;top:25%;transform:translateY(-50%);right:30%}.teaser__mega .teaser__content--text{width:100%;max-width:240px;position:absolute;top:240px;right:0}@media(min-width: 992px){.teaser__mega .teaser__content--text{top:50%;transform:translateY(-50%);width:100%;display:block;max-width:100%}}@media(min-width: 992px){.teaser__mega .teaser__content--text>div{margin:0 auto;max-width:1230px;padding-left:15px;padding-right:15px}}.teaser__mega .teaser__content--text h1{font-family:"Roboto",sans-serif;font-size:28px;font-weight:bold;color:#fff;margin:0;padding:0}@media(min-width: 0px)and (max-width: 991px){.teaser__mega .teaser__content--text h1{font-size:16px}}@media(min-width: 992px){.teaser__mega .teaser__content--text h1{text-shadow:20px 16px 20px #000}}@media(min-width: 0px)and (max-width: 991px){.teaser__mega .bgd--mobile h1{background-color:rgba(0,0,0,.5);padding:10px 0 10px 10px}}@media(min-width: 992px){.teaser__mega .bgd--desktop h1{background-color:#000;padding:10px 0 10px 10px;display:block;max-width:40%}}.teaser__mega .teaser__content-logo{fill:#fff;width:16rem;text-align:left;filter:drop-shadow(0 0 1em rgba(57, 195, 220, 0.4))}@media(min-width: 992px){.teaser__mega .teaser__content-logo{width:24rem}}.teaser__mega .teaser__content-title{width:100%;text-align:right;color:#fff;font-size:4rem;font-weight:200;text-shadow:0 0 .7em rgba(57,195,220,.5)}@media(min-width: 992px){.teaser__mega .teaser__content-title{font-size:6rem}}.teaser__mega .teaser__content-title strong{font-weight:500}.teaser__mega2{position:relative}.teaser__mega2 .teaser__background,.teaser__mega2 .teaser__background picture,.teaser__mega2 .teaser__background picture img{width:100%;height:95vh;object-fit:cover}.teaser__mega2 .teaser__content{position:absolute;top:40%;left:50%;width:40%;min-width:30rem;max-width:65rem;transform:translateY(-50%)}.teaser__mega2 .teaser__content-title{margin-top:16vh;width:100%;text-align:right;color:#fff;font-size:2.4rem;font-weight:200;text-shadow:0 0 .7em rgba(57,195,220,.5)}@media(min-width: 992px){.teaser__mega2 .teaser__content-title{font-size:3.2rem;margin-top:14vh;text-align:left}}.teaser__mega2 .teaser__content-title strong{font-size:4.4rem;font-weight:500}@media(min-width: 992px){.teaser__mega2 .teaser__content-title strong{font-size:6.4rem}}.teaser__mega3{position:relative}.teaser__mega3 .teaser__background,.teaser__mega3 .teaser__background picture,.teaser__mega3 .teaser__background picture img{width:100%;height:95vh;object-fit:cover}.teaser__mega3 .teaser__content{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-content:center;padding:12%}@media(min-width: 992px){.teaser__mega3 .teaser__content{display:flex;flex-direction:row;padding:24%}}.teaser__mega3 .teaser__content-image{display:block;width:180px;flex:1;justify-content:flex-end;align-items:center;margin:0 auto 20px}@media(min-width: 992px){.teaser__mega3 .teaser__content-image{width:100%;display:flex;margin:0;padding-right:4rem}}.teaser__mega3 .teaser__content-box{display:flex;flex:1;justify-content:center;align-items:flex-start;flex-direction:column;width:100%;margin:0}@media(min-width: 992px){.teaser__mega3 .teaser__content-box{width:60%;height:100%}}.teaser__mega3 .teaser__content-title{margin-top:0;min-height:inherit;width:100%;text-align:center;color:#fff;font-size:2.4rem;font-weight:200;text-shadow:0 0 .7em rgba(57,195,220,.5)}@media(min-width: 992px){.teaser__mega3 .teaser__content-title{font-size:3.2rem;text-align:left}}.teaser__mega3 .teaser__content-title strong{font-size:4.4rem;font-weight:500}@media(min-width: 992px){.teaser__mega3 .teaser__content-title strong{font-size:6.4rem}}.teaser__mega3 .teaser__content-button{margin:.8rem auto 0}@media(min-width: 992px){.teaser__mega3 .teaser__content-button{margin:.8rem 0 0}}.teaser__mega4{position:relative}.teaser__mega4 .teaser__background{width:100%;height:85vh;object-fit:cover;object-position:center}.teaser__mega4 .teaser__background--video-mobile{display:block}@media(min-width: 480px){.teaser__mega4 .teaser__background--video-mobile{display:none}}.teaser__mega4 .teaser__background--video-desktop{display:none}@media(min-width: 480px){.teaser__mega4 .teaser__background--video-desktop{display:block}}.teaser__mega4 .teaser__content{position:absolute;top:25%;transform:translateY(-50%);right:30%}.teaser__mega4 .teaser__content-logo{fill:#fff;width:16rem;text-align:left;filter:drop-shadow(0 0 1em rgba(57, 195, 220, 0.4))}@media(min-width: 992px){.teaser__mega4 .teaser__content-logo{width:24rem}}.teaser__mega4 .teaser__content-title{width:100%;text-align:right;color:#fff;font-size:4rem;font-weight:200;text-shadow:0 0 .7em rgba(57,195,220,.5)}@media(min-width: 992px){.teaser__mega4 .teaser__content-title{font-size:6rem}}.teaser__mega4 .teaser__content-title strong{font-weight:500}.swiper-pagination{text-align:center}.swiper-pagination.swiper-pagination-lock{display:none}.swiper-pagination-bullet{border-radius:100%;background:#f3f2f2;width:1.6rem;height:1.6rem;display:inline-block;cursor:pointer;margin:2rem .4rem 0}.swiper-pagination-bullet.swiper-pagination-bullet-active{background:#38ccb7}.swiper-button-next,.swiper-button-prev{position:absolute;z-index:200;top:50%;transform:translateY(-50%);width:3rem;height:5rem;background-repeat:no-repeat;cursor:pointer;filter:invert(31%) sepia(82%) saturate(2107%) hue-rotate(162deg) brightness(93%) contrast(99%)}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.2}.swiper-button-next.swiper-button-lock,.swiper-button-prev.swiper-button-lock{display:none}.swiper-button-next::after,.swiper-button-prev::after{display:none}.swiper-button-next{right:-0.4rem;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330'%3e%3cg%3e%3cpath d='M250.606 154.389l-150-149.996c-5.857-5.858-15.355-5.858-21.213.001-5.857 5.858-5.857 15.355.001 21.213l139.393 139.39L79.393 304.394c-5.857 5.858-5.857 15.355.001 21.213C82.322 328.536 86.161 330 90 330s7.678-1.464 10.607-4.394l149.999-150.004a14.996 14.996 0 000-21.213z'/%3e%3c/g%3e%3c/svg%3e") center no-repeat}.swiper-button-prev{left:-0.4rem;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512.006 512.006'%3e%3cg%3e%3cpath d='M388.419 475.59L168.834 256.005 388.418 36.421c8.341-8.341 8.341-21.824 0-30.165s-21.824-8.341-30.165 0L123.586 240.923c-8.341 8.341-8.341 21.824 0 30.165l234.667 234.667a21.275 21.275 0 0015.083 6.251 21.277 21.277 0 0015.083-6.251c8.341-8.341 8.341-21.824 0-30.165z'/%3e%3c/g%3e%3c/svg%3e") center no-repeat}.teaser{margin:0;padding:0;min-height:4rem;color:#000;position:relative;overflow:hidden}.teaser .teaser--white{color:#fff}.teaser>.swiper-wrapper{transform:none}.teaser.teaser__hide-controls .swiper-pagination-bullet,.teaser.teaser__hide-controls .swiper-button-next,.teaser.teaser__hide-controls .swiper-button-prev{display:none}.teaser.teaser__second{padding:0 3.8rem 6rem}.teaser.teaser__third{padding:0 3.2rem 6rem}.teaser.teaser__fifth{padding:0 4rem 6rem}.teaser.swiper-container{max-height:54vh}@media(min-width: 992px){.teaser.swiper-container{max-height:100%}}.teaser.swiper-container img,.teaser.swiper-container video{max-height:54vh}@media(min-width: 992px){.teaser.swiper-container img,.teaser.swiper-container video{max-height:100%}}.teaser .teaser__mega .teaser__content,.teaser .teaser__mega4 .teaser__content{top:35%;right:20px}@media(min-width: 480px){.teaser .teaser__mega .teaser__content,.teaser .teaser__mega4 .teaser__content{right:80px}}@media(min-width: 992px){.teaser .teaser__mega .teaser__content,.teaser .teaser__mega4 .teaser__content{top:25%;right:30%}}.teaser.preview .teaser__cta-wrap,.teaser.preview .teaser__subtitle-wrap,.teaser.preview .teaser__title-wrap,.teaser.preview .teaser__text-wrap,.teaser.preview .teaser__button-wrap,.teaser.preview .teaser__link-wrap,.teaser.preview .teaser__item-text-wrap,.teaser.preview .teaser__item-subtext-wrap,.teaser.preview .teaser__price-wrap,.teaser.preview .teaser__legal-wrap{display:block;min-width:10rem;min-height:1em;background:rgba(0,110,255,.1);border:.2rem solid rgba(0,110,255,.2)}.teaser.preview .teaser__items{outline:.2rem solid rgba(0,110,255,.2)}.image-box{display:flex;flex-direction:column;width:100%}@media(min-width: 992px){.image-box{flex-direction:row}}.image-box__main{width:100%;position:relative;padding-top:100%;order:1}@media(min-width: 992px){.image-box__main{order:2}}.image-box__main input{position:absolute;visibility:hidden}.image-box__main img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;opacity:0;transition:opacity 300ms ease-in-out}.image-box__main input:checked+img{opacity:1}@-moz-keyframes spin{100%{-moz-transform:rotate(360deg)}}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.image-box__menu{margin:1rem 0 2rem;order:2;display:flex;flex-direction:row;justify-content:center;align-content:center}@media(min-width: 992px){.image-box__menu{order:1;flex-direction:column}.image-box__menu label{display:inline-block}}.image-box__menu label{display:block;margin:.5rem}.image-box__menu label img{width:6rem;height:6rem;object-fit:contain;cursor:pointer}.jusit-company-molecule-header-wrapper{position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;height:55px}@media all and (min-width: 992px){.jusit-company-molecule-header-wrapper{height:150px}.force-mobile-header-white .jusit-company-molecule-header-wrapper{margin-top:0 !important;padding-top:64px;padding-bottom:20px;height:210px}}.l-section-first .jusit-company-molecule-header-wrapper{margin-top:64px}@media all and (max-width: 991px){.l-section-first .jusit-company-molecule-header-wrapper{margin-top:92px}}.l-section-first .jusit-company-molecule-header-wrapper .headline--page-title{color:#fff !important;line-height:1.2 !important;margin-bottom:0 !important}@media all and (max-width: 991px){.l-section-first .jusit-company-molecule-header-wrapper .headline--page-title{font-size:3rem !important}}.jusit-company-molecule-header-wrapper .jusit-company-molecule-header-image{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;object-fit:cover;object-position:center;width:100%;height:100%}.jusit-company-molecule-header-wrapper .jusit-company-molecule-header-image img{width:100%}.tab__menu{display:flex;justify-content:center;margin:1rem 0}.tab__menu-option{display:inline-block;text-align:center;padding:.8rem 1.6em;font-size:1.4rem;color:#38ccb7;border-top:.2rem solid #38ccb7;border-right:.1rem solid #38ccb7;border-bottom:.2rem solid #38ccb7;border-left:.1rem solid #38ccb7;min-width:12rem;cursor:pointer;transition-property:background-color,color;transition-timing-function:ease-out;transition-duration:.3s}.tab__menu-option.active{font-weight:bold;color:#fff;background-color:#38ccb7}.tab__menu-option:first-of-type{border-top-left-radius:2rem;border-bottom-left-radius:2rem;border-left:.2rem solid #38ccb7;padding-left:2em}.tab__menu-option:last-of-type{border-top-right-radius:2rem;border-bottom-right-radius:2rem;border-right:.2rem solid #38ccb7;padding-right:2em}.tab__body{width:100%}.tab__switch{display:none}.tab__switch+.tab__content{display:none}.tab__switch:checked+.tab__content{display:block}.header{position:fixed;z-index:710;top:0;right:0;left:0;width:100%;max-width:100vw;color:#fff;transition:color 200ms ease-in-out,background-color 200ms ease-in-out;padding-bottom:0;height:64px}@media(min-width: 992px){.header{padding-bottom:0}}.header-wrap{position:relative;padding-top:0;padding-bottom:0;display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:100%}.header-wrap a{color:#fff;fill:#fff}.header__logo{min-width:12rem;position:absolute;top:.8rem;left:50%;transform:translateX(-50%)}@media(min-width: 992px){.header__logo{position:initial;top:initial;left:initial;transform:none}}.header__logo a{display:inline-block;padding:0 .8rem 0 0}.header__logo svg{width:10.2rem;height:4rem;fill:#fff}.header__main-nav{flex:2}.header__main-nav ul{list-style:none;margin:0;padding:.8rem 0;text-align:center;display:none}@media(min-width: 992px){.header__main-nav ul{display:block}}.header__main-nav li{display:inline-block;position:relative}.header__main-nav li:hover>.header-submenu{display:block}.header__main-nav a{display:block;padding:0 .8rem;font-weight:300;font-size:2rem;text-align:center}.header__main-nav .header-submenu{display:none;position:absolute;min-width:100%;transition:color 200ms ease-in-out,background-color 200ms ease-in-out;border-radius:0 0 4px 4px;background-color:rgba(0,0,0,.9)}.header__main-nav .header-submenu li{display:block}.header__main-nav .header-submenu a{text-align:left}.header__main-nav .header-submenu a:hover{color:#38ccb7}.header__main-nav .header-submenu .parent-menu-item{display:none}.header-mobile{background-repeat:no-repeat;background-size:cover;background-image:url(https://assets.mobilezone.ch/jusit__teaser-xxlg/52d51b013ff1c76ae7ecf72d982d3da16b0d6935/1629397697.png);position:fixed;z-index:-1;top:0;right:0;bottom:0;left:0;width:100%;height:0;opacity:0;padding-top:6.5rem}@media(min-width: 992px){.header-mobile{display:none}}.header-mobile h3{text-align:center;font-size:2rem;color:#fff;margin-bottom:.4em}.header-mobile .header-mobile__body{text-align:center;color:#fff;margin-bottom:2rem}.header-mobile .header-mobile__body p{text-align:center}.header-mobile a{color:#fff}.header-mobile .icon{width:6rem;height:6rem}.header-mobile__wrap{height:100%;max-height:0;opacity:0;overflow:hidden;transition:all 200ms ease-in-out}.header-mobile-submenu .header-mobile__nav ul{padding-top:0}.header-mobile__nav ul{list-style:none;margin:0;padding:5rem 0}.header-mobile__nav li{display:block}.header-mobile__nav a{display:block;padding:.8rem;font-weight:300;font-size:3.2rem;text-align:center;color:#fff}.header-mobile__nav .header-mobile-submenu{position:fixed;top:0;bottom:0;height:100%;width:100%;padding-top:80px;background-color:#000;transition:.3s ease-out;transform:translate(100%, 0)}.header-mobile__nav .header-mobile-submenu.open{transition:.3s ease-in;transform:translate(0, 0)}.header-mobile__nav .header-mobile-submenu .parent-menu-item{display:block}.header-mobile-submenu-closeBtn::before{content:"";color:#fff;font-family:Mozo;font-size:32px;margin-left:24px}.header-mobile__newsletter,.header-mobile__contact{position:relative}.header-mobile__social{position:relative;margin-bottom:4rem}.header-mobile__social .icon{width:4.4rem;height:4.4rem;padding:.4rem;margin-right:1rem;border-radius:.4rem;background:#38ccb7}.header-mobile__social .icon-sprite{fill:#fff}.header-mobile__social .footer-contact__body{text-align:center}.header__sub{display:flex;padding:0 .8rem 0 0;margin-top:2px}@media(min-width: 992px){.header__sub{padding:0;min-width:12rem;align-items:center}}.header__sub app-basket-small{display:block;width:34px;height:34px;margin-top:-2px}.header__sub app-basket-small svg{fill:#fff !important;transition:fill 200ms ease-in-out}.header__sub .mobile-menu-btn{display:block;position:absolute;top:1.2rem;left:1.5rem}@media(min-width: 992px){.header__sub .mobile-menu-btn{display:none}}.header__sub .hamburger-inner,.header__sub .hamburger-inner::before,.header__sub .hamburger-inner::after{transition:background-color 200ms ease-in-out !important}.js-mobile-menu--visible .header,.js-scrolled .header{background:#fff;color:#000}.js-mobile-menu--visible .header .primary-menu__item>.menu-item>a,.js-mobile-menu--visible .header .language-dropdown__item>a,.js-mobile-menu--visible .header .language-dropdown__item-toggle-native,.js-scrolled .header .primary-menu__item>.menu-item>a,.js-scrolled .header .language-dropdown__item>a,.js-scrolled .header .language-dropdown__item-toggle-native{color:#000;fill:#000}.js-mobile-menu--visible .header app-basket-small svg,.js-scrolled .header app-basket-small svg{fill:#000 !important}.js-mobile-menu--visible .header__logo svg,.js-scrolled .header__logo svg{fill:#38ccb7}.js-mobile-menu--visible .cart-link .icon,.js-scrolled .cart-link .icon{fill:#000}.language-dropdown{padding:1.2rem 3rem 1rem 0;margin:0 0 0 2rem;position:absolute;top:.4rem;left:48%;transform:translateX(-50%);display:none}@media(min-width: 992px){.language-dropdown{display:inline-block;position:relative;top:initial;left:initial;transform:none}}.language-dropdown .language-dropdown__item-toggle{display:inline-block;padding:0;border:0;background:rgba(0,0,0,0);padding:.4rem 0}.language-dropdown .language-dropdown__item-toggle-flag{display:block;margin-right:.8rem;width:1.8rem;height:1.2rem;float:left}.language-dropdown .language-dropdown__item-toggle-native{display:inline-block;font-size:1.2rem;line-height:1.1;text-transform:uppercase;color:#fff}.language-dropdown .language-dropdown__item-toggle.active{position:relative}.language-dropdown .language-dropdown__item-toggle.active::after{content:"";background-color:rgba(0,0,0,0);position:absolute;top:50%;right:-1.4rem;width:.7rem;height:.7rem;border:0;margin-top:-0.5rem;border-top:.1rem solid #999;border-right:.1rem solid #999;transform:rotate(135deg)}.language-dropdown .language-dropdown__item-toggle::after{content:"";display:block;clear:both}.language-dropdown .language-dropdown__item-toggle-native{display:block;font-weight:300;font-size:1.6rem;text-align:center}.language-dropdown .language-dropdown__sub-menu{display:none;position:absolute;z-index:1000;top:3.6rem;left:-0.6rem;background:#fff}.language-dropdown .language-dropdown__sub-menu .language-dropdown__item{padding:.4rem 1.2rem}.language-dropdown .language-dropdown__sub-menu .language-dropdown__itemimg{margin-top:1rem}.language-dropdown .language-dropdown__sub-menu .language-dropdown__item:hover{background:#f3f2f2}.language-dropdown .language-dropdown__sub-menu .language-dropdown__item-toggle-native{color:#000}.language-dropdown:hover .language-dropdown__sub-menu{display:block}@media all and (max-width: 991px){.force-mobile-header-white .header{background:#fff;color:#000}.force-mobile-header-white .header .primary-menu__item>.menu-item>a,.force-mobile-header-white .header .language-dropdown__item>a,.force-mobile-header-white .header .language-dropdown__item-toggle-native{color:#000;fill:#000}.force-mobile-header-white .header app-basket-small svg{fill:#000 !important}.force-mobile-header-white .header__logo svg{fill:#38ccb7}.force-mobile-header-white .cart-link .icon{fill:#000}}.language-dropdown{padding:1.2rem 3rem 1rem 0;margin:0 0 0 2rem;position:absolute;top:.4rem;left:48%;transform:translateX(-50%);display:none}@media(min-width: 992px){.language-dropdown{display:inline-block;position:relative;top:initial;left:initial;transform:none}}.language-dropdown .language-dropdown__item-toggle{display:inline-block;padding:0;border:0;background:rgba(0,0,0,0);padding:.4rem 0}.language-dropdown .language-dropdown__item-toggle-flag{display:block;margin-right:.8rem;width:1.8rem;height:1.2rem;float:left}.language-dropdown .language-dropdown__item-toggle-native{display:inline-block;font-size:1.2rem;line-height:1.1;text-transform:uppercase;color:#fff}.language-dropdown .language-dropdown__item-toggle.active{position:relative}.language-dropdown .language-dropdown__item-toggle.active::after{content:"";background-color:rgba(0,0,0,0);position:absolute;top:50%;right:-1.4rem;width:.7rem;height:.7rem;border:0;margin-top:-0.5rem;border-top:.1rem solid #999;border-right:.1rem solid #999;transform:rotate(135deg)}.language-dropdown .language-dropdown__item-toggle::after{content:"";display:block;clear:both}.language-dropdown .language-dropdown__item-toggle-native{display:block;font-weight:300;font-size:1.6rem;text-align:center}.language-dropdown .language-dropdown__sub-menu{display:none;position:absolute;z-index:1000;top:3.6rem;left:-0.6rem;background:#fff}.language-dropdown .language-dropdown__sub-menu .language-dropdown__item{padding:.4rem 1.2rem}.language-dropdown .language-dropdown__sub-menu .language-dropdown__itemimg{margin-top:1rem}.language-dropdown .language-dropdown__sub-menu .language-dropdown__item:hover{background:#f3f2f2}.language-dropdown .language-dropdown__sub-menu .language-dropdown__item-toggle-native{color:#000}.language-dropdown:hover .language-dropdown__sub-menu{display:block}.js-mobile-menu--visible{overflow:hidden}.js-mobile-menu--visible .header-mobile{z-index:700;opacity:1;height:100%}.js-mobile-menu--visible .header-mobile__wrap{max-height:initial;opacity:1;overflow:auto}.js-mobile-menu--visible .header__logo{display:none}.js-mobile-menu--visible .language-dropdown{display:inline-block}body:not(.js-scrolled):not(.js-mobile-menu--visible) .header .hamburger-inner,body:not(.js-scrolled):not(.js-mobile-menu--visible) .header .hamburger-inner::before,body:not(.js-scrolled):not(.js-mobile-menu--visible) .header .hamburger-inner::after{background-color:#fff}.header__search-wrapper{padding:0 .8rem 0 0}.header__search-btn{width:30px;height:30px;border:0}.header__search-btn .icon__default--magnifying-glass{fill:#fff;transition:fill .2s ease-in-out}.js-scrolled .header__search-btn .icon__default--magnifying-glass,.js-mobile-menu--visible .header__search-btn .icon__default--magnifying-glass,.header__search-btn.active .icon__default--magnifying-glass,.header__search-btn:hover .icon__default--magnifying-glass{fill:#000}@media all and (max-width: 991px){.force-mobile-header-white .header__search-btn .icon__default--magnifying-glass{fill:#000}}.header__search-form-wrapper{position:absolute;left:0;top:0;z-index:-1;width:100%;padding-bottom:10px;background-color:hsla(0,0%,100%,.92);box-shadow:0 2px 2px 0 silver;opacity:0}.header__search-form-wrapper.active{top:64px;z-index:1;opacity:1}.preview.neos-backend .header__search-form-wrapper{transform:translateY(-100%)}.header__search-form{position:relative;margin:0 auto;width:100%;max-width:1230px;padding-left:60px;padding-right:60px}.header__search-input{width:100%;height:70px;padding:0 15px;color:#38ccb7;border-top-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0);border-bottom-color:#000;border-left-color:rgba(0,0,0,0);font-size:20px}@media(min-width: 992px){.header__search-input{text-align:center}}.header__search-input::placeholder{color:#a2a2a2;opacity:1}.header__search-input:-ms-input-placeholder{color:#a2a2a2}.header__search-input::-ms-input-placeholder{color:#a2a2a2}.header__search-clear{position:absolute;top:30px;right:80px;width:15px;height:15px;display:none}.header__search-clear.active{display:block}.header__search-clear .icon__default--lack{fill:#38ccb7}.header__search-error{display:none;color:#f00058;font-size:14px;padding:10px 15px}@media(min-width: 992px){.header__search-error{text-align:center}}.header__search-error.active{display:block}.hero-baner-show .header{height:91px}@media(min-width: 0px)and (max-width: 991px){.hero-baner-show .header{padding-bottom:27px}}.hero-baner-show .header-mobile-submenu{padding-top:120px}.hero-baner-show .header-wrap{max-height:74px}.hero-baner-show .header__search-form-wrapper.active{top:90px}.hero-baner-show .l-section.l-section-first{min-height:100px}@media(min-width: 0px)and (max-width: 991px){.hero-baner-show .l-section.l-section-first{min-height:94px}}.footer a{color:#38ccb7}.footer-contact{text-align:center;display:block;padding:4rem 0 2rem}@media(min-width: 768px){.footer-contact{text-align:left;display:grid}}.footer-contact h3,.footer-contact .h3{margin-top:1em;margin-bottom:2rem;color:#000;text-align:center}@media(min-width: 768px){.footer-contact h3,.footer-contact .h3{margin-top:0}}.footer-contact .footer-contact__body p{text-align:center}@media(min-width: 768px){.footer-contact .footer-contact__body p{text-align:left}}.footer-contact .footer-contact__newsletter .icon{width:2rem;height:2rem;margin-right:1.2rem}.footer-contact .footer-contact__newsletter .icon-sprite{fill:#fff}.footer-contact .footer-contact__newsletter .footer-contact__body{text-align:center}.footer-contact .footer-contact__social .icon{width:4.4rem;height:4.4rem;padding:.4rem;margin-right:1rem;border-radius:.4rem;background:#39c3dc;background:#38ccb7}.footer-contact .footer-contact__social .icon-sprite{fill:#fff}.footer-contact .footer-contact__social .footer-contact__body{text-align:center}.footer-legal{background:#f3f2f2;padding:2rem 0 .8rem}@media(min-width: 768px){.footer-legal{padding:2rem 0 2rem}}.footer-legal__wrap{margin-bottom:0;text-align:center}.footer-legal__wrap .grid-columns{display:block}.footer-legal__wrap .footer-copy{display:inline-block;margin:0 2rem}.footer-legal__wrap ul{display:inline-block;margin:0}.footer-legal__wrap li{display:inline-block;margin:0 .5rem}@media(min-width: 768px){.footer-legal__wrap li{margin:0 2rem}}.footer-legal__wrap a{color:#000}.go-top{position:fixed;bottom:0;right:-7rem;width:6rem;height:4rem;display:flex;justify-content:center;align-items:center;transition:.2s ease;background-color:#38ccb7;z-index:900;opacity:.7}@media(hover: hover){.go-top:hover{opacity:1;bottom:.3rem}}.no-touchevents .go-top:hover{background-color:#38ccb7}.go-top span{width:1rem;height:1rem;border-top:.2rem solid #fff;border-right:.2rem solid #fff;transform:rotate(-45deg);margin-top:.3rem}.go-top.is-visible{right:0rem;z-index:9999}.pdp-lead{padding:4rem 0 2rem}.pdp-lead__grid{display:grid}@media(min-width: 320px){.pdp-lead__grid{gap:0 .8rem;grid-template-columns:55% 1fr;grid-template-rows:auto auto 1fr auto auto}}@media(min-width: 768px){.pdp-lead__grid{grid-template-columns:minmax(min-content, 48rem) minmax(auto, 35%);grid-template-rows:repeat(5, auto);gap:0 .8rem;justify-content:center}}@media(min-width: 320px){.pdp-lead__image-box{grid-row:1/span 3;grid-column:1}}@media(min-width: 768px){.pdp-lead__image-box{grid-row:1/-1}}.pdp-lead__flag{display:none}.pdp-lead__main-box{text-align:left;padding-left:.8rem}.pdp-lead__title{font-size:2.8rem;font-weight:300;color:#000;margin:0 0 .2em}@media(min-width: 320px){.pdp-lead__title{grid-column:2;grid-row:1}}@media(min-width: 768px){.pdp-lead__title{margin-left:0}}.pdp-lead__subtitle{display:none !important;font-size:1.6rem;font-weight:400;color:#000}.pdp-lead__selectors{margin-bottom:1em}@media(min-width: 320px){.pdp-lead__selectors{grid-row:4;grid-column:1/span 2}}@media(min-width: 768px){.pdp-lead__selectors{grid-row:2;grid-column:2}}.pdp-lead__select{text-align:left}.pdp-lead__select-title{margin-bottom:.4rem;margin-right:.4rem;font-size:1.6rem;font-weight:300;color:#999;display:inline-block}.pdp-lead__select-title::after{content:":";display:inline-block}.pdp-lead__select-group{margin:.4rem 0;display:inline-block}.pdp-lead__select-option{position:relative;display:inline-block;padding:.4rem .8rem;margin-right:.4rem;margin-bottom:.8rem;font-size:1.6rem;background:#f3f2f2;border-radius:.4rem}.pdp-lead__select-option:hover{background:#d1d1d1}.pdp-lead__select-option.active{background:#000;color:#fff}.pdp-lead__select-option.color{border-radius:50%;text-indent:-9999rem;width:1.6em;height:1.6em;transform:scale(0.8);border:1px solid rgba(0,0,0,.2)}.pdp-lead__select-option.color:hover{transform:scale(1)}.pdp-lead__select-option.color.active{transform:scale(1)}.pdp-lead__select-option[disabled]{cursor:default}.pdp-lead__select-option[disabled]::after,.pdp-lead__select-option[disabled]::before{content:"";position:absolute;top:-2px;left:50%;width:.12rem;height:3rem;background-color:#f00058}.pdp-lead__select-option[disabled]::after{transform:rotate(45deg)}.pdp-lead__select-option[disabled]::before{transform:rotate(-45deg)}.pdp-lead__select-option[disabled]:hover{background-color:#f3f2f2}.pdp-lead__select-option.memory[disabled]{cursor:pointer}.pdp-lead__select-option.memory[disabled]::after,.pdp-lead__select-option.memory[disabled]::before{content:none}.pdp-lead__select-option.color[disabled]:hover{transform:scale(0.8)}.pdp-lead__insurance{display:none !important;color:#39c3dc;font-weight:300;padding:.4rem 0 1rem}.pdp-lead__insurance input{display:none}.pdp-lead__insurance .pdp-lead__insurance-item{margin:0 0 .4em}.pdp-lead__insurance label{padding:.2em 0 .2em 1.6em;font-size:1.6rem;position:relative;cursor:pointer}.pdp-lead__insurance label::before{content:"";position:absolute;top:.2em;left:.2rem;display:inline-block;width:1.2em;height:1.2em;border:.1rem solid #39c3dc;border-radius:.2rem}.pdp-lead__insurance label::after{content:"";position:absolute;top:.2em;left:.2rem;margin:.3rem;display:none;width:.8em;height:.8em;filter:invert(64%) sepia(25%) saturate(1120%) hue-rotate(141deg) brightness(102%) contrast(84%);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3e%3c/svg%3e") center no-repeat}.pdp-lead__insurance input:checked+label::after{display:inline-block}.pdp-lead__insurance-title{font-weight:300;font-size:1.6rem;margin:0 0 .2em}.pdp-lead__info{display:inline-block;padding:.2rem .8rem;margin-right:.2em;border-radius:50%;background:#f3f2f2;font-size:1.2rem;position:relative}.pdp-lead__info-tooltip{position:absolute;left:-24rem;top:-0.8rem;width:25rem;padding:.8rem 1.6rem .8rem .8rem;display:none}.pdp-lead__info:hover .pdp-lead__info-tooltip{display:block}.pdp-lead__info-tooltip-body{float:right;font-size:1.4rem;color:#000;background:#f3f2f2;border-radius:.4rem;padding:.4rem}.pdp-lead__price{padding:1rem 0}.pdp-lead__price-total{color:#38ccb7;font-size:2.2rem;line-height:1.2;margin:0}@media(min-width: 768px){.pdp-lead__price-total{font-size:3.2rem}}.pdp-lead__price-discount{color:#f00058;font-size:1.6rem}.pdp-lead__price-discount .pdp-lead__price-wrap{text-decoration:line-through}.pdp-lead__add-to-cart.btn{font-size:1.8rem;text-align:center}@media(min-width: 320px){.pdp-lead__add-to-cart.btn{font-size:1.3rem;padding:.8rem 1.2rem}}@media(min-width: 480px){.pdp-lead__add-to-cart.btn{font-size:1.6rem}}@media(min-width: 768px){.pdp-lead__add-to-cart.btn{font-size:1.8rem;padding-left:1.6rem 2.4rem}}.pdp-lead__properties{list-style:none;margin:2rem 0 1rem;order:3}@media(min-width: 320px){.pdp-lead__properties{order:0;grid-row:5;grid-column:1/span 2}}@media(min-width: 768px){.pdp-lead__properties{grid-column:2}.pdp--accessory .pdp-lead__properties{grid-row:4}}.pdp-lead__properties .icon-sprite{position:absolute;top:.4rem;left:0;display:inline-block;width:2rem;height:1.4rem}.pdp-lead__properties li{position:relative;font-size:1.4rem;padding-left:2.4rem}.pdp-description{width:100%;padding:2rem 0;text-align:left}@media(min-width: 992px){.pdp-description{text-align:right}}.pdp-description__tab{display:flex;justify-content:center;margin:1rem 0}@media(min-width: 768px){.pdp-description__tab{display:none}}.pdp-description__tab label{display:inline-block;padding:.8rem 1.2rem;font-size:1.4rem;color:#38ccb7;border-top:.2rem solid #38ccb7;border-right:.1rem solid #38ccb7;border-bottom:.2rem solid #38ccb7;border-left:.1rem solid #38ccb7}.pdp-description__tab label.active{font-weight:bold;background-color:#38ccb7;color:#fff}.pdp-description__tab label:first-child{border-top-left-radius:2rem;border-bottom-left-radius:2rem;border-left:.2rem solid #38ccb7}.pdp-description__tab label:last-child{border-top-right-radius:2rem;border-bottom-right-radius:2rem;border-right:.2rem solid #38ccb7}.pdp-description__switch{display:none}.pdp-description__switch+div{display:none}@media(min-width: 768px){.pdp-description__switch+div{display:block}}.pdp-description__switch:checked+div{display:block}.pdp-description__title{font-size:2.4rem;font-weight:300;color:#000;text-align:left;line-height:1.3;margin:0 0 .5em;text-align:left}@media(min-width: 768px){.pdp-description__title{font-size:3.2rem}}@media(min-width: 992px){.pdp-description__title{font-size:4.2rem}}.pdp-description__text{font-size:2.4rem;width:100%}@media(min-width: 768px){.pdp-description__text{width:50%}}@media(min-width: 992px){.pdp-description__text{width:60%}}.pdp-description__text.closed{text-overflow:ellipsis;overflow:hidden;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media(min-width: 768px){.pdp-description__text.closed{overflow:visible;-webkit-line-clamp:none}}.pdp-description__toggle-show-more{position:relative;display:flex;align-items:center;padding:10px 20px 0 0;border-width:0;font-size:18px;font-weight:300;text-decoration:underline}@media(min-width: 768px){.pdp-description__toggle-show-more{display:none}}.pdp-description__toggle-show-more .show-more{display:none}.pdp-description__toggle-show-more i{position:absolute;top:8px;right:0;display:inline-block;width:16px;transform:rotate(180deg)}.closed+.pdp-description__toggle-show-more .show-more{display:inline-block}.closed+.pdp-description__toggle-show-more .show-less{display:none}.closed+.pdp-description__toggle-show-more i{top:14px;transform:rotate(0deg)}.pdp-description__switch+div.closed{display:none}.pdp-description__switch:checked+div.closed{display:-webkit-box}@media(min-width: 768px){.pdp-description__switch:checked+div.closed{display:block}}.pdp-description__switch+div+button{display:none}.pdp-description__switch:checked+div+button{display:block}@media(min-width: 768px){.pdp-description__switch:checked+div+button{display:none}}.pdp-description__attributes{float:right;width:100%}@media(min-width: 768px){.pdp-description__attributes{width:50%;margin-left:4rem}}@media(min-width: 992px){.pdp-description__attributes{width:40rem;margin-left:10rem}}.pdp-description__attributes dl{margin-top:-0.5rem;display:flex;flex-direction:row;flex-wrap:wrap}.pdp-description__attributes dl::after{content:"";display:block;clear:both}.pdp-description__attributes dt,.pdp-description__attributes dd{padding:.8rem .4rem;text-align:left;border-bottom:.1rem solid #d1d1d1}.pdp-description__attributes dt{width:60%}.pdp-description__attributes dd{width:40%}.pdp-specifications{display:none !important;width:100%;padding:2rem 0}@media(min-width: 768px){.pdp-specifications{display:flex}}.pdp-specifications__title{font-size:3.2rem;font-weight:300;color:#000}@media(min-width: 768px){.pdp-specifications__title{font-size:4.2rem;width:50%}}.pdp-specifications__title__text{display:block;list-style:none;margin:1em 0 0}@media(min-width: 768px){.pdp-specifications__title__text{width:50%}}.pdp-specifications__title__text li{border-bottom:.1rem solid #f3f2f2;display:flex;justify-content:space-between;color:#999;text-align:left;padding:.4em 0}.pdp-specifications__title__text li strong{display:inline-block;width:50%;font-weight:normal;color:#000}.pdp-lead__status--available,.pdp-lead__status--not-available{display:none;align-items:center;font-size:14px;text-align:left}.pdp-lead__status--available.active,.pdp-lead__status--not-available.active{display:flex;align-items:center;line-height:1em}.pdp-lead__status--available span,.pdp-lead__status--not-available span{display:inline-block;padding-left:5px}.pdp-lead__status--available svg,.pdp-lead__status--not-available svg{width:20px;height:20px;flex-shrink:0}.pdp-lead__status{padding:1rem 0;order:1}@media(min-width: 320px){.pdp-lead__status{order:0;grid-row:2;grid-column:2}}@media(min-width: 768px){.pdp-lead__status{grid-row:3;grid-column:2;padding-left:0;align-self:end}}.pdp-lead__status--available svg{fill:#38ccb7}.pdp-lead__status--not-available svg{fill:#ff2600}.pdp-lead__add-to-cart-wrap.disabled .pdp-lead__add-to-cart{background-color:#d1d1d1}.pdp-lead__add-to-cart-wrap.disabled app-addtocart{pointer-events:none}.pdp--device .pdp-lead__price{display:none}.pdp--device .pdp-lead__price.active{display:block}.pdp-lead__actions{text-align:left;order:2}@media(min-width: 320px){.pdp-lead__actions{order:0;grid-row:3;grid-column:2}}@media(min-width: 768px){.pdp-lead__actions{grid-row:4;grid-column:2;padding-left:0}.pdp--accessory .pdp-lead__actions{grid-row:3}}.recommendation-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);justify-content:center;align-items:center;z-index:999}.recommendation-overlay__content{position:relative;background-color:#fff;box-shadow:0 0 10px rgba(0,0,0,.3);width:100%;max-width:65%;height:100%;max-height:80%;overflow:scroll}.recommendation-overlay__header{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:20px;border-bottom:1px solid #d1d1d1}.recommendation-overlay__product-image{width:100%;max-width:40px}.recommendation-overlay__product-detail{flex:1;padding-left:20px}.recommendation-overlay__product-detail p{margin-bottom:0;font-size:14px;text-wrap:balance}.recommendation-overlay__product-price{color:#f00058;font-weight:bold}.recommendation-overlay__product-hint{color:#38ccb7}.recommendation-overlay__action{display:flex;align-items:center;justify-content:center;width:100%;padding-top:10px}@media(min-width: 768px){.recommendation-overlay__action{width:auto;padding-top:0}}.recommendation-overlay__checkout.btn{padding:.8rem 1.2rem;font-size:14px;text-align:center}.recommendation-overlay__close{position:absolute;top:0;right:0;margin:20px;border-width:0;color:#f00058}@media(min-width: 768px){.recommendation-overlay__close{position:relative;margin:0 0 0 20px}}.recommendation-overlay__continue{color:#fff;background-color:#38ccb7}.recommendation-overlay__insurances{padding:30px 20px 0}.recommendation-overlay__insurances-title{margin-bottom:20px;text-align:left;font-size:18px;text-align:center}@media(min-width: 768px){.recommendation-overlay__insurances-title{text-align:left}}@media(min-width: 768px){.recommendation-overlay__insurances-item-wrapper{display:flex;justify-content:space-between}}.recommendation-overlay__insurances-item{padding:20px;border:1px solid #d1d1d1;margin-bottom:20px}@media(min-width: 768px){.recommendation-overlay__insurances-item{display:flex;width:calc(50% - 20px);margin-bottom:10px}}.recommendation-overlay__insurances-item p{margin-bottom:0;font-size:14px}.recommendation-overlay__insurances-image{width:100%;max-width:80px;text-align:left}@media(min-width: 768px){.recommendation-overlay__insurances-content{width:100%;padding-left:20px}}.recommendation-overlay__insurances-price{color:#f00058;font-weight:bold}.recommendation-overlay__insurances-list{margin-top:5px;margin-bottom:0;padding-left:12px}.recommendation-overlay__insurances-list li{font-size:14px;list-style:disc}.recommendation-overlay__insurances-document{margin-bottom:20px;display:block;font-size:14px;color:#3a5a99}.recommendation-overlay__insurances-action{text-align:left}.recommendation-overlay__insurances-add-to-cart{display:block;padding:.8rem 1.2rem;text-align:center;font-size:14px;border:1px solid #38ccb7;color:#38ccb7;border-radius:.4rem;cursor:pointer}.recommendation-overlay__accessories{padding:20px}.recommendation-overlay__accessories-header{display:flex;justify-content:space-between;align-items:flex-end}.recommendation-overlay__accessories-title{width:100%;font-size:18px;text-align:center}@media(min-width: 768px){.recommendation-overlay__accessories-title{width:auto;text-align:left}}.recommendation-overlay-slider-link{display:block;font-size:18px;color:#38ccb7;text-decoration:underline;text-align:center}.d-sm{display:none}@media(min-width: 768px){.d-sm{display:block}}@media(min-width: 768px){.d-mb{display:none}}.cover{width:100%;position:relative;overflow:hidden}.cover .swiper-container{max-height:54vh}@media(min-width: 992px){.cover .swiper-container{max-height:100%}}.cover .swiper-container img,.cover .swiper-container video{max-height:54vh}@media(min-width: 992px){.cover .swiper-container img,.cover .swiper-container video{max-height:100%}}.cover .teaser__mega .teaser__content,.cover .teaser__mega4 .teaser__content{top:35%;right:20px}@media(min-width: 480px){.cover .teaser__mega .teaser__content,.cover .teaser__mega4 .teaser__content{right:80px}}@media(min-width: 992px){.cover .teaser__mega .teaser__content,.cover .teaser__mega4 .teaser__content{top:25%;right:30%}}.cover__partners{width:100%;padding:1rem 0}@media(min-width: 992px){.cover__partners{padding:1rem 50% 0 0}}.cover__partners h3,.cover__partners .h3{color:#000;text-align:center;font-size:1.6rem;font-weight:700;text-transform:uppercase}.cover__partners-body{max-width:60rem;margin:0 auto;padding:0 1rem;display:flex;align-content:center;justify-content:center}@media(min-width: 992px){.cover__partners-body{max-width:64rem;padding:0 2rem}}.cover__partners-body .icon{display:block;transition:transform 160ms ease-in-out}@media(min-width: 480px){.cover__partners-body .icon{flex:1;width:30%}}.cover__partners-body .icon svg{padding:0 8px;max-height:4rem}@media(min-width: 480px){.cover__partners-body .icon svg{padding:0 16px;max-height:6rem}}.cover__partners-body a.icon:hover{transform:scale(1.1, 1.1)}.cover__products{width:100%;height:100%;position:relative;padding-top:50px;margin-top:-50px}@media(min-width: 992px){.cover__products{position:absolute;z-index:100;bottom:0;right:0;width:50%}}.cover__products-wrap{width:100%;background-color:#000}@media(min-width: 992px){.cover__products-wrap{position:absolute;bottom:0;right:0;width:100%;max-height:60%;border-top-left-radius:6em}}.cover__products-wrap .swiper-container{overflow:visible !important;padding-bottom:0}.cover__products-wrap .swiper-container img{transform:translateY(-15%);max-height:280px}@media(min-width: 992px){.cover__products-wrap .swiper-container img{max-height:100%}}.cover__products-wrap .swiper-wrapper .swiper-slide{overflow:visible !important}.cover__products-wrap .product-slider__itemboxLeft{text-align:right;padding-right:20px;padding-left:20px}@media(min-width: 992px){.cover__products-wrap .product-slider__itemboxLeft{text-align:center;padding-right:0;padding-left:0}}.cover__products-wrap .product-slider__itemboxRight{padding-top:0}.cover__products-wrap .product-slider__pagination{bottom:10px}.cover__products-wrap .product-slider__attributes{padding-top:.5em;padding-bottom:0;font-size:14px}@media(min-width: 480px){.cover__products-wrap .product-slider__attributes{font-size:18px}}.cover__products-wrap .product-slider__productPrice{font-size:24px}@media(min-width: 992px){.cover__products-wrap .product-slider__productPrice{font-size:44px}}.cover__products-wrap .product-slider__productTitle{font-size:18px}@media(min-width: 480px){.cover__products-wrap .product-slider__productTitle{font-size:30px}}@media(min-width: 992px){.cover__products-wrap .product-slider__productButton{margin-left:0}}.cover__products-wrap .swiper-container{max-height:42vh}@media(min-width: 992px){.cover__products-wrap .swiper-container{max-height:100%}}@media(min-width: 992px){.cover__products-wrap .product-slider{max-width:560px}}@media(min-width: 992px){.cover__products-wrap .product-slider__itemboxRight{padding-top:50px}}@media(min-width: 992px){.cover__products-wrap .swiper-container img{width:70%;max-width:24rem;transform:translateY(-15%)}}@media(min-width: 992px){.cover__products-wrap .product-slider .swiper-pagination{margin-top:0}}@media(min-width: 992px){.cover__products-wrap .product-slider__pagination{bottom:30px}}.faq-questions{padding:1rem}.faq-questions__image{width:10rem;height:10rem;position:relative}.faq-questions__image img{width:100%;height:100%;object-fit:cover;border-radius:50%;position:relative;z-index:10}.faq-questions__image::before{content:"";position:absolute;z-index:1;top:0;display:block;width:10rem;height:10rem;border-radius:50%}.faq-questions__content{max-width:36rem;width:70%;text-align:left;padding:0 2rem}.faq-questions__content .faq-questions__title{font-weight:700;color:#39c3dc;font-size:2rem;font-style:italic}.faq-questions__content .faq-questions__text{font-style:italic}.faq-questions__content .faq-questions__author{font-size:1.4rem;font-style:italic}.faq-questions__right{display:flex;justify-content:flex-end}.faq-questions__right .faq-questions__text{font-weight:700;text-align:right;position:relative}.faq-questions__right .faq-questions__author{text-align:right}.faq-questions__right .faq-questions__image::before{background:#38ccb7;right:-10px}.faq-questions__left{display:flex;justify-content:flex-start}.faq-questions__left .faq-questions__image::before{background:#39c3dc;left:-10px}.product-status{width:100%}.product-status-items{width:100%}.product-status-item{padding:1rem}.product-status-item__images .swiper-pagination{display:inline-block;position:absolute;z-index:100;bottom:1.6rem;left:50%;transform:translateX(-50%)}.product-status-item__images .swiper-pagination-bullet{border:.1rem solid #fff;background-color:rgba(0,0,0,0);margin-top:0}.product-status-item__images .swiper-pagination-bullet-active{background-color:#fff}.product-status-item__images .swiper-button-next,.product-status-item__images .swiper-button-prev{display:none}.product-status-item__image-link{position:relative;display:block}.product-status-item__image-link::after{content:"";display:block;width:100%;padding-top:55%}.product-status-item__image-preview{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.product-status-item__title{text-align:center;margin-top:1rem;margin-bottom:0}.product-status-item__stars{text-align:center}.product-status-item__stars .icon-sprite{width:1.6rem;height:1.6rem;fill:#38ccb7}.product-status-item__text{margin-top:1rem;text-align:center}.product-status-item__text p{text-align:center}.quick-access{margin:21px auto;width:100%;max-width:1230px;padding-left:15px;padding-right:15px}.quick-access--compontent-title{font-family:"Roboto",sans-serif;font-size:16px;line-height:19px;font-weight:bold;color:#000;text-align:left;width:100%;margin-bottom:11px}@media(min-width: 768px){.quick-access--compontent-title{font-size:28px;line-height:34px;margin-bottom:24px}}.quick-access--items{display:flex;flex-direction:row;flex-wrap:wrap;column-gap:16px;row-gap:8px}@media(min-width: 768px){.quick-access--items{column-gap:15px}}.quick-access--item{display:flex;flex:1 1 calc(50% - 8px);max-width:calc(50% - 8px);box-sizing:border-box;height:116px;transition:background-color .3s ease;border-radius:10px;position:relative;z-index:10;cursor:pointer}@media screen and (min-width: 850px){.quick-access--item{height:157px;width:25%;flex:1 1 calc(25% - 11.25px);box-sizing:border-box;flex-wrap:nowrap}}.quick-access--item:hover{background-color:rgba(0,0,0,.5)}.quick-access--item .quick-access--item-title{width:100%;padding:10px 10px 0 10px;text-align:left;font:normal normal bold 16px/19px Roboto;letter-spacing:0px;color:#fff;position:relative;z-index:10}@media(min-width: 768px){.quick-access--item .quick-access--item-title{padding:18px 18px 0 18px}}.quick-access--item.quick-access--item-black{background-color:#000}.quick-access--item.quick-access--item-black:hover{background-color:rgba(0,0,0,.5)}.quick-access--item.quick-access--item-green{background-color:#38cdbc}.quick-access--item.quick-access--item-green:hover{background-color:rgba(56,205,188,.5)}.quick-access--item.quick-access--item-gray{background-color:#a6a6a6}.quick-access--item.quick-access--item-gray:hover{background-color:rgba(166,166,166,.5)}.quick-access--item-img{position:absolute;bottom:0;right:40px}@media screen and (max-width: 849px){.quick-access--item-img{right:26px;max-width:66px;max-height:80px}}@media screen and (min-width: 850px){.quick-access--item-img{max-width:170px;max-height:120px}}@media screen and (min-width: 850px)and (max-width: 1050px){.quick-access--item-img{right:20px}}.cart-link{display:inline-block;color:#fff;width:34px;height:34px}.add-to-cart{position:relative}.add-to-cart::before{content:"";display:block;position:absolute;z-index:-1;top:50%;left:50%;opacity:0;width:3rem;height:3rem;margin:-1.8rem 0 0 -1.5rem;background-position:center;background-repeat:no-repeat;transition:opacity 200ms ease-in-out;filter:invert(100%) sepia(0%) saturate(7496%) hue-rotate(258deg) brightness(96%) contrast(92%)}.add-to-cart .btn{transition:color 100ms ease-in-out}.add-to-cart .error-msg{display:block;position:absolute;z-index:100;top:4rem;left:50%;transform:translateX(-50%);width:100%;margin:.4rem 0 1rem;font-size:1.4rem;color:#fff;padding:.8em;background:#f00058;opacity:0;transition:opacity 400ms ease-in-out}.add-to-cart .error-msg.active{opacity:1;z-index:100}.add-to-cart .error-msg::before{content:"";display:block;position:absolute;width:0;height:0;border-left:1rem solid rgba(0,0,0,0);border-right:1rem solid rgba(0,0,0,0);border-bottom:1rem solid #f00058;position:absolute;top:-1rem}.add-to-cart.on-top .error-msg{top:inherit;bottom:4rem}.add-to-cart.on-top .error-msg::before{top:inherit;bottom:-1rem;border-top:1rem solid #f00058;border-bottom:0 none}.add-to-cart.success .btn{color:hsla(0,0%,100%,0);background-color:#39c3dc}.add-to-cart.success::before{opacity:1;z-index:10;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3e%3c/svg%3e") center no-repeat}.add-to-cart.error .btn{color:hsla(0,0%,100%,0);background-color:#f00058}.add-to-cart.error::before{opacity:1;z-index:10;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cg%3e%3cpath d='M512 59.076L452.922 0 256 196.922 59.076 0 0 59.076 196.922 256 0 452.922 59.076 512 256 315.076 452.922 512 512 452.922 315.076 256z'/%3e%3c/g%3e%3c/svg%3e") center no-repeat}app-product-listing,app-product-listing-search{display:block;min-height:1500px}app-basket-small{display:block;min-height:34px}app-multiple-product-slider{display:block;min-height:455px}app-product-slider{display:block;min-height:355px}@media(min-width: 0px)and (max-width: 767px){app-product-slider{min-height:280px}}app-video-player{display:block;min-height:160px}@media all and (min-width: 786px){app-video-player{min-height:340px}}@media all and (min-width: 1024px){app-video-player{min-height:460px}}@media all and (min-width: 1366px){app-video-player{min-height:560px}}app-cart{display:block;min-height:620px}@media all and (min-width: 1024px){app-cart{min-height:320px}}app-checkout{display:block;min-height:1400px}@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-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}/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */.hamburger{padding:8px 8px;display:inline-block;cursor:pointer;transition-property:opacity,filter;transition-duration:.15s;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:rgba(0,0,0,0);border:0;margin:0;overflow:visible}.hamburger:hover{opacity:.7}.hamburger.is-active:hover{opacity:.7}.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner::before,.hamburger.is-active .hamburger-inner::after{background-color:#000}.hamburger-box{width:32px;height:21px;display:inline-block;position:relative}.hamburger-inner{display:block;top:50%;margin-top:-1.5px}.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after{width:32px;height:3px;background-color:#000;border-radius:4px;position:absolute;transition-property:transform;transition-duration:.15s;transition-timing-function:ease}.hamburger-inner::before,.hamburger-inner::after{content:"";display:block}.hamburger-inner::before{top:-9px}.hamburger-inner::after{bottom:-9px}@media all and (max-width: 991px){.force-mobile-header-white .hamburger-inner{background-color:#000 !important}.force-mobile-header-white .hamburger-inner::before,.force-mobile-header-white .hamburger-inner::after{background-color:#000 !important}}.hamburger--3dx .hamburger-box{perspective:64px}.hamburger--3dx .hamburger-inner{transition:transform .15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dx .hamburger-inner::before,.hamburger--3dx .hamburger-inner::after{transition:transform 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dx.is-active .hamburger-inner{background-color:rgba(0,0,0,0) !important;transform:rotateY(180deg)}.hamburger--3dx.is-active .hamburger-inner::before{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--3dx.is-active .hamburger-inner::after{transform:translate3d(0, -9px, 0) rotate(-45deg)}.hamburger--3dx-r .hamburger-box{perspective:64px}.hamburger--3dx-r .hamburger-inner{transition:transform .15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dx-r .hamburger-inner::before,.hamburger--3dx-r .hamburger-inner::after{transition:transform 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dx-r.is-active .hamburger-inner{background-color:rgba(0,0,0,0) !important;transform:rotateY(-180deg)}.hamburger--3dx-r.is-active .hamburger-inner::before{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--3dx-r.is-active .hamburger-inner::after{transform:translate3d(0, -9px, 0) rotate(-45deg)}.hamburger--3dy .hamburger-box{perspective:64px}.hamburger--3dy .hamburger-inner{transition:transform .15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dy .hamburger-inner::before,.hamburger--3dy .hamburger-inner::after{transition:transform 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dy.is-active .hamburger-inner{background-color:rgba(0,0,0,0) !important;transform:rotateX(-180deg)}.hamburger--3dy.is-active .hamburger-inner::before{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--3dy.is-active .hamburger-inner::after{transform:translate3d(0, -9px, 0) rotate(-45deg)}.hamburger--3dy-r .hamburger-box{perspective:64px}.hamburger--3dy-r .hamburger-inner{transition:transform .15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dy-r .hamburger-inner::before,.hamburger--3dy-r .hamburger-inner::after{transition:transform 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dy-r.is-active .hamburger-inner{background-color:rgba(0,0,0,0) !important;transform:rotateX(180deg)}.hamburger--3dy-r.is-active .hamburger-inner::before{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--3dy-r.is-active .hamburger-inner::after{transform:translate3d(0, -9px, 0) rotate(-45deg)}.hamburger--3dxy .hamburger-box{perspective:64px}.hamburger--3dxy .hamburger-inner{transition:transform .15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dxy .hamburger-inner::before,.hamburger--3dxy .hamburger-inner::after{transition:transform 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dxy.is-active .hamburger-inner{background-color:rgba(0,0,0,0) !important;transform:rotateX(180deg) rotateY(180deg)}.hamburger--3dxy.is-active .hamburger-inner::before{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--3dxy.is-active .hamburger-inner::after{transform:translate3d(0, -9px, 0) rotate(-45deg)}.hamburger--3dxy-r .hamburger-box{perspective:64px}.hamburger--3dxy-r .hamburger-inner{transition:transform .15s cubic-bezier(0.645, 0.045, 0.355, 1),background-color 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dxy-r .hamburger-inner::before,.hamburger--3dxy-r .hamburger-inner::after{transition:transform 0s .1s cubic-bezier(0.645, 0.045, 0.355, 1)}.hamburger--3dxy-r.is-active .hamburger-inner{background-color:rgba(0,0,0,0) !important;transform:rotateX(180deg) rotateY(180deg) rotateZ(-180deg)}.hamburger--3dxy-r.is-active .hamburger-inner::before{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--3dxy-r.is-active .hamburger-inner::after{transform:translate3d(0, -9px, 0) rotate(-45deg)}.hamburger--arrow.is-active .hamburger-inner::before{transform:translate3d(-6.4px, 0, 0) rotate(-45deg) scale(0.7, 1)}.hamburger--arrow.is-active .hamburger-inner::after{transform:translate3d(-6.4px, 0, 0) rotate(45deg) scale(0.7, 1)}.hamburger--arrow-r.is-active .hamburger-inner::before{transform:translate3d(6.4px, 0, 0) rotate(45deg) scale(0.7, 1)}.hamburger--arrow-r.is-active .hamburger-inner::after{transform:translate3d(6.4px, 0, 0) rotate(-45deg) scale(0.7, 1)}.hamburger--arrowalt .hamburger-inner::before{transition:top .1s .1s ease,transform .1s cubic-bezier(0.165, 0.84, 0.44, 1)}.hamburger--arrowalt .hamburger-inner::after{transition:bottom .1s .1s ease,transform .1s cubic-bezier(0.165, 0.84, 0.44, 1)}.hamburger--arrowalt.is-active .hamburger-inner::before{top:0;transform:translate3d(-6.4px, -8px, 0) rotate(-45deg) scale(0.7, 1);transition:top .1s ease,transform .1s .1s cubic-bezier(0.895, 0.03, 0.685, 0.22)}.hamburger--arrowalt.is-active .hamburger-inner::after{bottom:0;transform:translate3d(-6.4px, 8px, 0) rotate(45deg) scale(0.7, 1);transition:bottom .1s ease,transform .1s .1s cubic-bezier(0.895, 0.03, 0.685, 0.22)}.hamburger--arrowalt-r .hamburger-inner::before{transition:top .1s .1s ease,transform .1s cubic-bezier(0.165, 0.84, 0.44, 1)}.hamburger--arrowalt-r .hamburger-inner::after{transition:bottom .1s .1s ease,transform .1s cubic-bezier(0.165, 0.84, 0.44, 1)}.hamburger--arrowalt-r.is-active .hamburger-inner::before{top:0;transform:translate3d(6.4px, -8px, 0) rotate(45deg) scale(0.7, 1);transition:top .1s ease,transform .1s .1s cubic-bezier(0.895, 0.03, 0.685, 0.22)}.hamburger--arrowalt-r.is-active .hamburger-inner::after{bottom:0;transform:translate3d(6.4px, 8px, 0) rotate(-45deg) scale(0.7, 1);transition:bottom .1s ease,transform .1s .1s cubic-bezier(0.895, 0.03, 0.685, 0.22)}.hamburger--arrowturn.is-active .hamburger-inner{transform:rotate(-180deg)}.hamburger--arrowturn.is-active .hamburger-inner::before{transform:translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1)}.hamburger--arrowturn.is-active .hamburger-inner::after{transform:translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1)}.hamburger--arrowturn-r.is-active .hamburger-inner{transform:rotate(-180deg)}.hamburger--arrowturn-r.is-active .hamburger-inner::before{transform:translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1)}.hamburger--arrowturn-r.is-active .hamburger-inner::after{transform:translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1)}.hamburger--boring .hamburger-inner,.hamburger--boring .hamburger-inner::before,.hamburger--boring .hamburger-inner::after{transition-property:none}.hamburger--boring.is-active .hamburger-inner{transform:rotate(45deg)}.hamburger--boring.is-active .hamburger-inner::before{top:0;opacity:0}.hamburger--boring.is-active .hamburger-inner::after{bottom:0;transform:rotate(-90deg)}.hamburger--collapse .hamburger-inner{top:auto;bottom:0;transition-duration:.13s;transition-delay:.13s;transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--collapse .hamburger-inner::after{top:-18px;transition:top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity .1s linear}.hamburger--collapse .hamburger-inner::before{transition:top .12s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--collapse.is-active .hamburger-inner{transform:translate3d(0, -9px, 0) rotate(-45deg);transition-delay:.22s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--collapse.is-active .hamburger-inner::after{top:0;opacity:0;transition:top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity .1s .22s linear}.hamburger--collapse.is-active .hamburger-inner::before{top:0;transform:rotate(-90deg);transition:top .1s .16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform .13s .25s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--collapse-r .hamburger-inner{top:auto;bottom:0;transition-duration:.13s;transition-delay:.13s;transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--collapse-r .hamburger-inner::after{top:-18px;transition:top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity .1s linear}.hamburger--collapse-r .hamburger-inner::before{transition:top .12s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--collapse-r.is-active .hamburger-inner{transform:translate3d(0, -9px, 0) rotate(45deg);transition-delay:.22s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--collapse-r.is-active .hamburger-inner::after{top:0;opacity:0;transition:top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity .1s .22s linear}.hamburger--collapse-r.is-active .hamburger-inner::before{top:0;transform:rotate(90deg);transition:top .1s .16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform .13s .25s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--elastic .hamburger-inner{top:1.5px;transition-duration:.275s;transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic .hamburger-inner::before{top:9px;transition:opacity .125s .275s ease}.hamburger--elastic .hamburger-inner::after{top:18px;transition:transform .275s cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic.is-active .hamburger-inner{transform:translate3d(0, 9px, 0) rotate(135deg);transition-delay:.075s}.hamburger--elastic.is-active .hamburger-inner::before{transition-delay:0s;opacity:0}.hamburger--elastic.is-active .hamburger-inner::after{transform:translate3d(0, -18px, 0) rotate(-270deg);transition-delay:.075s}.hamburger--elastic-r .hamburger-inner{top:1.5px;transition-duration:.275s;transition-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic-r .hamburger-inner::before{top:9px;transition:opacity .125s .275s ease}.hamburger--elastic-r .hamburger-inner::after{top:18px;transition:transform .275s cubic-bezier(0.68, -0.55, 0.265, 1.55)}.hamburger--elastic-r.is-active .hamburger-inner{transform:translate3d(0, 9px, 0) rotate(-135deg);transition-delay:.075s}.hamburger--elastic-r.is-active .hamburger-inner::before{transition-delay:0s;opacity:0}.hamburger--elastic-r.is-active .hamburger-inner::after{transform:translate3d(0, -18px, 0) rotate(270deg);transition-delay:.075s}.hamburger--emphatic{overflow:hidden}.hamburger--emphatic .hamburger-inner{transition:background-color .125s .175s ease-in}.hamburger--emphatic .hamburger-inner::before{left:0;transition:transform .125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top .05s .125s linear,left .125s .175s ease-in}.hamburger--emphatic .hamburger-inner::after{top:9px;right:0;transition:transform .125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top .05s .125s linear,right .125s .175s ease-in}.hamburger--emphatic.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:rgba(0,0,0,0) !important}.hamburger--emphatic.is-active .hamburger-inner::before{left:-64px;top:-64px;transform:translate3d(64px, 64px, 0) rotate(45deg);transition:left .125s ease-out,top .05s .125s linear,transform .125s .175s cubic-bezier(0.075, 0.82, 0.165, 1)}.hamburger--emphatic.is-active .hamburger-inner::after{right:-64px;top:-64px;transform:translate3d(-64px, 64px, 0) rotate(-45deg);transition:right .125s ease-out,top .05s .125s linear,transform .125s .175s cubic-bezier(0.075, 0.82, 0.165, 1)}.hamburger--emphatic-r{overflow:hidden}.hamburger--emphatic-r .hamburger-inner{transition:background-color .125s .175s ease-in}.hamburger--emphatic-r .hamburger-inner::before{left:0;transition:transform .125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top .05s .125s linear,left .125s .175s ease-in}.hamburger--emphatic-r .hamburger-inner::after{top:9px;right:0;transition:transform .125s cubic-bezier(0.6, 0.04, 0.98, 0.335),top .05s .125s linear,right .125s .175s ease-in}.hamburger--emphatic-r.is-active .hamburger-inner{transition-delay:0s;transition-timing-function:ease-out;background-color:rgba(0,0,0,0) !important}.hamburger--emphatic-r.is-active .hamburger-inner::before{left:-64px;top:64px;transform:translate3d(64px, -64px, 0) rotate(-45deg);transition:left .125s ease-out,top .05s .125s linear,transform .125s .175s cubic-bezier(0.075, 0.82, 0.165, 1)}.hamburger--emphatic-r.is-active .hamburger-inner::after{right:-64px;top:64px;transform:translate3d(-64px, -64px, 0) rotate(45deg);transition:right .125s ease-out,top .05s .125s linear,transform .125s .175s cubic-bezier(0.075, 0.82, 0.165, 1)}.hamburger--minus .hamburger-inner::before,.hamburger--minus .hamburger-inner::after{transition:bottom .08s 0s ease-out,top .08s 0s ease-out,opacity 0s linear}.hamburger--minus.is-active .hamburger-inner::before,.hamburger--minus.is-active .hamburger-inner::after{opacity:0;transition:bottom .08s ease-out,top .08s ease-out,opacity 0s .08s linear}.hamburger--minus.is-active .hamburger-inner::before{top:0}.hamburger--minus.is-active .hamburger-inner::after{bottom:0}.hamburger--slider .hamburger-inner{top:1.5px}.hamburger--slider .hamburger-inner::before{top:9px;transition-property:transform,opacity;transition-timing-function:ease;transition-duration:.15s}.hamburger--slider .hamburger-inner::after{top:18px}.hamburger--slider.is-active .hamburger-inner{transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--slider.is-active .hamburger-inner::before{transform:rotate(-45deg) translate3d(-4.5714285714px, -6px, 0);opacity:0}.hamburger--slider.is-active .hamburger-inner::after{transform:translate3d(0, -18px, 0) rotate(-90deg)}.hamburger--slider-r .hamburger-inner{top:1.5px}.hamburger--slider-r .hamburger-inner::before{top:9px;transition-property:transform,opacity;transition-timing-function:ease;transition-duration:.15s}.hamburger--slider-r .hamburger-inner::after{top:18px}.hamburger--slider-r.is-active .hamburger-inner{transform:translate3d(0, 9px, 0) rotate(-45deg)}.hamburger--slider-r.is-active .hamburger-inner::before{transform:rotate(45deg) translate3d(4.5714285714px, -6px, 0);opacity:0}.hamburger--slider-r.is-active .hamburger-inner::after{transform:translate3d(0, -18px, 0) rotate(90deg)}.hamburger--spin .hamburger-inner{transition-duration:.22s;transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spin .hamburger-inner::before{transition:top .1s .25s ease-in,opacity .1s ease-in}.hamburger--spin .hamburger-inner::after{transition:bottom .1s .25s ease-in,transform .22s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spin.is-active .hamburger-inner{transform:rotate(225deg);transition-delay:.12s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--spin.is-active .hamburger-inner::before{top:0;opacity:0;transition:top .1s ease-out,opacity .1s .12s ease-out}.hamburger--spin.is-active .hamburger-inner::after{bottom:0;transform:rotate(-90deg);transition:bottom .1s ease-out,transform .22s .12s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--spin-r .hamburger-inner{transition-duration:.22s;transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spin-r .hamburger-inner::before{transition:top .1s .25s ease-in,opacity .1s ease-in}.hamburger--spin-r .hamburger-inner::after{transition:bottom .1s .25s ease-in,transform .22s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spin-r.is-active .hamburger-inner{transform:rotate(-225deg);transition-delay:.12s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--spin-r.is-active .hamburger-inner::before{top:0;opacity:0;transition:top .1s ease-out,opacity .1s .12s ease-out}.hamburger--spin-r.is-active .hamburger-inner::after{bottom:0;transform:rotate(90deg);transition:bottom .1s ease-out,transform .22s .12s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--spring .hamburger-inner{top:1.5px;transition:background-color 0s .13s linear}.hamburger--spring .hamburger-inner::before{top:9px;transition:top .1s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spring .hamburger-inner::after{top:18px;transition:top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spring.is-active .hamburger-inner{transition-delay:.22s;background-color:rgba(0,0,0,0) !important}.hamburger--spring.is-active .hamburger-inner::before{top:0;transition:top .1s .15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform .13s .22s cubic-bezier(0.215, 0.61, 0.355, 1);transform:translate3d(0, 9px, 0) rotate(45deg)}.hamburger--spring.is-active .hamburger-inner::after{top:0;transition:top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform .13s .22s cubic-bezier(0.215, 0.61, 0.355, 1);transform:translate3d(0, 9px, 0) rotate(-45deg)}.hamburger--spring-r .hamburger-inner{top:auto;bottom:0;transition-duration:.13s;transition-delay:0s;transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spring-r .hamburger-inner::after{top:-18px;transition:top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),opacity 0s linear}.hamburger--spring-r .hamburger-inner::before{transition:top .1s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--spring-r.is-active .hamburger-inner{transform:translate3d(0, -9px, 0) rotate(-45deg);transition-delay:.22s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--spring-r.is-active .hamburger-inner::after{top:0;opacity:0;transition:top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),opacity 0s .22s linear}.hamburger--spring-r.is-active .hamburger-inner::before{top:0;transform:rotate(90deg);transition:top .1s .15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),transform .13s .22s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--stand .hamburger-inner{transition:transform .075s .15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s .075s linear}.hamburger--stand .hamburger-inner::before{transition:top .075s .075s ease-in,transform .075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--stand .hamburger-inner::after{transition:bottom .075s .075s ease-in,transform .075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--stand.is-active .hamburger-inner{transform:rotate(90deg);background-color:rgba(0,0,0,0) !important;transition:transform .075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s .15s linear}.hamburger--stand.is-active .hamburger-inner::before{top:0;transform:rotate(-45deg);transition:top .075s .1s ease-out,transform .075s .15s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--stand.is-active .hamburger-inner::after{bottom:0;transform:rotate(45deg);transition:bottom .075s .1s ease-out,transform .075s .15s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--stand-r .hamburger-inner{transition:transform .075s .15s cubic-bezier(0.55, 0.055, 0.675, 0.19),background-color 0s .075s linear}.hamburger--stand-r .hamburger-inner::before{transition:top .075s .075s ease-in,transform .075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--stand-r .hamburger-inner::after{transition:bottom .075s .075s ease-in,transform .075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--stand-r.is-active .hamburger-inner{transform:rotate(-90deg);background-color:rgba(0,0,0,0) !important;transition:transform .075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),background-color 0s .15s linear}.hamburger--stand-r.is-active .hamburger-inner::before{top:0;transform:rotate(-45deg);transition:top .075s .1s ease-out,transform .075s .15s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--stand-r.is-active .hamburger-inner::after{bottom:0;transform:rotate(45deg);transition:bottom .075s .1s ease-out,transform .075s .15s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--squeeze .hamburger-inner{transition-duration:.075s;transition-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--squeeze .hamburger-inner::before{transition:top .075s .12s ease,opacity .075s ease}.hamburger--squeeze .hamburger-inner::after{transition:bottom .075s .12s ease,transform .075s cubic-bezier(0.55, 0.055, 0.675, 0.19)}.hamburger--squeeze.is-active .hamburger-inner{transform:rotate(45deg);transition-delay:.12s;transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--squeeze.is-active .hamburger-inner::before{top:0;opacity:0;transition:top .075s ease,opacity .075s .12s ease}.hamburger--squeeze.is-active .hamburger-inner::after{bottom:0;transform:rotate(-90deg);transition:bottom .075s ease,transform .075s .12s cubic-bezier(0.215, 0.61, 0.355, 1)}.hamburger--vortex .hamburger-inner{transition-duration:.2s;transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1)}.hamburger--vortex .hamburger-inner::before,.hamburger--vortex .hamburger-inner::after{transition-duration:0s;transition-delay:.1s;transition-timing-function:linear}.hamburger--vortex .hamburger-inner::before{transition-property:top,opacity}.hamburger--vortex .hamburger-inner::after{transition-property:bottom,transform}.hamburger--vortex.is-active .hamburger-inner{transform:rotate(765deg);transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1)}.hamburger--vortex.is-active .hamburger-inner::before,.hamburger--vortex.is-active .hamburger-inner::after{transition-delay:0s}.hamburger--vortex.is-active .hamburger-inner::before{top:0;opacity:0}.hamburger--vortex.is-active .hamburger-inner::after{bottom:0;transform:rotate(90deg)}.hamburger--vortex-r .hamburger-inner{transition-duration:.2s;transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1)}.hamburger--vortex-r .hamburger-inner::before,.hamburger--vortex-r .hamburger-inner::after{transition-duration:0s;transition-delay:.1s;transition-timing-function:linear}.hamburger--vortex-r .hamburger-inner::before{transition-property:top,opacity}.hamburger--vortex-r .hamburger-inner::after{transition-property:bottom,transform}.hamburger--vortex-r.is-active .hamburger-inner{transform:rotate(-765deg);transition-timing-function:cubic-bezier(0.19, 1, 0.22, 1)}.hamburger--vortex-r.is-active .hamburger-inner::before,.hamburger--vortex-r.is-active .hamburger-inner::after{transition-delay:0s}.hamburger--vortex-r.is-active .hamburger-inner::before{top:0;opacity:0}.hamburger--vortex-r.is-active .hamburger-inner::after{bottom:0;transform:rotate(-90deg)}

/*# sourceMappingURL=main.bundle.css.map*/