/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9 !important;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(/img/loader.gif) no-repeat center center;
}

#swipebox-bottom-bar, #swipebox-top-bar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 7;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: -50px;
}

#swipebox-bottom-bar p {
  text-align: center;
  margin: 10px;
}

#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev, #swipebox-next, #swipebox-close {
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 29px;
  right: 26px;
  position: absolute;
  z-index: 8;
  background-position: center center;
  background-image: url(/img/close_icon.svg);
  background-color: white;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled, #swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
  animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
  animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before,
.swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 7;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
  box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
  box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #fff;
}

#swipebox-bottom-bar, #swipebox-top-bar {
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}

@charset "UTF-8";*,:after,:before{box-sizing:inherit}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;box-sizing:border-box;height:100%;font-size:16px;-webkit-tap-highlight-color:rgba(0,0,0,0);scroll-behavior:smooth}body{margin:0;min-height:100vh;overflow-y:scroll;position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}.slick-slide img,article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}.slick-slide.slick-loading img,[hidden],template{display:none}a,mark{color:#000}a{background-color:transparent;outline:none;white-space:nowrap}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button{font:inherit;overflow:visible}input,optgroup,select,textarea{font:inherit;margin:0}button,select{text-transform:none}html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}legend,td,th{padding:0}.grid{list-style:none;margin-left:-20px}.grid__col--10-of-10,.grid__col--12-of-12,.grid__col--14-of-14,.grid__col--2-of-2,.grid__col--3-of-3,.grid__col--4-of-4,.grid__col--5-of-5,.grid__col--6-of-6,.grid__col--8-of-8,header nav{width:100%}.grid__col--1-of-2,.grid__col--2-of-4,.grid__col--3-of-6,.grid__col--4-of-8,.grid__col--5-of-10,.grid__col--6-of-12,.grid__col--7-of-14{width:50%}.grid__col--1-of-3,.grid__col--2-of-6,.grid__col--4-of-12{width:33.33333%}.grid__col--2-of-3,.grid__col--4-of-6,.grid__col--8-of-12{width:66.66667%}.grid__col--1-of-4,.grid__col--2-of-8,.grid__col--3-of-12{width:25%}.grid__col--3-of-4,.grid__col--6-of-8,.grid__col--9-of-12{width:75%}.grid__col--push-10-of-10,.grid__col--push-12-of-12,.grid__col--push-14-of-14,.grid__col--push-2-of-2,.grid__col--push-3-of-3,.grid__col--push-4-of-4,.grid__col--push-5-of-5,.grid__col--push-6-of-6,.grid__col--push-8-of-8{margin-left:100%}.grid__col--push-1-of-2,.grid__col--push-2-of-4,.grid__col--push-3-of-6,.grid__col--push-4-of-8,.grid__col--push-5-of-10,.grid__col--push-6-of-12,.grid__col--push-7-of-14{margin-left:50%}.grid__col--push-1-of-3,.grid__col--push-2-of-6,.grid__col--push-4-of-12{margin-left:33.33333%}.grid__col--push-2-of-3,.grid__col--push-4-of-6,.grid__col--push-8-of-12{margin-left:66.66667%}.grid__col--push-1-of-4,.grid__col--push-2-of-8,.grid__col--push-3-of-12{margin-left:25%}.grid__col--push-3-of-4,.grid__col--push-6-of-8,.grid__col--push-9-of-12{margin-left:75%}.grid__col--pull-10-of-10,.grid__col--pull-12-of-12,.grid__col--pull-14-of-14,.grid__col--pull-2-of-2,.grid__col--pull-3-of-3,.grid__col--pull-4-of-4,.grid__col--pull-5-of-5,.grid__col--pull-6-of-6,.grid__col--pull-8-of-8{margin-left:-100%}.grid__col--pull-1-of-2,.grid__col--pull-2-of-4,.grid__col--pull-3-of-6,.grid__col--pull-4-of-8,.grid__col--pull-5-of-10,.grid__col--pull-6-of-12,.grid__col--pull-7-of-14{margin-left:-50%}.grid__col--pull-1-of-3,.grid__col--pull-2-of-6,.grid__col--pull-4-of-12{margin-left:-33.33333%}.grid__col--pull-2-of-3,.grid__col--pull-4-of-6,.grid__col--pull-8-of-12{margin-left:-66.66667%}.grid__col--pull-1-of-4,.grid__col--pull-2-of-8,.grid__col--pull-3-of-12{margin-left:-25%}.grid__col--pull-3-of-4,.grid__col--pull-6-of-8,.grid__col--pull-9-of-12{margin-left:-75%}.grid__col--1-of-5{width:20%}.grid__col--push-1-of-5{margin-left:20%}.grid__col--pull-1-of-5{margin-left:-20%}.grid__col--2-of-5{width:40%}.grid__col--push-2-of-5{margin-left:40%}.grid__col--pull-2-of-5{margin-left:-40%}.grid__col--3-of-5{width:60%}.grid__col--push-3-of-5{margin-left:60%}.grid__col--pull-3-of-5{margin-left:-60%}.grid__col--4-of-5{width:80%}.grid__col--push-4-of-5{margin-left:80%}.grid__col--pull-4-of-5{margin-left:-80%}.grid__col--1-of-6{width:16.66667%}.grid__col--push-1-of-6{margin-left:16.66667%}.grid__col--pull-1-of-6{margin-left:-16.66667%}.grid__col--5-of-6{width:83.33333%}.grid__col--push-5-of-6{margin-left:83.33333%}.grid__col--pull-5-of-6{margin-left:-83.33333%}.grid__col--1-of-8{width:12.5%}.grid__col--push-1-of-8{margin-left:12.5%}.grid__col--pull-1-of-8{margin-left:-12.5%}.grid__col--3-of-8{width:37.5%}.grid__col--push-3-of-8{margin-left:37.5%}.grid__col--pull-3-of-8{margin-left:-37.5%}.grid__col--5-of-8{width:62.5%}.grid__col--push-5-of-8{margin-left:62.5%}.grid__col--pull-5-of-8{margin-left:-62.5%}.grid__col--7-of-8{width:87.5%}.grid__col--push-7-of-8{margin-left:87.5%}.grid__col--pull-7-of-8{margin-left:-87.5%}.grid__col--1-of-10{width:10%}.grid__col--push-1-of-10{margin-left:10%}.grid__col--pull-1-of-10{margin-left:-10%}.grid__col--2-of-10{width:20%}.grid__col--push-2-of-10{margin-left:20%}.grid__col--pull-2-of-10{margin-left:-20%}.grid__col--3-of-10{width:30%}.grid__col--push-3-of-10{margin-left:30%}.grid__col--pull-3-of-10{margin-left:-30%}.grid__col--4-of-10{width:40%}.grid__col--push-4-of-10{margin-left:40%}.grid__col--pull-4-of-10{margin-left:-40%}.grid__col--6-of-10{width:60%}.grid__col--push-6-of-10{margin-left:60%}.grid__col--pull-6-of-10{margin-left:-60%}.grid__col--7-of-10{width:70%}.grid__col--push-7-of-10{margin-left:70%}.grid__col--pull-7-of-10{margin-left:-70%}.grid__col--8-of-10{width:80%}.grid__col--push-8-of-10{margin-left:80%}.grid__col--pull-8-of-10{margin-left:-80%}.grid__col--9-of-10{width:90%}.grid__col--push-9-of-10{margin-left:90%}.grid__col--pull-9-of-10{margin-left:-90%}.grid__col--1-of-12{width:8.33333%}.grid__col--push-1-of-12{margin-left:8.33333%}.grid__col--pull-1-of-12{margin-left:-8.33333%}.grid__col--2-of-12{width:16.66667%}.grid__col--push-2-of-12{margin-left:16.66667%}.grid__col--pull-2-of-12{margin-left:-16.66667%}.grid__col--5-of-12{width:41.66667%}.grid__col--push-5-of-12{margin-left:41.66667%}.grid__col--pull-5-of-12{margin-left:-41.66667%}.grid__col--7-of-12{width:58.33333%}.grid__col--push-7-of-12{margin-left:58.33333%}.grid__col--pull-7-of-12{margin-left:-58.33333%}.grid__col--10-of-12{width:83.33333%}.grid__col--push-10-of-12{margin-left:83.33333%}.grid__col--pull-10-of-12{margin-left:-83.33333%}.grid__col--11-of-12{width:91.66667%}.grid__col--push-11-of-12{margin-left:91.66667%}.grid__col--pull-11-of-12{margin-left:-91.66667%}.grid__col--1-of-14{width:7.14286%}.grid__col--push-1-of-14{margin-left:7.14286%}.grid__col--pull-1-of-14{margin-left:-7.14286%}.grid__col--2-of-14{width:14.28571%}.grid__col--push-2-of-14{margin-left:14.28571%}.grid__col--pull-2-of-14{margin-left:-14.28571%}.grid__col--3-of-14{width:21.42857%}.grid__col--push-3-of-14{margin-left:21.42857%}.grid__col--pull-3-of-14{margin-left:-21.42857%}.grid__col--4-of-14{width:28.57143%}.grid__col--push-4-of-14{margin-left:28.57143%}.grid__col--pull-4-of-14{margin-left:-28.57143%}.grid__col--5-of-14{width:35.71429%}.grid__col--push-5-of-14{margin-left:35.71429%}.grid__col--pull-5-of-14{margin-left:-35.71429%}.grid__col--6-of-14{width:42.85714%}.grid__col--push-6-of-14{margin-left:42.85714%}.grid__col--pull-6-of-14{margin-left:-42.85714%}.grid__col--8-of-14{width:57.14286%}.grid__col--push-8-of-14{margin-left:57.14286%}.grid__col--pull-8-of-14{margin-left:-57.14286%}.grid__col--9-of-14{width:64.28571%}.grid__col--push-9-of-14{margin-left:64.28571%}.grid__col--pull-9-of-14{margin-left:-64.28571%}.grid__col--10-of-14{width:71.42857%}.grid__col--push-10-of-14{margin-left:71.42857%}.grid__col--pull-10-of-14{margin-left:-71.42857%}.grid__col--11-of-14{width:78.57143%}.grid__col--push-11-of-14{margin-left:78.57143%}.grid__col--pull-11-of-14{margin-left:-78.57143%}.grid__col--12-of-14{width:85.71429%}.grid__col--push-12-of-14{margin-left:85.71429%}.grid__col--pull-12-of-14{margin-left:-85.71429%}.grid__col--13-of-14{width:92.85714%}.grid__col--push-13-of-14{margin-left:92.85714%}.grid__col--pull-13-of-14{margin-left:-92.85714%}.grid__col{display:inline-block;margin-right:-.25em}.grid__col,header nav{box-sizing:border-box;min-height:1px;padding-left:20px;vertical-align:top}@media (max-width:1000px){.grid__col,header nav{display:block;margin-left:0;margin-right:0;width:auto}}@media (max-width:1000px) and (min-width:800px){.grid__col[class*=grid__col--m-],header nav[class*=grid__col--m-]{display:inline-block;margin-right:-.24em}.grid__col.grid__col--m-1-of-2,.grid__col.grid__col--m-2-of-4,header nav.grid__col--m-1-of-2,header nav.grid__col--m-2-of-4{width:50%}.grid__col.grid__col--m-1-of-3,header nav.grid__col--m-1-of-3{width:33.33333%}.grid__col.grid__col--m-2-of-3,header nav.grid__col--m-2-of-3{width:66.66667%}.grid__col.grid__col--m-1-of-4,header nav.grid__col--m-1-of-4{width:25%}.grid__col.grid__col--m-3-of-4,header nav.grid__col--m-3-of-4{width:75%}}@media (max-width:800px){.grid__col[class*=grid__col--s-],header nav[class*=grid__col--s-]{display:inline-block;margin-right:-.24em}.grid__col.grid__col--s-1-of-2,.grid__col.grid__col--s-2-of-4,header nav.grid__col--s-1-of-2,header nav.grid__col--s-2-of-4{width:50%}.grid__col.grid__col--s-1-of-3,header nav.grid__col--s-1-of-3{width:33.33333%}.grid__col.grid__col--s-2-of-3,header nav.grid__col--s-2-of-3{width:66.66667%}.grid__col.grid__col--s-1-of-4,header nav.grid__col--s-1-of-4{width:25%}.grid__col.grid__col--s-3-of-4,header nav.grid__col--s-3-of-4{width:75%}}.grid__col--centered,header nav{display:block;margin-left:auto;margin-right:auto}.grid__col--d-first{float:left}.grid__col--d-last{float:right}.grid--no-gutter .grid__col,.grid--no-gutter header nav,header .grid--no-gutter nav{padding-left:0}.grid--no-gutter,.grid--no-gutter .grid__col--span-all{margin-left:0;width:100%}.grid__col--ab{vertical-align:bottom}.grid__col--am{vertical-align:middle}.slick-list,.slick-slider{position:relative;display:block}.slick-slider{box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translate3d(0,0,0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;outline:0;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.d-flex{display:-ms-flexbox;display:flex}.j-end{-ms-flex-pack:end;justify-content:end}.block-center{margin:auto;display:block}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3,footer .offset ul{margin-top:1rem}.mt-4{margin-top:1.5rem}.mt-5{margin-top:3rem}.mt-6{margin-top:4.5rem}.mt-7{margin-top:6rem}.mt-8{margin-top:10rem}.mt-10{margin-top:15rem}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3,h1.with-sub{margin-bottom:1rem}.mb-4{margin-bottom:1.5rem}.mb-5{margin-bottom:3rem}.mb-6{margin-bottom:4.5rem}.mb-7{margin-bottom:6rem}.mb-8{margin-bottom:10rem}.mb-10{margin-bottom:15rem}.pt-0{padding-top:0}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:1rem}.pt-4{padding-top:1.5rem}.pt-5{padding-top:3rem}.pt-6{padding-top:4.5rem}.pt-7{padding-top:6rem}.pt-8{padding-top:10rem}.pt-10{padding-top:15rem}.pb-0{padding-bottom:0}.pb-1{padding-bottom:.25rem}.pb-2{padding-bottom:.5rem}.pb-3{padding-bottom:1rem}.pb-4{padding-bottom:1.5rem}.pb-5{padding-bottom:3rem}.pb-6{padding-bottom:4.5rem}.pb-7{padding-bottom:6rem}.pb-8{padding-bottom:10rem}.pb-10{padding-bottom:15rem}@media screen and (max-width:800px){.mt-sm-0{margin-top:0}.mt-sm-1{margin-top:.25rem}.mt-sm-2{margin-top:.5rem}.mt-sm-3{margin-top:1rem}.mt-sm-4{margin-top:1.5rem}.mt-sm-5{margin-top:3rem}.mt-sm-6{margin-top:4.5rem}.mt-sm-7{margin-top:6rem}.mt-sm-8{margin-top:10rem}.mt-sm-10{margin-top:15rem}.mb-sm-0{margin-bottom:0}.mb-sm-1{margin-bottom:.25rem}.mb-sm-2{margin-bottom:.5rem}.mb-sm-3{margin-bottom:1rem}.mb-sm-4{margin-bottom:1.5rem}.mb-sm-5{margin-bottom:3rem}.mb-sm-6{margin-bottom:4.5rem}.mb-sm-7{margin-bottom:6rem}.mb-sm-8{margin-bottom:10rem}.mb-sm-10{margin-bottom:15rem}.pt-sm-0{padding-top:0}.pt-sm-1{padding-top:.25rem}.pt-sm-2{padding-top:.5rem}.pt-sm-3{padding-top:1rem}.pt-sm-4{padding-top:1.5rem}.pt-sm-5{padding-top:3rem}.pt-sm-6{padding-top:4.5rem}.pt-sm-7{padding-top:6rem}.pt-sm-8{padding-top:10rem}.pt-sm-10{padding-top:15rem}.pb-sm-0{padding-bottom:0}.pb-sm-1{padding-bottom:.25rem}.pb-sm-2{padding-bottom:.5rem}.pb-sm-3{padding-bottom:1rem}.pb-sm-4{padding-bottom:1.5rem}.pb-sm-5{padding-bottom:3rem}.pb-sm-6{padding-bottom:4.5rem}.pb-sm-7{padding-bottom:6rem}.pb-sm-8{padding-bottom:10rem}.pb-sm-10{padding-bottom:15rem}}.w-100{width:100%}.w-70{width:70%}.w-50{width:50%}.full-bleed,main.work img{width:100%}.no-overflow{overflow:hidden}@media screen and (min-width:801px){.double-col{column-count:2;column-gap:2rem}}.icon{width:1rem!important;height:1rem!important;display:inline-block;margin-right:.2rem;position:relative;top:-1px}@media screen and (min-width:1001px){.tiny-only{display:none}}@media screen and (max-width:1000px){.tiny-flex{display:-ms-flexbox;display:flex}.tiny-hidden{display:none}}@media screen and (min-width:801px){.mobile-only{display:none}}@media screen and (max-width:800px){.mobile-hidden{display:none}.mobile-flex{display:-ms-flexbox;display:flex}}.img-container{position:relative;width:100%;overflow:hidden}.img-container .img-overlay,.img-container img{height:100%;animation-delay:.1s;animation-iteration-count:1;animation-duration:1.3s;animation-fill-mode:forwards;animation-timing-function:cubic-bezier(.69,0,.35,1)}.img-container .img-overlay{right:0;background-color:#fff;z-index:2;animation-name:reveal}.img-container img{object-fit:cover;width:100%;animation-name:scale-in}@keyframes reveal{0%{left:0%}to{left:100%}}@keyframes scale-in{0%{transform:scale(110%)}to{transform:scale(100%)}}@font-face{font-family:'Font2';src:url(/fonts/Font2-Bold.woff2) format("woff2"),url(/fonts/Font2-Bold.woff) format("woff"),url(/fonts/Font2-Bold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:'Font2';src:url(/fonts/Font2-Medium.woff2) format("woff2"),url(/fonts/Font2-Medium.woff) format("woff"),url(/fonts/Font2-Medium.ttf) format("truetype");font-weight:500;font-style:normal;font-display:block}@font-face{font-family:'Font2';src:url(/fonts/Font2.woff2) format("woff2"),url(/fonts/Font2.woff) format("woff"),url(/fonts/Font2.ttf) format("truetype");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:'Font1';src:url(/fonts/Font1-Medium.woff2) format("woff2"),url(/fonts/Font1-Medium.woff) format("woff"),url(/fonts/Font1-Medium.ttf) format("truetype");font-weight:500;font-style:normal;font-display:block}@font-face{font-family:'Font1';src:url(/fonts/Font1-Bold.woff2) format("woff2"),url(/fonts/Font1-Bold.woff) format("woff"),url(/fonts/Font1-Bold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:'Font1';src:url(/fonts/Font1-Regular.woff2) format("woff2"),url(/fonts/Font1-Regular.woff) format("woff"),url(/fonts/Font1-Regular.ttf) format("truetype");font-weight:400;font-style:normal;font-display:block}@media screen and (max-width:1920px){html{font-size:15px}}@media screen and (max-width:1440px){html{font-size:14px}}body.mobile-menu-open{height:100%;overflow:hidden}@media screen and (min-width:1601px){body,html{min-height:650px}}main{padding-bottom:8rem;opacity:0;transition:opacity 300ms;transition-delay:0s}main.work-case-study,main.work-showcase{padding-bottom:4rem}.wrap{max-width:1620px;margin-left:auto;margin-right:auto;padding-left:3rem;padding-right:3rem;width:100%}@media screen and (max-width:800px){.wrap{padding-left:2rem;padding-right:2rem}}.full-height{height:calc(100% - 63px)}.v-center{position:absolute;top:46%;transform:translate(0,-50%)}@media screen and (max-height:780px){.v-center{top:48%}}@media screen and (max-height:560px){.v-center{top:53%}}.info{text-align:center;font-size:.85rem}@media screen and (min-width:801px){.mobile-only{display:none}}.img-container .img-overlay,body div#spinner,canvas,header{position:absolute;top:0;width:100%}canvas{height:100%;filter:contrast(.14) brightness(1.8);z-index:-1}main.show{transition-delay:.1s;opacity:1}main.text-page div.description b,main.text-page div.text b,main.work-case-study div.description b,main.work-case-study div.text b,main.work-showcase div.description b,main.work-showcase div.text b{font-weight:600;color:#000}main.text-page a.back,main.work-case-study a.back,main.work-showcase a.back{font-size:16px;margin-top:100px;display:inline-block;text-decoration:none;padding:10px 20px 60px 0;transition:opacity 100ms}.info,footer ul li a:hover,header nav ul li a:hover,main.text-page a.back:hover,main.work-case-study a.back:hover,main.work-showcase a.back:hover{opacity:.6}main.text-page a.back:before,main.work-case-study a.back:before,main.work-showcase a.back:before{content:' ';display:block;margin-bottom:100px;height:1px;width:100px;background-color:#ccc}body div#spinner{width:30px;height:30px;left:50%;top:50%;z-index:10;transform:translate(-50%,-50%)}body div#spinner div.asterisk{content:' ';background-image:url(/img/spinner.svg);background-repeat:no-repeat;background-position:center center;background-size:contain;position:absolute;width:30px;height:30px;opacity:0;transition:opacity 200ms 0s;animation:spin 1.5s infinite}body.loading div#spinner div.asterisk{animation:spin 1.5s infinite,fade-in 1s linear 1.5s;animation-fill-mode:forwards}#inspector-host{z-index:1000}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}header{z-index:6}header+main:before{content:'';display:block;width:100%;margin-bottom:3rem}@media screen and (max-width:800px){header+main:before{height:7rem}}@media screen and (min-width:801px){header+main:before{height:10rem}}header .head-wrap{max-width:1500px;margin:auto;padding:3.5rem 3rem}@media screen and (max-width:1000px){header .head-wrap{padding:1.5rem 1rem 1.5rem 2rem}}header nav,header nav ul{display:-ms-flexbox;display:flex}header nav{max-width:1620px;-ms-flex-align:center;align-items:center;position:relative;-ms-flex-pack:justify;justify-content:space-between}header nav a.logo{display:block;width:auto;transition:opacity 100ms,transform 100ms}header nav a.logo:hover{transition-duration:.4;transform:scale(.99)}header nav a.logo:active{transform:scale(.98);transition-duration:.7}header nav .mobile-menu{display:none;float:right;padding:1rem}@media screen and (max-width:1000px){header nav .mobile-menu{display:block}}header nav a.mobile-menu{position:absolute;right:0;top:-.5rem;z-index:15}header nav ul{float:right;margin:0;width:47%;-ms-flex-pack:end;justify-content:flex-end}@media screen and (max-width:1000px){header nav ul{display:none}}header nav ul li{font-size:.9375rem;display:inline;-ms-flex-negative:0;flex-shrink:0}header nav ul li a{text-decoration:none;color:#000;padding:1rem 1.4rem;transition:opacity 100ms}header nav ul li a.home-icon{position:relative;top:1px}header nav ul li:last-child a{padding-right:0}header.stay{position:fixed}header.animations-enabled{transition:transform 150ms linear;will-change:transform;background-color:#fff}header.scrolling-up{transform:translateY(0%)}header.scrolling-down{transform:translateY(-100%)}.mobile-menu-overlay{width:100%;height:100%;bottom:0;background-color:#fff;position:fixed;z-index:1;display:none;left:100%}.mobile-menu-overlay ul{position:absolute;list-style:none;margin:0;text-align:right;bottom:5rem;right:3rem}.mobile-menu-overlay ul li{font-size:1.25rem;padding:1.5rem}.mobile-menu-overlay ul li:last-child{padding-bottom:0}.mobile-menu-overlay ul li a{text-decoration:none}footer{background-image:linear-gradient(225deg,#e4e4e4 0%,#fff 100%);padding:10rem 0 9.5rem}footer>div{max-width:1620px;margin:auto;padding:0 2rem}@media screen and (max-width:1000px){footer nav>div:first-child{margin-bottom:4rem}footer .offset ul{margin-top:0;margin-bottom:0;padding-top:0}}footer h4{margin:0}footer ul{margin:0;padding:.7rem 0 0;width:10%;min-width:100px;max-width:130px}footer ul li{display:block;white-space:nowrap}footer ul li:not(:last-child){margin:1rem 0}footer ul li a{text-decoration:none;transition:opacity 150ms;font-size:1rem}@media screen and (max-width:1000px){footer ul li a{margin-bottom:0}}footer .copyright{display:block;margin-top:5.5rem}@media screen and (max-width:1000px){footer .copyright{margin-top:2rem}}footer .go-to-top{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:end;justify-content:flex-end}@media screen and (max-width:1000px){footer .go-to-top{width:100%}}footer .go-to-top a{padding:1rem;position:relative;top:-1rem}@media screen and (max-width:1000px){footer .go-to-top a{right:-1rem;top:4.3rem}}main.full-height+footer{position:fixed;bottom:0;left:0;right:0}*{font-family:'Font1','HelveticaNeue',helvetica,sans-serif;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}main p a:not(.no-underline),main.work-showcase .project-title span a:not(.no-underline){text-decoration:underline;transition:color .05s ease-in-out}main p a:not(.no-underline):hover,main.work-showcase .project-title span a:not(.no-underline):hover{color:#666}h5,main.work-showcase .project-title span,p,ul li{font-size:1.125rem;line-height:2rem;color:#333}div.claim h2{font-weight:400;margin-bottom:0;line-height:1}@media screen and (max-width:800px){div.claim h2{font-size:1rem;margin-bottom:0;font-weight:500}}div.claim h3{font-size:1.6rem;margin-bottom:2rem;margin-top:1rem;font-weight:400;line-height:1.45}@media screen and (max-width:800px){div.claim h3{margin-top:.6rem;margin-bottom:3rem}}@media screen and (min-width:800px) and (max-width:1440px){div.claim h3{margin-bottom:2rem}}h1,h2,h3,h4,h5{font-family:'Font2','Helvetica Neue',sans-serif}h1,h2,h3{margin-bottom:3rem}h1{font-size:3.375rem}@media screen and (max-width:800px){h1{font-size:2.375rem}h1.with-sub{margin-bottom:.5rem}}h1,h2,h5{margin-top:0}h2,h3{font-size:1.65rem}@media screen and (max-width:800px){h2{font-size:2.375rem;margin-bottom:0}}h3{font-size:1.6rem}@media screen and (max-width:800px){h3{font-size:1.2rem;margin-bottom:0}}h4{font-size:1.125rem}h5{font-weight:400}div.text h2{margin-bottom:1.2rem}div.text h2:after,div.text h3:after{content:''}div.text h2:not(:first-child){margin-top:4rem}div.text h3{margin-bottom:1rem}div.text h3:not(:first-child){margin-top:2.5rem}.btn{font-size:.875rem;padding:.9rem 2.1rem .7rem;text-decoration:none;background-image:linear-gradient(45deg,#232323 0%,#454545 100%);color:#fff;transition:opacity 100ms,transform 100ms;display:-ms-inline-flexbox;display:inline-flex}.btn:not(:last-child){margin-right:.4rem}@media screen and (max-width:1440px){.btn{padding:.9rem 2.1rem .8rem}}@media screen and (max-width:800px){.btn{padding:.9rem 2.1rem .8rem;font-size:.9rem;font-weight:400}}.btn.secondary{color:#333;background-image:linear-gradient(225deg,#fdfdfd 0%,#e4e4e4 100%);background-color:#fdfdfd}.btn:hover{opacity:.9;transform:scale(.98)}.btn:active{transform:scale(.95)}button{display:inline-block;border:none;margin:0;text-decoration:none;background:0 0;font-family:sans-serif;font-size:1rem;cursor:pointer;text-align:center;transition:background 250ms ease-in-out,transform 150ms ease;-webkit-appearance:none;-moz-appearance:none}.slider{margin:0 0 60px;padding:0;list-style:none;position:relative;overflow:hidden}@media screen and (max-width:800px){.slider{margin-bottom:0!important}}.slider:hover .slick-arrow,.slider:hover .slick-dots{opacity:1;transition:opacity 600ms 600ms}.slider .slick-arrow{position:absolute;bottom:10px;background-color:transparent;background-repeat:no-repeat;background-size:contain;border:none;text-indent:-99999px;width:50px;height:55px;transition:opacity 200ms 200ms;opacity:0}.slider .slick-arrow:hover{opacity:1}.slider .slick-arrow:focus{outline:none}@media screen and (max-width:800px){.slider .slick-arrow.slick-next,.slider .slick-arrow.slick-prev{display:none!important}}.slider .slick-arrow.slick-prev{left:3rem;background-image:url(/img/slider-left.svg);background-position:left center}.slider .slick-arrow.slick-next{right:3rem;background-image:url(/img/slider-right.svg);background-position:right center}.slider .slick-list{overflow:visible}.slider .slick-slide{position:relative}.slider .slick-slide img{width:100%;display:block;max-width:1440px;margin:auto;object-fit:contain;max-height:calc(max(100vh - 140px,700px))}.slider .slick-dots{margin:0 auto;padding:2rem 0;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;transition:opacity 200ms 200ms;opacity:1}.slider .slick-dots li{display:inline-block}.slider .slick-dots li button{height:2rem;width:2rem;background-size:30%;background-repeat:no-repeat;background-position:center;text-indent:-99999px;outline:none;opacity:1;padding:0;transition:background-size 200ms ease-in-out}@media screen and (max-width:800px){.slider .slick-dots li button{height:10px;width:10px}}.slider .slick-dots li.slick-active button{background-size:60%}@media screen and (max-width:800px){.slider .slick-dots{opacity:1;padding:0}.slider .slick-dots li{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer}.slider .slick-dots li button{width:2rem;height:2rem;box-sizing:border-box;background-size:20%}}@media screen and (max-width:1160px){.slider:not(.contained) .slick-slide{display:inline;background-color:transparent;height:auto}.slider:not(.contained) .slick-slide li{padding:1rem 1rem 0}}.slider:not(.contained) .slick-dots li button{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='%23000'/%3E%3C/svg%3E")}.slider.contained .slick-arrow{display:none!important}@media screen and (min-width:1162px){.slider.contained .slick-slide li{padding:3rem 3rem 0}}@media screen and (max-width:1160px){.slider.contained .slick-slide li{padding:1rem}}@media screen and (min-width:1162px){.slider.contained .slick-dots{padding-bottom:3rem}}@media screen and (max-width:1160px){.slider.contained .slick-dots{padding-bottom:1rem}}.slider.contained .slick-dots li button{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='%23fff'/%3E%3C/svg%3E")}main.home{height:100vh;min-height:50rem;width:100%}main.home div.claim h2{margin-top:35vh;font-size:3.375rem;font-weight:500;margin-bottom:0;line-height:1}@media screen and (max-width:800px){main.home div.claim h2{font-size:2.5rem;margin-bottom:0}}main.home div.claim h3{font-size:1.6rem;margin-bottom:2rem;margin-top:1rem;font-weight:400;line-height:1.45;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}@media screen and (max-width:800px){main.home div.claim h3{margin-top:.6rem;margin-bottom:2rem;font-size:1.33rem}main.home div.claim h3 br{display:none}}@media screen and (min-width:800px) and (max-width:1440px){main.home div.claim h3{margin-bottom:2rem}}@media screen and (max-width:1000px){main.about{padding-bottom:0}header main.about nav,main.about .grid__col,main.about header nav{width:100%}}main.about .portrait{padding-top:6rem}@media screen and (min-width:1441px){main.about .portrait{padding-left:6rem}}@media screen and (max-width:1440px){main.about .portrait{padding-top:3rem;margin-bottom:3rem}}main.about .portrait>div{max-width:30rem}main.about .download-cv{display:-ms-flexbox;display:flex}@media screen and (max-width:1000px){main.about .download-cv{-ms-flex-pack:flex-center;justify-content:flex-center}}@media screen and (min-width:1001px){main.about .download-cv{-ms-flex-pack:end;justify-content:flex-end}}main.work{overflow:hidden}main.work .work-item{margin-bottom:16px;position:relative;perspective:1000px;transform-style:preserve-3d;overflow:hidden;transition:transform .1s ease-in-out}main.work .work-item div.title{position:absolute;left:50%;top:50%;text-align:center;transform:translate(-50%,-33%)}main.work .work-item div.title h2{margin-bottom:0;white-space:nowrap;font-size:2.5rem}main.work .work-item div.title h3{font-weight:400;margin-top:1rem;font-size:1.3rem}main.work .work-item div.title h2:after,main.work .work-item div.title h3:after{content:' '}main.work .work-item div.cover{opacity:0;background-color:#fff;position:absolute;box-sizing:border-box;top:4px;bottom:8px;left:24px;right:4px;z-index:100;transition:opacity 100ms ease-in-out}main.work .work-item:hover{transform:scale(1.01)}@media screen and (min-width:801px){main.work .work-item:hover div.cover{opacity:1}}main.work .projects{margin-top:5rem;transform-style:preserve-3d}header main.work-showcase nav,main.work-showcase .grid__col--centered,main.work-showcase header nav{margin:auto;display:block}main.work-showcase .project-type{display:block;margin-bottom:2rem;font-family:'Larsseit','Helvetica Neue',sans-serif}@media screen and (max-width:800px){main.work-showcase .project-type{margin-bottom:4rem}}main.work-showcase .project-title{margin-top:10rem;margin-bottom:10rem}@media screen and (max-width:800px){main.work-showcase .project-title{margin-top:3rem;margin-bottom:5rem}}main.work-showcase .stage img,main.work-showcase .stage video{display:block;margin:0 auto 50px}main.work-showcase .stage video{cursor:pointer;width:100%}main.work-showcase .gallery .project-title span.info,main.work-showcase .gallery p.info,main.work-showcase .project-title .gallery span.info{margin-top:0;margin-bottom:40px}@media screen and (min-width:801px){main.work-showcase .tasks{border-left:1px solid #000}}main.work-showcase .tasks h3{margin-top:0;margin-bottom:1.8rem}main.work-showcase .tasks span{font-style:italic}.tags span{display:inline-block;padding:.5rem 1.5rem;border-radius:10rem;margin-right:.5rem;margin-bottom:.5rem;background-color:#000;color:#fff}@media screen and (max-width:800px){.tags span{font-size:.8rem;padding:.4rem .75rem}}@media screen and (min-width:801px){.tags br+span{margin-left:3rem}}.slider,.slider img{width:100%}.slider ul:not(.slick-dots){margin:0;padding:0;list-style:none}.slider ul:not(.slick-dots) li{list-style:none;display:block}@media screen and (max-width:1160px){.slider.contained div.slick-list{border-radius:6px 6px 0 0}}@media screen and (max-width:1000px){.slider.contained div.slick-list{border-radius:3px 3px 0 0}}.slider.contained.srt,.slider.only-contained.srt{background-color:#33363c}.slider.contained.srt img,.slider.only-contained.srt img{box-shadow:0 0 80px 20px rgba(0,0,0,.2)}.slider.contained.tts,.slider.only-contained.tts{background-image:linear-gradient(45deg,#277aff 0%,#6cbeff 100%)}.slider.contained.viskura,.slider.only-contained.viskura{background-color:#c1e0cf}@media screen and (min-width:801px){.slider.contained.viskura img,.slider.only-contained.viskura img{width:auto;border-radius:6px 6px 0 0;box-shadow:0 0 80px 20px rgba(0,0,0,.06)}}main.work-case-study .project-type{display:block;margin-bottom:1.5rem;font-weight:500;font-size:1.25rem;font-family:'Larsseit','Helvetica Neue',sans-serif}@media screen and (max-width:800px){main.work-case-study .project-type{font-size:1rem;margin-bottom:1rem}main.work-case-study .project-title{margin-top:2rem;margin-bottom:5rem}}main.work-case-study .mobile-title-image{margin:4rem 0;height:90vh;display:none;position:relative}@media screen and (max-width:800px){main.work-case-study .mobile-title-image{display:block}}main.work-case-study .mobile-title-image img{position:absolute;top:0;left:0;height:100%;object-fit:cover;margin:0 2rem}main.work-case-study .bleed{top:0;left:0;height:60rem;width:200rem;position:relative;background-image:linear-gradient(168deg,#fff 0%,#f7f7f7 93%);overflow:hidden}main.work-case-study .title-section{margin-top:-3rem}@media screen and (max-width:800px){main.work-case-study .title-section{display:none}}main.work-case-study .title-image{position:absolute;width:auto;left:6rem;top:6rem;box-shadow:0 0 34px rgba(0,0,0,.1);border-radius:10px 10px 0 0}main.work-case-study .title-image img{width:94rem}main.work-case-study .wireframes-image{overflow:hidden}@media screen and (max-width:800px){main.work-case-study .wireframes-image img{width:200%;transform:translate(-25%,0)}}main.work-case-study .mobile-image-container{margin-top:-9rem;position:relative}@media screen and (min-width:1601px){main.work-case-study .mobile-image-container{overflow:hidden}}@media screen and (max-width:800px){main.work-case-study .mobile-image-container{display:none}}main.work-case-study .mobile-image-container .bg-visual{position:absolute;bottom:-5%;width:140%;height:100%;background-image:url(/img/tts_mobile_visual.svg);background-repeat:no-repeat;background-size:contain;background-position:center bottom;left:-25rem}@media screen and (min-width:1440px) and (max-width:1600px){main.work-case-study .mobile-image-container .bg-visual{left:-21rem}}@media screen and (min-width:1000px) and (max-width:1440px){main.work-case-study .mobile-image-container .bg-visual{left:-16rem}}@media screen and (max-width:1000px){main.work-case-study .mobile-image-container .bg-visual{left:-13rem;bottom:-6%}}main.work-case-study .mobile-image-container img{position:relative;z-index:1;margin-left:3rem;width:65%}main.work-case-study .mobile-wireframes-image{position:relative}@media screen and (min-width:1601px){main.work-case-study .mobile-wireframes-image{overflow:hidden}}main.work-case-study .mobile-wireframes-image .bg-visual{position:absolute;bottom:0;width:160%;height:100%;background-image:url(/img/tts_mobile_visual_right.svg);background-repeat:no-repeat;background-size:contain;background-position:center bottom;right:-27rem;bottom:2rem}@media screen and (max-width:800px){main.work-case-study .mobile-wireframes-image .bg-visual{display:none}}main.work-case-study .mobile-wireframes-image img{position:relative;z-index:1;margin-left:6rem;width:76%}@media screen and (max-width:800px){main.work-case-study .mobile-wireframes-image img{width:100%;margin-left:0}}

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