html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-width: 960px;
}

html, body, td, input, button, textarea, select, img { font: normal 24px/1 Helvetica, Arial, sans-serif; color: #3D4A4D; }

div, .relative, article, header, footer, section, ul, li, time, figure {
    position: relative;
    width: auto;
    z-index: 1;
    margin: 0;
    padding: 0;
}

table {
    width: auto;
    border-collapse: collapse;
    border: 0;
}
td { padding: 0; vertical-align: top; }

a, a:visited {
    color: #2df2fc;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
a:hover {
    text-decoration: none;
    color: #ff6600;
}

a:focus, button:focus, input:focus, a:active, button:active, input:active { outline: none; }

h1, h2, h3, h4, h5 {
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
}
h1 { font-size: 30px; margin-bottom: 15px; }
h2 { font-size: 25px; margin-bottom: 12px; }
h3 { font-size: 20px; margin-bottom: 10px; }
h4 { font-size: 15px; margin-bottom: 7px; }
h5 { font-size: 12px; margin-bottom: 5px; }

img { line-height: 0; border: 0; }

/*** COMMON **********************************************/

#wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
}

.wrap:before, .wrap:after { content: ""; display: table; line-height: 0; }
.wrap:after { clear: both; }

.clearfix { z-index: 0; }

.container {
    max-width: 890px !important;
    width: auto !important;
}

/*** FORMS **********************************************/

button, .button, .button:visited {
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    cursor: pointer;
    border-radius: 5px;
    background: #00F3FF;
    text-transform: uppercase;
    color: #11384c;
    font-size: 14px;
    height: 55px;
    padding: 0 20px;
    border: none;
    font-family: Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
}
.button, .button:visited {
    display: inline-block;
    text-align: center;
    line-height: 55px;
}
button:hover, .button:hover {
    background: #62d6e2 !important;
    color: #11384c !important;
}

/*** HEADER **********************************************/

header {
    width: 100%;
    background: #081C26;
    color: #fff;
    height: 100%;
    overflow: hidden;
}

#logo {
    position: absolute;
    z-index: 15;
    top: 40px;
    text-align: center;
    left: 5%;
    cursor: pointer;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
#logo img {
    width: 142px;
    height: auto;
}
#logo.invert img { display: none; }
#logo img.dark { display: none;}
#logo.invert img.dark { display: block;}

header nav {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav > div {
    position: absolute;
    width: 20%;
    height: 100%;
    text-align: center;
}
header nav > div.active, header nav > div.active:hover {
    border: none;
}
header nav > div:before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    background: #19393f;
    z-index: 1;
}
header nav > div:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    border-left: solid 1px #00F3FF;
    border-right: solid 1px #00F3FF;
    opacity: 0;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}
