

/* ------------------------------------------------------
TABLE OF CONTENTS

**** Box Model Reset

**** Typography
---- Headings
---- Lists
---- Breadcrumbs
---- Text level elements
---- Links

**** Images

**** Design Patterns
---- Highlight

**** Helper classes
---- Clearfix
---- Hiding classes
---- Pseudo elements
---- Floats and positioning


**** Template Layout
---- Column System
---- container
---- Sections
---- Blocks
---- Background colours
---- Content Box

---- Header
---- Content
---- Footer

FONTS

font-family: 'Peignot W01', serif
font-weight: 200;

font-family: 'Proxima Nova W01', sans-serif;
font-weight: 200;
font-weight: 400;

------------------------------------------------------ */



/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */

html {
    font-size: 62.5%;
}

body {
    line-height: 1.4;
    font-size: 1.6em;
    color: #222;
    font-family: 'Proxima Nova W01', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ---- Headings ---- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 1.5rem 0;
    font-family: 'Proxima Nova W01', sans-serif;
    font-weight: 400;
}

    ol + h1,
    ol + h2,
    ol + h3,
    ol + h4,
    ol + h5,
    ol + h6,
    ul + h1,
    ul + h2,
    ul + h3,
    ul + h4,
    ul + h5,
    ul + h6,
    p + h1,
    p + h2,
    p + h3,
    p + h4,
    p + h5,
    p + h6 {
        margin-top: 3rem;
    }


h1, .h1 {
    line-height: 3.6rem;
    font-size: 3.2rem;
    font-family: 'Peignot W01', serif;
    text-transform: uppercase;
    font-weight: 200;
    color: #23a5b7;
}

h2, .h2 {
    color: #141f6c;
    font-size: 2.6rem;
    line-height: 1.2;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    font-weight: 200;
}

h3, .h3 {
    color: #141f6c;
    text-transform: uppercase;
    font-size: 1.9rem;
}

h4, .h4 {
    font-size: 1.8rem;
    color: #23a5b7;
}

h5, .h5 {
    font-size: 1.7rem;
}

.heading-inline {
    display: inline;
    float: left;
    padding: 0;
}

p,
ol,
ul,
dl,
address {
    margin: 0 0 1.5rem;
}

small {
    font-size: 1.28rem;
}


/* ---- Lists ---- */
ul,
ol {
    padding: 0 0 0 2rem;
}

li ul,
li ol {
    margin: 1rem 0;
}

ul {
    list-style-type: disc;
}

ul.inline,
ol.inline {
    list-style-type: none;
    margin-left: 0;
}
    ul.inline > li,
    ol.inline > li {
        display: inline-block;
        padding-left: 12px;
        padding-right: 12px;
    }


/* ---- Breadcrumbs ---- */
.breadcrumb {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 10px 0;
    border-top: 1px solid #f3f1f1;
    border-bottom: 1px solid #f3f1f1;
    font-size: 1.4rem;
    color: #444;
}
    .breadcrumb > li {
        display: inline;
    }
    .breadcrumb > li:before {
        content: "\00a0//\00a0";
    }
    .breadcrumb > li:first-child:before {
        content: none;
    }




/* ---- Text level elements ---- */
abbr[title] {
    border-bottom: 1px dotted #c6bfbf;
    cursor: help;
}

b, strong {
    font-weight: 500;
}

dfn {
    font-style: italic;
}

ins {
    background-color: #f6f6f6;
    color: #473f3f;
    text-decoration: none;
}

mark {
    background-color: #f6f6f6;
    color: #473f3f;
    font-style: italic;
    font-weight: bold;
}

pre,
code,
kbd,
samp {
    font-family: 'Monaco', 'Courier New', monospace;
    color: #484040;
    background: #efefef;
    background: rgba(0, 0, 0, .07);
    padding: 0 2px;
    margin: 0 -2px;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}


/* ---- Links ---- */
a {
    color: #23a5b7;
    word-break: break-word;
    transition: color 140ms ease-in-out;
}

a:hover,
a:active,
a:focus {
    color: #141f6c;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
    outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
    outline: 0;
}

@media screen and (min-width: 75em) {/* 1200px */
    .tel-link {
        color: inherit;
        text-decoration: inherit;
    }
}



