@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*@font-face {*/
/*    font-family: 'Montserrat';*/
/*    src: url("fonts/Montserrat-Black.eot");*/
/*    src: local("☺"), url("fonts/Montserrat-Black.woff") format("woff"), url("fonts/Montserrat-Black.ttf") format("truetype"), url("fonts/Montserrat-Black.svg") format("svg");*/
/*    font-weight: 900;*/
/*    font-style: normal*/
/*}*/

/*@font-face {*/
/*    font-family: 'Montserrat';*/
/*    src: url("fonts/Montserrat-Bold.eot");*/
/*    src: local("☺"), url("fonts/Montserrat-Bold.woff") format("woff"), url("fonts/Montserrat-Bold.ttf") format("truetype"), url("fonts/Montserrat-Bold.svg") format("svg");*/
/*    font-weight: 700;*/
/*    font-style: normal*/
/*}*/

/*@font-face {*/
/*    font-family: 'Montserrat';*/
/*    src: url("fonts/Montserrat-Regular.eot");*/
/*    src: local("☺"), url("fonts/Montserrat-Regular.woff") format("woff"), url("fonts/Montserrat-Regular.ttf") format("truetype"), url("fonts/Montserrat-Regular.svg") format("svg");*/
/*    font-weight: 400;*/
/*    font-style: normal*/
/*}*/

/*@font-face {*/
/*    font-family: 'Montserrat';*/
/*    src: url("fonts/Montserrat-Light.eot");*/
/*    src: local("☺"), url("fonts/Montserrat-Light.woff") format("woff"), url("fonts/Montserrat-Light.ttf") format("truetype"), url("fonts/Montserrat-Light.svg") format("svg");*/
/*    font-weight: 300;*/
/*    font-style: normal*/
/*}*/

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                        supported by Chrome, Edge, Opera and Firefox */
    -webkit-user-drag: none;
}

body {
    margin: 0;
    /*transition: background 0.4s ease;*/
}

/*dark/light switcher*/

:root {
    --color-primary: #0c0c0c;
    --color-primary-light: #fff;
    --color-secondary: #437985;
    --color-text: #fff;
    --invert-logo: invert(0);
    --track-hover: #101010;
}

:root.theme--night {
    --color-primary: #f2f2f2;
    --color-primary-light: #437985;
    --color-secondary: #0c0c0c;
    --color-text: #0c0c0c;
    --invert-logo: invert(1);
    --track-hover: #c9c9c9;
}

* {
    box-sizing: border-box;
}

.theme-toggle {
    height: 37px;
    width: 37px;
    position: fixed;
    top: 35px;
    right: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(50%, -50%);
    opacity: 0;
    transition: .1s ease-in-out;
}

.theme-toggle.visible {
    opacity: 1;
    transition: .2s ease-in-out;
}

.theme-toggle .sun {
    background: var(--color-text);
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
}

.theme-toggle .sun__ray {
    width: 2px;
    background: var(--color-text);
    display: block;
    height: 121%;
    position: absolute;
    z-index: -1;
    transition: 0.4s all, height 0.3s ease-in-out, opacity 1s ease-in-out;
}

