/****************

    ERIC MEYER'S RESET

****************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

/* fonts */
@font-face {
    font-family: GothamLight;
    font-weight: 300;
    src: url("/fonts/Gotham-Light.otf") format("opentype");
}

@font-face {
    font-family: GothamBold;
    font-weight: bold;
    src: url("/fonts/Gotham-Bold.otf") format("opentype");
}

@font-face {
    font-family: GothamBook;
    font-weight: normal;
    src: url("/fonts/Gotham-Book.otf") format("opentype");
}

@font-face {
    font-family: GothamMedium;
    font-weight: normal;
    src: url("/fonts/Gotham-Medium.otf") format("opentype");
}


/* remember to define focus styles! */
:focus {
    outline: 0;
}

body {
    line-height: 1.5;
    background: #fff;
}

    body, body * {
        box-sizing: border-box;
        font-family: GothamLight;
        box-sizing: border-box;
    }
/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/****************

    TEXT

****************/

h1 {
}

h2 {
    font-size: 3.125rem;
    font-family: GothamBold;
}

h3 {
    font-family: GothamBook;
    font-size: 1.625rem;
}

h4 {
}

h5 {
}

h6 {
}

p {
    padding-bottom: 20px;
}

/****************

    LINKS

****************/

a {
}

    a:hover {
    }

/****************

    IMAGES

****************/

img {
}

/****************

    LISTS

****************/

ul, ol, dl {
}

dt {
}

dd, li {
}

/****************

    TABLES

****************/

table {
}

thead, tbody, tfoot {
}

th, td {
}

/****************

    FORMS

****************/

fieldset {
}

legend {
}

select {
}

option {
}

label {
}

input, textarea {
}

.submit {
}


/*
usefull classes
*/
.clear {
    width: 100%;
    clear: both;
    height: 1%;
    font-size: 1px;
}

.imgleft {
    float: left;
    margin: 0 20px 20px 0;
}

.imgright {
    float: right;
    margin: 0 0 20px 20px;
}