/* ------------------------------------------------------
**** Images
------------------------------------------------------ */

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}



/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */


hr {
    margin: 30px 0;
    border: 0px;
    border-bottom: 1px solid #adaba9;
}

/* ---- Highlight ---- */
.highlight,
.highlight--right,
.highlight--left {
    margin: 0 0 1.5rem;
    padding: 30px;
    background: #f6f6f6;
    clear: both;
}

@media screen and (min-width: 1000px) {
    .highlight--left {
        float: left;
        width: 45%;
        margin-right: 20px;
        clear: right;
    }

    .highlight--right {
        float: right;
        width: 45%;
        margin-left: 20px;
        clear: left;
    }
}

.highlight *:last-child,
.highlight--right *:last-child,
.highlight--left *:last-child {
    margin-bottom: 0;
}




/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */
.clear {
    height: 0;
    clear: both;
    display: block;
}

.-clearfix:before,
.-clearfix:after {
    content: " ";
    display: table;
}

.-clearfix:after {
    clear: both;
}


/* ---- Hiding classes ---- */
.-ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
}

.-ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.-hidden {
    display: none !important;
    visibility: hidden;
}

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

.-vis-hidden.focusable:active,
.-vis-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.-invisible {
    visibility: hidden;
}


/* ---- Pseudo elements ---- */

/* Angle Brackets */
.-r-arrow-after:after {
    content: "\00a0\003e";
}
.-r-arrow-before:before {
    content: "\003e\00a0";
}
.-l-arrow-after:after {
    content: "\00a0\003c";
}
.-l-arrow-before:before {
    content: "\003c\00a0";
}

/* Ellipsis */
.ellipsis-2:after {
    content: "..";
}
.ellipsis-3:after {
    content: "...";
}



/* ---- Floats and positioning ---- */

.left {
    margin: 0 30px 30px 0;
    float: left;
}