.theme-toggle .sun__ray:nth-child(1) {
    transform: rotate(calc(1 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(2) {
    transform: rotate(calc(2 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(3) {
    transform: rotate(calc(3 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(4) {
    transform: rotate(calc(4 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(5) {
    transform: rotate(calc(5 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(6) {
    transform: rotate(calc(6 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(7) {
    transform: rotate(calc(7 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(8) {
    transform: rotate(calc(8 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(9) {
    transform: rotate(calc(9 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(10) {
    transform: rotate(calc(10 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(11) {
    transform: rotate(calc(11 * calc(360deg / 12)));
}

.theme-toggle .sun__ray:nth-child(12) {
    transform: rotate(calc(12 * calc(360deg / 12)));
}

.theme-toggle:hover .sun__ray:nth-child(1) {
    transform: rotate(calc(calc(1 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(2) {
    transform: rotate(calc(calc(2 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(3) {
    transform: rotate(calc(calc(3 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(4) {
    transform: rotate(calc(calc(4 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(5) {
    transform: rotate(calc(calc(5 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(6) {
    transform: rotate(calc(calc(6 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(7) {
    transform: rotate(calc(calc(7 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(8) {
    transform: rotate(calc(calc(8 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(9) {
    transform: rotate(calc(calc(9 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(10) {
    transform: rotate(calc(calc(10 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(11) {
    transform: rotate(calc(calc(11 * calc(360deg / 12)) - 20deg));
}

.theme-toggle:hover .sun__ray:nth-child(12) {
    transform: rotate(calc(calc(12 * calc(360deg / 12)) - 20deg));
}

.moon {
    height: 28px;
    width: 28px;
    position: absolute;
    background: var(--color-primary);
    border-radius: 50%;
    top: 0;
    right: 0;
    transform: scale(0) translate(25%, -25%);
    z-index: 9;
    transition: 0.4s transform;
    transform-origin: right;
}

/*.theme--night .theme-toggle {*/
/*    background-color: var(--color-primary);*/
/*}*/

.theme--night .theme-toggle:hover .moon {
    transform: scale(1) translate(-3%, -18%);
}

.theme--night .moon {
    transform: scale(1) translate(11%, -11%);
}

.theme--night .theme-toggle .sun__ray {
    height: 0;
    transition: 0.4s, transform 0.4s, height 0.2s 0.1s, opacity 1s ease-in-out;
}

.theme--night .theme-toggle .sun__ray:nth-child(1) {
    transform: rotate(calc(calc(1 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(2) {
    transform: rotate(calc(calc(2 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(3) {
    transform: rotate(calc(calc(3 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(4) {
    transform: rotate(calc(calc(4 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(5) {
    transform: rotate(calc(calc(5 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(6) {
    transform: rotate(calc(calc(6 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(7) {
    transform: rotate(calc(calc(7 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(8) {
    transform: rotate(calc(calc(8 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(9) {
    transform: rotate(calc(calc(9 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(10) {
    transform: rotate(calc(calc(10 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(11) {
    transform: rotate(calc(calc(11 * calc(360deg / 12)) - 45deg));
}

.theme--night .theme-toggle .sun__ray:nth-child(12) {
    transform: rotate(calc(calc(12 * calc(360deg / 12)) - 45deg));
}

/*main*/

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

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

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0;
    -webkit-user-drag: none;
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

::-moz-selection {
    background: #202020
}

::selection {
    background: #202020
}

::-moz-selection {
    background: #202020
}

img::-moz-selection {
    background: transparent
}

img::selection {
    background: transparent
}

img::-moz-selection {
    background: transparent
}

body {
    -webkit-tap-highlight-color: #202020
}

body {
    background-color: var(--color-primary);
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%
}

.l-viewport {
    position: relative;
    width: 100%;
    height: 100vh;
    box-shadow: 0 0 45px 5px rgba(0, 0, 0, 0.85);
    overflow: hidden
}

.l-wrapper {
    position: relative;
    width: 1440px;
    max-width: 90%;
    height: 100%;
    margin: 0 auto
}

.l-side-nav {
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.l-side-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    max-height: 750px;
    background-color: #555;
    opacity: .35;
    z-index: 10
}

@media (max-width: 1180px) {
    .l-side-nav {
        display: none
    }
}

.l-main-content {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none
}

.l-section {
    position: absolute;
    width: 100%;
    height: 100%
}

.device-notification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--color-primary);
    z-index: 12
}

.device-notification--logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: var(--color-text)
}

.device-notification--logo p {
    margin: 0 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase
}

.device-notification--message {
    width: 70%;
    margin: 30px 0 0 0;
    font-weight: 700;
    text-align: center
}

@media (max-width: 767px) and (min-width: 601px) and (max-height: 680px) {
    .device-notification {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media (max-width: 600px) and (min-width: 480px) and (max-height: 580px) {
    .device-notification {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media (max-width: 736px) and (min-width: 360px) and (orientation: landscape) {
    .device-notification {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media (max-width: 359px) {
    .device-notification {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

.section {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s ease-in-out, visibility 0s .4s;
    transition: opacity .4s ease-in-out, visibility 0s .4s
}

.section--is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    -webkit-transition: opacity .4s ease-in-out .4s;
    transition: opacity .4s ease-in-out .4s
}

.section--next {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-transition: -webkit-transform .4s ease-in-out;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out
}

.section--prev {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: -webkit-transform .4s ease-in-out;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 70px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 10
}

.back-image {
    display: none;
}

.header--logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: var(--color-text)
}

.header--logo img {
    filter: var(--invert-logo);
}

.header--logo p {
    margin: 0 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase
}

.header--nav-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.header--nav-toggle span, .header--nav-toggle::before, .header--nav-toggle::after {
    content: "";
    position: relative;
    width: 16px;
    height: 2px;
    background-color: var(--color-text);
    transition: .2s;
}

.header--nav-toggle span:hover, .header--nav-toggle::before:hover, .header--nav-toggle::after:hover {
    background-color: var(--color-secondary);
    transition: .2s;
}

.header--nav-toggle::before {
    bottom: 5px;
    width: 23px
}

.header--nav-toggle::after {
    top: 5px;
    width: 23px
}

.header--cta {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 20px;
    line-height: 30px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    text-transform: uppercase;
    background-color: #437985;
    border: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s ease-in-out, visibility 0s .4s;
    transition: opacity .4s ease-in-out, visibility 0s .4s
}

.header--cta:focus {
    outline: none
}

.header--cta.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .4s ease-in-out .4s;
    transition: .2s ease-in-out
}

.header--cta.is-active:hover {
    background-color: var(--color-primary);
    transition: .2s ease-in-out;
}

@media (max-width: 767px) {
    .header--cta {
        display: none
    }
}

.side-nav {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 70%;
    max-height: 750px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style-position: inside;
    z-index: 10
}

.side-nav > li {
    position: relative;
    top: -5px;
    color: var(--color-text);
    font-size: 6px;
    cursor: pointer
}

.side-nav > li span {
    position: relative;
    top: 3px;
    left: 10px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 300;
    opacity: 0;
    visibility: hidden
}

.side-nav > li::before {
    position: absolute;
    top: 3px;
    left: 10px;
    color: #555;
    font-size: 14px;
    font-weight: 300
}

.side-nav li:nth-child(1)::before {
    content: "01"
}

.side-nav li:nth-child(2)::before {
    content: "02"
}

.side-nav li:nth-child(3)::before {
    content: "03"
}

.side-nav li:nth-child(4)::before {
    content: "04"
}

.side-nav li:nth-child(5)::before {
    content: "05"
}

.side-nav li.is-active {
    color: var(--color-secondary);
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out
}

.side-nav li.is-active span {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out
}

.side-nav li.is-active::before {
    left: -33px;
    color: var(--color-text)
}

.intro {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 900px;
    max-width: 75%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto
}

@media (max-width: 1180px) {
    .intro {
        max-width: 100%
    }
}

.intro--banner {
    position: relative;
    height: 475px
}


/*.intro--banner::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 18px;*/
/*    left: 0;*/
/*    width: 30px;*/
/*    height: 4px;*/
/*    background-color: var(--color-secondary)*/
/*}*/

.intro--banner h1 {
    position: relative;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    z-index: 1
}

.intro--banner button {
    color: #437985;
    position: relative;
    padding: 5px 17px 5px 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    left: -10px
}

.intro--banner button .btn-background {
    position: absolute;
    top: 0;
    left: 23px;
    right: 0;
    height: 100%;
    background-color: var(--color-secondary);
    z-index: -1;
    -webkit-transition: left .2s ease-in-out;
    transition: left .2s ease-in-out
}

.intro--banner button:hover .btn-background {
    left: 0
}

.intro--banner button:focus {
    outline: none
}

.intro--banner button svg {
    position: relative;
    left: 5px;
    width: 15px;
    fill: #437985
}

.intro--banner img {
    position: absolute;
    bottom: 22px;
    right: -12px;
    object-fit: cover;
}

.intro--options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none
}

.intro--options > a {
    max-width: 250px;
    text-decoration: none;
    color: #282828;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out
}

.intro--options > a:hover {
    color: var(--color-text)
}

.intro--options h3 {
    font-size: 16px;
    text-transform: uppercase
}

.intro--options p {
    margin-bottom: 0
}

@media (max-width: 900px) {
    .intro--banner {
        height: 380px
    }

    .intro--banner h1 {
        font-size: 55px
    }

    .intro--banner img {
        width: 430px
    }

    .intro--options > a {
        margin-right: 30px
    }

    .intro--options > a:last-child {
        margin-right: 0
    }
}

@media (min-width: 600px) {
    .intro--banner::before {
        content: "";
        position: absolute;
        bottom: 20px;
        left: 6px;
        right: 6px;
        height: 2px;
        background-color: #282828
    }
}

@media (max-width: 767px) {
    .intro--banner {
        height: 305px
    }

    .intro--banner h1 {
        font-size: 44px
    }

    .intro--banner img {
        /*width: 330px*/
    }

    .intro--options {
        display: block
    }

    .intro--options > a {
        display: block;
        max-width: 100%;
        margin: 0 0 30px 0
    }

    .intro--options > a:last-child {
        margin-bottom: 0
    }
}

@media (max-width: 600px) {
    .intro--banner {
        /*height: 360px*/
    }

    .intro--banner h1 {
        /*font-size: 40px*/
    }

    .intro--banner img {
        display: none
    }
}

@media (max-width: 600px) and (max-height: 750px) {
    .intro--banner {
        height: auto
    }

    .intro--banner::before, .intro--banner::after {
        display: none
    }

    .intro--banner h1 {
        margin-top: 0
    }

    .intro--options {
        display: none
    }
}

.work {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 960px;
    max-width: 80%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto
}

@media (max-width: 1180px) {
    .work {
        max-width: 100%
    }
}

.work h2 {
    margin: 0 0 20px 0;
    font-size: 30px;
    text-align: center
}

.work--lockup {
    position: relative
}

.work--lockup .slider {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    list-style: none
}

.work--lockup .slider--item {
    position: absolute;
    display: none;
    text-align: center
}

.work--lockup .slider--item a {
    text-decoration: none;
    color: #858585
}

.work--lockup .slider--item-title {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/*.work--lockup .slider--item-title:hover {*/
/*    color: var(--color-secondary);*/
/*    transition: .2s;*/
/*}*/

/*.work--lockup .slider--item-title {*/
/*    transition: .2s;*/
/*}*/

.work--lockup .slider--item-description {
    display: none;
    max-width: 250px;
    margin: 0 auto
}

.work--lockup .slider--item-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden
}

.work--lockup .slider--item-image img {
    width: 100%
}

.work--lockup .slider--item-left {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block
}

.work--lockup .slider--item-right {
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block
}

.work--lockup .slider--item-center {
    position: relative;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block
}

.work--lockup .slider--item-center a {
    color: var(--color-text)
}

.work--lockup .slider--item-center .slider--item-title {
    margin-top: 25px;
    font-size: 16px
}

.work--lockup .slider--item-center .slider--item-description {
    display: block
}

.work--lockup .slider--item-center .slider--item-image {
    width: 300px;
    height: 300px
}

.work--lockup .slider--next, .work--lockup .slider--prev {
    position: absolute;
    top: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #282828;
    border-radius: 50%;
    cursor: pointer
}

div.slider--next:hover > svg, div.slider--prev:hover > svg {
    fill: #437985;
    transition: .2s;
}

.work--lockup .slider--next svg, .work--lockup .slider--prev svg {
    width: 20px;
    fill: #fff;
    transition: .2s;
}

.work--lockup .slider--next {
    right: 0
}

.work--lockup .slider--prev {
    left: 0
}

@media (max-width: 900px) {
    .work--lockup .slider--item-image {
        width: 120px;
        height: 120px
    }

    .work--lockup .slider--item-center .slider--item-image {
        width: 240px;
        height: 240px
    }

    .work--lockup .slider--next, .work--lockup .slider--prev {
        top: 130px
    }
}

@media (max-width: 767px) {
    .work--lockup .slider {
        width: 75%
    }

    .work--lockup .slider--item-image {
        width: 90px;
        height: 90px
    }

    .work--lockup .slider--item-center .slider--item-image {
        width: 190px;
        height: 190px
    }

    .work--lockup .slider--next, .work--lockup .slider--prev {
        top: 105px
    }
}

@media (max-width: 600px) {
    .work--lockup .slider {
        width: auto
    }

    .work--lockup .slider--item-left, .work--lockup .slider--item-right {
        display: none
    }
}

@media (max-width: 600px) {
    .back-image {
        display: block;
        position: absolute;
        /*background: red;*/
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-size: cover;
        background-repeat: no-repeat;
        filter: var(--invert-logo);
    }
}


.about {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 900px;
    max-width: 75%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto
}

.desc {
    margin: 0;
    position: relative;
}

@media (max-width: 1180px) {
    .about {
        max-width: 100%
    }
}

.about--banner {
    position: relative;
    /*height: 475px*/
}

.about--banner::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 200px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    border: 5px solid #437985;
    border-right-color: transparent;
    border-bottom-color: transparent
}

.about--banner::after {
    content: "";
    position: absolute;
    top: 75px;
    left: 400px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #437985
}

/*var(--color-secondary)*/

.about--banner h2 {
    position: relative;
    margin-top: 35px;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    z-index: 1;
    text-shadow: -2px -2px 5px var(--color-primary), 2px -2px 5px var(--color-primary), -2px 2px 5px var(--color-primary), 2px 2px 5px var(--color-primary);
}

.about--banner h2::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 268px;
    width: 30px;
    height: 30px;
    background-color: #437985;
    border-radius: 50%
}

.about--banner h2::after {
    content: "";
    position: absolute;
    top: 255px;
    left: 255px;
    width: 10px;
    height: 10px;
    background-color: #437985
}

.about--banner a {
    padding: 5px 17px 5px 0;
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent
}

.about--banner a:hover svg {
    left: 10px
}

.intro--banner .cta svg {
    transition: left .2s ease-in-out;
}

.intro--banner .cta:hover svg {
    left: 10px;
}

.about--banner a svg {
    position: relative;
    left: 5px;
    width: 15px;
    fill: var(--color-text);
    -webkit-transition: left .2s ease-in-out;
    transition: .2s ease-in-out
}

.about--banner img {
    position: absolute;
    bottom: -90px;
    right: -12px
}

.about--options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 600px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none
}

.about--options > a {
    position: relative;
    width: 150px;
    height: 75px;
    text-decoration: none;
    color: var(--color-text);
    border: 10px solid var(--color-secondary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.about--options > a:hover h3 {
    bottom: -50px
}

.about--options h3 {
    position: absolute;
    bottom: -38px;
    left: 10px;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: bottom .2s ease-in-out, left .2s ease-in-out;
    transition: bottom .2s ease-in-out, left .2s ease-in-out
}

@media (max-width: 767px) {
    .about--banner {
        height: 305px
    }

    .about--banner::before {
        top: 0;
        left: 125px
    }

    .about--banner::after {
        top: 35px;
        left: 260px
    }

    .about--banner h2 {
        margin-top: 10px;
        font-size: 44px
    }

    .about--banner h2::before {
        top: 28px;
        left: 168px
    }

    .about--banner h2::after {
        top: 163px;
        left: 163px
    }

    .about--banner img {
        width: 315px
    }
}

@media (max-width: 600px) {
    .about--banner {
        height: auto
    }

    .about--banner::before {
        left: 155px
    }

    .about--banner::after {
        left: 310px
    }

    .about--banner h2 {
        margin-top: 0;
        font-size: 55px
    }

    .about--banner h2::before {
        top: 43px;
        left: 214px
    }

    .about--banner h2::after {
        top: 205px;
        left: 205px
    }

    .about--banner img {
        display: none
    }

    .about--options {
        display: none
    }
}

.contact {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url("../img/contact-visual.png");*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: var(--invert-logo);
}

.contact .modal {
    filter: var(--invert-logo);
}

.contact--lockup {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 900px;
    max-width: 75%;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 auto
}

@media (max-width: 1180px) {
    .contact--lockup {
        max-width: 90%
    }
}

@media (max-width: 767px) {
    .contact--lockup {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.contact--lockup .modal {
    padding: 45px 45px;
    text-align: center;
    background-color: #0d0d0d;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.75)
}

.contact--lockup .modal--information p, .contact--lockup .modal--information a {
    text-align: left;
    display: block;
    margin: 0;
    text-decoration: none;
    color: #fff;
    transition: .4s;
    font-weight: 700
}

.contact--lockup .modal--information p {
    margin-top: 0;
    text-transform: uppercase;
}

.contact--lockup .modal--information a:hover {
    color: #437985;
    transition: .4s;
}

.contact--lockup .modal--information .socials {
    margin: 0;
}


.footer[data-v-0dbd3201] {
    text-align: center;
    /*padding: 10px 0;*/
    white-space: nowrap;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    max-width: 375px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.order-link[data-v-0dbd3201] {
    /*flex: 0 1 54px*/
}

.order-link[data-v-0dbd3201], .order-link a[data-v-0dbd3201] {
    display: flex;
    justify-content: left;
    align-items: center;
}

.order-link a[data-v-0dbd3201] {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    /*background-color: #cecece;*/
    /*margin: 5px;*/

}

.dark .order-link a[data-v-0dbd3201] {
    background-color: #f8f8f8
}

.order-link svg[data-v-0dbd3201] {
    width: 24px;
    height: 24px
}

.profile-footer .order-link svg[data-v-0dbd3201] {
    width: 22px;
    height: 22px
}

.order-link svg path[data-v-0dbd3201] {
    transition: fill .4s
}

.order-link a:hover svg > g > path[data-v-0dbd3201]:first-child, .order-link a:hover svg > path[data-v-0dbd3201], .yandex_music.order-link a:hover svg > g > path[data-v-0dbd3201] {
    fill: #437985
}

.dark .order-link.tiktok a svg .svg-fill-sign-tiktok[data-v-0dbd3201] {
    fill: #f8f8f8 !important
}

.order-link.tiktok a:hover svg .svg-fill-bg-tiktok[data-v-0dbd3201] {
    transition: fill .4s;
    fill: #437985 !important
}


.contact--lockup .modal--options {
    margin: 0;
    padding: 0;
    list-style: none
}

.contact--lockup .modal--options > li {
    width: 130px;
    margin: 0 auto 25px auto
}

.contact--lockup .modal--options li:nth-child(1) {
    background-color: #1769ff
}

.contact--lockup .modal--options li:nth-child(2) {
    background-color: #ea4c89
}

.contact--lockup .modal--options li:nth-child(3) {
    margin-bottom: 0;
    background-color: var(--color-secondary);
    /*text-transform: uppercase*/
}

.contact--lockup .modal--options a {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700
}

.hire {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    max-width: 75%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto
}

@media (max-width: 1180px) {
    .hire {
        max-width: 100%
    }
}

.hire h2 {
    margin: 0 0 20px 0;
    font-size: 30px;
    text-align: center
}

.work-request {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-text)
}

.work-request input[type="submit"] {
    width: 400px;
    max-width: 100%;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--color-secondary);
    border: none;
    border-radius: 0
}

.work-request input[type="submit"]:focus {
    outline: none
}

.work-request--options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0
}

.work-request--options .options-a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.work-request--options .options-b {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 72%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.work-request--options label {
    display: block;
    width: 200px;
    margin-bottom: 30px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--color-text);
    cursor: pointer;
    -webkit-transition: background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out
}

.work-request--options label svg {
    position: relative;
    left: -5px;
    width: 0;
    fill: var(--color-text);
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out
}

.work-request--options input[type="checkbox"] {
    display: none
}

.work-request--options input[type="checkbox"]:checked + label {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary)
}

.work-request--options input[type="checkbox"]:checked + label svg {
    width: 15px
}

.work-request--information {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px
}

.work-request--information .information-name, .work-request--information .information-email {
    position: relative;
    width: 45%;
    height: 50px;
    font-size: 30px;
    font-weight: 300
}

.work-request--information input[type="text"], .work-request--information input[type="email"] {
    width: 100%;
    padding: 0 0 5px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-text);
    border-radius: 0
}

.work-request--information input[type="text"]:focus, .work-request--information input[type="email"]:focus {
    outline: none;
    background-color: var(--color-primary)
}

.work-request--information label {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transition: top .2s ease-in-out, font-size .2s ease-in-out;
    transition: top .2s ease-in-out, font-size .2s ease-in-out
}

.work-request--information input:focus + label, .work-request--information input.has-value + label {
    top: -15px;
    font-size: 14px
}

@media (max-width: 767px) {
    .work-request--options {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .work-request--options .options-a, .work-request--options .options-b {
        display: block;
        width: auto
    }
}

@media (max-width: 600px) {
    .work-request--options {
        margin: 20px 0
    }
}

@media (max-width: 600px) and (max-width: 415px) {
    .work-request--options {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media (max-width: 600px) {
    .work-request--options label {
        width: 150px;
        margin-bottom: 15px;
        font-size: 14px
    }

    .work-request--options input[type="checkbox"]:checked + label svg {
        width: 12px
    }

    .work-request--information {
        margin-bottom: 30px
    }

    .work-request--information .information-name, .work-request--information .information-email {
        height: 40px;
        font-size: 24px
    }
}

.perspective {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.perspective--modalview {
    position: fixed;
    -webkit-perspective: 1500px;
    perspective: 1500px
}

.container {
    position: relative;
    -webkit-transform: translateZ(0) translateX(0) rotateY(0deg);
    transform: translateZ(0) translateX(0) rotateY(0deg);
    min-height: 100%;
    /*outline: 30px solid var(--color-secondary);*/
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s
}

.modalview .container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.effect-rotate-left .container {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s
}

.effect-rotate-left--animate .container {
    -webkit-transform: translateZ(-1800px) translateX(-50%) rotateY(45deg);
    transform: translateZ(-1800px) translateX(-50%) rotateY(45deg);
    outline: 30px solid #437985
}

.outer-nav {
    position: absolute;
    top: 50%;
    left: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    visibility: hidden;
    -webkit-transition: visibility 0s .2s;
    transition: visibility 0s .2s
}

.outer-nav.is-vis {
    visibility: visible;
}

.outer-nav--return {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    cursor: pointer;
    z-index: 11
}

.outer-nav--return.is-vis {
    display: block
}

.outer-nav > li {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateX(350px) translateZ(-1000px);
    transform: translateX(350px) translateZ(-1000px);
    font-size: 55px;
    font-weight: 900;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, -webkit-transform .2s;
    transition: transform .2s, opacity .2s;
    transition: transform .2s, opacity .2s, -webkit-transform .2s
}

.outer-nav > li.is-vis {
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
    opacity: 1;
    -webkit-transition: opacity .4s, -webkit-transform .4s;
    transition: opacity .4s, -webkit-transform .4s;
    transition: transform .4s, opacity .4s;
    transition: transform .4s, opacity .4s, -webkit-transform .4s
}

.outer-nav > li.is-vis:hover {
    color: #437985;
    transition: .2s;
}

/*.outer-nav > li::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    -webkit-transform: translate(-50%, -25%);*/
/*    transform: translate(-50%, -25%);*/
/*    width: 110%;*/
/*    height: 15px;*/
/*    opacity: 0;*/
/*    background-color: var(--color-secondary)*/
/*}*/

.outer-nav > li.is-active {
    /*opacity: 1*/
    color: #437985;
}

@media (max-width: 767px) {
    .outer-nav > li {
        font-size: 44px
    }
}

@media (max-width: 600px) {
    .outer-nav > li {
        font-size: 34px
    }
}

.outer-nav li.is-vis:nth-child(2) {
    -webkit-transition-delay: .04s;
    transition-delay: .04s
}

.outer-nav li.is-vis:nth-child(3) {
    -webkit-transition-delay: .08s;
    transition-delay: .08s
}

.outer-nav li.is-vis:nth-child(4) {
    -webkit-transition-delay: .12s;
    transition-delay: .12s
}

.outer-nav li.is-vis:nth-child(5) {
    -webkit-transition-delay: .16s;
    transition-delay: .16s
}

.album-detail {
    max-width: 70%;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.itunes-content {
    display: flex;
    position: relative;
    background-color: transparent;
    width: 100%;
    align-items: center;
    justify-content: center;
    /*border-radius: 13px;*/
    /*box-shadow: 0 0 10px #0c0c0c;*/
}

.left-bar {
    position: relative;
    background-color: transparent;
    width: 200px;
    height: 70%;
    top: 20%;
}

.left-bar img {
    position: relative;
    border-radius: 10%;
    display: flex;
    margin: 0 auto;
    height: 200px;
    width: 200px;
}

.left-bar .album-info {
    position: relative;
    top: -10px;
    height: 85px;
}

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

svg {
    width: 14px;
    height: 14px;
    fill: #858585;
    vertical-align: baseline;
    transform: translateY(1px);
}

.album-artist {
    color: #437985;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    top: -20px;
}

.genre, .upload-date {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 10px;
    color: #858585;
    position: relative;
    top: -37px;
}

.right-bar {
    display: table;
    position: relative;
    background-color: transparent;
    width: 100%;
    height: 70%;
    top: 20%;
}

.right-bar .tracks {
    display: block;
    position: relative;
    width: 100%;
    overflow: auto;
}

.right-bar .track {
    display: grid;
    position: relative;
    width: 95%;
    height: 50px;
    align-items: center;
    border-radius: 10px;
    float: right;
    /*margin: 0 auto;*/
    transition: .2s ease-out;
}

.right-bar .track-info {
    display: flex;
}

.right-bar .track-id {
    display: block;
    position: relative;
    width: 40px;
    /*left: 15px;*/
    text-align: center;
    align-items: center;
}

.right-bar .track-title {
    display: block;
    position: relative;
    width: 50%;
    height: 100%;
    /*left: 25px;*/
    text-align: left;
}

.right-bar .track:hover {
    background-color: var(--track-hover);
    transition: .2s ease-in;
}

.right-bar .track:focus {
    background-color: #437985;
}

.right-bar .track:focus .track-id i {
    display: block;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.right-bar .track:focus .track-title {
    color: #fff;
}

.right-bar .track:focus .track-id span {
    display: none;
    color: var(--color-text) 0 ff;
}

.right-bar .track:focus .track-title svg {
    fill: var(--color-text) 0 ff;
}

.right-bar .track:focus .track-duration time {
    color: #fff;
}

.track-id i {
    display: none;
    position: relative;
    font-size: 20px;
    color: var(--color-secondary);
    text-align: center;
    /*transition: .2s ease-out;*/
    cursor: pointer;
}

.right-bar .track:hover .track-id i {
    display: block;
    /*transition: .2s ease-in;*/
}

.track-id span {
    visibility: visible;
    color: #858585;
    display: block;
    position: relative;
    /*transition: .2s ease-in;*/
}

.right-bar .track:hover .track-id span {
    display: none;
    /*transition: .2s ease-out;*/
}

.right-bar .track-duration {
    color: #858585;
    display: block;
    position: relative;
    width: 40px;
    height: 100%;
    margin-left: auto;
    text-align: center;
    right: 15px;
}

.right-bar .track-duration time {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.right-bar .metadata {
    display: block;
    position: relative;
    align-items: center;
    height: 50px;
    width: 95%;
    float: right;
    margin: 0 auto;
    text-align: center;
    margin-top: 15px;
}

.copyright {
    display: block;
    margin-top: 7px;
    color: #858585;
    position: absolute;
    bottom: 10px;
    font-feature-settings: 'tnum';
    font-variant-numeric: tabular-nums;
}

.right-bar .metadata p {
    display: block;
    width: auto;
    margin: 0 auto;
    color: #858585;
    font-feature-settings: 'tnum';
    font-variant-numeric: tabular-nums;
}

.smart-link {
    display: block;
    position: relative;
    width: 138px;
    height: 30px;
    align-items: center;
    margin-top: 15px;
}

.smart-link .sl-a {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
    align-items: center;
}

.smart-link .sl-a .button-div {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    background-color: #437985;
    border-radius: 5px;
    transition: .2s ease-out;
}

.smart-link .sl-a .button-div:hover {
    background-color: #202020;
    transition: .2s ease-in;
}

.smart-link .sl-a .button-div h3 {
    display: block;
    position: relative;
    /*height: 100%;*/
    width: 100%;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .album-detail {
        max-width: 90%;
        margin: 0 auto;
        height: 100%;
        width: 100%;
        /*vertical-align: center;*/
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /*.itunes-content {*/
    /*    display: flex;*/
    /*    position: relative;*/
    /*    width: 100%;*/
    /*    align-items: center;*/
    /*    justify-content: center;*/
    /*    !*margin: 0 auto;*!*/
    /*}*/
    .left-bar {
        display: block;
        position: relative;
        background-color: transparent;
        width: 100%;
        height: 300px;
        top: 10%;
        margin: 0 auto;
    }

    .right-bar {
        display: table;
        position: center;
        background-color: transparent;
        width: 100%;
        height: 70%;
        top: 137px;
        margin: 0 auto;
    }

    .right-bar .track {
        display: grid;
        position: relative;
        width: unset;
        height: 50px;
        align-items: center;
        border-radius: 10px;
        float: unset;
        /*margin: 0 auto;*/
        transition: .2s ease-out;
    }

    .right-bar .metadata {
        float: unset;
    }
}

.artists {
    display: grid;
    grid-gap: 90px;
    place-content: center;
    height: 100%;
    margin: 0 auto;
    position: relative;
    width: 80%;
    padding: 0;
    grid-template-columns: repeat(2, 190px);
}

.artists .artists--item a {
    text-decoration: none;
}

.artists .artists--item-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}

.artists .artists--item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artists .artists--item-title {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.artist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 100px 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.artist-info .artists--item-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}

@media (max-width: 1180px) {
    .artist-info .artists--item-image {
        width: 150px;
        height: 150px;
    }
}

.artist-info .artists--item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info .artists--item-title {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.artist-info .artist-desc {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 1180px) {
    .artist-info .artist-desc {
        font-size: 12px;
    }
}

.artist-info .artist-desc p {
    margin: 0
}

.artist-info .tracks {
    display: flex;
    flex-direction: column;
    max-height: 300px;
    width: 100%;
    overflow: auto;
    position: relative;
    padding-right: 20px;
}

.artist-info .track {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0 10px 30px;
    position: relative;
}

.artist-info .track-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
}

.artist-info .track-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info .track-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.artist-info .track-genre {
    font-size: 10px;
    color: #858585;
}

.artist-info .track-date {
    font-size: 12px;
    color: var(--color-text);
}

.artist-info .smart-link {
    margin: 0 0 0 auto;
}

.artist-info .track-number {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--color-text);
    width: 20px;
    text-align: center;
}


