﻿@media all and (max-width: 640px) {
    /* #region [ HEADER ] */

    /* #region [ Mobile Buttons ] */

    header .btn.btn-navigation,
    header.active .btn.btn-navigation,
    header .btn.btn-contact,
    header.active .btn.btn-contact {
        position: absolute;
        top: 0;
        display: block;
        width: 48px;
        height: 48px;
        background: #ffffff;
        color: rgba(51, 51, 51, .5);
        border: none;
        font-size: 120%;
        outline: none;
        pointer-events: all;
        z-index: 1;

        -webkit-transition-property: background-color, color;
        -moz-transition-property: background-color, color;
        -o-transition-property: background-color, color;
        transition-property: background-color, color;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .btn.btn-navigation i,
    header.active .btn.btn-navigation i,
    header .btn.btn-contact i,
    header.active .btn.btn-contact i {
        pointer-events: none;
    }

    header .btn.btn-navigation,
    header.active .btn.btn-navigation {
        left: 0;
    }

    header .btn.btn-contact,
    header.active .btn.btn-contact {
        right: 0;
    }

    header .btn.btn-navigation.active,
    header.active .btn.btn-navigation.active,
    header .btn.btn-contact.active,
    header.active .btn.btn-contact.active {
        background: #333333;
        color: #ffffff;
    }

    header .btn.btn-navigation .line,
    header.active .btn.btn-navigation .line {
        position: absolute;
        left: 12px;
        display: block;
        width: 24px;
        height: 2px;
        background-color: rgba(51, 51, 51, .5);
        border-radius: 1px;

        -webkit-transition-property: background-color, transform, opacity;
        -moz-transition-property: background-color, transform, opacity;
        -o-transition-property: background-color, transform, opacity;
        transition-property: background-color, transform, opacity;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .btn.btn-navigation .line:nth-child(1),
    header.active .btn.btn-navigation .line:nth-child(1) {
        top: 16px;
    }

    header .btn.btn-navigation .line:nth-child(2),
    header.active .btn.btn-navigation .line:nth-child(2) {
        top: 23px;
    }

    header .btn.btn-navigation .line:nth-child(3),
    header.active .btn.btn-navigation .line:nth-child(3) {
        top: 30px;
    }

    header .btn.btn-navigation.active .line,
    header.active .btn.btn-navigation.active .line {
        background-color: #ffffff;
    }

    header .btn.btn-navigation.active .line:nth-child(1),
    header.active .btn.btn-navigation.active .line:nth-child(1) {
        -webkit-transform: translateY(7px) rotate(45deg);
        -moz-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
        -o-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }

    header .btn.btn-navigation.active .line:nth-child(2),
    header.active .btn.btn-navigation.active .line:nth-child(2) {
        -webkit-transform: translateX(-48px);
        -moz-transform: translateX(-48px);
        -ms-transform: translateX(-48px);
        -o-transform: translateX(-48px);
        transform: translateX(-48px);
        opacity: 0;
    }

    header .btn.btn-navigation.active .line:nth-child(3),
    header.active .btn.btn-navigation.active .line:nth-child(3) {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        -moz-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
        -o-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }

    header .btn.btn-contact i,
    header.active .btn.btn-contact i {
        -webkit-transition-property: transform;
        -moz-transition-property: transform;
        -o-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .btn.btn-contact.active i,
    header.active .btn.btn-contact.active i {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    /* #endregion */

    /* #region [ Base ] */

    header,
    header.active {
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 48px;
        background: #ffffff;
        z-index: 10;
    }

    /* #endregion */

    /* #region [ Logo ] */

    header .logo,
    header.active .logo {
        position: relative;
        display: block;
        width: 100%;
        height: 48px;
        text-align: center;
    }

    header .logo img,
    header.active .logo img {
        display: inline-block;
        width: auto;
        height: 100%;
        padding: 4px;
    }

    /* #endregion */

    /* #region [ Contact ] */

    header .contact,
    header.active .contact {
        position: fixed;
        right: -48px;
        top: 48px;
        display: block;
        width: 48px;
        height: 0;
        min-height: calc(100% - 48px);
        background-color: rgba(51, 51, 51, .85);
        overflow-y: auto;
        -webkit-box-shadow: -4px 0 4px -4px rgba(51, 51, 51, .75);
        -moz-box-shadow: -4px 0 4px -4px rgba(51, 51, 51, .75);
        box-shadow: -4px 0 4px -4px rgba(51, 51, 51, .75);

        -webkit-transition-property: right;
        -moz-transition-property: right;
        -o-transition-property: right;
        transition-property: right;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .contact.active,
    header.active .contact.active {
        right: 0px;
    }

    header .contact>ul,
    header.active .contact>ul {
        list-style-type: none;
        background-color: #333333;
    }

    header .contact>ul>li,
    header.active .contact>ul>li {
        display: block;
        width: 100%;
        height: 48px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        text-align: center;
    }

    header .contact>ul>li>a.lnk,
    header.active .contact>ul>li>a.lnk {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 48px;
        color: rgba(255, 255, 255, .5);
        text-decoration: none;
        text-transform: uppercase;
        cursor: pointer;

        -webkit-transition-property: background-color, color;
        -moz-transition-property: background-color, color;
        -o-transition-property: background-color, color;
        transition-property: background-color, color;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .contact>ul>li>a.lnk.active,
    header.active .contact>ul>li>a.lnk.active,
    header .contact>ul>li>a.lnk:hover,
    header.active .contact>ul>li>a.lnk:hover {
        background: rgba(255, 255, 255, .1);
        color: #ffffff;
    }

    /* #endregion */

    /* #region [ Navigation ] */

    header .navigation,
    header.active .navigation {
        position: fixed;
        left: -95%;
        top: 48px;
        display: block;
        width: 85%;
        height: 0;
        min-height: calc(100% - 48px);
        background-color: rgba(51, 51, 51, .85);
        overflow-y: auto;
        -webkit-box-shadow: -4px 0 4px -4px rgba(51, 51, 51, .75);
        -moz-box-shadow: -4px 0 4px -4px rgba(51, 51, 51, .75);
        box-shadow: -4px 0 4px -4px rgba(51, 51, 51, .75);


        -webkit-transition-property: left;
        -moz-transition-property: left;
        -o-transition-property: left;
        transition-property: left;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .navigation.active,
    header.active .navigation.active {
        left: 0%;
    }

    header .navigation>ul,
    header.active .navigation>ul {
        list-style-type: none;
        background-color: #333333;
    }

    header .navigation>ul>li,
    header.active .navigation>ul>li {
        display: block;
        width: 100%;
        text-align: left;
    }

    header .navigation>ul>li>a.lnk.lnk-main,
    header.active .navigation>ul>li>a.lnk.lnk-main,
    header .navigation>ul>li>ul>li>a.lnk.lnk-sub,
    header.active .navigation>ul>li>ul>li>a.lnk.lnk-sub {
        display: block;
        width: 100%;
        height: 32px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        line-height: 32px;
        color: rgba(255, 255, 255, .5);
        text-decoration: none;
        text-transform: uppercase;
        padding: 0 0 0 16px;
        cursor: pointer;

        -webkit-transition-property: background-color, color;
        -moz-transition-property: background-color, color;
        -o-transition-property: background-color, color;
        transition-property: background-color, color;
        -webkit-transition-duration: 250ms;
        -moz-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    header .navigation>ul>li:first-child>a.lnk.lnk-main,
    header.active .navigation>ul>li:first-child>a.lnk.lnk-main {
        border-top: none;
    }

    header .navigation>ul>li>ul,
    header.active .navigation>ul>li>ul {
        background-color: #000000;
        display: none;
    }

    header .navigation>ul>li>ul>li>a.lnk.lnk-sub,
    header.active .navigation>ul>li>ul>li>a.lnk.lnk-sub {
        text-transform: none;
    }

    header .navigation>ul>li>ul>li>a.lnk.lnk-sub::before,
    header.active .navigation>ul>li>ul>li>a.lnk.lnk-sub::before {
        content: "-";
        padding: 0 8px;
    }

    header .navigation>ul>li>a.lnk.lnk-main.active,
    header.active .navigation>ul>li>a.lnk.lnk-main.active {
        background-color: rgba(255, 255, 255, .25);
        color: #ffffff;
    }

    header .navigation>ul>li>a.lnk.lnk-main.active~ul,
    header.active .navigation>ul>li>a.lnk.lnk-main.active~ul {
        display: block;
    }

    header .navigation>ul>li>a.lnk.lnk-main.active~ul>li>a.lnk.lnk-sub.active,
    header.active .navigation>ul>li>a.lnk.lnk-main.active~ul>li>a.lnk.lnk-sub.active {
        background-color: rgba(210, 171, 102, .75);
        color: #ffffff;
    }

    /* #endregion */

    /* #endregion */

    /* #region [ PAGES / TABLES / CELLS ... ] */

    .table {
        position: relative;
        display: table;
        width: 100%;
        max-width: 1200px;
        height: auto;
        padding: 16px 0;
        margin: 0 auto;
    }

    .table-inner {
        max-width: 100%;
        margin: 0;
    }

    .table-top {
        vertical-align: top;
    }

    .table-middle {
        vertical-align: middle;
    }

    .table-bottom {
        vertical-align: bottom;
    }

    .table-no-padding {
        padding: 0;
    }

    .cell {
        position: relative;
        display: table-cell;
        width: auto;
        height: auto;
        padding: 0 16px;
    }

    .cell-top {
        vertical-align: top;
    }

    .cell-middle {
        vertical-align: middle;
    }

    .cell-bottom {
        vertical-align: bottom;
    }

    .cell-no-padding {
        padding: 0;
    }

    .cell_1_12 {
        width: 8.333%;
    }

    .cell_2_12 {
        width: 16.666%;
    }

    .cell_3_12 {
        width: 25%;
    }

    .cell_4_12 {
        width: 33.333%;
    }

    .cell_5_12 {
        width: 41.666%;
    }

    .cell_6_12 {
        width: 50%;
    }

    .cell_7_12 {
        width: 58.333%;
    }

    .cell_8_12 {
        width: 66.666%;
    }

    .cell_9_12 {
        width: 75%;
    }

    .cell_10_12 {
        width: 83.333%;
    }

    .cell_11_12 {
        width: 91.666%;
    }

    .cell_12_12 {
        width: 100%;
    }

    .content>.table,
    .content>.table>.cell {
        display: block;
        width: auto;
        height: auto;
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .text-center {
        text-align: center;
    }

    .text-right {
        text-align: right;
    }

    .page {
        background: #ffffff;
        position: relative;
    }

    .page.invert {
        background: #333333;
    }

    .img.img-content {
        position: relative;
        display: block;
        width: auto;
        height: auto;
        padding: 8px 0;
        background: url(./../img/img_bg.jpg) no-repeat 100% 0%, 
                    url(./../img/img_bg.jpg) no-repeat 0% 100%;
        background-size: 61% 2px, 61% 2px;
	margin: 16px 0;
    }

    .img.img-content.img-max-width {
        width: 100%;
        height: auto;
    }

    .img.img-content.img-max-height {
        width: auto;
        height: 100%;
    }

    .page.invert .img.img-content {
        background: url(./../img/img_bg_invert.jpg) no-repeat 100% 0%, 
                    url(./../img/img_bg_invert.jpg) no-repeat 0% 100%;
        background-size: 61% 2px, 61% 2px;
    }

    .title.title-content {
        display: inline-block;
        width: auto;
        height: auto;
        line-height: 24px;
        font-weight: normal;
        text-transform: uppercase;
        padding: 8px 0;
        margin: 8px 0;
        color: rgba(51, 51, 51, .75);
        border-bottom: 1px solid rgba(51, 51, 51, .25);
    }

    .page.invert .title.title-content {
        color: rgba(255, 255, 255, .75);
        border-bottom: 1px solid rgba(255, 255, 255, .25);
    }

    .txt.txt-content {
        display: inline-block;
        line-height: 24px;
        margin: 8px 0;
        padding: 8px 0;
        color: #333333;
    }
    
    .page h2,
    .page h3 {
        color: #333333;
    }

    .page.invert .txt.txt-content,
    .page.invert h2,
    .page.invert h3 {
        color: #ffffff;
    }

    .page.invert .txt.txt-content {
        color: #ffffff;
    }

    .btn.btn-content {
        display: inline-block;
        width: auto;
        height: auto;
        padding: 8px 16px;
        margin: 8px 0;
        background: rgba(51, 51, 51, .5);
        color: #ffffff;
        border: none;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }

    .btn.btn-content:hover {
        background: #333333;
        color: #ffffff;
        -webkit-box-shadow: 0 4px 4px -4px rgba(51, 51, 51, .25);
        -moz-box-shadow: 0 4px 4px -4px rgba(51, 51, 51, .25);
        box-shadow: 0 4px 4px -4px rgba(51, 51, 51, .25);
    }

    .page.invert .btn.btn-content {
        background: rgba(255, 255, 255, .5);
        color: #333333;
    }

    .page.invert .btn.btn-content:hover {
        background: #ffffff;
        color: #333333;
    }

    .page .lnk.lnk-content {
        color: rgba(51,51,51,.75);
        text-decoration: none;
        cursor: pointer;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }

    .page.invert .lnk.lnk-content {
        color: rgba(255, 255, 255, .75);
    }

    .page .lnk.lnk-content:hover {
        color: #333333;
        text-shadow: 0 4px 4px rgba(51,51,51,.25);
    }

    .page.invert .lnk.lnk-content:hover {
        color: #ffffff;
        text-shadow: 0 4px 4px rgba(255,255,255,.25);
    }

    .list.list-content {
        position: relative;
        display: inline-block;
        list-style-type: none;
        margin: 8px 0;
        padding: 8px 0;
        text-align: left;
    }

    .list.list-content>li {
        display: block;
        width: auto;
        height: auto;
        line-height: 24px;
        color: #333333;
        background: url(./../img/img_crown.png) no-repeat 0% 50%;
        background-size: 16px 16px;
        padding: 0 0 0 24px;
    }

    .page.invert .list.list-content>li {
        color: #ffffff;
    }

    .page.page-aboutMe::before,
    .page.page-colorAndStyleAdvice::before,
    .page.page-personalShopping::before,
    .page.page-trendSetting::before,
    .page.page-prices::before,
    .page.page-contact::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        opacity: .1;
    }

    .page.page-aboutMe::before {
        background: url(./../img/aboutMe.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-attachment: fixed !important;
        background-color: transparent !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

    .page.page-colorAndStyleAdvice::before {
        background: url(./../img/colorAndStyleAdvice.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-attachment: fixed !important;
        background-color: transparent !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

    .page.page-personalShopping::before {
        background: url(./../img/personalShopping.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-attachment: fixed !important;
        background-color: transparent !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

    .page.page-trendSetting::before {
        background: url(./../img/trendSetting.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-attachment: fixed !important;
        background-color: transparent !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

    .page.page-prices::before {
        background: url(./../img/prices.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-attachment: fixed !important;
        background-color: transparent !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

    .page.page-contact::before {
        background: url(./../img/contact.jpg) !important;
        background-repeat: no-repeat !important;
        background-position: 50% 50% !important;
        background-attachment: fixed !important;
        background-color: transparent !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
        /* opacity: .75 !important; */
    }

    .page .highlight {
        font-weight: bolder;
        font-size: 150%;
    }

    .page .separator {
        position: relative;
        display: block;
        width: 10%;
        height: 1px;
        background-color: rgba(201,201,201,.5);
        margin: 0 auto;
        margin-bottom: 1rem;
    }

    /* #endregion */

    /* #region [ PAGE HOME ] */

    /* #region [ Video ] */

    .page.page-home .container.container-video {
        position: absolute;
        left: 0;
        top: 48px;
        display: block;
        width: 100%;
        height: calc(100% - 48px);
        background: #000000;
        overflow: hidden;
    }

    .page.page-home .container.container-video .btn.btn-play {
        position: absolute;
        left: 50%;
        top: 50%;
        display: none;
        width: 96px;
        height: 96px;
        background: url(./../img/play.png) no-repeat center center;
        background-size: 100% 100%;
        margin-left: -48px;
        margin-top: -48px;
        border: none;
        opacity: .5;
        cursor: pointer;
        outline: none;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
        z-index: 1;
    }

    .page.page-home .container.container-video .btn.btn-play.active {
        display: none;
    }

    .page.page-home .container.container-video .btn.btn-play:hover {
        opacity: 1;
    }

    .page.page-home .container.container-video .btn.btn-muted {
        position: absolute;
        left: 50%;
        bottom: 32px;
        display: none;
        width: 40px;
        height: 40px;
        border: 1px solid #ffffff;
        background: #333333;
        color: #ffffff;
        border-radius: 100%;
        font-size: 125%;
        margin-left: -20px;
        opacity: .5;
        cursor: pointer;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
        z-index: 1;
    }

    .page.page-home .container.container-video .btn.btn-muted.active {
        display: block;
    }

    .page.page-home .container.container-video .btn.btn-muted:hover {
        opacity: 1;
    }

    .page.page-home .container.container-video .video.video-main {
        position: absolute;
        left: 50%;
        top: 50%;
        display: block;
        width: auto;
        height: auto;
        min-height: 100%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    /* #endregion */

    /* #region [ Cover ] */
    
    .page.page-home .container.container-cover {
        position: absolute;
        left: 0;
        top: 48px;
        display: block;
        width: 100%;
        height: calc(100% - 48px);
        background: #000000;
        overflow: hidden;
    }

    .page.page-home .container.container-cover .cover.cover-main {
        position: absolute;
        left: 50%;
        top: 50%;
        display: block;
        width: auto;
        height: auto;
        min-height: 100%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    /* #endregion */

    /* #region [ Navigation ] */

    .page.page-home .container.container-main-navigation {
        display: none;
    }

    /* #endregion */

    /* #endregion */

    /* #region [ FOOTER ] */

    footer .container.container-footer {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        padding: 16px 0;
        background-color: #333333;
    }


    footer .container.container-footer .img-bar {
        border-top: 1px solid rgba(51, 51, 51, .25);
        border-bottom: 1px solid rgba(51, 51, 51, .25);
    }

    footer .container.container-footer .img-bar li {
        display: block;
    }

    footer .container.container-footer .img-bar a {
        cursor: pointer;
        outline: none;
    }

    footer .container.container-footer .img-bar a:hover>.img.img-footer {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    footer .container.container-footer .img.img-footer {
        display: inline-block;
        width: auto;
        max-width: 100%;
        height: 48px;
        padding: 8px 0;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }

    footer .container.container-footer ul {
        list-style-type: none;
        padding: 8px 0;
    }

    footer .container.container-footer ul>li {
        display: inline-block;
        margin-right: -4px;
    }

    footer .container.container-footer ul>li>a.lnk {
        display: block;
        width: auto;
        height: auto;
        line-height: 24px;
        text-transform: uppercase;
        font-size: 90%;
        /* color: rgba(51, 51, 51, .5); */
        color: rgba(255,255,255,.5);
        text-decoration: none;
        cursor: pointer;
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }

    footer .container.container-footer ul>li>a.lnk::after {
        content: "/";
        padding: 0 8px;
        text-shadow: none;
        /* color: rgba(51, 51, 51, .25); */
        color: rgba(255,255,255,.25);
    }

    footer .container.container-footer ul>li:last-child>a.lnk::after {
        content: "";
        padding: 0;
    }

    footer .container.container-footer ul>li>a.lnk:hover {
        /* color: #333333; */
        /* text-shadow: 0 4px 4px rgba(51, 51, 51, .25); */
        
        color: #ffffff;
        text-shadow: 0 4px 4px rgba(255,255,255,.25);
    }

    /* #endregion */
}