.right {
    margin: 0 0 30px 30px;
    float: right;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.block {
    margin: 0 0 30px;
    display: block;
}

@media screen and (max-width: 600px) {
    .left,
    .center,
    .right {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        display: block;
        float: none;
    }
}

/* hide decorative images on mobile */
@media screen and (max-width: 37.4375em) {/* 599px */
    .mobile-hidden {
        display: none;
    }
}


/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */

body {
    background: #f5f6f6;
}

/* ---- Column System ---- */



@media screen and (min-width: 48em) {/* 768px */
    .col-md-6 {
        float: left;
        width: 50%;
        padding-left: 2.1929824561%;
    }
    .col-md-6:first-child {
        padding-left: 0;
    }
}

/* ---- container ---- */

.container {
    margin: 0 15px;
}

@media screen and (min-width: 22.5em) {/* 360px */
    .container {
        margin: 0 20px;
    }
}

@media screen and (min-width: 30em) {/* 480px */
    .container {
        margin: 0 25px;
    }
}

@media screen and (min-width: 48em) {/* 768px */
    .container {
        max-width: 705px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 55em) {/* 880px */
    .container {
        max-width: 820px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 62em) {/* 992px */
    .container {
        max-width: 932px;
    }
}

@media screen and (min-width: 75em) {/* 1200px */
    .container {
        max-width: 1140px;
    }
}



/* ---- Sections ---- */
.section {
    padding: 20px 0;
}

.section--large {
    padding: 35px 0;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .section--large {
        padding: 45px 0;
    }
}
@media screen and (min-width:  48em) { /* 768px */
    .section--large {
        padding: 60px 0;
    }
}

/* ---- Blocks ---- */

/* like sections, but using margin instead of padding */

.block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.block-mb {
    margin-bottom: 20px;
}

.block-large {
    margin-top: 20px;
    margin-bottom: 20px;
}

.block-mb-large {
    margin-bottom: 20px;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .block-large {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .block-mb-large {
        margin-bottom: 25px;
    }
}
@media screen and (min-width:  48em) { /* 768px */
    .block-large {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .block-mb-large {
        margin-bottom: 35px;
    }
}

/* ---- Background colours ---- */
.bg-white {
    background-color: #fff;
}
.bg-lightest-grey {
    background-color: #f5f6f6;
}
.bg-light-grey {
    background-color: #e8eaeb;
}
.bg-teal {
    background-color: #23a5b7;
}
.bg-teal-texture {
    background: #a4d9e6 url(../images/bg_banner-texture_portrait.jpg) no-repeat;
    background-size: cover;
}
@media screen and (min-width: 62em) {/* 992px */
    .bg-teal-texture {
        background-image: url(../images/bg_banner-texture_landscape.jpg);
    }
}
.bg-grey {
    background-color: #898e94;
}
.bg-dark-grey {
    background: #4b525b;
}
.bg-darkest-grey {
    background: #2a333e;
}

/* Text on dark backgrounds */

.reverse-text {
    color: #fff;
}

.reverse-text a {
    color: #fff;
    text-decoration: none;
}

.reverse-text a:hover,
.reverse-text a:active,
.reverse-text a:focus {
    color: #fff;
    text-decoration: underline;
}

.pale-reverse-text,
.pale-reverse-text a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}


.pale-reverse-text a:hover,
.pale-reverse-text a:active,
.pale-reverse-text a:focus {
    color: #fff;
    text-decoration: underline;
}



/* ---- Content Box ---- */

.box {
    padding: 20px 15px;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .box {
        padding: 20px;
    }
}
@media screen and (min-width:  48em) { /* 768px */
    .box {
        padding: 30px;
    }
}

.box > *:last-child {
    margin-bottom: 0;
}


/* ---- Header ---- */



.banner {
    background: no-repeat center center;
    background-size: 100% auto;
}

.banner:before {
    content: '\00a0';
    display: block;
    padding-top: 14%;
}

.banner--home:before {
    content: '\00a0';
    display: block;
    padding-top: 16%;
}

.banner--home {
    background: no-repeat center center;
    background-size: 100% auto;
    min-height: 50px;
    background-image: url(../images/banners/bnr_home-small_v6.jpg);
}

@media screen and (min-width: 37.5em) {/* 600px */

    .header {
        max-height: 630px;
    }

    .banner:before {
        padding-top: 18.25%;
    }
    .banner--home {
        background-image: url(../images/banners/bnr_home_v6.jpg);
    }
    .banner--home:before {
        padding-top: 33%;
    }
}

.logo {
    padding: 30px 40px;
    text-align: center;
}
@media screen and (max-width: 37.4375em) {/* 599px */
    .logo {
        max-width: 80%;
        padding-bottom: 16px;
        margin: auto;
    }
}


.header__contact {
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    background: rgba(245,246,246,.75);
    padding: 15px 20px 15px;
    font-weight: 300;
    color: #444444;
    margin-bottom: 10px;
    text-align: center;
}


@media screen and (max-width: 37.4375em) {/* 599px */
    body:not(#home)/*puke*/ .header__contact {
        display: none;
    }
}

.header__contact p {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

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

.header__contact__phone-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 1.8rem;
}
.header__contact__phone-link:hover {
    text-decoration: none;
    color: #23a5b7;
    cursor: default;
}
.header__contact__phone-link:before {
    content: '\00a0';
    width: 13px;
    position: relative;
    top: 1px;
    margin-right: 3px;
    display: inline-block;
    background: url(../images/icon_phone.svg) no-repeat center center;
    background-size: 100% auto;
}

@media screen and (min-width: 45em) {/* 720px */
    .logo {
        padding: 50px 0 40px;
        float: left;
    }
    .header__contact {
        float: right;
        width: 350px;
        text-align: left;
    }
}


.banner {
    display: block;
}

.nav {
    height: 45px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-list__item {
    list-style: none;
    display: inline-block;
    position: relative;
    height: 45px;
}

.nav-list__item:first-child {
    border-left: 0px;
}

.nav-list__item__link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 10px 8px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 240ms ease-in-out;
}

/* mobile nav */
@media screen and (max-width: 61.9375em) {/*991px*/
    .header {
        margin-top: 40px;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 45px;
        z-index: 999;
        background: #23a5b7;
    }

    .nav {
        background: #188da9;
        position: fixed;
        top: 45px;
        right: -100%;
        bottom: 0;
        height: auto;
        z-index: 999;
        transition: all 500ms ease-in-out;
    }

    .js-menu--open.nav {
        right: 0;
    }


    .menu__btn-open {
        cursor: pointer;
        float: right;
        margin-right: 5px;
        width: 45px;
        height: 45px;
        background: url(../images/btn_open.svg) no-repeat center center;
        transition: all 600ms ease-in-out;
        position: relative;
    }

    .menu__btn-open:after {
        content: '\00a0';
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #23a5b7 url(../images/btn_close.svg) no-repeat center center;
        opacity: 0;
        -webkit-transition: opacity 200ms ease-in-out;
        transition: opacity 200ms ease-in-out;
        -webkit-transition-delay: 300ms;
                transition-delay: 300ms;
    }

    .menu__btn-open.js-menu-btn--open:after {
        opacity: 1;
    }

    .nav-list {
        clear: both;
        text-align: left;
    }

    .nav-list__item {
        display: block;
        border-bottom: 1px solid rgba(255,255,255,.35);
    }
    .nav-list__item__link {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* desktop nav */

@media screen and (min-width: 62em) {/* 992px */
    .nav-list__item {
        border-left: 1px solid rgba(255,255,255,.35);
    }
    .nav-list__item:first-child {
        border-left: 0px;
    }
}

@media screen and (min-width: 75em) {/* 1200px */

    .nav-list__item__link {
        padding: 11px 18px 8px;
        font-size: 1.8rem;
    }
}


/* ---- Content ---- */

.content {
    padding: 15px;
}

.mainbar {
    margin-bottom: 30px;
}

.sidebar {
    padding: 20px 0;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .content {
        padding: 30px 30px 15px;
    }
    .mainbar {
        padding: 20px;
        margin: -10px -15px 10px;
        box-shadow: 0 0 6px rgba(0,0,0,0.1);
    }
}

@media screen and (min-width: 48em) {/* 768px */

    .header {
        min-height: 300px;
    }
    .mainbar {
        box-shadow: 0 0 6px rgba(0,0,0,0.2);
        padding: 35px 20px 30px 35px;
        width: 65%;
        float: right;
        margin-top: -95px;
        position: relative;
    }

    #home .mainbar {
        margin-top: -75px;
        padding-top: 35px;

    }

    .sidebar {
        width: 32%;
        float: left;
    }
}


@media screen and (min-width: 62em) {/* 992px */

    .mainbar {
        width: 65%;
        padding: 35px 30px 30px 50px;
    }

    .sidebar {
        width: 30%;
    }
}


@media screen and (min-width: 75em) {/* 1200px */

    .mainbar {
        width: 68%;
    }

    .sidebar {
        width: 27%;
        margin-left: 1%;
    }
}

.sidebar-h2 {
    color: #141f6c;
    margin-bottom: 10px;
}


.sidebar__list {
    list-style: none;
    padding: 0;
}

.sidebar__list li {
    border-bottom: 1px solid #23a5b7;
}

.sidebar__list a {
    padding: 10px 10px 6px 0;
    display: block;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

.sidebar__list a:hover {
    padding-left: 10px;
    padding-right: 0;
}

.sidebar__list .on a {
    font-weight: 500;
    color: #141f6c;
}

.sidebar__list--locations li a {
    color: #444;
}

.sidebar__list--locations strong {
    transition: all 200ms ease-in-out;
    text-transform: uppercase;
    letter-spacing: -0.5;
    color: #23a5b7;
}

.sidebar__list--locations li a:hover strong,
.sidebar__list--locations li a:hover {
    color: #141f6c;
}


/* --- location map links ---- */

.location {
    border-top: 1px solid #ccc;
    margin-bottom: 10px;
    padding-top: 20px;
}

.location__details {
    padding-top: 5px;
}

.location__map-link {
    display: block;
    border: 6px solid #fff;
    box-shadow: 0 0 4px rgba(0,0,0,0.25);
    margin-bottom: 15px;
    transition: box-shadow 220ms ease-in-out;
    position: relative;
}

.location__map-link:after {
    content: 'View on Google Maps';
    text-align: center;
    padding: 34px 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.5);
    color: #141f6c;
    font-weight: 500;
    text-shadow: 0 0 3px #fff;
    transition: opacity 220ms ease-in-out;
    opacity: 0;
}

.location__map-link.location__map-link--large:hover:after {
    padding-top: 86px;
}

.location__map-link:hover {
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.location__map-link:hover:after {
    opacity: 1;
}

@media screen and (min-width: 75em) {/* 1200px */
    .location__details {
        float: left;
        width: 50%;
    }
    .location__map-link {
        width: 44%;
        float: right;
    }
}



/* --- Staff cards --- */

.staff-card {
    border-bottom: 1px solid #adaba9;
    margin: 16px 0;
    padding: 0 0 16px;
    clear: both;
}
.staff-card:first-of-type {
    border-top: 1px solid #adaba9;
    padding-top: 16px;
}
.staff-card {
    display: grid;
    grid-template-columns: auto 110px;
    gap: 16px;
}
.start-card__text {
    grid-area: 1;
    align-items: center;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}

.staff-card img {
    grid-column-start: 2;
    margin: 0%;
}


/* --- homepage --- */

.home-list-columns {
    margin-bottom: 30px;
}

@media screen and (min-width: 75em) {/* 1200px */
    .home-list-columns {
        width: 46%;
        float: left;
    }
    .home-list-columns:last-child {
        float: right;
    }
}





.lists-w-images {
    list-style: none;
    padding: 0;
}

.lists-w-images li {
    background: #e8eaeb;
    margin-bottom: 23px;
    text-align: right;
}
.lists-w-images--tight-spacing li {
    margin-bottom: 12px;
}


.lists-w-images a {
    height: 64px;
    padding: 20px 20px;
    display: block;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

.lists-w-images a:hover,
.lists-w-images a:focus,
.lists-w-images a:active {
    background-color: #afdce7;
}

.lists-w-images.lists-w-images--large li {
    margin-bottom: 10px;
}

.lists-w-images.lists-w-images--large a {
    height: 98.666666667px;
    padding-top: 32px;
}

/* procedures */

.lists-w-images .btn-procedure {
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-left: 80px;
}

.btn-procedure--hand {
    background-image: url(../images/btn_procedure-hand.png);
}

.btn-procedure--cosmetic {
    background-image: url(../images/btn_procedure-cosmetic.png);
}

.btn-procedure--skin {
    background-image: url(../images/btn_procedure-skin.png);
}


/* drs */

.lists-w-images .btn-dr {
    background-repeat: no-repeat;
    background-size: auto 98%;
    padding-left: 110px;
    background-position: left bottom;
}

.btn-dr--nikitins {
    background-image: url(../images/btn_dr_nikitins.png);
}

.btn-dr--molony {
    background-image: url(../images/btn_dr_molony.png);
}


/* hand therapists */

.lists-w-images .btn-tp {
    background-repeat: no-repeat;
    background-size: auto 98%;
    background-position: left bottom;
    padding-left: 100px;
}

.btn-tp--minchin {
    background-image: url(../images/btn_kathy-minchin.png);
}

.btn-tp--degaris {
    background-image: url(../images/btn_belinda-degaris.png);
}

.btn-tp--bowley {
    background-image: url(../images/btn_hannah-bowley.png);
}

.btn-tp--elliot {
    background-image: url(../images/btn_erica-elliot.png);
}

.btn-tp--simula {
    background-image: url(../images/btn_jack-simula.png);
}

/* ---- Footer ---- */

.footer-logos {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.footer-logos li {
    list-style: none;
    display: inline-block;
    padding: 8px 10px;
}

.footer-links {
    clear: both;
    color: #adaba9;
    line-height: 1.5;
    font-size: 1.4rem;
    margin: 12px 0 20px;
    text-align: center;
}

.footer-links a {
    color: #adaba9;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-links a:active {
    color: #adaba9;
    text-decoration: underline;
}

@media screen and (max-width: 31.875em) { /* 510px */
    .footer-logos li {
        display: block;
        float: left;
        width: 50%;
        padding-bottom: 15px;
    }
    .footer-logos li:first-child {
        /* display: block;
        width: 100%; */
    }
}

@media screen and (min-width: 75em) {/* 1200px */

    .footer-logos {
        float: left;
    }

    .footer-links {
        text-align: right;
        float: right;
        clear: none;
    }
}


