/* Include Base Sass */
/* ================= Background Colour Map for a range of buttons 

======================================*/
/* ================= Image Replace 

======================================*/
/* ================= Pseudo Element 

======================================*/
/* ================= Media Query mixin
USE MEDIA QUERY AS FOLLOWS --
    @include respond-to(tiny) {   
        MEDIA SPECIFIC RULES HERE   
    }
======================================*/
.btn__disabled {
  background-color: #ccc;
  border-color: #ccc;
  color: #ffffff;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__disabled:hover {
    background-color: #bdbdbd; }

.btn-ghost__disabled {
  background-color: transparent;
  border: 2px solid #ccc;
  color: #ccc;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__disabled:hover {
    border: 2px solid #bdbdbd;
    color: #bdbdbd; }

.btn-gradient__disabled {
  background-color: #bdbdbd;
  background: -webkit-linear-gradient(270deg, #cccccc 0%, #bdbdbd 100%);
  background: -moz-linear-gradient(270deg, #cccccc 0%, #bdbdbd 100%);
  background: -ms-linear-gradient(270deg, #cccccc 0%, #bdbdbd 100%);
  border-color: #ccc;
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #ccc;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__disabled:hover {
    background: -webkit-linear-gradient(270deg, #cccccc 0%, #bdbdbd 70%);
    background: -moz-linear-gradient(270deg, #cccccc 0%, #bdbdbd 70%);
    background: -ms-linear-gradient(270deg, #cccccc 0%, #bdbdbd 70%); }

.btn__primary {
  background-color: #92CDCF;
  border-color: #92CDCF;
  color: #ffffff;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__primary:hover {
    background-color: #6fbdbf; }

.btn-ghost__primary {
  background-color: transparent;
  border: 2px solid #92CDCF;
  color: #92CDCF;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__primary:hover {
    border: 2px solid #6fbdbf;
    color: #6fbdbf; }

.btn-gradient__primary {
  background-color: #6fbdbf;
  background: -webkit-linear-gradient(270deg, #92cdcf 0%, #6fbdbf 100%);
  background: -moz-linear-gradient(270deg, #92cdcf 0%, #6fbdbf 100%);
  background: -ms-linear-gradient(270deg, #92cdcf 0%, #6fbdbf 100%);
  border-color: #92CDCF;
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #92CDCF;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__primary:hover {
    background: -webkit-linear-gradient(270deg, #92cdcf 0%, #6fbdbf 70%);
    background: -moz-linear-gradient(270deg, #92cdcf 0%, #6fbdbf 70%);
    background: -ms-linear-gradient(270deg, #92cdcf 0%, #6fbdbf 70%); }

.btn__secondary {
  background-color: #31353D;
  border-color: #31353D;
  color: #ffffff;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__secondary:hover {
    background-color: #1a1c21; }

.btn-ghost__secondary {
  background-color: transparent;
  border: 2px solid #31353D;
  color: #31353D;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__secondary:hover {
    border: 2px solid #1a1c21;
    color: #1a1c21; }

.btn-gradient__secondary {
  background-color: #1a1c21;
  background: -webkit-linear-gradient(270deg, #31353d 0%, #1a1c21 100%);
  background: -moz-linear-gradient(270deg, #31353d 0%, #1a1c21 100%);
  background: -ms-linear-gradient(270deg, #31353d 0%, #1a1c21 100%);
  border-color: #31353D;
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #31353D;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__secondary:hover {
    background: -webkit-linear-gradient(270deg, #31353d 0%, #1a1c21 70%);
    background: -moz-linear-gradient(270deg, #31353d 0%, #1a1c21 70%);
    background: -ms-linear-gradient(270deg, #31353d 0%, #1a1c21 70%); }

.btn__tertiary {
  background-color: #1C1D21;
  border-color: #1C1D21;
  color: #ffffff;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__tertiary:hover {
    background-color: #050505; }

.btn-ghost__tertiary {
  background-color: transparent;
  border: 2px solid #1C1D21;
  color: #1C1D21;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__tertiary:hover {
    background: #ededed;
    border-color: transparent; }

.btn-gradient__tertiary {
  background-color: #050505;
  background: -webkit-linear-gradient(270deg, #1c1d21 0%, #050505 100%);
  background: -moz-linear-gradient(270deg, #1c1d21 0%, #050505 100%);
  background: -ms-linear-gradient(270deg, #1c1d21 0%, #050505 100%);
  border-color: #1C1D21;
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #1C1D21;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__tertiary:hover {
    background: -webkit-linear-gradient(270deg, #1c1d21 0%, #050505 70%);
    background: -moz-linear-gradient(270deg, #1c1d21 0%, #050505 70%);
    background: -ms-linear-gradient(270deg, #1c1d21 0%, #050505 70%); }

.btn__accent {
  background-color: #EEEFF7;
  border-color: #EEEFF7;
  color: #ffffff;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__accent:hover {
    background-color: #cbcee7; }

.btn-ghost__accent {
  background-color: transparent;
  border: 2px solid #EEEFF7;
  color: #EEEFF7;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__accent:hover {
    border: 2px solid #cbcee7;
    color: #cbcee7; }

.btn-gradient__accent {
  background-color: #cbcee7;
  background: -webkit-linear-gradient(270deg, #eeeff7 0%, #cbcee7 100%);
  background: -moz-linear-gradient(270deg, #eeeff7 0%, #cbcee7 100%);
  background: -ms-linear-gradient(270deg, #eeeff7 0%, #cbcee7 100%);
  border-color: #EEEFF7;
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #EEEFF7;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__accent:hover {
    background: -webkit-linear-gradient(270deg, #eeeff7 0%, #cbcee7 70%);
    background: -moz-linear-gradient(270deg, #eeeff7 0%, #cbcee7 70%);
    background: -ms-linear-gradient(270deg, #eeeff7 0%, #cbcee7 70%); }

.btn__color-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1C1D21;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__color-white:hover {
    background-color: #e6e6e6; }

.btn-ghost__color-white {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__color-white:hover {
    border: 2px solid #e6e6e6;
    color: #e6e6e6; }

.btn-gradient__color-white {
  background-color: #e6e6e6;
  background: -webkit-linear-gradient(270deg, white 0%, #e6e6e6 100%);
  background: -moz-linear-gradient(270deg, white 0%, #e6e6e6 100%);
  background: -ms-linear-gradient(270deg, white 0%, #e6e6e6 100%);
  border-color: #ffffff;
  color: #1C1D21;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #ffffff;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__color-white:hover {
    background: -webkit-linear-gradient(270deg, white 0%, #e6e6e6 70%);
    background: -moz-linear-gradient(270deg, white 0%, #e6e6e6 70%);
    background: -ms-linear-gradient(270deg, white 0%, #e6e6e6 70%); }

.btn__color-black {
  background-color: #0b0b0b;
  border-color: #0b0b0b;
  color: #ffffff;
  padding: 20px 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn__color-black:hover {
    background-color: black; }

.btn-ghost__color-black {
  background-color: transparent;
  border: 2px solid #0b0b0b;
  color: #0b0b0b;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-transition: all, 0.5s, ease-in-out;
  -moz-transition: all, 0.5s, ease-in-out;
  -ms-transition: all, 0.5s, ease-in-out;
  -o-transition: all, 0.5s, ease-in-out;
  transition: all, 0.5s, ease-in-out; }
  .btn-ghost__color-black:hover {
    border: 2px solid black;
    color: black; }

.btn-gradient__color-black {
  background-color: black;
  background: -webkit-linear-gradient(270deg, #0b0b0b 0%, black 100%);
  background: -moz-linear-gradient(270deg, #0b0b0b 0%, black 100%);
  background: -ms-linear-gradient(270deg, #0b0b0b 0%, black 100%);
  border-color: #0b0b0b;
  color: #ffffff;
  padding: 20px 30px;
  box-shadow: inset 0 0 0 0 #0b0b0b;
  -webkit-transition: background, 0.3s, ease-in-out;
  -moz-transition: background, 0.3s, ease-in-out;
  -ms-transition: background, 0.3s, ease-in-out;
  -o-transition: background, 0.3s, ease-in-out;
  transition: background, 0.3s, ease-in-out; }
  .btn-gradient__color-black:hover {
    background: -webkit-linear-gradient(270deg, #0b0b0b 0%, black 70%);
    background: -moz-linear-gradient(270deg, #0b0b0b 0%, black 70%);
    background: -ms-linear-gradient(270deg, #0b0b0b 0%, black 70%); }

.copyright:after, .blog__share:after, .post-summary-content:after, .subSubCat__squareImages:after, .salon:after, .carousel--stories:after, .carousel--editorial:after {
  content: "";
  display: table;
  clear: both; }

.srt {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.text-center {
  text-align: center; }
  .text-center h5 {
    display: inline-block; }
.text-right {
  text-align: right; }
.text-left {
  text-align: left; }

.trim--three-qtr p {
  max-width: 75%; }
.trim--three-qtr.text-center p {
  margin-right: auto;
  margin-left: auto; }
.trim--two-thirds p {
  max-width: 65%; }
.trim--two-thirds.text-center p {
  margin-right: auto;
  margin-left: auto; }
.trim--half p {
  max-width: 50%; }
.trim--half.text-center p {
  margin-right: auto;
  margin-left: auto; }
.trim--one-qtr p {
  max-width: 25%; }
.trim--one-qtr.text-center p {
  margin: 0 auto; }

.txt--primary {
  color: #92CDCF; }

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block; }

.google-maps {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  margin-bottom: 30px; }

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

body {
  font-size: 16px;
  font-family: "ff-tisa-web-pro";
  line-height: 1.6;
  font-weight: normal;
  overflow-x: hidden;
  color: #282828;
  padding: 0px;
  margin: 0px;
  background: #31353D; }

svg {
  width: 100%;
  height: 100%; }

h2,
h3,
h4,
h5,
h6 {
  font-family: "museo-sans-rounded";
  font-weight: 300;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 5px; }

a {
  text-decoration: none;
  -webkit-transition: color, 0.2s, ease-in-out;
  -moz-transition: color, 0.2s, ease-in-out;
  -ms-transition: color, 0.2s, ease-in-out;
  -o-transition: color, 0.2s, ease-in-out;
  transition: color, 0.2s, ease-in-out; }
  a:hover img, a:visited img, a:selected img {
    border: 0; }
  a img {
    border: 0; }

h1 {
  font-family: "Ratio-Modern-SC";
  font-weight: 300;
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 1px; }
  #body-content h1 {
    margin: 0; }
    @media (max-width: 480px) {
      #body-content h1 {
        font-size: 45px; } }

h2 {
  font-weight: 700; }

h3 {
  font-weight: 500; }

h4 {
  font-weight: 300;
  font-size: 16px; }

p {
  font-size: 19px;
  line-height: 1.4;
  margin: 40px 0; }
  #body-content p:first-child {
    margin-top: 0; }
  p.intro {
    font-size: 21px;
    line-height: 1.4; }

.base {
  width: 1130px !important;
  margin: auto; }
  @media (max-width: 1170px) {
    .base {
      width: 95% !important; } }
  @media (max-width: 667px) {
    .base {
      width: 90% !important; } }

.base-super {
  max-width: 1450px;
  margin: auto;
  overflow: hidden; }
  @media (max-width: 1170px) {
    .base-super {
      width: 95% !important;
      max-width: none !important; } }
  @media (max-width: 667px) {
    .base-super {
      width: 90% !important; } }

div.pull-right {
  float: right; }

div.pull-left {
  float: left; }

.dsp-tbl {
  display: table;
  width: 100%;
  height: 100%; }
  .dsp-tbl .dsp-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle; }

.attach-it {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px; }

/* Include Layout Sass */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* ===========================
ClearFix rule 
-for containers with floated child elements
=========================== */
.clearfix:before, .selector ul:before,
.clearfix:after,
.selector ul:after {
  content: "";
  display: table; }

.clearfix:after, .selector ul:after {
  clear: both; }

.clearfix, .selector ul {
  zoom: 1; }

/* ===========================
Row rule 
- Negative Margin Row, for nesting columns within other columns preventing double margins.
=========================== */
.row {
  margin-left: -10px;
  margin-right: -10px;
  position: relative; }

/* ===========================
Setup Columns 
- Floating all columns left. 
=========================== */
div[class*=col-],
section[class*=col-],
li[class*=col-],
a[class*=col-] {
  float: left;
  position: relative;
  padding: 0px 10px;
  margin: 0;
  min-height: 1px; }

div[class*=span-],
section[class*=span-],
li[class*=span-],
a[class*=span-] {
  float: left;
  position: relative;
  padding: 0px 10px;
  margin: 0;
  min-height: 1px; }

.nogrid-row {
  margin-left: 0px !important;
  margin-right: 0px !important;
  position: relative; }

.nogrid-row div[class*=col-],
.nogrid-row section[class*=col-],
.nogrid-row li[class*=col-],
.nogrid-row a[class*=col-] {
  float: left;
  position: relative;
  padding: 0px !important;
  margin: 0; }
.nogrid-row div[class*=span-],
.nogrid-row section[class*=span-],
.nogrid-row li[class*=span-],
.nogrid-row a[class*=span-] {
  float: left;
  position: relative;
  padding: !important;
  margin: 0; }

.col-1 {
  width: 8.33333%; }

.col-2 {
  width: 16.66667%; }

.col-3 {
  width: 25%; }

.col-4 {
  width: 33.33333%; }

.col-5 {
  width: 41.66667%; }

.col-6 {
  width: 50%; }

.col-7 {
  width: 58.33333%; }

.col-8 {
  width: 66.66667%; }

.col-9 {
  width: 75%; }

.col-10 {
  width: 83.33333%; }

.col-11 {
  width: 91.66667%; }

.col-12 {
  width: 100%; }

/* Include Module Sass */
.site-wrapper {
  background: #ffffff; }
  .site-wrapper--lower {
    background: #ffffff; }

header {
  position: relative;
  padding-top: 20px; }
  @media (max-width: 1024px) {
    header {
      padding-top: 0px; } }
  header.main .logo, header.sub .logo {
    max-width: 100%;
    width: 170px;
    padding: 30px 0; }
    @media (max-width: 1024px) {
      header.main .logo, header.sub .logo {
        padding: 0; } }
    header.main .logo a, header.sub .logo a {
      display: block;
      fill: #0b0b0b;
      height: 48px; }
      header.main .logo a:hover, header.sub .logo a:hover {
        fill: #92CDCF; }
  @media (max-width: 1024px) {
    header #logo-column {
      width: 200px !important;
      padding-top: 30px; } }

.util {
  float: right;
  z-index: 2;
  position: relative; }
  @media (max-width: 1024px) {
    .util {
      display: none; } }
  .util ul {
    list-style: none;
    margin: 0px;
    padding: 0px; }
    .util ul li {
      font-size: 10px;
      text-transform: uppercase;
      font-family: "museo-sans-rounded";
      letter-spacing: 3px;
      float: left;
      margin-left: 10px; }
      .util ul li:first-child {
        margin-left: 0px; }
      .util ul li a {
        display: block;
        color: #1C1D21;
        padding: 6px 15px 4px 15px; }
        .util ul li a:before {
          content: attr(dataicon);
          font-family: 'fontawesome';
          margin-right: 5px;
          color: #92CDCF;
          font-size: 12px; }
        .util ul li a.download {
          background: #1C1D21;
          color: #ffffff; }
          .util ul li a.download:hover {
            color: #92CDCF; }

.site-wrapper {
  background: #ffffff; }
  .site-wrapper--lower {
    background: #ffffff; }

#oslo-logo.lifted {
  position: relative;
  z-index: 5; }
  #oslo-logo.lifted svg {
    fill: #ffffff; }

#popup {
  text-align: center; }
  #popup h1, #popup h2, #popup h3, #popup h4, #popup p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px; }

nav.main {
  margin-top: 20px; }
  @media (max-width: 1170px) {
    nav.main {
      margin-top: 35px; } }
  @media (max-width: 1024px) {
    nav.main {
      margin-top: 40px; } }
  nav.main ul {
    font-family: "museo-sans-rounded";
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 0px;
    margin: 0px;
    list-style: none;
    font-size: 15px;
    font-weight: 300;
    float: right; }
    @media (max-width: 1024px) {
      nav.main ul {
        display: none; } }
    nav.main ul.home-nav li a {
      color: #0b0b0b; }
    nav.main ul li {
      float: left;
      text-align: center; }
      nav.main ul li a {
        display: inline-block;
        padding: 10px 15px; }
        nav.main ul li a:hover {
          color: #92CDCF; }
        @media (max-width: 1170px) {
          nav.main ul li a {
            padding: 10px 11px; } }
      nav.main ul li.highlighted {
        background-color: rgba(227, 227, 228, 0.8); }
      nav.main ul li.selected a {
        position: relative; }
        nav.main ul li.selected a:after {
          top: 100%;
          left: 14px;
          right: 17px;
          border-bottom: 2px solid #0b0b0b;
          content: " ";
          height: 0;
          position: absolute; }
  .sub nav.main ul.home-nav li a {
    color: #0b0b0b; }
    .sub nav.main ul.home-nav li a:hover {
      color: #92CDCF; }

header.sub {
  border-bottom: 1px solid #e3e3e4; }

.secondary-nav {
  min-height: 40px; }
  .secondary-nav nav.main {
    margin-top: 0;
    text-align: center; }
    @media (max-width: 1024px) {
      .secondary-nav nav.main {
        display: none; } }
    .secondary-nav nav.main ul.home-nav {
      font-size: 13px;
      display: inline-block;
      float: none;
      margin: 0 auto; }
      .secondary-nav nav.main ul.home-nav li {
        width: auto;
        text-align: left; }
        .secondary-nav nav.main ul.home-nav li a {
          color: #989aa3;
          padding: 20px 0;
          font-weight: 400; }
        .secondary-nav nav.main ul.home-nav li:not(:last-of-type) a {
          margin-right: 36px; }
        .secondary-nav nav.main ul.home-nav li.selected a {
          border-top: 0;
          color: #ffffff;
          padding: 15px 15px 11px 15px;
          position: relative;
          background-color: #92CDCF;
          margin-top: 6px; }
          .secondary-nav nav.main ul.home-nav li.selected a:after {
            display: none; }

.mobile-nav-wrap {
  position: relative;
  z-index: 5;
  top: 80px;
  display: none; }
  @media (max-width: 1024px) {
    .mobile-nav-wrap {
      display: block; } }

.mobile-nav {
  visibility: hidden;
  z-index: 9;
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background-position: 0;
  background-image: none; }
  @media (max-width: 1024px) {
    .mobile-nav {
      visibility: visible; } }
  .mobile-nav-btn {
    display: none; }
    @media (max-width: 1024px) {
      .mobile-nav-btn {
        /* Hide Hamburger above 606px */
        display: block;
        top: 30px;
        right: 30px;
        position: absolute;
        z-index: 5; } }
  .mobile-nav__menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 10px;
    display: block;
    position: relative;
    z-index: 2; }
    .mobile-nav__menu ul {
      margin: 0;
      padding: 0;
      font-family: "museo-sans-rounded";
      font-weight: 300; }
      .mobile-nav__menu ul ul {
        display: none; }
    .mobile-nav__menu li {
      display: block;
      border: 0;
      text-align: center; }
      .mobile-nav__menu li:nth-last-child(2) {
        border-right: 0; }
      .mobile-nav__menu li a {
        color: #ffffff;
        padding: 11px 8px 10px;
        position: relative;
        display: block;
        font-size: 26px;
        text-transform: uppercase; }
        .mobile-nav__menu li a:hover {
          background-color: rgba(128, 197, 199, 0.35); }
      .mobile-nav__menu li li a {
        font-size: 18px;
        color: #c3c3c3; }
        .mobile-nav__menu li li a:before {
          content: "-";
          position: relative;
          left: -10px; }
    .mobile-nav__menu ul > li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .mobile-nav__menu ul > li li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1); }
      .mobile-nav__menu ul > li li:last-child {
        border-bottom: 0; }
    .mobile-nav__menu .parent > a:after {
      content: "\f105";
      font-family: FontAwesome;
      top: -1px;
      position: relative;
      right: -20px;
      display: inline-block; }
    .mobile-nav__menu .parent.open > a:after {
      -ms-transform: rotate(90deg);
      /* IE 9 */
      -webkit-transform: rotate(90deg);
      /* Chrome, Safari, Opera */
      transform: rotate(90deg); }

.mob-blackout {
  background-color: rgba(11, 11, 11, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  display: none;
  visibility: hidden; }
  @media (max-width: 1024px) {
    .mob-blackout {
      visibility: visible; } }

footer.main {
  color: #0b0b0b;
  font-family: "museo-sans-rounded";
  text-transform: uppercase;
  font-size: 12px; }
  footer.main .footer-info {
    padding: 30px 0 40px;
    background-color: #e3e3e4;
    font-family: "ff-tisa-web-pro";
    font-size: 15px;
    text-transform: none;
    color: #31353D; }
    footer.main .footer-info h3 {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 20px;
      font-size: 15px; }
      footer.main .footer-info h3:after {
        position: absolute;
        display: block;
        background-color: #C9C9CB;
        content: "";
        bottom: 0;
        left: 0;
        width: 80px;
        height: 1px; }
    @media (max-width: 800px) {
      footer.main .footer-info .col-4 {
        display: none; }
      footer.main .footer-info .col-3 {
        width: 30% !important; }
      footer.main .footer-info .col-5 {
        width: 70% !important; } }
    @media (max-width: 667px) {
      footer.main .footer-info .col-3 {
        width: 40% !important; }
      footer.main .footer-info .col-5 {
        width: 60% !important; } }
    @media (max-width: 480px) {
      footer.main .footer-info .col-3 {
        width: 100% !important; }
      footer.main .footer-info .col-5 {
        width: 100% !important; } }
  footer.main ul {
    margin: 0px;
    padding: 0px;
    list-style: none; }
    footer.main ul li span a {
      text-transform: none;
      color: #92CDCF;
      display: inline-block; }
    footer.main ul.foot-nav {
      float: left;
      width: 50%; }
    footer.main ul a {
      color: #31353D;
      -webkit-transition: color, ease-in-out, 0.3s;
      -moz-transition: color, ease-in-out, 0.3s;
      -ms-transition: color, ease-in-out, 0.3s;
      -o-transition: color, ease-in-out, 0.3s;
      transition: color, ease-in-out, 0.3s;
      display: block; }
      footer.main ul a:hover {
        color: #92CDCF; }

.footer__locations .address {
  float: left;
  margin-right: 70px; }
  @media (max-width: 1024px) {
    .footer__locations .address {
      margin-right: 35px; } }
  @media (max-width: 800px) {
    .footer__locations .address {
      margin-right: 70px; } }
  @media (max-width: 667px) {
    .footer__locations .address {
      width: 50%;
      margin-right: 0; } }
  .footer__locations .address:last-of-type {
    margin-right: 0; }

.copyright {
  padding: 20px 0px;
  font-size: 12px;
  color: #a2a2a5; }
  .copyright__left {
    float: left;
    width: 60%; }
    @media (max-width: 1024px) {
      .copyright__left {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px; } }
  .copyright__right {
    float: right;
    text-align: right;
    width: 40%; }
    @media (max-width: 1024px) {
      .copyright__right {
        float: none;
        width: 100%;
        text-align: center; } }
  .copyright a {
    color: #a2a2a5; }
  .copyright span {
    font-weight: 700; }
  .copyright p {
    font-size: 12px;
    display: block;
    letter-spacing: 2px;
    float: left;
    margin: 0; }
    .copyright p span {
      color: #C9C9CB; }
    @media (max-width: 667px) {
      .copyright p {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px; } }
  .copyright .social-list {
    display: block;
    float: right;
    margin: -5px 0 0 40px; }
    @media (max-width: 1170px) {
      .copyright .social-list {
        margin-left: 15px; } }
    @media (max-width: 667px) {
      .copyright .social-list {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        margin-left: 0; } }
    .copyright .social-list li a {
      font-size: 24px;
      padding-right: 10px;
      line-height: 24px;
      color: #e3e3e4; }
  .copyright nav ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    letter-spacing: 2px; }
    .copyright nav ul li {
      display: inline-block;
      margin-right: 10px; }
      .copyright nav ul li a {
        line-height: 12px;
        color: #a2a2a5; }
      .copyright nav ul li:not(:last-child) a {
        padding-right: 10px;
        border-right: 1px solid #a2a2a5; }

#body-heading--centered {
  background: #ffffff;
  padding: 40px 0 20px 0;
  text-align: center; }
  #body-heading--centered h1,
  #body-heading--centered h2 {
    margin: 0;
    line-height: 1.4; }
  @media (max-width: 480px) {
    #body-heading--centered h1 {
      font-size: 45px; } }
  #body-heading--centered h2 {
    font-weight: 500;
    letter-spacing: 7px;
    font-size: 20px; }
  #body-heading--centered .strip-banner {
    border: 2px solid #0b0b0b;
    width: 100%;
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
    display: table; }
    #body-heading--centered .strip-banner li {
      width: 33.33333%;
      display: table-cell;
      vertical-align: middle;
      padding: 10px 0; }
      @media (max-width: 667px) {
        #body-heading--centered .strip-banner li {
          width: 100%;
          display: block; } }
      #body-heading--centered .strip-banner li:first-child {
        background: #0b0b0b;
        color: #ffffff; }
      @media (max-width: 667px) {
        #body-heading--centered .strip-banner li:last-child {
          background: #f9f9f9; } }
      #body-heading--centered .strip-banner li h2 {
        font-size: 34px;
        letter-spacing: 0.5px;
        font-weight: 200;
        border-right: 1px solid;
        padding: 10px 0; }
        @media (max-width: 667px) {
          #body-heading--centered .strip-banner li h2 {
            border-right: 0px; } }
      #body-heading--centered .strip-banner li h3,
      #body-heading--centered .strip-banner li h4,
      #body-heading--centered .strip-banner li h5 {
        margin: 0;
        font-weight: 600; }
      #body-heading--centered .strip-banner li h3 {
        font-size: 26px;
        letter-spacing: 8px;
        line-height: 1.2; }
      #body-heading--centered .strip-banner li h5 {
        font-size: 17px;
        letter-spacing: 5px;
        font-weight: 400;
        line-height: 1.1; }
  #body-heading--centered .trim--three-qtr p, #body-heading--centered .trim--three-qtr .selector {
    margin-right: auto;
    margin-left: auto;
    width: 75%; }
    @media (max-width: 1024px) {
      #body-heading--centered .trim--three-qtr p, #body-heading--centered .trim--three-qtr .selector {
        width: 100%; } }

#body-content {
  background: #ffffff;
  padding: 40px 0 80px; }
  #body-content h2 {
    font-size: 28px;
    letter-spacing: 6px;
    font-weight: 700;
    margin: 10px 0; }
  #body-content h4 {
    font-weight: 700;
    margin: 20px 0; }
  #body-content h1:first-child,
  #body-content h2:first-child,
  #body-content h3:first-child,
  #body-content h4:first-child,
  #body-content h5:first-child,
  #body-content h6:first-child {
    margin-top: 0; }
  #body-content h1 + p,
  #body-content h2 + p,
  #body-content h3 + p,
  #body-content h4 + p,
  #body-content h5 + p,
  #body-content h6 + p {
    margin-top: 0; }
  #body-content .strip-banner {
    border: 2px solid #0b0b0b;
    width: 100%;
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
    display: table; }
    #body-content .strip-banner li {
      width: 33.33333%;
      display: table-cell;
      vertical-align: middle;
      padding: 10px 0; }
      #body-content .strip-banner li:first-child {
        background: #0b0b0b;
        color: #ffffff; }
      #body-content .strip-banner li h2 {
        font-size: 34px;
        letter-spacing: 0.5px;
        font-weight: 200;
        border-right: 1px solid; }
        @media (max-width: 667px) {
          #body-content .strip-banner li h2 {
            border-right: 0px; } }
  @media (max-width: 800px) {
    #body-content .col-8 .intro {
      width: 100%; } }

.secondary-nav + #body-content {
  margin-top: -6px;
  padding-top: 0; }

@media (max-width: 800px) {
  .blog-heading .col-8 {
    width: 100%; } }

@media (max-width: 667px) {
  .blog-lising .col-8, .blog-lising .col-4 {
    width: 100%;
    float: none; } }

.list--positive {
  font-size: 19px;
  margin: 0;
  padding: 0; }
  .list--positive li {
    padding-left: 30px;
    list-style: none;
    position: relative; }
    .list--positive li:before {
      content: '\f00c';
      position: absolute;
      left: 0;
      color: #92CDCF;
      font-family: FontAwesome;
      line-height: 1.8; }

#sidebar--right aside {
  padding-left: 80px; }
  @media (max-width: 800px) {
    #sidebar--right aside {
      padding-left: 30px; } }
  @media (max-width: 667px) {
    #sidebar--right aside {
      padding-left: 0px; } }
  #sidebar--right aside h1:first-child, #sidebar--right aside h2:first-child, #sidebar--right aside h3:first-child, #sidebar--right aside h4:first-child, #sidebar--right aside h5:first-child, #sidebar--right aside h6:first-child {
    margin-top: 0; }

.sidebar__pod {
  margin-bottom: 20px; }
  .sidebar__pod a {
    color: #0b0b0b; }
  .sidebar__pod h4 {
    margin: 15px 0;
    font-weight: 900; }
  .sidebar__pod:not(:first-of-type) {
    margin-top: 40px; }
  .sidebar__pod:not(:last-of-type) {
    border-bottom: 1px solid #e3e3e4; }
  .sidebar__pod--blog ul ul {
    margin: 0 0 10px 10px; }

.social-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .social-list li {
    display: inline-block; }
    .social-list li a {
      color: #C9C9CB;
      font-size: 30px;
      padding-right: 15px;
      display: block; }
      .social-list li a:hover {
        color: #92CDCF; }

.blog-date {
  margin: -15px 0 20px 0;
  color: #C9C9CB; }

.blog__share {
  padding: 20px 0 10px;
  border-top: 1px solid #e3e3e4; }
.blog-cat {
  margin-bottom: 0; }
  .blog-cat + h2 {
    margin-top: 0 !important; }
.blog__social {
  float: right; }
  @media (max-width: 800px) {
    .blog__social {
      float: none; } }
.blog__likes {
  float: left;
  margin-top: 12px;
  margin-right: 30px; }
  .blog__likes .fa {
    font-size: 21px;
    color: #C9C9CB;
    float: left; }
  .blog__likes-count {
    float: right;
    margin: 2px 0 0 8px; }
.blog__links {
  float: right; }
  .blog__links h5 {
    float: left;
    margin-right: 10px;
    margin-top: 15px !important; }
  .blog__links .social-list {
    float: right;
    margin-top: 5px;
    float: right; }
    .blog__links .social-list li a {
      font-size: 23px; }
    .blog__links .social-list li:last-child a {
      padding-right: 0; }
.blog__author h5 {
  width: 100%;
  margin: 0px;
  padding: 0px;
  margin-top: 20px;
  top: 12px;
  position: relative; }
  @media (max-width: 414px) {
    .blog__author h5 {
      top: 1px; } }
  .blog__author h5 a {
    color: #92CDCF; }
  .blog__author h5 .published {
    color: #0b0b0b;
    border-left: 1px solid #0b0b0b;
    margin-left: 8px;
    padding-left: 13px; }
    @media (max-width: 414px) {
      .blog__author h5 .published {
        display: block;
        padding-left: 0px;
        border-left: 0px; } }
.blog__author.post-info {
  float: left;
  width: 50%; }
  @media (max-width: 800px) {
    .blog__author.post-info {
      width: 100%; } }
  .blog__author.post-info h5 {
    margin-top: 0px; }
    @media (max-width: 1024px) {
      .blog__author.post-info h5 {
        top: 2px; } }
    @media (max-width: 1024px) {
      .blog__author.post-info h5 .published {
        display: block;
        padding-left: 0px;
        border-left: 0px; } }
.blog__avatar {
  max-width: 40px;
  border-radius: 50%;
  float: left;
  margin-right: 15px;
  margin-bottom: 10px; }

.sidebar__pod--blog {
  border-bottom: none !important; }
  .sidebar__pod--blog ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "museo-sans-rounded";
    font-size: 15px; }
    .sidebar__pod--blog ul li a {
      color: #92CDCF;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
      display: block;
      padding: 3px 0; }
      .sidebar__pod--blog ul li a:hover {
        color: #6fbdbf; }

.post-summary {
  display: table;
  width: 100%;
  border-bottom: 1px solid #e3e3e4;
  margin-bottom: 50px;
  padding-bottom: 30px; }
  @media (max-width: 667px) {
    .post-summary {
      padding-bottom: 10px; } }
  .post-summary-img {
    display: table-cell;
    vertical-align: top;
    position: relative;
    width: 250px; }
    @media (max-width: 800px) {
      .post-summary-img {
        width: 150px; } }
    @media (max-width: 480px) {
      .post-summary-img {
        width: 100%; } }
    .post-summary-img img {
      width: 100%;
      display: block;
      margin-bottom: -1px; }
    @media (max-width: 480px) {
      .post-summary-img {
        display: block; } }
  .post-summary-content-cell {
    display: table-cell;
    vertical-align: top; }
    @media (max-width: 480px) {
      .post-summary-content-cell {
        display: block; } }
  .post-summary-content {
    padding-left: 30px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
    background: #ffffff; }
    @media (max-width: 800px) {
      .post-summary-content {
        padding-top: 0px; } }
    @media (max-width: 480px) {
      .post-summary-content {
        padding: 20px 0px 20px 0px; } }
    .post-summary-content h3,
    .post-summary-content h4 {
      margin: 0 0 5px 0 !important; }
    .post-summary-content h3 a {
      color: #31353D; }
      .post-summary-content h3 a:hover {
        color: #0b0b0b; }
    .post-summary-content h4 a {
      color: #92CDCF; }
      .post-summary-content h4 a:hover {
        color: #6fbdbf; }
    .post-summary-content p {
      margin: 0 0 15px 0 !important; }
  .post-summary:first-of-type {
    border-bottom: 0px; }
    @media (max-width: 800px) {
      .post-summary:first-of-type {
        border-bottom: 1px solid #e3e3e4; } }
    .post-summary:first-of-type .post-summary-content-cell {
      vertical-align: bottom; }
      @media (max-width: 800px) {
        .post-summary:first-of-type .post-summary-content-cell {
          display: block; } }
    .post-summary:first-of-type .post-summary-content {
      padding-bottom: 20px; }
      @media (max-width: 800px) {
        .post-summary:first-of-type .post-summary-content {
          padding-top: 10px;
          padding-left: 0px; } }
    @media (max-width: 800px) {
      .post-summary:first-of-type .post-summary-img {
        display: block; } }
    .post-summary:first-of-type .post-summary-img img {
      margin-bottom: 0;
      width: 175%; }
      @media (max-width: 480px) {
        .post-summary:first-of-type .post-summary-img img {
          width: 100%; } }

.article-content p {
  font-size: 21px;
  line-height: 1.6; }
@media (max-width: 480px) {
  .article-content .col-8,
  .article-content .col-4 {
    width: 100%; } }

.cat-landing-banner {
  position: relative;
  margin-bottom: 80px;
  min-height: 350px; }
  .cat-landing-banner .cat-landing-content {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    width: 60%;
    padding: 30px 0 0 30px; }
    @media (max-width: 800px) {
      .cat-landing-banner .cat-landing-content {
        padding-left: 0;
        width: 100%;
        position: static; } }
    @media (max-width: 480px) {
      .cat-landing-banner .cat-landing-content .btn {
        width: 100%;
        text-align: center; } }
    .cat-landing-banner .cat-landing-content h1 {
      line-height: 1.1;
      margin-bottom: 40px !important; }
      @media (max-width: 960px) {
        #body-content .cat-landing-banner .cat-landing-content h1 {
          font-size: 45px; } }

.menu-item {
  margin-left: 7%; }
  .menu-item:not(:last-of-type) {
    margin-bottom: 80px; }
  .menu-item__title {
    color: #92CDCF;
    font-family: "museo-sans-rounded";
    font-weight: 300 !important;
    margin-bottom: 20px !important; }
  .menu-item__option {
    border-bottom: 1px solid #e3e3e4;
    margin: 0 25% 30px 0;
    padding-bottom: 10px; }
    .menu-item__option h4 {
      font-family: "museo-sans-rounded";
      margin-bottom: 5px !important;
      font-size: 17px; }
    .menu-item__option p {
      margin-bottom: 5px;
      font-size: 16px;
      line-height: 1.6; }
    .menu-item__option:last-of-type {
      border-bottom: 0; }
  .menu-item__cost {
    font-family: "museo-sans-rounded"; }
  .menu-item .book-now {
    display: none; }
    .menu-item .book-now a {
      color: #92CDCF;
      text-transform: uppercase;
      float: right;
      font-size: 14px;
      margin: 3px 0 0 0;
      display: block; }
  .menu-item__cost.avilable .book-now {
    display: inline; }
  .menu-item .price {
    color: #f5aaab;
    font-size: 19px; }

#body-content .treatment__column:not(:first-of-type) {
  border-top: 1px solid #e3e3e4; }
#body-content .treatment__product-info {
  border-top: 1px solid #e3e3e4;
  border-bottom: 1px solid #e3e3e4;
  padding: 50px 0;
  margin: 30px 0; }
  #body-content .treatment__product-info h2 {
    font-size: 46px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 25px;
    color: #92CDCF; }
  @media (max-width: 667px) {
    #body-content .treatment__product-info .col-6 {
      width: 100%; } }
#body-content .treatment h3 {
  font-size: 24px; }
#body-content .treatment__product-listing {
  border-top: 1px solid #e3e3e4;
  padding: 50px 0;
  margin: 30px 0; }
#body-content .treatment__item .duration {
  display: inline-block;
  float: right;
  color: #f5aaab; }
#body-content .treatment__item p {
  margin: 0 0  10px; }
#body-content .treatment__item {
  /* p:not(:first-of-type) {
      font-style: italic;
      color: palette(neutral);
  } */ }
#body-content .treatment__item:not(:last-of-type):after {
  margin-top: 35px;
  margin-bottom: 40px;
  background-color: #e3e3e4;
  height: 1px;
  width: 50%;
  content: "";
  display: block; }
@media (max-width: 800px) {
  #body-content .treatment .col-6 {
    width: 100% !important; } }

.column {
  padding: 0 40px; }
  .column.first {
    padding-left: 0; }
  .column.last {
    padding-right: 0; }

.treatment__column {
  padding: 40px 0;
  border-top: 1px solid #e3e3e4; }
.treatment__listing {
  margin-top: 40px; }
.treatment__description h3 {
  font-size: 26px; }

.treatment__product-info + .treatment__column {
  border-top: 0 !important; }

.subSubCat__landscapeImages img {
  width: 100%;
  margin-bottom: 10px; }
.subSubCat__squareImages img {
  width: 49%;
  margin-bottom: 10px; }
  .subSubCat__squareImages img:nth-child(even) {
    float: right; }
  .subSubCat__squareImages img:nth-child(odd) {
    float: left; }

.treatment__item h4 .price {
  display: inline-block;
  float: right; }

#treatments .treatments-list {
  margin: 20px 0 80px; }
  @media (max-width: 667px) {
    #treatments .treatments-list .col-3 {
      width: 50% !important;
      margin-bottom: 30px; } }
  @media (max-width: 480px) {
    #treatments .treatments-list .col-3 {
      width: 100% !important; } }
  #treatments .treatments-list .readmore {
    color: #0b0b0b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px; }
@media (max-width: 667px) {
  #treatments .treatments-titles .col-4,
  #treatments .treatments-titles .col-8 {
    width: 100%; } }
#treatments h1 {
  margin: 0; }
  @media (max-width: 480px) {
    #treatments h1 {
      font-size: 38px; } }
#treatments .readmore {
  margin: 33px 0 0;
  font-family: 'museo-sans-rounded';
  border-bottom: 1px solid #0b0b0b;
  display: inline-block;
  float: right; }
  #treatments .readmore a {
    letter-spacing: 5px;
    font-weight: 600;
    color: #0b0b0b; }
    @media (max-width: 800px) {
      #treatments .readmore a {
        font-size: 13px; } }
  @media (max-width: 667px) {
    #treatments .readmore {
      float: none;
      margin-top: 0;
      margin-bottom: 20px; } }
#treatments h3 {
  position: relative;
  padding-bottom: 15px;
  font-family: "museo-sans-rounded";
  font-weight: 300; }
  #treatments h3:after {
    position: absolute;
    display: block;
    background-color: #C9C9CB;
    content: "";
    bottom: 0;
    left: 0;
    width: 80px;
    height: 1px; }
#treatments a h3 {
  color: #0b0b0b;
  -webkit-transition: all, ease-in-out, 0.3s;
  -moz-transition: all, ease-in-out, 0.3s;
  -ms-transition: all, ease-in-out, 0.3s;
  -o-transition: all, ease-in-out, 0.3s;
  transition: all, ease-in-out, 0.3s; }
#treatments a:hover h3 {
  color: #92CDCF; }
#treatments p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6; }

#feature h1 {
  margin: 0; }
  @media (max-width: 480px) {
    #feature h1 {
      font-size: 38px; } }
#feature .readmore {
  margin: 33px 0 0;
  font-family: 'museo-sans-rounded';
  border-bottom: 1px solid #0b0b0b;
  display: inline-block; }
  @media (max-width: 800px) {
    #feature .readmore {
      margin-top: 15px;
      margin-bottom: 15px; } }
  @media (max-width: 667px) {
    #feature .readmore {
      margin-bottom: 30px; } }
  #feature .readmore a {
    letter-spacing: 5px;
    font-weight: 600;
    color: #0b0b0b; }
#feature .feature-article {
  width: 100%;
  display: table;
  border-bottom: 1px solid #e3e3e4; }
  @media (max-width: 667px) {
    #feature .feature-article {
      display: block; } }
#feature .feature-img, #feature .feature-text {
  width: 50%;
  display: table-cell;
  vertical-align: middle; }
  @media (max-width: 667px) {
    #feature .feature-img, #feature .feature-text {
      display: block;
      width: 100%; } }
#feature .feature-img img {
  width: 100%;
  margin-bottom: -1px; }
#feature .feature-text {
  padding-left: 40px; }
  @media (max-width: 667px) {
    #feature .feature-text {
      padding-left: 0; } }
  #feature .feature-text p {
    margin: 20px 0;
    font-size: 19px; }

#stories {
  padding: 80px 0; }
  #stories h1 {
    margin: 0 0 10px 0; }
    @media (max-width: 480px) {
      #stories h1 {
        font-size: 38px; } }
  #stories .item .tag,
  #stories .item h2 {
    font-family: "museo-sans-rounded";
    margin: 10px 0 0; }
  #stories .item p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6; }
    #stories .item p:last-of-type {
      margin-bottom: 30px; }
  #stories .base-super {
    overflow: visible; }
  #stories .carousel-mask {
    overflow: hidden; }
  #stories .carousel-arrows {
    position: relative; }
    #stories .carousel-arrows button {
      position: absolute;
      background-color: #e3e3e4;
      padding: 20px 15px;
      border: 0;
      cursor: pointer;
      -webkit-transition: background-color 200ms linear;
      -moz-transition: background-color 200ms linear;
      -o-transition: background-color 200ms linear;
      -ms-transition: background-color 200ms linear;
      transition: background-color 200ms linear; }
      @media (max-width: 1170px) {
        #stories .carousel-arrows button {
          padding: 10px; } }
      #stories .carousel-arrows button:hover {
        background-color: #C9C9CB; }
      #stories .carousel-arrows button:focus {
        outline: none; }
      #stories .carousel-arrows button img {
        width: 25px; }
    #stories .carousel-arrows .btn-prev {
      position: absolute;
      left: -60px;
      top: 45%; }
      @media (max-width: 1170px) {
        #stories .carousel-arrows .btn-prev {
          right: 55px;
          top: -100px;
          left: auto; } }
    #stories .carousel-arrows .btn-next {
      position: absolute;
      right: -60px;
      top: 45%; }
      @media (max-width: 1170px) {
        #stories .carousel-arrows .btn-next {
          right: 0;
          top: -100px; } }

.salon:not(:last-of-type) {
  border-bottom: 1px solid #e3e3e4;
  padding-bottom: 20px;
  margin-bottom: 40px; }
.salon h6 {
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 10px 0; }
.salon a {
  color: #0b0b0b; }
  .salon a:hover {
    color: #92CDCF; }
.salon p {
  margin: 20px 0;
  font-size: 16px; }
.salon__hours, .salon__address {
  float: left; }
.salon__address {
  width: 40%; }
  .salon__address p {
    word-wrap: break-word; }
.salon__hours {
  width: 60%; }
  .salon__hours table {
    width: 100%; }
    .salon__hours table h5 {
      margin: 0 0 2px 0; }

.phorest-wrap {
  text-align: center; }
  .phorest-wrap #OSLO-phorest {
    width: 100%;
    margin: 0 auto;
    min-height: 1000px;
    border: 0; }

.btn {
  border-radius: 3px;
  font-family: "museo-sans-rounded";
  font-size: 15px; }
  .btn__inline {
    display: inline-block; }
  .btn__spacing {
    letter-spacing: 5px; }
  .btn__center {
    text-align: center; }
  .btn__uppercase {
    text-transform: uppercase; }
  .btn__pill {
    border-radius: 50px; }
  .btn__bold {
    font-weight: 500; }
  .btn__block {
    display: block;
    width: 100%; }
  .btn__small {
    padding: 8px 20px; }
  .btn__form {
    border: 0px;
    cursor: pointer; }
  .btn__has-icon-right {
    padding-left: 15px;
    padding-right: 15px; }
    .btn__has-icon-right:after {
      content: attr(dataicon);
      font-family: 'fontawesome';
      font-weight: normal;
      margin-left: 10px; }
  .btn__has-icon-left {
    padding-left: 15px;
    padding-right: 15px; }
    .btn__has-icon-left:before {
      content: attr(dataicon);
      font-family: 'fontawesome';
      font-weight: normal;
      margin-right: 10px; }

.btn-group .btn {
  margin-right: 20px;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
    .btn-group .btn {
      margin-right: 0px; } }

#contour fieldset, .contour fieldset {
  border: 0px !important; }

.form {
  font-family: "museo-sans-rounded"; }
  .form ul {
    margin: 0px 0px 25px 20px;
    padding: 0px;
    font-size: 12px;
    color: #31353D;
    letter-spacing: 2px; }
    .form ul li {
      margin-bottom: 10px; }
  .form p {
    font-size: 12px;
    color: #31353D;
    margin-bottom: 25px;
    letter-spacing: 2px;
    background: #f9f9f9;
    padding: 10px;
    color: #343434; }
  .form span.checkboxlist, .form span.radiobuttonlist {
    display: block;
    padding: 25px 0px; }
    .form span.checkboxlist input, .form span.radiobuttonlist input {
      margin-bottom: 10px; }
    .form span.checkboxlist label, .form span.radiobuttonlist label {
      color: #31353D;
      text-transform: none;
      font-weight: normal;
      display: inline;
      margin-bottom: 10px;
      position: relative;
      top: -10px; }
  .form input[type=text],
  .form input[type=email],
  .form input[type=tel],
  .form input[type=password],
  .form textarea,
  .form select {
    width: 100%;
    border-radius: 3px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    margin-bottom: 25px;
    margin-top: 10px;
    padding: 10px;
    font-family: "ff-tisa-web-pro";
    font-size: 15px;
    color: #545454; }
    .form input[type=text]:focus,
    .form input[type=email]:focus,
    .form input[type=tel]:focus,
    .form input[type=password]:focus,
    .form textarea:focus,
    .form select:focus {
      border: 1px solid #cfcfcf;
      outline: none; }
  .form input.three-qtr {
    width: 75%;
    display: block; }
  .form input.half {
    width: 50%;
    display: block; }
  .form input.one-trd {
    width: 33%;
    display: block; }
  .form label {
    color: #92CDCF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-size: 12px; }

.form-error {
  color: #b20d0d; }
  .form-error span.error-msg {
    display: block;
    position: relative;
    top: -15px;
    font-weight: normal;
    font-family: "ff-tisa-web-pro";
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px; }
  .form-error input {
    border: 1px solid #b20d0d;
    background: #fbf2f3;
    color: #b20d0d; }
    .form-error input:focus {
      border: 1px solid #b20d0d;
      outline: none; }

.selector {
  width: 100%;
  font-family: "museo-sans-rounded";
  border-radius: 4px;
  overflow: hidden; }
  .selector ul {
    list-style: none;
    padding: 0px;
    margin: 0px; }
    .selector ul li {
      float: left;
      position: relative;
      padding: 20px;
      text-align: center;
      border: 2px solid #92CDCF;
      color: #92CDCF;
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: 12px;
      font-weight: 700;
      -webkit-transition: all, 0.3s, ease-in-out;
      -moz-transition: all, 0.3s, ease-in-out;
      -ms-transition: all, 0.3s, ease-in-out;
      -o-transition: all, 0.3s, ease-in-out;
      transition: all, 0.3s, ease-in-out; }
      @media (max-width: 1024px) {
        .selector ul li {
          font-size: 10px; } }
      @media (max-width: 800px) {
        .selector ul li {
          font-size: 12px; } }
      .selector ul li:hover {
        color: #80c5c7; }
      .selector ul li label {
        cursor: pointer; }
        .selector ul li label input {
          display: none; }
        .selector ul li label span {
          position: absolute;
          top: 0px;
          left: 0px;
          right: 0px;
          bottom: 0px; }
          .selector ul li label span:after {
            content: attr(data);
            line-height: 3.5; }
            @media (max-width: 1024px) {
              .selector ul li label span:after {
                line-height: 4.1; } }
            @media (max-width: 800px) {
              .selector ul li label span:after {
                line-height: 3.5; } }
      .selector ul li input:checked + span {
        background: #92CDCF;
        color: #ffffff;
        cursor: default; }
      .selector ul li:not(:last-child) {
        border-right-width: 1px; }
      .selector ul li:not(:first-child) {
        border-left-width: 1px; }
    .selector ul.hastwo li {
      width: 50%;
      position: relative; }
    .selector ul.hasfour li {
      width: 25%;
      position: relative; }
      @media (max-width: 480px) {
        .selector ul.hasfour li {
          width: 100%;
          border: 0px;
          border-bottom: 1px solid #92CDCF; } }

#contour span.contourError,
#contour span.field-validation-error .contour span.contourError,
.contour span.field-validation-error {
  color: #b20d0d;
  padding: 0;
  margin-bottom: 5px;
  display: block;
  font-family: "ff-tisa-web-pro";
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  font-size: 16px; }

.popup-content {
  padding: 80px 70px; }
  @media (max-width: 1024px) {
    .popup-content {
      padding: 35px; } }
  @media (max-width: 800px) {
    .popup-content {
      padding: 40px; } }
  .popup-content h1 {
    line-height: 1;
    margin: 0px;
    font-size: 45px;
    letter-spacing: -1px; }
    @media (max-width: 1024px) {
      .popup-content h1 {
        font-size: 35px; } }
    @media (max-width: 800px) {
      .popup-content h1 {
        font-size: 35px; } }
  .popup-content p {
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px; }
    @media (max-width: 800px) {
      .popup-content p {
        display: none; } }
  .popup-content .selector {
    margin-top: 20px; }
    @media (max-width: 800px) {
      .popup-content .selector ul li {
        border: 0px;
        text-align: left;
        width: 100%; }
        .popup-content .selector ul li input + span:before {
          content: "";
          height: 20px;
          width: 20px;
          border-radius: 50%;
          border: 2px solid #92CDCF;
          display: inline-block;
          margin-right: 8px;
          position: relative;
          top: 5px; }
        .popup-content .selector ul li input:checked + span {
          background: #ffffff;
          color: #92CDCF; }
          .popup-content .selector ul li input:checked + span:before {
            content: "";
            height: 20px;
            width: 20px;
            border-radius: 50%;
            background: #92CDCF;
            color: #ffffff;
            display: inline-block;
            margin-right: 8px;
            position: relative;
            top: 5px; } }
  .popup-content .cost {
    font-weight: 300;
    font-family: "museo-sans-rounded";
    font-size: 50px;
    padding: 10px 0px; }
  @media (max-width: 800px) {
    .popup-content .btn {
      font-size: 12px;
      width: 55%;
      position: absolute;
      bottom: 0px;
      right: 0px; } }

.model {
  position: relative;
  overflow: hidden;
  display: block; }
  .model img {
    width: 100%;
    display: block; }
  .model .overlay {
    background: rgba(128, 197, 199, 0.75);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 10px 20px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all, 1s, ease-in;
    -moz-transition: all, 1s, ease-in;
    -ms-transition: all, 1s, ease-in;
    -o-transition: all, 1s, ease-in;
    transition: all, 1s, ease-in; }
    .model .overlay:hover {
      opacity: 1; }
    @media (max-width: 1024px) {
      .model .overlay {
        opacity: 1;
        background: none;
        background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
        /* IE6-9 */ } }
    .model .overlay h4 {
      color: #ffffff;
      font-family: "proxima-nova";
      font-size: 25px;
      margin: 0px;
      padding: 0px;
      line-height: 1; }
      @media (max-width: 1024px) {
        .model .overlay h4 {
          font-size: 17px;
          text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.65); } }
      @media (max-width: 800px) {
        .model .overlay h4 {
          font-size: 25px; } }
    .model .overlay span {
      font-family: "museo-sans-rounded";
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 7px;
      font-size: 14px; }
      @media (max-width: 1024px) {
        .model .overlay span {
          display: none; } }

.intro-panel {
  padding: 0 15%;
  box-shadow: 0px 0px 20px rgba(11, 11, 11, 0.8); }
  @media (max-width: 667px) {
    .intro-panel {
      padding: 0 20px; } }
  .intro-panel h1 {
    line-height: 0.9;
    margin: 0px;
    margin-bottom: 20px; }
  .intro-panel p {
    margin-bottom: 25px;
    font-size: 19px; }
    @media (max-width: 1024px) {
      .intro-panel p {
        font-size: 16px; } }
  @media (max-width: 414px) {
    .intro-panel .btn {
      display: block;
      font-size: 14px; } }

.likes {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 20px;
  text-align: right;
  color: #ffffff;
  font-family: "museo-sans-rounded";
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px; }
  @media (max-width: 1024px) {
    .likes {
      display: none; } }
  .likes i {
    font-size: 18px;
    position: relative;
    top: 2px; }
  .likes--modal i {
    color: #92CDCF; }

.z1,
.z2 {
  position: relative;
  z-index: 2; }
  @media (max-width: 480px) {
    .z1 .col-6,
    .z2 .col-6 {
      width: 100%; } }
  @media (max-width: 800px) {
    .z1,
    .z2 {
      width: 100%; }
      .z1 .col-3,
      .z2 .col-3 {
        width: 50%; } }
    @media (max-width: 800px) and (max-width: 480px) {
      .z1 .col-3,
      .z2 .col-3 {
        width: 100%; } }

.z3 {
  position: relative;
  z-index: 3; }
  @media (max-width: 800px) {
    .z3 {
      width: 100%; } }

@media (max-width: 800px) {
  .gallery-listing div.col-3 {
    width: 33.333333%; } }
@media (max-width: 480px) {
  .gallery-listing div.col-3 {
    width: 50%; } }
@media (max-width: 320px) {
  .gallery-listing div.col-3 {
    width: 100%; } }
#carousel {
  margin-bottom: 60px; }

.carousel {
  position: relative;
  z-index: 1; }
  .carousel .item {
    float: left; }
  .carousel .slick-dots button {
    background: transparent;
    border: 0px;
    font-size: 0px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #ffffff;
    outline: none;
    cursor: pointer; }
  .carousel .slick-dots .slick-active button {
    background: #92CDCF;
    border: 2px solid #92CDCF; }
  .carousel--home {
    color: #ffffff; }
    .carousel--home .slick-track,
    .carousel--home .slick-list {
      height: 100%; }
    .carousel--home .slick-dots {
      position: absolute;
      top: 45%;
      right: 0px;
      z-index: 99999;
      list-style: none;
      padding: 0px;
      margin: 0px; }
      .carousel--home .slick-dots li {
        margin-bottom: 5px; }
    .carousel--home .item {
      width: 100%;
      outline: none; }
      .carousel--home .item .item-wrapper {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 2; }
        @media (max-width: 667px) {
          .carousel--home .item .item-wrapper {
            position: static; }
            .carousel--home .item .item-wrapper .base {
              margin: 0;
              width: 100% !important; } }
      .carousel--home .item img {
        width: 100%;
        display: block;
        opacity: 1;
        position: relative; }
      .carousel--home .item .item-content {
        background: rgba(255,255,255, 0.85);
        width: 450px;
        height: 450px;
        border-radius: 50%;
        text-align: center;
        margin: 0 auto;
        font-family: "museo-sans-rounded"; }
        @media (max-width: 1170px) {
          .carousel--home .item .item-content {
            width: 400px;
            height: 400px; } }
        @media (max-width: 1024px) {
          .carousel--home .item .item-content {
            width: 380px;
            height: 380px; } }
        @media (max-width: 960px) {
          .carousel--home .item .item-content {
            width: 320px;
            height: 320px; } }
        @media (max-width: 800px) {
          .carousel--home .item .item-content {
            width: 100%;
            height: auto;
            padding: 20px 0;
            position: absolute;
            bottom: 0;
            left: 0;
            border-radius: 0; } }
        @media (max-width: 667px) {
          .carousel--home .item .item-content {
            position: static; } }
        .carousel--home .item .item-content h1 {
    		font-size: 44px;
    		font-family: "Ratio-Modern-SC";
    		padding: 0px;
    		margin: 0px;
    		position: relative;
    		font-weight: 400;
    		border: 1px solid;
    		border-right: 0;
    		border-left: 0;
    		width: 80%;
    		margin: 40px auto 40px;
    		padding: 10px 0 10px;
    		color: #97999b;
			text-transform: none !important; }
          @media (max-width: 1170px) {
            .carousel--home .item .item-content h1 {
              font-size: 40px; } }
          @media (max-width: 1024px) {
            .carousel--home .item .item-content h1 {
              font-size: 42px; } }
          @media (max-width: 960px) {
            .carousel--home .item .item-content h1 {
              font-size: 30px;
              margin: 0 auto 15px;
              padding: 15px 0 15px; } }
          @media (max-width: 800px) {
            .carousel--home .item .item-content h1 {
              font-size: 26px; } }
        .carousel--home .item .item-content h2 {
            font-family: "Ratio-Modern-SC";
    		font-weight: 400;
    		letter-spacing: 3px;
    		padding-top: 20%;
    		margin: 0;
    		font-size: 30px;
    		color: #97999b;
			text-transform: none !important; }
          @media (max-width: 800px) {
            .carousel--home .item .item-content h2 {
            font-size: 20px;  
			padding: 0; } }
        .carousel--home .item .item-content a {
          	color: #83B8BA;
    		text-transform: none;
    		font-weight: 500;
    		letter-spacing: 3px; }
  .carousel--stories .slick-arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 5;
    background: transparent;
    font-size: 0px;
    border: 0px;
    background: #31353D;
    height: 40px;
    width: 40px;
    top: -65px;
    right: 20px;
    outline: none;
    cursor: pointer;
    -webkit-transition: all, ease-in-out, 0.3s;
    -moz-transition: all, ease-in-out, 0.3s;
    -ms-transition: all, ease-in-out, 0.3s;
    -o-transition: all, ease-in-out, 0.3s;
    transition: all, ease-in-out, 0.3s; }
  .carousel--stories .slick-prev {
    right: 65px;
    background: #31353D url(/content/img/ico-chev-left.png) center center no-repeat; }
    .carousel--stories .slick-prev:hover {
      background: #92CDCF url(/content/img/ico-chev-left.png) center center no-repeat; }
  .carousel--stories .slick-next {
    background: #31353D url(/content/img/ico-chev-right.png) center center no-repeat; }
    .carousel--stories .slick-next:hover {
      background: #92CDCF url(/content/img/ico-chev-right.png) center center no-repeat; }
  .carousel--stories .item {
    margin: 0 10px;
    outline: none;
    color: #282828;
    border-bottom: 1px solid #f8c1c2;
    position: relative;
    -webkit-transition: all, ease-in-out, 0.3s;
    -moz-transition: all, ease-in-out, 0.3s;
    -ms-transition: all, ease-in-out, 0.3s;
    -o-transition: all, ease-in-out, 0.3s;
    transition: all, ease-in-out, 0.3s; }
    .carousel--stories .item:hover {
      border-bottom: 1px solid #f5aaab; }
      .carousel--stories .item:hover img {
        opacity: 1; }
    .carousel--stories .item img {
      width: 100%;
      display: block;
      opacity: .9;
      -webkit-transition: all, ease-in-out, 0.3s;
      -moz-transition: all, ease-in-out, 0.3s;
      -ms-transition: all, ease-in-out, 0.3s;
      -o-transition: all, ease-in-out, 0.3s;
      transition: all, ease-in-out, 0.3s; }
    .carousel--stories .item .tag {
      color: #f8c1c2;
      font-weight: 500;
      font-family: "Ratio-Modern-SC";
      letter-spacing: 5px;
      text-transform: uppercase;
      font-size: 12px;
      display: block;
      padding-top: 10px; }
    .carousel--stories .item h2 {
      font-size: 18px;
      font-weight: 400; }
      .carousel--stories .item h2:before {
        content: attr(datacat);
        display: block;
        font-weight: 900; }
  .carousel--editorial .slick-arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 5;
    background: transparent;
    font-size: 0px;
    border: 0px;
    background: #31353D;
    height: 40px;
    width: 40px;
    top: -65px;
    right: 20px;
    outline: none;
    cursor: pointer;
    -webkit-transition: all, ease-in-out, 0.3s;
    -moz-transition: all, ease-in-out, 0.3s;
    -ms-transition: all, ease-in-out, 0.3s;
    -o-transition: all, ease-in-out, 0.3s;
    transition: all, ease-in-out, 0.3s; }
  .carousel--editorial .slick-prev {
    right: 65px;
    background: #31353D url(/content/img/ico-chev-left.png) center center no-repeat; }
    .carousel--editorial .slick-prev:hover {
      background: #92CDCF url(/content/img/ico-chev-left.png) center center no-repeat; }
  .carousel--editorial .slick-next {
    background: #31353D url(/content/img/ico-chev-right.png) center center no-repeat; }
    .carousel--editorial .slick-next:hover {
      background: #92CDCF url(/content/img/ico-chev-right.png) center center no-repeat; }
  .carousel--editorial .item {
    margin-right: 20px;
    outline: none;
    color: #282828;
    border-bottom: 1px solid #ddd;
    position: relative;
    -webkit-transition: all, ease-in-out, 0.3s;
    -moz-transition: all, ease-in-out, 0.3s;
    -ms-transition: all, ease-in-out, 0.3s;
    -o-transition: all, ease-in-out, 0.3s;
    transition: all, ease-in-out, 0.3s; }
    .carousel--editorial .item:hover {
      border-bottom: 1px solid #92CDCF; }
      .carousel--editorial .item:hover img {
        opacity: 1; }
    .carousel--editorial .item img {
      width: 100%;
      display: block;
      opacity: .9;
      -webkit-transition: all, ease-in-out, 0.3s;
      -moz-transition: all, ease-in-out, 0.3s;
      -ms-transition: all, ease-in-out, 0.3s;
      -o-transition: all, ease-in-out, 0.3s;
      transition: all, ease-in-out, 0.3s; }
    .carousel--editorial .item .tag {
      color: #92CDCF;
      font-weight: 500;
      font-family: "museo-sans-rounded";
      letter-spacing: 5px;
      text-transform: uppercase;
      font-size: 12px;
      display: block;
      padding-top: 10px; }
    .carousel--editorial .item h2 {
      font-size: 18px;
      font-weight: 700; }
      .carousel--editorial .item h2:before {
        content: attr(datacat);
        display: block;
        font-weight: 900; }
  .carousel--popup {
    overflow: hidden;
    position: relative; }
    .carousel--popup .item {
      float: left;
      outline: none; }
      .carousel--popup .item img {
        width: 100%;
        display: block; }
    .carousel--popup .slick-arrow {
      position: absolute;
      z-index: 5;
      background: transparent;
      font-size: 0px;
      border: 0px;
      background: #31353D;
      height: 40px;
      width: 40px;
      outline: none;
      top: 45%;
      cursor: pointer;
      -webkit-transition: all, ease-in-out, 0.3s;
      -moz-transition: all, ease-in-out, 0.3s;
      -ms-transition: all, ease-in-out, 0.3s;
      -o-transition: all, ease-in-out, 0.3s;
      transition: all, ease-in-out, 0.3s; }
      .carousel--popup .slick-arrow:hover {
        background: #92CDCF; }
    .carousel--popup .slick-prev {
      left: 0px;
      background: #31353D url(/content/img/ico-chev-left.png) center center no-repeat; }
      .carousel--popup .slick-prev:hover {
        background: #92CDCF url(/content/img/ico-chev-left.png) center center no-repeat; }
    .carousel--popup .slick-next {
      right: 0px;
      background: #31353D url(/content/img/ico-chev-right.png) center center no-repeat; }
      .carousel--popup .slick-next:hover {
        background: #92CDCF url(/content/img/ico-chev-right.png) center center no-repeat; }
  .carousel--body-content {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e3e3e4;
    margin-bottom: 40px; }
    .carousel--body-content:focus {
      outline: none; }
    .carousel--body-content .item img {
      max-width: 100%;
      display: block; }
    .carousel--body-content .item h6 {
      margin: 20px 0 15px;
      font-size: 13px; }
    .carousel--body-content .item:focus {
      outline: none; }
    .carousel--body-content .slick-arrow {
      position: absolute;
      z-index: 5;
      background: transparent;
      font-size: 0px;
      border: 0px;
      background: #31353D;
      height: 40px;
      width: 40px;
      outline: none;
      top: 45%;
      cursor: pointer;
      -webkit-transition: all, ease-in-out, 0.3s;
      -moz-transition: all, ease-in-out, 0.3s;
      -ms-transition: all, ease-in-out, 0.3s;
      -o-transition: all, ease-in-out, 0.3s;
      transition: all, ease-in-out, 0.3s; }
      .carousel--body-content .slick-arrow:hover {
        background: #92CDCF; }
    .carousel--body-content .slick-prev {
      left: 0px;
      background: #31353D url(/content/img/ico-chev-left.png) center center no-repeat; }
      .carousel--body-content .slick-prev:hover {
        background: #92CDCF url(/content/img/ico-chev-left.png) center center no-repeat; }
    .carousel--body-content .slick-next {
      right: 0px;
      background: #31353D url(/content/img/ico-chev-right.png) center center no-repeat; }
      .carousel--body-content .slick-next:hover {
        background: #92CDCF url(/content/img/ico-chev-right.png) center center no-repeat; }
    .carousel--body-content .js-page {
      position: absolute;
      bottom: 0;
      right: 0;
      background: #ffffff;
      padding: 15px 0 15px 15px; }

.editorial-left {
  position: absolute;
  bottom: 0px;
  background: #ffffff;
  z-index: 1;
  height: 100%; }

.editorial-right {
  position: absolute;
  bottom: 0px;
  background: #ffffff;
  z-index: 1;
  opacity: 0.8;
  height: 100%; }

.mob-hamburger {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 48px;
  font-size: 0;
  text-indent: -999999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  background: transparent;
  color: #0b0b0b;
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 32px;
  font-weight: 700;
  /* active state, i.e. menu open */ }
  .mob-hamburger:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -5px;
    font-size: 12px;
    text-indent: initial;
    width: 100%;
    text-align: center;
    margin-left: 0; }
  .mob-hamburger:focus {
    outline: none; }
  .mob-hamburger span {
    display: block;
    position: absolute;
    text-indent: -9999px;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 6px;
    background: #0b0b0b;
    border-radius: 4px; }
  .mob-hamburger span::before,
  .mob-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #0b0b0b;
    content: "";
    border-radius: 4px; }
  .mob-hamburger span::before {
    top: -12px; }
  .mob-hamburger span::after {
    bottom: -12px; }
  .mob-hamburger--htx span::before, .mob-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s; }
  .mob-hamburger--htx span::before {
    transition-property: top, transform; }
  .mob-hamburger--htx span::after {
    transition-property: bottom, transform; }
  .mob-hamburger--htx.is-active span {
    background: none; }
  .mob-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg); }
  .mob-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg); }
  .mob-hamburger--htx.is-active span::before, .mob-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
    background-color: #ffffff; }

.engage-modal {
  z-index: 1000;
  background: rgba(28, 29, 33, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  display: none; }

.model-window {
  background: #ffffff;
  width: 1130px;
  margin: auto;
  position: relative;
  box-shadow: 0px 0px 20px rgba(11, 11, 11, 0.8); }
  @media (max-width: 1024px) {
    .model-window {
      width: 900px; } }
  @media (max-width: 800px) {
    .model-window {
      width: 90%; } }
  .model-window .popup-close {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #ccc url(/content/img/ico-x.svg) top left no-repeat;
    background-size: 100%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    z-index: 50;
    opacity: .3;
    -webkit-transition: all, ease-in, 0.3s;
    -moz-transition: all, ease-in, 0.3s;
    -ms-transition: all, ease-in, 0.3s;
    -o-transition: all, ease-in, 0.3s;
    transition: all, ease-in, 0.3s; }
    .model-window .popup-close:hover {
      opacity: .6; }
  .model-window .static-img {
    display: none;
    width: 100%; }
  @media (max-width: 800px) {
    .model-window .col-6 {
      width: 55%; }
      .model-window .col-6:first-child {
        width: 45%; }
        .model-window .col-6:first-child .static-img {
          display: block; }
        .model-window .col-6:first-child .carousel--popup {
          display: none; } }

.lock-body {
  overflow-y: hidden; }
  @media (max-width: 800px) {
    .lock-body {
      overflow-y: auto; } }

@media (max-width: 667px) {
  .membership .col-6 {
    width: 75%; }
    .membership .col-6:first-child {
      width: 25%; } }
@media (max-width: 480px) {
  .membership .col-6 {
    width: 100%; }
    .membership .col-6:first-child {
      width: 100%;
      margin-bottom: 20px; } }

@media (max-width: 667px) {
  .contact-page .col-5 {
    width: 100%;
    margin-bottom: 50px; } }
@media (max-width: 667px) {
  .contact-page .col-7 {
    width: 100%; } }

#data-article-listing .btn-group {
  text-align: center; }

/* Include State Sasss */
/* Include Theme Sass */
.epi-editContainer .banner__lowerpage {
  height: auto !important; }

/*# sourceMappingURL=OSLO-main.css.map */