header nav > div:hover:after { opacity: 1; }
header nav > div.active:after { opacity: 0 !important; }
header nav > div:hover:before { opacity: 0; }
header nav > div:nth-child(1) { left: 20%; }
header nav > div:nth-child(2) { left: 40%; }
header nav > div:nth-child(3) { left: 60%; }
header nav > div:nth-child(4) { left: 80%; }
header nav > div.active {
    width: 100%;
    left: 0;
    z-index: 10;
}
header nav > div .video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
header nav > div:hover .video,
header nav > div.active .video { opacity: 1; }
header nav > div .video:after {
    content: '';
    position: absolute;
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent url("../img/bg-video-cover.png") no-repeat 0 0;
    background-size: 100% 100%;
}
header nav > div video {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    top: 0;
    z-index: 0;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
header nav > div.active .hor video {
    height: auto;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
header nav > div > a, header nav > div > a:visited {
    color: #A0ACB2;
    text-transform: lowercase;
    font-size: 21px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 50px 0 0 0;
    z-index: 10;
}
header nav > div > a:hover { color: #fff; }
header nav > div.active > a, header nav > div.active > a:visited {
    opacity: 0;
    visibility: hidden;
}
header nav > div.invert > a:hover { color: #081C26; }
header nav > div > span {
    display: block;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 5;
}
header nav > div > span .line {
    position: absolute;
    height: 30%;
    width: 1px;
    background: #00F3FF;
    left: 0;
    top: -30%;
}
header nav > div > span .point {
    position: absolute;
    display: block;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: rgba(10,243,255,0.25);
    left: 0;
    top: -40px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
header nav > div > span .point.m {
    width: 31px;
    height: 31px;
}
header nav > div > span .point.s {
    width: 25px;
    height: 25px;
}
header nav > div > span .point:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 50%;
    background: #0AF3FF;
    border-radius: 50%;
    left: 25%;
    top: 25%;
}
header nav > div article,
header nav article {
    position: absolute;
    top: 50%;
    left: 5%;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    text-align: left;
}
header nav article.default {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}
header nav article.default.off {
    opacity: 0;
    visibility: hidden;
}
header nav > div.active article {
    visibility: visible;
    opacity: 1;
}
header nav article > strong {
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    opacity: 0.6;
    margin: 0 0 55px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
header nav article > p {
    font-family: IstokWebBold;
    font-size: 42px;
    line-height: 1.25;
    margin: 0 0 0 0;
}
header nav article small {
    display: block;
    font-size: 23px;
    margin: 20px 0 0 0;
    line-height: 1.5;
    font-family: Helvetica, Arial, sans-serif;
}
header nav > .close {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 50;
    top: 50px;
    right: 5%;
    opacity: 0;
    visibility: hidden;
    background: transparent url("../img/ico-24.png") no-repeat 0 0;
    -webkit-transition: opacity 1500ms ease 350ms;
    -moz-transition: opacity 1500ms ease 350ms;
    transition: opacity 1500ms ease 350ms;
}
header nav > .close.invert { background-position: 0 -24px; }
header nav > .close.on { opacity: 0.75; visibility: visible; }
header nav > .close.on:hover { opacity: 1; }

.wd768 header nav > .close {
    width: 48px;
    height: 48px;
    background: transparent url("../img/ico-48.png") no-repeat 0 -48px;
}
.wd768 header nav > .close.invert { background-position: 0 0; }

.wd768 header nav > .more {
    width: 70px;
    height: 70px;
}
.wd768 header nav > .more:before {
    width: 48px;
    height: 48px;
    background: transparent url("../img/ico-48.png") no-repeat 0 -96px;
    margin: -24px 0 0 -24px;
}

.wd640 header nav > .close {
    width: 48px;
    height: 48px;
    background: transparent url("../img/ico-48.png") no-repeat 0 -48px;
}
.wd640 header nav > .close.invert { background-position: 0 0; }

.wd640 header nav > .more {
    width: 70px;
    height: 70px;
}
.wd640 header nav > .more:before {
    width: 48px;
    height: 48px;
    background: transparent url("../img/ico-48.png") no-repeat 0 -96px;
    margin: -24px 0 0 -24px;
}

header nav > .more {
    display: block;
    position: absolute;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    z-index: 50;
    bottom: 2.2%;
    left: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    background: rgba(10,243,255,0.25);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
header nav > .more.on {
    opacity: 1;
    visibility: visible;
}
header nav > .more:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    left: 0;
    top: 0;
    border: solid 1px #0AF3FF;
    opacity: 0;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    border-radius: 50%;
}
header nav > .more:hover:after {
    opacity: 0.25;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
header nav > .more:before {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    background: transparent url("../img/ico-24.png") no-repeat 0 -48px;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -12px;
}
header .copyright {
    position: absolute;
    z-index: 50;
    color: #f7f7f7;
    left: 5%;
    bottom: 50px;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
header .copyright.off {
    opacity: 0;
    visibility: hidden;
}


/*** PRIMARY CONTENT **********************************************/

main > section {
    display: none;
}

main section article {
    padding: 100px 0 100px 0;
    line-height: 1.6;
}
main section article h2 {
    color: #a0acb2;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
main section article p {
    color: #081c26;
    margin: 0 0 55px 0;
}
main section article p:last-child { margin: 0; }
main section article ul {
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}
main section article ul li {
    padding: 0 0 0 120px;
    min-height: 90px;
    margin: 0 0 60px 0;
    position: relative;
    font-size: 18px;
}
main section article ul li:last-of-type { margin: 0 !important; }
main section article ul li img {
    position: absolute;
    left: 0;
    top: 0;
}
main section article ul li img + span {
    display: table-cell;
    height: 90px;
    vertical-align: middle;
}

main section.integration article.products {}
main section.integration article.products ul {}
main section.integration article.products ul li {
    padding: 0 0 0 35px;
    margin: 0 0 35px 0;
    min-height: 0;
}
main section.integration article.products ul li:before {
    content: '•';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    text-align: center;
}
main section.integration article.services { background: #F0F5F7; }
main section.integration article.services ul {}
main section.integration article.services ul li {
    padding: 0 0 0 110px;
    float: left;
    width: 50%;
    min-height: 82px;
}
main section.integration article.services ul li span { height: 82px; }
main section.integration article.services ul li:nth-child(2) + li { margin: 0; }

main section.development article.solutions {}
main section.development article.solutions ul {}
main section.development article.solutions ul li {
    float: left;
    width: 50%;
}
main section.development article.solutions ul li:nth-child(2) + li { margin: 0; }
main section.development article.advanced { background: #F0F5F7; }
main section.development article.sertification p {
    color: #a0acb2;
    font-family: IstokWebRegular;
    font-size: 15px;
    line-height: 2;
}

main section.career article.advantages { padding-top: 0; }
main section.career article.advantages ul {}
main section.career article.advantages ul li {
    float: left;
    width: 50%;
}

main section.career article.staff {
    line-height: 1.5;
    padding-top: 0;
}
main section.career article.staff .pull-left { width: 574px; }
main section.career article.staff .pull-right { width: 286px; }
main section.career article.staff a {
    display: block;
    color: #fff;
    font-size: 24px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
main section.career article.staff .ontop { z-index: 10; }
main section.career article.staff .pull-right a { font-size: 18px; }
main section.career article.staff .pull-right .row { margin: 0; }
main section.career article.staff a:before {
    content: '';
    position: absolute;
    display: block;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.68), rgba(0,0,0,0.05));
    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.68), rgba(0,0,0,0.05));
    background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.68), rgba(0,0,0,0.05)7);
    background-image: linear-gradient(to top, rgba(0,0,0,0.68), rgba(0,0,0,0.05));
}
main section.career article.staff a img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}
main section.career article.staff a div {
    display: block;
    position: absolute;
    left: 30px;
    bottom: 20px;
    font-family: Helvetica, Arial, sans-serif;
    z-index: 5;
}
main section.career article.staff .pull-right a div {
    left: 20px;
    bottom: 15px;
}
main section.career article.staff a small {
    display: block;
    font-size: 14px;
}
main section.career article.staff a .play {
    position: absolute;
    display: block;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: rgba(10,243,255,0.25);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 10;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
main section.career article.staff a:hover .play {
    background: rgba(0,0,0,0.25);
}
main section.career article.staff a .play:before {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    background: transparent url("../img/ico-24.png") no-repeat 0 -72px;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -12px;
}
main section.career article.staff .video {
    position: absolute;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 10;
    opacity: 0;
    left: 0;
    top: 0;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
main section.career article.staff .pull-right .video {
    left: auto;
    right: 0;
}
main section.career article.staff .video.active {
    visibility: visible;
    opacity: 1;
}
main section.career article.staff .video video {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
main section.career article.staff .close {
    background: transparent url("../img/ico-24.png") no-repeat 0 -24px;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: -60px;
    cursor: pointer;
    visibility: hidden;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
main section.career article.staff .close.on { visibility: visible; }
main section.career article.resume {
    background: #F0F5F7;
    padding: 60px 0;
}
main section.career article.resume .pull-left { width: 575px; }
main section.career article.resume .pull-right {
    width: 285px;
    text-align: right;
}
main section.career article.resume .pull-right .button {
    width: 210px;
    margin-top: 10px;
}
main section.career article.resume a { color: #081c26; }
main section.career article.resume a:hover { color: #2df2fc; }

main section.career article.vacancies {}
main section.career article.vacancies .panel-group {}
main section.career article.vacancies .panel {
    border-radius: 0;
    border: none;
    box-shadow: 0 5px 25px #cedde5;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
    margin-bottom: 20px;
}
main section.career article.vacancies .panel:last-child { margin: 0; }
main section.career article.vacancies .panel.collapsed {
    box-shadow: none;
}
main section.career article.vacancies .panel-heading {
    padding: 0;
    background: none;
}
main section.career article.vacancies .panel-heading ul {
    display: table;
    width: 100%;
}
main section.career article.vacancies .panel-heading ul li {
    height: 65px;
    display: table-cell;
    padding: 0 0 0 0;
    vertical-align: middle;
    margin: 0 0 0 0;
}
main section.career article.vacancies .panel-heading ul li:nth-child(1) {
    font-size: 21px;
    width: 245px;
}
main section.career article.vacancies .panel-heading ul li:nth-child(2) {
    font-size: 14px;
    color: #9b9a9b;
    font-family: Helvetica, Arial, sans-serif;
    width: 285px;
}
main section.career article.vacancies .panel-heading ul li:nth-child(3) {
    width: 235px;
    font-size: 18px;
}
main section.career article.vacancies .panel-heading ul li:nth-child(3) small {
    line-height: 1.4;
    display: block;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
}
main section.career article.vacancies .panel-heading ul li:nth-child(4) {
    text-align: right;
}
main section.career article.vacancies .panel-heading a {
    display: block;
    position: relative;
    padding: 0 30px 0 40px;
    background: #fff;
    color: #081c26;
    text-decoration: none !important;
}
main section.career article.vacancies .panel-heading a.collapsed {
    background: #eff4f7;
}
main section.career article.vacancies .panel-heading a.collapsed:hover {
    background: #fff;
    box-shadow: 0 5px 25px #cedde5;
}
main section.career article.vacancies .panel-heading .ico {
    width: 24px;
    height: 24px;
}
main section.career article.vacancies .panel-heading .ico span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: transparent url("../img/ico-24.png") no-repeat 0 -96px;
    opacity: 1;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}
main section.career article.vacancies .panel-heading .ico span.open { opacity: 0; visibility: hidden; }
main section.career article.vacancies .panel-heading .ico span.close { background-position: 0 -120px; }
main section.career article.vacancies .panel-heading a.collapsed .ico span.open { opacity: 1; visibility: visible; }
main section.career article.vacancies .panel-heading a.collapsed .ico span.close { opacity: 0; visibility: hidden; }
main section.career article.vacancies .panel-collapse {}
main section.career article.vacancies .in .panel-body { border-top: solid 1px #dae2e6; }
main section.career article.vacancies .panel-body {
    padding: 40px 30px 40px 40px;
    color: #3d4a4c;
    font-family: IstokWebRegular;
    font-size: 15px;
}
main section.career article.vacancies .panel-body h3 {
    color: #a0acb2;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin: 0 0 25px 0;
}
main section.career article.vacancies .panel-body ul { margin-bottom: 45px; }
main section.career article.vacancies .panel-body ul:last-child { margin-bottom: 0; }
main section.career article.vacancies .panel-body ul li {
    margin: 0 0 0 0;
    padding: 3px 0 3px 25px;
    min-height: 0;
    font-family: IstokWebRegular;
    font-size: 15px;
    color: #3d4a4c;
}
main section.career article.vacancies .panel-body ul li:before {
    content: '•';
    display: block;
    position: absolute;
    width: 25px;
    left: 0;
    top: 4px;
    text-align: center;
}
main section.career article.vacancies .panel-body ul li {}
main section.career article.vacancies .panel-footer {
    border-top: solid 1px #dae2e6;
    background: #fff;
    padding: 40px 40px 40px 40px;
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
    color: #081c26;
}
main section.career article.vacancies .panel-footer a { color: #081c26; }
main section.career article.vacancies .panel-footer a:hover { color: #2df2fc; }
main section.career article.vacancies .panel-footer .button { width: 100%; }

/*** CONTACTS **********************************************/

.contacts {
    height: 515px;
    background: #edf4f7;
}
.contacts address {
    position: absolute;
    width: 430px;
    left: 50%;
    top: 50%;
    margin: 0 0 0 -430px;
    background: #ffffff;
    box-shadow: 0 15px 25px rgba(124,134,140,0.3);
    border-left: solid 5px #18393f;
    padding: 45px 30px 45px 35px;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    z-index: 2;
}
.contacts address h3 {
    color: #a0acb2;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin: 0 0 40px 0;
}
.contacts address strong {
    color: #081c26;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 24px;
    display: block;
    font-weight: normal;
    margin: 0 0 10px 0;
}
.contacts address p {
    color: #a0acb2;
    font-family: IstokWebRegular;
    font-size: 15px;
    margin: 0 0 40px 0;
}
.contacts address p:last-child { margin: 0; }
.contacts .map {
    width: 100%;
    height: 515px;
}

/*** FOOTER **********************************************/

footer {
    background: #081C26;
    z-index: 2;
    height: 200px;
    display: none;
}

footer nav {
    width: 100%;
    margin: 0;
    padding: 0 0 0 0;
}
footer nav > div {
    float: left;
    width: 20%;
    height: 200px;
    text-align: center;
    padding: 55px 0 0 0;
    font-size: 21px;
    cursor: pointer;
}
footer nav > div:first-of-type ~ div { text-transform: lowercase; }
footer nav > div:first-of-type { padding: 45px 0 0 0; }
footer nav > div a { color: #A0ACB2; }
footer nav > div:hover a { color: #fff; }
footer nav > div a img {
    width: 142px;
    height: auto;
}
footer nav > div:before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    background: #19393f;
    z-index: 1;
}
footer .copyright {
    position: absolute;
    z-index: 50;
    color: #f7f7f7;
    left: 0;
    width: 100%;
    text-align: center;
    bottom: 40px;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

/*** OTHERS **********************************************/

@media (max-width: 960px) {

    #logo { top: 45px; }
    #logo img { width: 120px; }

}

@media (max-width: 768px) {

    header nav > .close {
        width: 48px;
        height: 48px;
        background: transparent url("../img/ico-48.png") no-repeat 0 -48px;
    }
    header nav > .close.invert { background-position: 0 0; }

    header nav > .more {
        width: 70px;
        height: 70px;
    }
    header nav > .more:before {
        width: 48px;
        height: 48px;
        background: transparent url("../img/ico-48.png") no-repeat 0 -96px;
        margin: -24px 0 0 -24px;
    }

}

@media (max-width: 640px) {

    header nav > .close {
        width: 72px;
        height: 72px;
        background: transparent url("../img/ico-72.png") no-repeat 0 -72px;
    }
    header nav > .close.invert { background-position: 0 0; }

    header nav > .more {
        width: 96px;
        height: 96px;
    }
    header nav > .more:before {
        width: 72px;
        height: 72px;
        background: transparent url("../img/ico-72.png") no-repeat 0 -144px;
        margin: -36px 0 0 -36px;
    }

}