/* POSITIONING */

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.justify {
    text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.container {
    width: 1272px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.row {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

    .row.items-align-right {
        justify-content: end;
    }

    .row [class^="col"] {
        float: left;
        margin: 0.5rem 1rem;
        min-height: 0.125rem;
    }

    .row .no-right-pad[class^="col"] {
        margin: 0.5rem 0 0.5rem 1rem;
    }

    .row .no-left-pad[class^="col"] {
        margin: 0.5rem 1rem 0.5rem 0;
    }


    .row [class^="col"].no-margin {
        margin-top: 0;
        margin-bottom: 0;
    }

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    width: 100%;
}

.col-1-sm {
    width: 4.33%;
}

.col-2-sm {
    width: 12.66%;
}

.col-3-sm {
    width: 21%;
}

.col-4-sm {
    width: 29.33%;
}

.col-5-sm {
    width: 37.66%;
}

.col-6-sm {
    width: 46%;
}

.col-7-sm {
    width: 54.33%;
}

.col-8-sm {
    width: 62.66%;
}

.col-9-sm {
    width: 71%;
}

.col-10-sm {
    width: 79.33%;
}

.col-11-sm {
    width: 87.66%;
}

.col-12-sm {
    width: 96%;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.hidden-sm {
    display: none;
}

@media only screen and (min-width: 1024px) { /* 720px */
    .col-1 {
        width: calc(8.3333% - 2rem);
    }

    .col-2 {
        width: calc(16.6666% - 2rem);
    }

    .col-3 {
        width: calc(25% - 2rem);
    }

    .col-4 {
        width: calc(33.3333% - 2rem);
    }

    .col-5 {
        width: calc(41.6666% - 2rem);
    }

    .col-6 {
        width: calc(50% - 2rem);
    }

    .col-7 {
        width: calc(58.3333% - 2rem);
    }

    .col-8 {
        width: calc(66.6666% - 2rem);
    }

    .col-9 {
        width: calc(75% - 2rem);
    }

    .col-10 {
        width: calc(83.3333% - 2rem);
    }

    .col-11 {
        width: calc(91.6666% - 2rem);
    }

    .col-12 {
        width: calc(100% - 2rem);
    }

    .hidden-sm {
        display: block;
    }
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
}

.header-top {
    line-height: 48px;
    height: 48px;
    color: #fff;
    background: rgba(0,0,0,0.4);
}

.header-contact {
    line-height: 48px;
    padding: 0 25px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}

    .header-contact:hover {
        text-decoration: underline;
    }

.header-social {
    width: 32px;
    height: 32px;
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

nav.main-now {
    background: #fafafa;
    height: 76px;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}

.header-logo {
    margin-top: -22px;
    display: inline-block;
    float: left;
    margin-right: 80px;
}

.navigation {
    list-style: none;
    height: 76px;
}

    .navigation li {
        display: inline-block;
        vertical-align: middle;
        height: 76px;
        padding-left: 24px;
        position: relative;
    }

    .navigation a {
        color: #555;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.875rem;
    }

        .navigation a.active, .navigation a:hover {
            color: #f26622;
        }

    .navigation > li > a {
        display: block;
        line-height: 76px;
    }

    .navigation li .level-2, .navigation li .level-3 {
        background: #fafafa;
        position: absolute;
        padding: 20px 0;
        width: 290px;
        display: none;
    }

    .navigation li .level-2 {
        top: 100%;
        left: -40px;
    }

    .navigation li .level-3 {
        top: -40px;
        left: 100%;
    }

    .navigation li.disable-click:hover .level-2 {
        display: block;
    }

    .navigation li li:hover .level-3 {
        display: block;
    }

    .navigation li .level-2 li, .navigation li .level-3 li {
        height: auto;
        line-height: 1.2;
        font-size: 0.875rem;
        position: relative;
        width: 100%;
    }

    .navigation li .level-2 li {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navigation li .level-3 li {
        padding-left: 0;
        margin: 0;
    }

        .navigation li .level-2 li a, .navigation li .level-3 li a {
            padding-top: 10px;
            padding-bottom: 10px;
            display: block;
        }

    .navigation li .level-2 li:hover > a, .navigation li .level-3 a:hover {
        color: #f26622;
    }


/* home */

/* intro */
.home-intro {
    min-height: 810px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.heading-padding {
    padding-top: 160px;
}

.home-intro-cont {
}

.home-intro:after {
    content: '';
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-intro .container {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    min-height: 810px;
    justify-content: center;
}

.home-intro-heading {
    font-size: 4.625rem;
    line-height: 1.2;
    color: #fff;
    font-family: GothamBook;
}

.home-intro-heading-orange {
    color: #fff;
    line-height: 1.2;
    font-size: 4rem;
    font-family: GothamBook;
    padding-top: 85px;
    padding-bottom: 40px;
    animation: changeColor 1s ease 1s forwards;
    margin-top: 40px;
}

@keyframes changeColor {
    from {
        color: #fff;
    }

    to {
        color: #f26622;
    }
}

.home-intro-content {
    font-size: 1rem;
    color: #fff;
    padding-bottom: 64px;
}

/* services */

.services {
    padding-top: 64px;
    padding-bottom: 64px;
}

.box-tab {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    height: 132px;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

    .box-tab:hover {
        cursor: pointer;
    }

    .box-tab .orange-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 85, 2, 0.8);
        z-index: 0;
    }

    .box-tab:hover .orange-overlay, .box-tab.active .orange-overlay {
        display: none;
    }

    .box-tab .black-overlay {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.65);
        z-index: 0;
    }

    .box-tab:hover .black-overlay, .box-tab.active .black-overlay {
        display: block;
    }

    .box-tab .box-text {
        text-align: center;
        width: 100%;
        color: #fff;
        font-size: 1.125rem;
        font-family: GothamBold;
        position: relative;
        text-transform: uppercase;
        z-index: 5;
    }

.service-info, .service-image {
    display: none;
}

.service-image {
    position: relative;
}

    .service-image img {
        width: 100%;
        height: auto;
        position: relative;
        z-index: -1;
        float: left;
    }

.single-service {
    padding-top: 50px;
}

.service-intro {
    padding-bottom: 50px;
}


.service-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    .service-image .image-wrapper {
        position: relative;
        float: left;
        border-radius: 5px;
        overflow: hidden;
    }

.rounded-border {
    border-radius: 5px;
}

.service-name {
    font-family: GothamLight;
    color: #f26622;
    font-size: 3.125rem;
    padding-bottom: 20px;
    padding-top: 20px;
    line-height: 1.2;
}

button.btn {
    position: relative;
    overflow: hidden;
}

a.btn, .more {
    display: inline-block;
    background: #f26622;
    border-radius: 5px;
    overflow: hidden;
    text-transform: uppercase;
    padding-left: 20px;
    padding-right: 20px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-decoration: none;
    font-family: GothamBold;
    position: relative;
    overflow: hidden;
}

.btn span {
    z-index: 20;
    position: relative;
    font-family: GothamBold;
}

.btn.light-font span {
    font-family: GothamLight;
}

.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(45deg, #b63f05, #b63f05);
    transform-origin: left bottom;
    transform: skewX(-45deg) translateX(-100%);
    transition: transform 0.3s;
    z-index: 1;
}

.btn.alt:hover {
    color: #fff;
}

.more {
    border: 2px solid #ededed;
    background: #fff;
    color: #f26622;
    cursor: pointer;
}

    .more:hover {
        color: #fff;
        background: #f26622;
    }

.btn:hover::before {
    transform: skewX(-45deg) translateX(0%);
}

/* numbers */
.numbers {
    background: url(/images/numbers-bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    padding-top: 95px;
    padding-bottom: 95px;
    position: relative;
}

    .numbers > div {
        position: relative;
        z-index: 20;
    }

    .numbers::after {
        content: '';
        background: rgba(255,255,255,0.9);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

.number {
    padding-bottom: 32px;
}

    .number > div {
        padding-left: 20%;
    }

.orange-number {
    font-family: GothamBold;
    font-size: 2.5rem;
    padding-top: 32px;
    padding-bottom: 5px;
    color: #f26622;
}

    .orange-number span {
        font-family: GothamBold;
    }

.number-desc {
    color: #0d0d0d;
}

.numbers .row .number {
    border: 2px solid #dddee2;
    border-width: 0 0 0 2px;
}

    .numbers .row .number:first-child {
        border: none;
    }

/* advantages */

.advantages {
    padding-top: 60px;
    padding-bottom: 60px;
}

.advantage-list {
    position: relative;
}

.advantages-list li {
    margin-bottom: 20px;
    list-style: none;
    display: flex;
    line-height: 19px;
}

.advantage-list li img {
    margin-right: 15px;
    width: 19px;
    height: 19px;
}

.advantage-list li:last-child {
    margin-bottom: 0;
}

.advantages-box {
    background: #fafafa;
    box-shadow: 10px 10px 5px -10px rgba(0,0,0,0.4);
    overflow: hidden;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    padding: 70px;
    z-index: 20;
    min-width: 400px;
}

.advantages-title {
    font-family: GothamBold;
    font-size: 3.125rem;
    text-align: center;
    color: #515254;
    padding-bottom: 20px;
}

.advantages-video {
    float: right;
    width: 66%;
    margin-right: 8.33%;
    margin-top: 65px;
    position: relative;
    z-index: 2;
}

    .advantages-video .open-popup-link {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .advantages-video img {
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
    }

#video-popup {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

    #video-popup .mfp-close {
        z-index: 100;
        color: #ddd;
    }

    #video-popup video {
        max-width: 100%;
        max-height: 80vh;
        width: 1200px;
        height: auto;
    }

/* news list */

.news-list {
    padding-bottom: 80px;
}

    .news-list h2 {
        color: #f26622;
        font-family: GothamLight;
    }

.latest-news > a > img {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.latest-news h3 {
    color: #818285;
    padding-top: 10px;
    padding-bottom: 10px;
}

.latest-news-title {
    color: inherit;
    text-decoration: none;
}

    .latest-news-title:hover {
        color: #f26622;
    }

.latest-news .post-details, .latest-news .post-tags {
    color: #dddee2;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .latest-news .post-details img {
        margin-right: 5px;
    }

.latest-news .author-img {
    margin-left: 15px;
}

.latest-news .post-tags a {
    color: #d55212;
    text-decoration: none;
}

    .latest-news .post-tags a:hover {
        text-decoration: underline;
    }

.latest-news .post-tags > img {
    margin-left: 0;
    margin-right: 10px;
}

.readmore {
    font-family: GothamBold;
    color: #f26622;
    text-decoration: none;
}

    .readmore:hover {
        text-decoration: underline;
    }

/* old news */

.old-news {
    padding-bottom: 40px;
    float: left;
    clear: left;
    width: 100%;
}

.old-news-img {
    float: left;
    width: 40%;
}

    .old-news-img img {
        border-radius: 5px;
        overflow: hidden;
    }

.old-news .news-intro {
    font-family: GothamLight;
    display: block;
    font-size: 0.8rem;
}

.old-news-txt {
    float: right;
    width: 54%;
    font-family: GothamMedium;
}

    .old-news-txt a {
        text-decoration: none;
        font-family: GothamMedium;
        color: #515254;
        font-size: 1rem;
    }

.more-news-btn {
    float: right;
    width: 54%;
}

.old-news-txt a:hover {
    color: #f26622;
}

.old-news .date {
    color: #dddee2;
    padding-top: 10px;
}

    .old-news .date img {
        margin-right: 10px;
    }

/* quotes */
.quotes {
    padding-top: 64px;
    padding-bottom: 64px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

    .quotes .container {
        z-index: 20;
        position: relative;
    }

    .quotes h2 {
        color: #f26622;
        font-family: GothamLight;
    }

    .quotes::after {
        content: '';
        background: rgba(255,255,255,0.9);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

.quote {
    padding-left: 100px;
    padding-right: 100px;
}

.top-border {
    margin-top: 50px;
    margin-bottom: 20px;
}

.quotes-more {
    font-style: italic;
    font-size: 0.75rem;
    color: #7d7e80;
    text-decoration: none;
    font-family: GothamMedium;
    color: #f26622;
}

    .quotes-more:hover {
        color: #7d7e80;
    }

.quote-name {
    text-align: center;
    font-size: 1.625rem;
    font-family: GothamBook;
    padding-top: 20px;
    padding-bottom: 20px;
}

.slick-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url(/images/btn-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    top: 50%;
    left: 0;
    transform: translateY(10%);
    border: none;
    cursor: pointer;
    text-indent: -99999em;
    z-index: 50;
    background-color: transparent;
}

    .slick-arrow.slick-next {
        left: auto;
        right: 0;
        background-image: url(/images/btn-right.png);
    }

/* doctors */

.doctors {
    padding-top: 64px;
    padding-bottom: 64px;
}

    .doctors h2 {
        color: #515254;
        padding-bottom: 40px;
        font-family: GothamLight;
    }

.doctor {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
}

    .doctor:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.doctors .members-target .doctor {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.doctors .members-tab {
    display: none;
    position: relative;
}

.black-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.doctor.active .black-gradient, .doctor:hover .black-gradient {
    display: block;
}

.white-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.6);
}

.doctor.active .white-overlay, .doctor:hover .white-overlay {
    display: none;
}

.doctor-name {
    color: #ededed;
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    font-size: 0.875rem;
    z-index: 100;
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
}

.orange-box {
    color: #fff;
    padding: 50px 80px;
    background: #f26622;
    position: absolute;
    right: 0;
    width: 50%;
    top: 46px;
    border-radius: 5px;
    clear: left;
}

.doctor-more {
    padding-top: 30px;
}

.doctor-large-img img {
    border-radius: 5px;
    overflow: hidden;
    width: 605px;
    height: auto;
}

.orange-box .title {
    display: block;
    color: #0d0d0d;
    font-family: GothamBold;
}

.orange-box .name {
    font-size: 1.625rem;
    color: #fafafa;
    padding-bottom: 20px;
    font-family: GothamBook;
    display: block;
}

.orange-box .position {
    color: #0d0d0d;
}

.doctor-large-img .btn.alt {
    position: absolute;
    bottom: 0;
    right: 0;
}

.btn.alt {
    border: 2px solid #ededed;
    background: #fff;
    color: #f26622;
}

/* common */

.img-responsive {
    max-width: 100%;
    height: auto;
    transition: transform 1s;
}

.grey-box-img, .right-pricelist img, .image-wrapper, .advantages-video img, .news-list img, .doctor, .doctor-large-img img, .old-news-img img, .member-image, .grey-part img {
    transition: transform 1s;
}

    .img-responsive:hover, .grey-box-img:hover, .right-pricelist img:hover, .image-wrapper:hover, .advantages-video img:hover, .news-list img:hover, .doctor:hover, .doctor-large-img img:hover, .old-news-img img:hover, .member-image:hover, .grey-part img:hover {
        transform: scale(1.05);
    }

.page-head {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 486px;
    display: grid;
    padding-bottom: 50px;
    position: relative;
}

    .page-head::after {
        content: '';
        background: rgba(0,0,0,0.5);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .page-head h1 {
        font-size: 4.625rem;
        color: #fff;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        justify-self: center;
        align-self: end;
        font-family: GothamBook;
        position: relative;
        z-index: 20;
    }

.rte {
    text-align: left;
    clear: left;
}

    .rte img {
        width: 100%;
        height:auto;
        border-radius:5px;
        overflow:hidden;
    }

    .rte ul {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .rte h3 {
        padding-bottom: 20px;
    }

.tab-content ul {
    padding-left: 20px;
}

.rte strong, .price-lines strong, .tab-content strong, .grey-box strong {
    font-family: GothamBold;
}

    .rte strong em, .price-lines strong em, .tab-content strong em, .grey-box strong em {
        font-family: GothamBold;
    }

.rte a {
    color: #f26622;
}

.orange {
    color: #f26622;
}

.rte .orange {
    color: #f26622;
}

.rte h2 {
    color: #0d0d0d;
    font-family: GothamLight;
    font-size: 3.125rem;
    text-align: left;
    padding-bottom: 20px;
    line-height: 1.2;
}

    .rte h2.bold {
        font-family: GothamBold;
    }

    .rte h2.orange {
        color: #f26622;
    }

h2.light {
    font-family: GothamLight;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-64 {
    padding-bottom: 64px;
}

.mt-64 {
    margin-top: 64px;
}

.mb-64 {
    margin-bottom: 64px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-0, .row div.mt-0 {
    margin-top: 0;
}

.mb-0, .row div.mb-0 {
    margin-bottom: 0;
}

/* about us */
.about-page {
    padding-top: 64px;
    padding-bottom: 64px;
}

.mission, .text-quote, .orange-large {
    position: relative;
    padding: 25px 25px 25px 0;
}

.orange-large {
    padding-top: 50px;
    padding-bottom: 40px;
}

    .orange-large a {
        color: #fff;
        text-decoration: none;
    }

        .orange-large a:hover {
            text-decoration: underline;
        }

.text-quote {
    padding-top: 46px;
    padding-bottom: 46px;
    color: #ffffff;
    font-size: 2.25rem;
    font-family: GothamBook;
}

.mission h2 {
    color: #fff;
}

.text-quote::before, .mission::before, .orange-large::before {
    content: "";
    position: absolute;
    top: 0;
    left: -132px;
    width: calc(100% + 100px);
    height: 100%;
    background-color: #515254;
    z-index: -1;
    border-left: 32px solid #f26622;
}

.mission::before, .orange-large::before {
    border-color: #515254;
    background-color: #f26622;
}

.orange-large::before {
    border-color: #f26622;
}

.orange-large {
    font-size: 1.625rem;
    color: #fff;
}


.faq h2 {
    letter-spacing: -2px;
}

.faq-area {
    text-align: left;
}

    .faq-area .question {
        background: #fafafa;
        padding: 10px 20px;
        margin-bottom: 36px;
        cursor: pointer;
        color: #999;
        font-family: GothamBold;
    }

        .faq-area .question:hover, .faq-area .question.active {
            color: #f26622;
        }

        .faq-area .question .open {
            display: none;
        }

        .faq-area .question.active .closed {
            display: none;
        }

        .faq-area .question.active .open {
            display: inline-block;
        }


    .faq-area .answer {
        background: #fafafa;
        padding: 10px 20px;
        margin-bottom: 36px;
        display: none;
    }

/* sideber menu */
.sidebar-menu {
    padding-top: 0;
    padding-bottom: 64px;
    text-align: right;
}

    .sidebar-menu .menu-title {
        color: #000;
        font-family: GothamBold;
        padding-bottom: 12px;
        padding-top: 0;
        font-size: 1.625rem;
    }

    .sidebar-menu a {
        color: #515254;
        margin-bottom: 12px;
        text-decoration: none;
        display: block;
    }

        .sidebar-menu a:hover {
            color: #f26622;
        }


.sidebar-form {
    background: #515254;
    margin-top: 64px;
    padding: 30px 20px;
    border-radius: 5px;
}

    .sidebar-form .form-title {
        color: #fff;
        font-family: GothamBook;
        font-size: 1.625rem;
    }

    .sidebar-form input, .sidebar-form textarea {
        border-radius: 3px;
        border: none;
        background: #ededed;
        margin-top: 20px;
        padding: 10px;
        width: 100%;
    }

    .sidebar-form button {
        background: #f26622;
        color: #fff;
        border: none;
        border-radius: 3px;
        margin-top: 20px;
        display: block;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        cursor: pointer;
    }


/* team */

.team-category {
    background: #515254;
    border-radius: 5px;
    float: left;
    width: 100%;
}

    .team-category > div {
        width: 33.33%;
        float: left;
        height: 78px;
        line-height: 78px;
        color: #fff;
        font-size: 1.125rem;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        position: relative;
    }

        .team-category > div:hover {
            background: #f26622;
        }

.team-subcategory {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 0 0 5px 5px;
    background: #515254;
    display: none;
    z-index: 200;
}

    .team-subcategory > div {
        line-height: 2;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .team-subcategory > div:hover {
            background: #f26622;
        }

.team-category .team-subcategory > div:last-child {
    border-radius: 0 0 5px 5px;
}

.team-category > div:hover .team-subcategory {
    display: block;
}

.team-box {
    background: #efefef;
    cursor: pointer;
    padding: 30px 22px;
    border-radius: 5px;
    text-align: left;
    text-decoration: none;
}

    .team-box:hover {
        background: #f26622;
    }

    .team-box .membertitle {
        display: block;
        color: #f26622;
        font-family: GothamBook;
    }

    .team-box:hover .membertitle {
        color: #fafafa;
    }

    .team-box .membername {
        color: #000;
        font-family: GothamBook;
        font-size: 1.375rem;
    }

.fifth {
    width: 18%;
    float: left;
    margin-left: 2.5%;
    margin-bottom: 2rem;
    height: 183px;
}

/* new team member */

.teammember {
    background: #fafafa;
    padding-bottom: 64px;
    padding-top: 64px;
}

.teammember-more-info {
    padding-top: 64px;
    padding-bottom: 44px;
    background: #515254;
    color: #fff;
    font-family: GothamBook;
}

.teammember-history-info {
    padding-top: 64px;
    padding-bottom: 64px;
    font-family: GothamBook;
    background: #ddd;
}

.teammember-right img {
    border-radius: 5px;
}

.teammember-title {
    font-family: GothamBook;
    color: #515254;
}

.teammember-name {
    color: #f26622;
    font-family: GothamBold;
    font-size: 1.625rem;
    margin: 5px 0 10px 0;
}

.teammember-short {
    font-family: GothamBook;
    color: #515254;
}

.teammember-wp, .teammember-since {
    color: #f26622;
    font-family: GothamMedium;
}

.teammember-work {
    padding-bottom: 10px;
    font-family: GothamBook;
    color: #515254;
}

.teammember-year {
    padding-bottom: 10px;
    font-family: GothamBook;
    color: #515254;
}

.teammember-hr {
    height: 2px;
    background: #ddd;
    margin: 1rem 0;
    border: none;
    width: 180px;
    max-width: 100%;
}

/* service sections */
.service-section {
    padding-top: 33px;
    padding-bottom: 33px;
}

    .service-section h2 {
        font-family: GothamLight;
        font-size: 2.875rem;
        text-align: left;
        line-height: 1.2;
        padding-bottom: 20px;
    }

        .service-section h2.orange {
            text-align: center;
            color: #f26622;
            font-size: 3.125rem;
        }

    .service-section.faq-section h2 {
        text-align: center;
    }

    .service-section.dual-content-section h2 {
        font-size: 1.625rem;
        font-family: GothamLight;
        text-align: center;
    }

.grey-box {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fafafa;
    border-radius: 5px;
}

.grey-box-img {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


.service-section.grey-box-section h2 {
    color: #515254;
}

.align-left {
    text-align: left;
}

.advantages-orange {
    background: #f26622;
    display: flex;
    align-items: center;
    font-size: 3.125rem;
    font-family: GothamLight;
    height: 100%;
    padding: 70px;
    color: #fff;
    text-align: center;
}

.advantages-section .advantages-section-box {
    width: 100%;
    background: #fafafa;
    overflow: hidden;
    padding: 70px;
}

.advantages-section .row {
    border-radius: 5px;
    overflow: hidden;
}

.advantages-section .advantages-title {
    font-size: 1.625rem;
    font-family: GothamBold;
}

.flex-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wide-title-section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wide-title-section {
    padding: 90px 20px;
    color: #f26622;
    font-family: GothamBook;
    font-size: 3.125rem;
}

.tabs-bg {
    border-radius: 5px;
    position: relative;
    background: #fafafa;
}



.tabs-row > div {
    position: relative;
    z-index: 20;
}



.tab-button {
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
    background: #f26622;
    border-radius: 5px;
    margin-bottom: 14px;
    cursor: pointer;
}


    .tab-button:hover, .tab-button.active {
        background: #515254;
    }

.tab-content {
    text-align: left;
    display: none;
}

    .tab-content a {
        color: #f26622;
    }

        .tab-content a:hover {
            text-decoration: none;
        }

.tabs-section .wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
}

.tabs-section .tabs-title {
    text-align: center;
    position: relative;
    z-index: 20;
    font-size: 3.125rem;
    padding-bottom: 40px;
}

.imgleft-section .row, .imgright-section .row {
    align-items: center;
}

.centered-text-section h2 {
    text-align: center;
}

.go-section .grey-part {
    background: linear-gradient(to bottom, #515254 0%, #515254 calc(100% - 46px), #f26622 calc(100% - 46px), #f26622 100%);
    padding-left: 107px;
    padding-top: 65px;
    padding-right: 107px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0;
    padding-bottom: 15px;
}

    .go-section .grey-part img {
        border: 10px solid #fff;
        border-radius: 3px;
        float: left;
        margin-right: 34px;
    }

.go-section h2 {
    font-family: GothamBold;
    color: #fff;
    font-size: 3.125rem;
}

.go-section .grey-part-right {
    color: #fff;
}

.go-section .orange-part {
    background: #f26622;
    margin-top: 0;
    border-radius: 0 0 5px 5px;
    padding-left: 107px;
    padding-top: 34px;
    padding-right: 64px;
    padding-bottom: 64px;
}

.go-section .orange-title {
    width: 180px;
    color: #fff;
    float: left;
    font-size: 2.25rem;
    line-height: 1.3;
    margin-right: 34px;
}

.go-section .orange-text {
    color: #fff;
    overflow: hidden;
}

.team-section h2 {
    text-align: center;
}

.pricelist-banner h2 {
    font-size: 3.125rem;
    font-family: GothamLight;
    text-align: center;
    padding-bottom: 64px;
    padding-right: 20px;
    padding-top: 30px;
}

.pricelist-grey {
    background: #515254;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}

.pricelist-grey {
    padding: 64px 107px 64px 64px;
    position: relative;
}

.pricelist-banner .btn {
    text-transform: none;
}

.left-pricelist {
    float: left;
    width: 60%;
}

.right-pricelist {
    float: right;
    position: relative;
    width: 40%;
    height: 100%;
}

    .right-pricelist img {
        position: absolute;
        bottom: -127px;
        left: 0;
        border: 10px solid #fafafa;
        border-radius: 3px;
    }

.service-section.pricelist-banner {
    padding-bottom: 89px;
}

.imglabel {
    display: inline-block;
    width: 28%;
    float: left;
    margin-left: 2.666%;
    margin-right: 2.666%;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .imglabel span {
        display: block;
    }

.images-label h2 {
    padding-bottom: 50px;
}

.images-label .center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* pricelist */

.prices-table {
    padding-top: 32px;
}

.price-tab {
    cursor: pointer;
    border-radius: 5px;
    background: #515254;
    margin-top: 32px;
}

    .price-tab:hover, .price-tab.active {
        background: #f26622;
    }

    .price-tab .only-active {
        display: none;
        font-size: 1rem;
        color: #000000;
        font-family: GothamBold;
    }

    .price-tab.active .only-active {
        display: block;
    }

    .price-tab.active {
        border-radius: 5px 5px 0 0;
    }

.prices-box {
    padding-top: 45px;
    padding-bottom: 45px;
    background: #fafafa;
    border-radius: 0 0 5px 5px;
    display: none;
}

.price-tab .is-open {
    display: none;
}

.price-tab.active .is-open {
    display: inline-block;
}

.price-tab.active .is-closed {
    display: none;
}

.white {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-family: GothamBold;
}

.price-tab > div {
    padding-top: 20px;
    padding-bottom: 20px;
}

.price-lines {
    margin-bottom: 16px;
}

    .price-lines > div {
        font-family: GothamBook;
        color: #000000;
        font-size: 1rem;
    }


    .price-lines .center {
        color: #f26622;
    }

.pricelist-bottom {
    background: linear-gradient(to right, #fafafa 0%, #fafafa 60%, #f26622 60%, #f26622 100%);
    border-radius: 5px;
}

.payment-orangedesc, .payment-orangedesc * {
    color: #f1f1f1;
    font-family: GothamBook;
}

    .payment-orangedesc h4 {
        color: #f1f1f1;
        padding-bottom: 20px;
        font-family: GothamBold;
    }

.cards {
    padding: 20px 0;
}

    .cards img {
        width: 18%;
        margin-left: 2.5%;
        border-radius: 3px;
        margin-bottom: 20px;
        border-radius: 5px;
        float: left;
    }

        .cards img:first-child {
            margin-left: 0;
        }

/* footer */

footer {
    background: linear-gradient(to bottom, #fff 0%, #fff 440px, #515254 440px, #515254 100%);
    padding-bottom: 20px;
}

.footer-links {
    padding-top: 25px;
    padding-bottom: 25px;
    background: #515254;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}

    .footer-links a {
        color: #fff;
        text-decoration: none;
    }

    .footer-links a {
        text-decoration: underline;
    }

.footer-map {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.home-footer .upper-part .map {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 0 0 5px 5px;
}

.upper-part p {
    color: #f26622;
    font-family: GothamBook;
    text-align: center;
    padding: 20px 0;
}

.parking {
    font-family: GothamBold;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
}

    .parking img {
        margin-right: 20px;
    }

.parking-txt {
    padding-bottom: 0;
    margin-bottom: 0;
    font-family: GothamBook;
    color: #fff;
}

.subfooter {
    background: #676767;
    padding-top: 25px;
    padding-bottom: 40px;
}

    .subfooter .subfooter-title {
        font-family: GothamBold;
        text-align: center;
        padding-bottom: 25px;
        color: #fafafa;
    }

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-partner {
    flex: 1 0 calc(16.66% - 10px);
    max-width: calc(16.66% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .single-partner img {
        max-width: 100%;
        object-fit: contain;
    }

.home-footer .footer-title h2 {
    font-size: 3.125rem;
    color: #000000;
    font-family: GothamBook;
    padding-bottom: 40px;
    text-align: center;
}

.footer-large-phone {
    border-radius: 5px 0 0 5px;
    background: #f26622;
    color: #090909;
    font-size: 1.375rem;
    line-height: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    font-family: GothamMedium;
    width: 50%;
    float: left;
    justify-content: center;
}

    .footer-large-phone img {
        margin-right: 20px;
        height: 30px;
        width: auto;
    }

.footer-large-email {
    border-radius: 0 5px 0 0;
    background: #515254;
    color: #fff;
    font-size: 1.375rem;
    text-align: center;
    line-height: 60px;
    height: 60px;
    font-family: GothamMedium;
    width: 50%;
    float: right;
}

.footer-large-phone, .footer-large-email {
    text-decoration: none;
}

.footer-form {
    width: 50%;
    float: left;
}

.footer-map {
    width: 50%;
    float: right;
}

.home-form {
    padding-right: 32px;
}

    .home-form input, .home-form select, .home-form textarea, .patient-form input, .patient-form textarea {
        border-radius: 5px;
        padding: 10px 20px;
        color: #515254;
        background-color: #ededed;
        border: none;
        width: 100%;
        margin-top: 24px;
        font-size: 1rem;
        font-family: GothamBook;
    }

    .home-form select {
        -moz-appearance: none; /* Firefox */
        -webkit-appearance: none; /* Safari and Chrome */
        appearance: none;
        cursor: pointer;
        color: #8b8b8b;
    }

    .home-form input:first-child {
        margin-top: 30px;
    }

.form-btn .btn, .patient-form .btn {
    height: 40px;
    border-radius: 5px;
    background: #f26622;
    width: 100%;
    line-height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    color: #fff;
    font-family: GothamBook;
    cursor: pointer;
}

.patient-form .btn {
    margin-top: 29px;
}

.form-notification {
    color: #1a1a1a;
    height: 40px;
    display: flex;
    align-items: center;
    font-family: GothamBook;
}

.footer-checkboxes {
    color: #fff;
    font-family: GothamBook;
    padding-top: 30px;
    padding-bottom: 50px;
}

    .footer-checkboxes input {
        margin-right: 20px;
        margin-left: 40px;
    }

        .footer-checkboxes input:first-child {
            margin-left: 0;
        }

.checkbox-input {
    display: none;
}

.checkbox-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-left: 28px;
    margin-right: 15px;
}

.checkbox-label {
    margin-left: 8px;
}

.checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #515254;
    border: 1px solid #fff;
    border-radius: 4px;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: #515254;
    border: 1px solid #fff;
}

    .checkbox-input:checked + .checkbox-custom::after {
        content: "";
        position: absolute;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 1px 1px 0;
        transform: rotate(45deg);
    }


.footer-sector * {
    text-align: center;
}

.sector-title {
    text-transform: uppercase;
    color: #fff;
    font-family: GothamMedium;
    margin-bottom: 14px;
}

.sector-wh-title {
    color: #f26622;
    font-family: GothamMedium;
    font-size: 0.875rem;
}

.sector-wh {
    color: #fff;
    font-family: GothamMedium;
    font-size: 0.875rem;
}

.footer-faux {
    height: 90px;
    display: flex;
    align-items: center;
    border: 2px solid #5f5e5e;
    border-radius: 5px;
    width: 100%;
    background: none;
    text-align: center;
    font-size: 1.375rem;
    font-family: GothamMedium;
    justify-content: center;
    color: #fff;
    margin-top: 20px;
    text-decoration: none;
}

    .footer-faux img {
        margin-right: 35px;
    }

a.footer-large-btn {
    border-radius: 5px;
    background: #f26622;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 1.625rem;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    height: 90px;
    justify-content: center;
}

    a.footer-large-btn span {
        text-decoration: none;
        text-align: center;
        font-family: GothamBold;
        color: #fff;
        text-transform: none;
        line-height: 90px;
        height: 90px;
    }

.footer-payment-types {
    color: #fff;
    font-family: GothamBold;
    padding-bottom: 20px;
    text-align: center;
}

.footer-payment-info {
    padding-top: 10px;
}

    .footer-payment-info p {
        color: #fff;
        text-align: center;
        padding-bottom: 9px;
    }

.other-footer {
    background: #515254;
    padding-top: 64px;
}

.subfooter.other-subfooter {
    background: #5f5e5e;
}

.footer-service {
    background: #666666;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-family: GothamBook;
    display: block;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 50px;
    justify-content: center;
    padding: 5px 10px;
    line-height: 1.1;
}

    .footer-service:hover {
        background: #333;
    }

/* news */
.news-bottom {
    margin-top: 40px;
    border-top: 2px solid #ccc;
    padding-top: 20px;
    color: #0d0d0d;
    text-align: left;
}

.rounded {
    border-radius: 5px;
}

.sub-news {
    padding-top: 64px;
}

    .sub-news h2 {
        font-family: GothamLight;
    }

.news-trio {
    float: left;
    width: 33.33%;
    padding-bottom: 33.33%;
    background-position: center center;
    background-size: cover;
    font-size: 2.25rem;
    color: #fff;
    position: relative;
}

    .news-trio:first-of-type {
        border-radius: 5px 0 0 5px;
        overflow: hidden;
    }

    .news-trio:last-of-type {
        border-radius: 0 5px 5px 0;
        overflow: hidden;
    }

/* If you want text inside of the container */
.news-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-trio:after {
    content: '';
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.news-trio:hover:after {
    background: #f26622;
}

.page-news-head {
    min-height: 810px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

    .page-news-head::after {
        content: '';
        background: rgba(0,0,0,0.5);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .page-news-head h1 {
        font-size: 4.625rem;
        color: #fff;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        justify-self: center;
        align-self: end;
        font-family: GothamBook;
        position: relative;
        z-index: 20;
        line-height: 1.2;
    }

    .page-news-head .container {
        padding-top: 310px;
    }

.news-header {
    border-top: 2px solid #f26622;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 21;
    padding-top: 16px;
}

    .news-header > div {
        display: flex;
        align-items: center;
    }

    .news-header * {
        font-family: GothamBook;
    }

    .news-header img {
        margin-right: 16px;
    }

    .news-header a {
        color: #f26622;
        text-decoration: none;
    }

        .news-header a:hover {
            text-decoration: underline;
        }

.nh-tags, .nh-author {
    color: #fff;
}

.other-news-item {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    .other-news-item::before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.content-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
    text-align: left;
}

    .content-inner::after {
        content: '';
        background: rgba(0,0,0,0.5);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .content-inner:hover::after {
        background: rgba(242,102,34,0.6);
    }

.other-news-title {
    color: #fff;
    font-size: 1.4rem;
    font-family: GothamMedium;
    line-height: 1.2;
    position: relative;
    z-index: 20;
}

.other-news-date {
    font-size: 0.875rem;
    color: #fff;
    position: relative;
    z-index: 20;
}

.other-news {
    padding-bottom: 64px;
}

    .other-news h2 {
        font-family: GothamLight;
    }

/* contact */

footer.footer-contact {
    background: linear-gradient(to bottom, #fff 0%, #fff 310px, #515254 310px, #515254 100%);
}

/* patients page */

.patient-form input, .patient-form textarea {
    background: #ededed;
    border-radius: 5px;
}

/* subservice */

.subservice.pricelist-banner h2 {
    font-size: 2.25rem;
    font-family: GothamLight;
    text-align: center;
    padding-bottom: 64px;
    padding-left: 20px;
    line-height: 1.2;
}

.pricelist-banner .btn {
    text-transform: none;
}

.subservice-pricelist-grey {
    background: #515254;
    float: left;
    clear: both;
    border-radius: 5px;
    width: 120%;
    margin-left: -20%;
    padding-left: 100px;
}

.subservice-pricelist {
    padding-bottom: 15%;
    float: left;
    width: 100%;
}

.subservice-left-pricelist {
    width: 318px;
    max-width: 100%;
    float: left;
}

    .subservice-left-pricelist img {
        border: 10px solid #fff;
        border-radius: 10px;
        width: 100%;
        position: relative;
        bottom: -64px;
    }

.subservice-right-pricelist {
    width: calc(100% - 318px);
    float: right;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    .subservice-right-pricelist h2 {
        font-size: 2.25rem;
        line-height: 1.2;
        color: #fff;
        font-family: GothamMedium;
        padding-top: 40px;
        padding-bottom: 60px;
        letter-spacing: -1px;
    }

.slider {
    padding-top: 64px;
    padding-bottom: 27px;
    border-left: 32px solid #515254;
    width: 120%;
    margin-left: -20%;
    overflow: hidden;
    border-radius: 5px;
    display: flex;
    align-items: stretch;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

    .slider:after {
        content: '';
        background: rgba(242,102,34,0.9);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .slider * {
        position: relative;
        z-index: 20;
    }

    .slider .left-slider {
        float: left;
        width: 45%;
        padding-left: 10%;
        padding-right: 10%;
    }

.left-slider .black {
    padding-top: 10px;
    color: #000;
    font-family: GothamBold;
    font-size: 3.125rem;
    text-align: left;
}

.left-slider .white {
    color: #fff;
    font-family: GothamBold;
    font-size: 3.125rem;
    text-align: left;
}

.slider .subservice-slider {
    float: right;
    width: 55%;
    padding-right: 30px;
}

.slider .slide {
    text-align: left;
    color: #fff;
}

.slick-dots {
    list-style: none;
    text-align: left;
    padding-top: 20px;
}

    .slick-dots li {
        display: inline-block;
        margin-right: 14px;
    }

        .slick-dots li button {
            border-radius: 50%;
            border: none;
            background: #515254;
            width: 12px;
            height: 12px;
            text-indent: -99999em;
            cursor: pointer;
        }

        .slick-dots li.slick-active button {
            background: #fff;
        }


/* waypoints */
.waypoint {
    opacity: 0.1;
    transition: opacity 1s; /* smooth transition for the opacity change */
}

    .waypoint.img-responsive {
        transition: transform 1s, opacity 1s;
    }

#employee {
    position: absolute;
    width: 1px;
    height: 1px;
    background: transparent;
    margin-top: -200px;
}

/* mobile nav */
.menu {
    background: #fafafa;
    float: left;
    width: 100%;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
    position: relative;
}

.hamburger-icon {
    float: right;
    margin-top: 22px;
    padding-right: 20px;
}

.menu .hamburger-close {
    display: none;
}

.menu.opened .hamburger-close {
    display: inline-block;
}

.menu.opened .hamburger-open {
    display: none;
}

.menu.opened {
    background: linear-gradient(to left, #f26622 0%, #f26622 43px, #fafafa 43px, #fafafa 100%);
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav .mobile-ul {
    clear: left;
    padding: 12px 60px 15px 20px;
}

.menu .mobile-logo {
    padding-top: 10px;
    padding-bottom: 10px;
    float: left;
    padding-left: 12px;
}

.menu,
.menu a {
    color: #555;
    text-decoration: none;
    font-size: 1.125rem;
    text-transform: uppercase;
}

    .menu a {
        display: block;
        white-space: nowrap;
    }

    .menu-dropdown,
    .menu input[type=checkbox] {
        display: none;
    }

    .menu label:hover {
        cursor: pointer;
    }

/* narrow styles */
@media screen and (max-width: 1024px) {
    .menu > ul,
    .menu-righticon {
        display: none;
    }

    input[type=checkbox]:checked + ul {
        display: block;
        -webkit-animation: grow 0.5s ease-in-out;
        animation: grow 0.5s ease-in-out;
    }
}

.lang {
    display: inline-block;
    background: #f26622;
    color: #fff;
    position: relative;
    padding-left: 20px;
    padding-right: 25px;
    margin-left: 20px;
    cursor: pointer;
}

    .lang:after {
        content: "\25BC";
        color: white;
        font-size: 0.5rem;
        position: absolute;
        top: 0;
        right: 10px;
    }

    .lang .other {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 20000;
        background: #f26622;
        cursor: pointer;
        padding-left: 20px;
        padding-right: 20px;
    }

        .lang .other a {
            text-decoration: none;
            color: #fff;
        }

    .lang:hover .other {
        display: block;
    }



/* look and feel only, not needed for core menu*/
@-webkit-keyframes grow {
    0% {
        display: none;
        opacity: 0;
    }

    50% {
        display: block;
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes grow {
    0% {
        display: none;
        opacity: 0;
    }

    50% {
        display: block;
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

html {
    font-size: 100%;
}

/*.menu-dropdown a {
    padding: 15px 20px;
}*/

/* narrow  */
@media screen and (max-width: 1024px) {

    .mobile-subnav-icon {
        float: right;
        width: 11px;
        height: 11px;
    }

        .mobile-subnav-icon img {
            width: 100%;
            height: 100%;
        }

    .menu > label {
        width: 20%;
        padding-right: 12px;
        text-align: right;
        display: inline-block;
        position: relative;
        z-index: 205;
    }

        .menu > label img {
            width: auto;
            height: 20px;
            width: 20px;
        }

    .menu a {
        padding: 12px 0 12px 0;
    }

    .menu > ul i {
        float: right;
        padding: 5px 10px;
        background: #012c42;
    }

    .menu-dropdown > li > a {
        color: #999;
        font-size: 0.875rem;
    }

    .menu-hasflyout .menu-dropdown a {
        color: #999;
        padding-left: 20px;
        white-space: pre-wrap;
    }

    .menu-dropdown {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

    .mobile-nav a.active {
        color: #f26622 !important;
    }

    .plus-menu.close {
        display: none;
    }

    .mobile-subnav-icon.opened .plus-menu.open {
        display: none;
    }

    .mobile-subnav-icon.opened .plus-menu.close {
        display: inline-block;
    }
}

@media screen and (min-width: 1025px) {
    .menu {
        max-width: 1024px;
        margin: 0 auto;
    }
}

.row.mobile-slide {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: normal;
}

    .row.mobile-slide.less {
        justify-content: center;
    }

.col-2.members-target {
    flex: 0 0 auto;
    width: calc(20% - 10px);
    margin-left: 5px;
    margin-right: 5px;
}

.row.mobile-slide::-webkit-scrollbar {
    height: 8px;
}

.row.mobile-slide::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

    .responsive-iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.row.single-teammember {
    display: none;
}

#notification {
    display: none;
    background-color: #f26622;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

    #notification.active {
        display: block;
    }

.eu {
    padding-top: 24px;
    padding-bottom: 24px;
}

    .eu .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .eu .container div {
            font-size: 0.9rem;
        }

        .eu .container img {
            margin-right: 20px;
            max-width: 150px;
            height: auto;
        }

/* mobile */
.hide-desktop {
    display: none;
}

a.btn.hide-desktop {
    display: none;
}

.mobile-nav {
    display: none;
}

@media (max-width:1024px) {
    .hide-desktop {
        display: initial;
    }

    a.btn.hide-desktop {
        display: block;
    }

    body {
        padding-top: 40px;
    }

    .hide-mobile {
        display: none !important;
    }

    .row.mobile-slide.less {
        justify-content: normal;
    }

    html, body {
        font-size: 14px;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5000;
    }

    .row [class^="col"] {
        float: left;
        margin-left: 0;
        margin-right: 0;
    }

    nav.main-now, .header-top {
        display: none;
    }

    .row {
        display: block;
    }

    .col-5 {
        width: 100%;
    }

    .grey-box-img {
        height: 500px;
        max-width: 100%;
    }

    .left-pricelist {
        float: none;
        width: 100%;
    }

    .right-pricelist {
        float: none;
        width: 100%;
    }

        .right-pricelist img {
            position: relative;
            margin-top: 0;
            bottom: -50px;
        }

    .pricelist-grey {
        padding: 30px 10px 10px;
    }

    .pricelist-banner h2 {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .news-trio {
        font-size: 1rem;
    }

    .advantages-orange {
        font-size: 2rem;
    }

    .go-section .grey-part {
        padding: 30px 20px 20px;
    }

        .go-section .grey-part img {
            margin-right: 0;
            width: 100%;
            margin-bottom: 20px;
        }

    .go-section .orange-part {
        padding: 10px 20px 30px;
    }

    .go-section .orange-title {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    .go-section .grey-part-right {
        padding-bottom: 35px;
    }

    .sidebar-menu {
        border-top: 2px solid #515254;
        margin-top: 20px;
        padding-top: 20px;
        text-align: center;
    }

    .page-head {
        min-height: 200px;
        padding-bottom: 30px;
    }

        .page-head h1 {
            font-size: 2.5rem;
            line-height: 1.2;
        }

    .rte h2 {
        font-size: 2.5rem;
    }

    .fifth {
        width: 48%;
        margin-left: 1% !important;
        margin-right: 1% !important;
        clear: none !important;
    }

    .number > div {
        padding-left: 0;
    }

    .numbers .row .number {
        border: none;
    }

    .numbers .row .number {
        width: 50%;
        float: left;
    }

    .home-intro {
        min-height: 350px;
    }

        .home-intro .container {
            min-height: 350px;
        }

    .home-intro-heading-orange {
        font-size: 2.5rem;
    }

    .orange-number {
        padding-top: 15px;
    }

    .number {
        padding-bottom: 15px;
    }

    .numbers {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .advantages {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .advantages-box {
        position: relative;
        width: 100%;
        padding: 30px;
        min-width: auto;
    }

    .advantages-title {
        font-size: 2.5rem;
    }

    .advantages-video {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-top: 30px;
    }

    h2 {
        font-size: 2.5rem;
    }

    .post-intro.left {
        margin-bottom: 20px;
    }

    .old-news-img img {
        max-width: 100%;
    }

    .more-news-btn {
        width: 100%;
    }

    .quote {
        padding-left: 50px;
        padding-right: 50px;
    }

    .service-name {
        font-size: 2.5rem;
    }

    .doctor-large-img img {
        width: 100%;
        float: none;
    }

    .doctor-more .orange-box {
        position: relative;
        top: 0;
        width: 100%;
        padding: 30px 30px;
    }

    .news-list {
        padding-bottom: 30px;
    }

    .col-2.members-target {
        width: 50%;
        margin-left: 5px;
        margin-right: 5px;
    }

    .doctor-name {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 0.8rem;
    }

    .home-footer .footer-title h2 {
        font-size: 2.5rem;
    }

    .doctor-large-img .btn.alt {
        position: relative;
        width: 100%;
        text-align: center;
    }

    .footer-large-phone {
        width: 100%;
        border-radius: 5px 5px 0 0;
    }

    .footer-large-email {
        width: 100%;
        border-radius: 0 0 5px 5px;
    }

    .footer-form {
        width: 100%;
        margin-bottom: 30px;
    }

    .home-form {
        padding-right: 0;
    }

    .footer-map {
        width: 100%;
    }

    .sector-title {
        margin-top: 20px;
    }

    .single-partner {
        flex: 1 0 calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
        margin-bottom: 20px;
        padding: 10px;
    }

    footer {
        background: linear-gradient(to bottom, #fff 0%, #fff 462px, #515254 462px, #515254 100%);
    }

    .heading-padding {
        padding-top: 40px;
    }

    .price-tab .white {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .price-lines > div {
        padding-left: 30px;
        text-align: left;
    }

    .row.price-lines {
        border-bottom: 1px solid #ddd;
    }

    .prices-box {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .price-tab > div {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .col-3.payment-orangedesc {
        background: #f26622;
        padding: 20px;
        margin-bottom: 0;
    }

    .pricelist-bottom {
        background: #fafafa;
        padding-bottom: 0;
        border-radius: 5px;
        overflow: hidden;
        padding-top: 0;
    }

    .payment-desc {
        padding: 20px;
    }

    .teammember-more-info {
        padding: 20px;
    }

    .teammember-history-info {
        padding: 20px;
        border-radius: 0 0 5px 5px;
    }

    .teammember .teammember-right {
        margin-bottom: 0;
    }

    .teammember {
        padding-bottom: 0;
        padding-top: 0;
        margin-top: 30px;
    }

    .teammember-right {
        margin-bottom: 0;
    }

        .teammember-right img {
            float: left;
            border-radius: 5px 5px 0 0;
        }

    .teammember-left {
        padding: 20px;
    }

    .team-category > div {
        line-height: 1.3;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .team-subcategory {
        width: 250%;
        top: 78px;
    }

    .other-news .other-news-item {
        width: 48%;
        margin: 1%;
    }

    .other-news-title {
        font-size: 1.2rem;
    }

    .advantages-section .advantages-section-box {
        padding: 30px;
    }

    .tabs-section .tabs-title {
        font-size: 2.5rem;
    }

    .service-section h2 {
        font-size: 2.5rem;
    }

    .grey-box {
        padding-top: 20px;
        padding: 20px;
    }

    .service-section h2.orange {
        font-size: 2.5rem;
    }

    .grey-part-margins {
        margin-top: 30px;
    }

    .orange-part-margins {
        margin-bottom: 30px;
    }

    .service-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .tabs-section .wrapper {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .mobile-logo {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

        .mobile-logo img {
            height: 40px;
            width: auto;
        }

    .orange-large {
        font-size: 1.1rem;
    }

    .page-news-head h1 {
        font-size: 2.5rem;
    }

    .nh-author {
        width: 100%;
        padding-bottom: 20px;
    }

    .nh-tags {
        width: 100%;
    }

    .news-header > div {
        display: block;
    }

    .news-header {
        display: block;
    }

    .page-news-head .container {
        padding-top: 120px;
    }

    .page-news-head {
        min-height: 250px;
    }

    .text-quote {
        font-size: 1.1rem;
    }

    .patient-form .col-6 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .form-btn .btn {
        margin-bottom: 20px;
    }

    .footer-checkboxes {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .box-tab {
        height: 40px;
    }

    .single-service {
        padding-top: 0;
    }

    .sub-news h2 {
        padding-bottom: 30px;
    }

    .sub-news {
        padding-top: 15px;
    }

    .service-intro {
        padding-bottom: 30px;
    }

    .single-service .btn.alt {
        width: 100%;
        text-align: center;
    }

    .employee-rm {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .subservice-left-pricelist {
        width: 80%;
        position: relative;
        float: none;
        margin-left: 10%;
    }

    .subservice-right-pricelist {
        position: relative;
        width: 100%;
        float: none;
        padding-left: 0;
        padding-right: 0;
    }

    .subservice-pricelist-grey {
        width: 100%;
        margin-left: 0;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .subservice-left-pricelist img {
        bottom: initial;
    }

    .subservice-right-pricelist h2 {
        font-size: 1.6rem;
    }

    .slider .left-slider {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    .slider .subservice-slider {
        width: 100%;
        padding-right: 0;
        float: none;
        padding-right: 30px;
        padding-left: 30px;
    }

    .slider {
        padding-top: 30px;
        display: block;
        margin-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .slick-dots li button {
        width: 12px !important;
        height: 12px !important;
    }

    #cookie-law-info .btn-blue {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 1rem;
        font-size: 0.8rem;
    }

    .lang {
        position: absolute;
        padding-left: 20px;
        padding-right: 25px;
        margin-left: 0px;
        display: inline-block;
        float: left;
        height: 100%;
        width: 60px;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        color: #818285;
        background: none;
        max-height: 66px;
    }

        .lang:after {
            display: none;
            /*content: "\25BC";
            color: #818285;
            font-size: 0.5rem;
            position: absolute;
            top: 50%;
            transform:translateY(-50%);
            right: 0px;
                */
        }

        .lang .other {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 20000;
            background: #f26622;
            cursor: pointer;
            padding-left: 20px;
            padding-right: 20px;
        }

    .eu .container {
        display: block;
    }

        .eu .container div {
            width: 100%;
        }

        .eu .container img {
            margin: 0 auto;
            display: block;
            margin-bottom: 24px;
        }
}


.row.blogs-row{
    display:block;
}