/* ===================================
    Reset
====================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
}

html, body {
height: 100%;
line-height: 170%;
}



article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}

ol, ul {
list-style: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
content: "";
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

*:focus {  
outline: none !important;
}


a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
border: 0;
outline: 0;
}
html {
-ms-overflow-style: scrollbar;
}
.wrap-text{
white-space: nowrap;
overflow: hidden;
text-overflow: clip;    
}
/* ===================================
    Layout
====================================== */
body {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    color: #5f5f5f;
    background: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}


a {
color: #111;
text-decoration: none;
outline: none;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

a:hover,
a:visited,
a:active,
a:focus {
color: #111;
text-decoration: none;
outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

p {
font-size: 16px;
font-weight: 600;
letter-spacing: 0.05em;
color: #b2b2b2;
line-height: 2;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
}

p a,
p a:hover {
color: #5f5f5f;
text-decoration: none;
outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

::-moz-selection {
background: #777;
color: #fff;
}

::selection {
background: #777;
color: #fff;
}

.nopadding {
padding: 0!important;
margin: 0!important;
}


/* ===================================
    Scroll
====================================== */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background-color: rgba(50,50,50,0.3);
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(50,50,50,0.6);
}
::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: rgba(50,50,50,0.1);
}
::-webkit-scrollbar-track:hover {
  background-color: rgba(50,50,50,0.2);
}


/* ===================================
    Section title
====================================== */

h1.main-title {
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    margin: 0 auto -2px auto;
    text-transform: uppercase;
    line-height: 1.25;
    color: #fff;
    width: 100%;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 3;
}

@media (max-width: 1200px){
    h1.main-title{
        font-size: 40px;
    }
}

@media (max-width: 576px){
  h1.main-title{
        font-size: 28px;
    }
}


h2.title{
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
    margin: 0 auto -2px auto;
    line-height: 1.25;
    color: #fff;
    width: 100%;
    position: relative;
    z-index: 3;

}

@media (max-width: 1200px){
    h2.title{
        font-size: 30px;
    }
}

@media (max-width: 576px){
  h2.title{
        font-size: 26px;
    }
}
/* ===================================
    Section subtitle
====================================== */
.subtitle{
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 2;
}

/* ===================================
    Intro
====================================== */

.intro{
    position: relative;
    font-weight: 700;
    text-transform: none;
    line-height: 1.5;
    letter-spacing: normal;
    color: #b2b2b2;
    font-size: 40px;
    margin: 0 auto -1px auto;
    padding: 0;
    z-index: 2;
}

@media only screen and (max-width: 1200px) {
  .intro {
    font-size: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .intro {
    font-size: 20px;
  }
}


/* ===================================
    Link effect
====================================== */
a.link-effect {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
a.link-effect::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    padding: 0;
    background-color: #5f5f5f;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover.link-effect::after {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ===================================
    Background
====================================== */
.bg-dark {
/*    background: #191919 !important;*/
background: #111111 !important;
}

/* ===================================
    Button
====================================== */
.more-wraper-center {
position: relative;
width: 120px;
}

.more-button-txt-center {
position: relative;
top: 10px;
left: 60px;
width: 120px;
-webkit-transform: translate(-50%, -50%);
   -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
color: #fff;
margin: 0 auto;
}

.more-button-txt-center {
font-family: 'Syne', sans-serif;
font-size: 11px;
font-style: normal;
font-weight: 700;
text-transform: uppercase;
text-align: center;
letter-spacing: -0.02em;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;

}

@media only screen and (max-width: 1200px) {
  .more-button-txt-center {
    font-size: 11px;
  }
}

@media only screen and (max-width: 576px){
    .more-wraper-center {
        width: 100px;
    }

    .more-button-txt-center{

        left: 50px;
        width: 100px;
    }
}

a.button-effect,
.button-effect {
    padding: 0;
    background-color: transparent;
    overflow: visible;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .2; opacity: .4;
  }
  to {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .2; opacity: .4;
  }
  to {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0
  }
}

a.button-effect .pulse::after,
a.button-effect .pulse::before,
a.button-effect::after,
a.button-effect::before,
.button-effect .pulse::after,
.button-effect .pulse::before,
.button-effect::after,
.button-effect::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    top: -webkit-calc(50% - 40px);
    top: -moz-calc(50% - 40px);
    top: calc(50% - 40px);
    left: -webkit-calc(50% - 40px);
    left: -moz-calc(50% - 40px);
    left: calc(50% - 40px);
    right: auto;
    bottom: auto;  
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation: pulse 4s linear infinite;
            animation: pulse 4s linear infinite;
    -webkit-pointer-events: none;
       -moz-pointer-events: none;
            pointer-events: none;
            opacity: 0;
       -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
}

a.button-effect::after,
.button-effect::after {
-webkit-animation-delay: 1s;
        animation-delay: 1s;
}

a.button-effect .pulse::after,
.button-effect .pulse::after {
-webkit-animation-delay: 3s;
        animation-delay: 3s;
}

a.button-effect .pulse::before,
.button-effect .pulse::before {
-webkit-animation-delay: 2s;
        animation-delay: 2s;
}


@media only screen and (max-width: 576px){

    a.button-effect,
    .button-effect{
        height: 100px;
    }

    a.button-effect .pulse::after,
    a.button-effect .pulse::before,
    a.button-effect::after,
    a.button-effect::before,
    .button-effect .pulse::after,
    .button-effect .pulse::before,
    .button-effect::after,
    .button-effect::before{
         width: 60px;
        height: 60px;
        top: -webkit-calc(50% - 30px);
        top: -moz-calc(50% - 30px);
        top: calc(50% - 30px);
        left: -webkit-calc(50% - 30px);
        left: -moz-calc(50% - 30px);
        left: calc(50% - 30px);

    }
}
/* ===================================
    Center container
====================================== */
.center-container {
position: absolute;
display: table;
table-layout: fixed;
width: 100%;
height: 100%;
background: none;
z-index: 15;
}

.center-block {
display: table-cell;
vertical-align: middle;
margin-right: auto;
margin-left: auto;
}

.center-container-menu {
position: relative;
display: table;
width: 100%;
height: 100%;
}

.center-block-menu {
display: table-cell;
vertical-align: middle;
}

/* ===================================
   col-spacing
====================================== */

.col-spacing {
padding: 0 35px;
}

@media only screen and (max-width: 1200px) {
  .col-spacing {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 768px) {
  .col-spacing {
   padding: 0 3px;
  }
}

/* ===================================
   Margins
====================================== */
.extra-margin {
    position: relative;
    height: auto;
    min-height: inherit;
    overflow: hidden;
    margin-left: 50px;
    margin-right: 50px;
    background: none;
}
/* ===================================
   Inner divider
====================================== */

.inner-divider,
.inner-divider-150,
.inner-divider-half,
.inner-divider-ultra-half,
.inner-divider-ultra-half-2,
.inner-divider-50,
.inner-divider-last {
position: relative;
width: 100%;
margin: 0 auto;
background: none;
z-index: -1;
}

.inner-divider {
height: 200px;
}

@media only screen and (max-width: 995px) {
  .inner-divider {
    height: 150px;
  }
}

@media only screen and (max-width: 576px) {
  .inner-divider {
    height: 100px;
  }
}
.inner-divider-150 {
height: 150px;
}

@media only screen and (max-width: 995px) {
  .inner-divider-150 {
    height: 100px;
  }
}

@media only screen and (max-width: 576px) {
  .inner-divider-150 {
    height: 80px;
  }
}

.inner-divider-half {
height: 75px;
}

@media only screen and (max-width: 576px) {
  .inner-divider-half {
    height: 60px;
  }
}

.inner-divider-ultra-half {
height: 60px;
}


@media only screen and (max-width: 576px) {
  .inner-divider-ultra-half {
    height: 50px;
  }
}

.inner-divider-ultra-half-2 {
    height: 50px;
}


@media only screen and (max-width: 576px) {
  .inner-divider-ultra-half-2 {
    height: 40px;
  }
}

.inner-divider-50 {
height: 50px;
}

@media only screen and (max-width: 768px) {
  .inner-divider-50 {
    height: 30px;
  }
}

.inner-divider-last {
height: 150px;
}

@media only screen and (max-width: 992px) {
  .inner-divider-last {
    height: 120px;
  }
}

@media only screen and (max-width: 576px) {
  .inner-divider-last {
    height: 90px;
  }
}


.mobile-visible {
display: none;
visibility: hidden;
}

@media only screen and (max-width: 995px) {
  .mobile-visible {
    display: block;
    visibility: visible;
  }
  
  .mobile-hidden {
    display: none;
    visibility: hidden;
  }
}

/* ===================================
    The line
====================================== */

.the-line {
position: relative;
width: 1px;
height: 80px;
background: #5e5e5e;
margin: 1px auto;
}

@media all and (min-width: 1920px) {
  .the-line {
    height: 90px;
  }
}

@media only screen and (max-width: 995px) {
  .the-line {
    height: 70px;
  }
}


/* ===================================
   Vertical lines
====================================== */
.vertical-lines-wrapper {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
left: 0;
top: 0;
margin: 0;
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
z-index: 2;
}

.vertical-lines {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.vertical-effect {
position: relative;
width: 25%;
height: 100%;
float: left;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
border-right: 1px solid rgba(119, 119, 119, .2);
}

.vertical-effect::before {
content: "";
position: absolute;
display: block;
width: 3px;
-webkit-animation-direction: normal;
   -moz-animation-direction: normal;
    -ms-animation-direction: normal;
     -o-animation-direction: normal;
        animation-direction: normal;
}

.vertical-effect:first-child::before,
.vertical-effect:last-child::before {
content: "";
position: absolute;
right: -2px;
}

.vertical-effect:first-child::before {
top: 0;
-webkit-animation: raindrop 6s ease-out infinite;
   -moz-animation: raindrop 6s ease-out infinite;
    -ms-animation: raindrop 6s ease-out infinite;
     -o-animation: raindrop 6s ease-out infinite;
        animation: raindrop 6s ease-out infinite;
/*background: -webkit-linear-gradient(top, rgba(173, 3, 3, 0), rgba(173, 3, 3, 1));*/
background: -webkit-linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
background: -ms-linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
background: linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
}

.vertical-effect:last-child::before {
bottom: 0;
-webkit-animation: raindrop-reverse 6s ease-out infinite;
   -moz-animation: raindrop-reverse 6s ease-out infinite;
    -ms-animation: raindrop-reverse 6s ease-out infinite;
     -o-animation: raindrop-reverse 6s ease-out infinite;
        animation: raindrop-reverse 6s ease-out infinite;
background: -webkit-linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
background: -ms-linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
background: linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
}

@-webkit-keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}
@-ms-keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}
@keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}

@-webkit-keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}
@-ms-keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}
@keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
   }
  100% {
    bottom: 100%;
    height: 35%;
  }
}

/* ===================================
    To top arrow
====================================== */
.to-top-arrow {
position: fixed;
width: 50px!important;
max-width: 50px;
height: 50px;
line-height: 50px;
left: 0; 
right: 0;
bottom: -10px;
margin-left: auto; 
margin-right: auto; 
margin: 0 auto;
overflow: hidden;
font-size: 16px;
text-align: center;
color: #fff;
background: #0B0B0B;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
-webkit-transform: translateY(40px);
   -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
     -o-transform: translateY(40px);
        transform: translateY(40px);
-webkit-transition: all 1.5s ease;
   -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
     -o-transition: all 1.5s ease;
        transition: all 1.5s ease;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
cursor: pointer;
z-index: 115;
}

.to-top-arrow.show {
    display: block;
bottom: 30px;
-webkit-transform: translateY(-20px);
   -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
     -o-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
}
.to-top-arrow:hover {
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
}

@media only screen and (max-width: 1200px) {
  .to-top-arrow.show {
    bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .to-top-arrow.show {
    bottom: 10px;
  }
}


/* ===================================
    Section
====================================== */
.sections {
position: relative;
z-index: 5;
}

section {
position: relative;
width: 100%;
height: auto;
margin: 0;
padding: 0;
}

/* ===================================
   Preloader
====================================== */
.preloader-bg,
#preloader {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
background: #111;
z-index: 999999;
}

#preloader {
display: table;
table-layout: fixed;
}

#preloader-status {
display: table-cell;
vertical-align: middle;
}

.preloader-position {
position: relative;
margin: 0 auto;
text-align: center;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
        box-sizing: border-box;
}

.loader {
position: relative;
width: 45px;
height: 45px;
left: 50%;
top: auto;
margin-left: -22px;
margin-top: 2px;
-webkit-animation: rotate 1s infinite linear;
   -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
     -o-animation: rotate 1s infinite linear;
        animation: rotate 1s infinite linear;
border: 3px solid rgba(255, 255, 255, .15);
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

.loader span {
position: absolute;
width: 45px;
height: 45px;
top: -3px;
left: -3px;
border: 3px solid transparent;
border-top: 3px solid rgba(255, 255, 255, .75);
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* ===================================
   Round menu wrapper
====================================== */

.round-menu-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 50px;
background: none;
z-index: 1001;
}

.round-menu.direction {
background: #0B0B0B;
top: 50px;
right: 50px;    
-webkit-transition: all 1.5s ease;
   -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
     -o-transition: all 1.5s ease;
        transition: all 1.5s ease;
}

@media only screen and (max-width: 768px) {
  .round-menu.direction {
    top: 30px;
    right: 30px;
  }
}

.round-menu {
position: absolute;
display: block;
width: 60px;
height: 60px;
top: 35px;
right: 35px;
margin: 0;
padding: 0;
border: none;
background: none;
-webkit-transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
        transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
-webkit-transition-property: color, -webkit-transform;
        transition-property: color, -webkit-transform;
        transition-property: transform, color;
        transition-property: transform, color, -webkit-transform;   
-webkit-border-radius: 0;
   -moz-border-radius: 0;
    -ms-border-radius: 0;
     -o-border-radius: 0;
        border-radius: 0;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
-webkit-transition: all 1s ease;
   -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
     -o-transition: all 1s ease;
        transition: all 1s ease;
overflow: hidden;
cursor: pointer;
z-index: 10;
}

@media only screen and (max-width: 768px) {
  .round-menu {
    top: 15px;
    right: 15px;
  }
}

.round-menu::before {
content: "";
position: absolute;
display: block;
width: 60px;
height: 60px;
top: -webkit-calc(50% - 30px);
top: -moz-calc(50% - 30px);
top: calc(50% - 30px);
left: -webkit-calc(50% - 30px);
left: -moz-calc(50% - 30px);
left: calc(50% - 30px);
background: none;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
        transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
-webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, -webkit-transform;
        transition-property: transform, opacity;
        transition-property: transform, opacity, -webkit-transform;
-webkit-transform: scale(0.75);
        transform: scale(0.75);
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
z-index: 0;
}

.round-menu.direction.round-menu::before {
background: #111;
}

.round-menu .dot-1,
.round-menu .dot-2,
.round-menu .dot-3 {
position: absolute;
display: block;
width: 5px;
height: 5px;
top: -webkit-calc(50% - 3px);
top: -moz-calc(50% - 3px);
top: calc(50% - 3px);
left: -webkit-calc(50% - 3px);
left: -moz-calc(50% - 3px);
left: calc(50% - 3px);
background: #fff;
-webkit-transition: -webkit-transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
        transition: -webkit-transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
        transition: transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
        transition: transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s, -webkit-transform .5s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
z-index: 1;
}

.round-menu.direction .dot-1,
.round-menu.direction .dot-2,
.round-menu.direction .dot-3 {
background: #fff;
}

.round-menu .dot-1 {
-webkit-transform: translateX(-12px);
        transform: translateX(-12px);
}

.round-menu .dot-3 {
-webkit-transform: translateX(12px);
        transform: translateX(12px);
}

.round-menu:hover::before {
-webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.round-menu:hover .dot-1,
.round-menu:hover .dot-2,
.round-menu:hover .dot-3 {
mix-blend-mode: exclusion;
background: #fff;
}

.round-menu:hover .dot-1,
.round-menu:hover .dot-3 {
-webkit-transform: translateX(0);
        transform: translateX(0);
}



/* ===================================
   Navigation panels overlay
====================================== */
.panel-overlay-from-left {
position: fixed;
width: 26%;
height: 100%;
overflow: hidden;
top: 0;
left: -100%;
background: rgba(0, 0, 0, .7);
-webkit-transition: all .8s ease-in-out;
   -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
     -o-transition: all .8s ease-in-out;
        transition: all .8s ease-in-out;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index: 200;
}

@media only screen and (max-width: 768px) {
  .panel-overlay-from-left {
    width: 0;
  }
}

.panel-overlay-from-left.open {
left: 0;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.panel-overlay-from-right {
position: fixed;
width: 75%;
height: 100%;
overflow: hidden;
top: 0;
right: -100%;
-webkit-transition: all .8s ease-in-out;
   -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
     -o-transition: all .8s ease-in-out;
        transition: all .8s ease-in-out;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index: 200;
}

@media only screen and (max-width: 768px) {
  .panel-overlay-from-right {
    width: 100%;
  }
}

.panel-overlay-from-right.open {
right: 0;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


/* ===================================
   Navigation panels
====================================== */
.panel-from-left {
position: fixed;
width: 26%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
top: 0;
left: -100%;
-webkit-transition: all .8s ease-in-out;
   -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
     -o-transition: all .8s ease-in-out;
        transition: all .8s ease-in-out;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index: 200;
}

@media only screen and (max-width: 768px) {
  .panel-from-left {
    width: 0;
  }
}

.panel-from-left.open {
left: 0;
}

.panel-from-right {
position: fixed;
width: 75%;
height: 100%;
overflow-x: hidden;
overflow-y: hidden;
top: 0;
right: -100%;
background: #111;
-webkit-transition: all .8s ease-in-out;
   -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
     -o-transition: all .8s ease-in-out;
        transition: all .8s ease-in-out;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
z-index: 200;
}

@media only screen and (max-width: 768px) {
  .panel-from-right {
    width: 100%;
  }
}

.panel-from-right.open {
right: 0;
}



/* ===================================
   Navigation
====================================== */
nav.navigation-menu {
position: relative;
width: 100%;
height: 100%;
background: none;
text-align: center;
margin: 0 auto;
}

nav.navigation-menu a {
text-decoration: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: auto!important;
cursor: pointer;
}

nav.navigation-menu a:hover {
    color: #818181;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

nav.navigation-menu li {
margin: 0 auto 24px auto;
}

@media only screen and (max-width: 768px) {
  nav.navigation-menu li {
    margin: 0 auto 10px auto;
  }
}

nav.navigation-menu li:last-child {
margin: 0;
}

nav.navigation-menu a {
font-size: 30px;
font-weight: 800;
font-style: normal;
text-transform: uppercase;
line-height: 1;
letter-spacing: -0.04em;
text-decoration: none;
color: #e0e0e0;
}
nav.navigation-menu a.active {
    color: #818181;
}
.center-container-menu {
position: relative;
display: table;
width: 100%;
height: 100%;
}

.center-block-menu {
display: table-cell;
vertical-align: middle;
}



@media only screen and (max-width: 1200px) {
  nav.navigation-menu a {
    font-size: 25px;
  }
}


@media only screen and (max-width: 576px) {
  nav.navigation-menu a {
    font-size: 20px;
  }
}


/* ===================================
    Upper page
====================================== */
.upper-page {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    min-height: 586px;
    overflow: hidden;
    left: 0;
    top: 0;
    margin: 0;
}
.hero-fullscreen {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 2;
}
.hero-fix-fullscreen {
    width: 100%;
    height: 100%;
}
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.swiper-container-wrapper {
    padding-top: 0 !important;
    height: 100% !important;
}
.swiper-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.swiper-slide {
    overflow: hidden;
}
.swiper-slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-slide-inner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-transition: opacity .6s ease-in-out, transform 2s ease .8s;
    -moz-transition: opacity .6s ease-in-out, transform 2s ease .8s;
    -ms-transition: opacity .6s ease-in-out, transform 2s ease .8s;
    -o-transition: opacity .6s ease-in-out, transform 2s ease .8s;
    transition: opacity .6s ease-in-out, transform 2s ease .8s;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.swiper-slide-inner-bg.hero-bg-img {
    background-image: url(../../img/banner-main.jpg);
}

.swiper-slide-inner-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-slide-active .swiper-slide-inner-bg {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity = 100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.swiper-slide .overlay-dark:before {
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
    background: rgba(0, 0, 0, .45);
}
.swiper-slide .overlay:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.swiper-slide-inner-txt {
    position: absolute;
    width: 100% !important;
    top: 50%;
    left: 70%;
    bottom: auto;
    margin: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity = 0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: 15;
}
.swiper-slide-active .swiper-slide-inner-txt {
    -webkit-transition: opacity 1.8s ease .8s;
    -moz-transition: opacity 1.8s ease .8s;
    -ms-transition: opacity 1.8s ease .8s;
    -o-transition: opacity 1.8s ease .8s;
    transition: opacity 1.8s ease .8s;
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity = 100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

h1.hero-title {
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    margin: -14px auto;
    text-align: center !important;
    text-transform: uppercase;
    letter-spacing: -0.04em;
     color: #fff;
    width: 100%;
    line-height: 1.15;
    position: relative;
    z-index: 3;
}

h3.hero-subtitle {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    margin: -14px auto;
    text-align: center !important;
    color: #fff;
    width: 100%;
    line-height: 1.15;
    position: relative;
    z-index: 3;
}

.dot-sm {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 8px;
    text-align: center;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: 10;
}



@media only screen and (max-width: 1440px){
    h1.hero-title{
        font-size: 85px;
    }
}

@media only screen and (max-width: 1200px){

     .swiper-slide-inner-bg{
        background-position: 20% top;
    }

     .swiper-slide-inner-txt{
        left: 50%;
    }


    h1.hero-title{
        font-size: 80px;
    }
}

@media only screen and (max-width: 992px){
   
    h1.hero-title{
        font-size: 70px;
    }
}

@media only screen and (max-width: 576px){
    h1.hero-title{
        font-size: 40px;
    }
}

@media only screen and (max-width: 320px){
    h1.hero-title{
        font-size: 35px;
    }

}
/* ===================================
   Music
====================================== */
.music-wrapper{
    display: flex;
    align-items: center;
    margin: 0 30px;
    flex-wrap: wrap;

}

.music-img{
    flex: 0 0 55%;
    width: 55%;
    z-index: 2;
}

.music-content{
    flex: 0 0 45%;
    width: 45%;
    padding: 130px 15px  130px 70px;
    background: #1b1b1b;
    background: #161616;
    z-index: 2;
}
.music-img img{
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

.music-img-mobile{
    display: none;
}

@media (max-width: 1400px){

    .music-wrapper{
        margin: 0;
    }
}


@media  only screen and (max-width: 1200px){

    .music-content{
        padding: 80px 60px;
    }

}

@media  only screen and (max-width: 768px){

    .music-img-mobile{
        display: block;
    }

    .music-img-desktop{
        display: none;
    }

    .music-img,
    .music-content{
        flex: 0 0 100%;
        width: 100%;
    }

}

@media only screen and (max-width: 576px) {

    .music-wrapper{
        margin: 0;
    }

   
    .music-content{
        padding: 60px 30px;
    }
}

.music-list .music-list-content-wrapper {
    padding-top: 160px;
    margin-top: -1px;
}

@media only screen and  (max-width: 1440px){

    .music-list .music-list-content-wrapper {
        padding-top: 140px;
        margin-top: -1px;
    }
}

@media only screen and (max-width: 995px) {

  .music-list .music-list-content-wrapper {
    padding-top: 60px
  }
}

.music-list .music-list-wrapper {
margin: -40px 0 0 0;
padding: 0 0 120px 0;
}

@media only screen and  (max-width: 1440px){

    .music-list .music-list-wrapper {
    margin: -40px 0 0 0;
    padding: 0 0 100px 0;
    }
}

@media only screen and (max-width: 1200px) {
  .music-list .music-list-wrapper {
    margin: -130px 0 0 0;
    padding: 0 0 60px 0;
  }
}

@media only screen and (max-width: 995px) {
  .music-list .music-list-wrapper {
    margin: -60px 0 0 0;
    padding: 0;
  }
}

.music-list .music-list-item {
position: relative;
z-index: 2;
}

@media only screen and (max-width: 995px) {
  .music-list .music-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.music-list .music-list-row {
    position: relative;
    z-index: 2;
}

.container-custom {
width: 100%;
padding-left: 0;
padding-right: 0;
margin-right: auto;
margin-left: auto;
}

@media only screen and (max-width: 995px) {
  .container-custom {
    padding: 0;
  }
}

.col-md-6-custom {
position: relative;
width: 100%;
min-height: 1px;
padding-left: 0;
padding-right: 0;
}

@media only screen and (max-width: 995px) {
  .col-md-6-custom {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 995px) {
  .col-lg-4-custom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }

  .offset-lg-1-custom {
    margin-left: 0;
  }

  .offset-lg-7-custom {
    margin-left: 50%;
  }
}

.music-list .music-list-content {
padding: 120px 120px;
background: #1b1b1b;
}

@media only screen and  (max-width: 1440px){
    .music-list .music-list-content{
        padding: 100px 100px;
    }
}

@media only screen and (max-width: 1200px) {
  .music-list .music-list-content {
    padding: 55px 55px;
  }
}

@media only screen and (max-width: 995px) {
  .music-list .music-list-content {
    padding: 0 40px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .music-list .music-list-content {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 576px) {
    .music-list .music-list-content {
        padding: 0 3px;
      }
}

.music-list .music-list-bg.music-list-bg-01 {
background-image: url(../../img/music/cover_I_kill_men_like_you.jpg);
}

.music-list .music-list-bg.music-list-bg-02 {
background-image: url(../../img/music/cover_Worst_in_You.jpeg);
}


.music-list .music-list-bg {
    position: absolute;
    width: calc(50% + 120px);
    height: calc(100% + 240px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    z-index: 1;
}


.music-list .music-list-item:nth-of-type(odd) .music-list-bg {
    left: 0;
}

.music-list .music-list-item:nth-of-type(odd) .music-list-bg.music-list-bg-reverse {
    left: auto;
    right: 0;
}

@media only screen and  (max-width: 1440px){
    .music-list .music-list-bg{

    width: calc(50% + 100px);
    height: calc(100% + 200px);
    }
}

@media only screen and (max-width: 1200px) {
  .music-list .music-list-bg {
    width: calc(50% + 130px);
    height: calc(100% + 120px)
  }
}

@media only screen and (max-width: 995px) {
  .music-list .music-list-bg {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 580px;
    -webkit-transform: none;
            transform: none;
    padding-top: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
}


.audio-player{
    display: flex;
}
.audio-container {
    position: relative;
}
/*.audio-timer {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 14px;
    color: #b2b2b2;
    z-index: 4;
}*/

.audio-player-body{

    flex-grow: 1;
}

.audio-coming-soon{
    position: absolute;
    font-size: 14px;
    color: #fff;
    z-index: 999;
    text-transform: uppercase;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.audio-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;

    font-size: 14px;
    color: #b2b2b2;
}


.audio-timer {
    font-size: 14px;
    color: #6B6C6E;
    text-align: right;
  margin-top: 3px;
}


.audio-play-button{

  position: relative;
  /* width: 62px;
  height: 62px;
  border-radius: 50%;*/

    margin-top: 9px;
  margin-right: 18px;
}


.audio-play-button:before {
      content: "";
      display: block;
      width: calc(100% + 5px);
      height: calc(100% + 5px);
      left: -2.5px;
      top: -2.5px;
      position: absolute;
      background: conic-gradient(transparent, rgba(173, 3, 3));
      border-radius: 50%;
      opacity: 0;

}

.audio-play-button.is-active:before {
    opacity: 1;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.btn-play-pause{

  position: relative;
  width: 100%;
  height: 100%;
    font-size: 2.5rem;
   display: grid;
  grid-template-columns: 1fr;
  place-items: center;
    color: #fff;
  cursor: pointer;
  transition: color 0.15s ease, width 0.25s ease-out;
}

.btn-play-pause .ph-play,
.btn-play-pause .ph-pause {
  grid-row-start: 1;
  grid-column-start: 1;
  transition: opacity 0.15s ease, transform 0.25s ease;
}
.btn-play-pause .ph-play {
  opacity: 1;
}
.btn-play-pause .ph-pause {
  opacity: 0;
  transform: rotate(0);
}
.audio-play-button.is-active .btn-play-pause .ph-play {
  opacity: 0;
  transform: rotate(180deg);
}
.audio-play-button.is-active .btn-play-pause .ph-pause {
  opacity: 1;
  transform: rotate(180deg);
}


.btn-play-pause:hover {
  color: #fff;
}
.audio-play-button.is-active .btn-play-pause {
  color: #AD0303;
}

@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 576px) {

     .audio-play-button{
        width: 48px;
        height: 48px;
        margin-top: 6px;
        margin-right: 14px;
    }

    .audio-container wave{
        height: 60px !important;
    }

}
/* ===================================
    Link wrap
====================================== */

.link-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: #000;
/*    margin: 20px;*/
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 999;
}
.link-wrap span{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.link-wrap span:before, 
.link-wrap span:after {
    content: "";
    position: absolute;
    background: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0.2;
    -moz-opacity: 0.2;
    -webkit-opacity: 0.2;
}

.link-wrap span:nth-child(1):before, 
.link-wrap span:nth-child(1):after {
    width: 50%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
}
.link-wrap span:nth-child(1):before {
    right: 50%;
}
.link-wrap span:nth-child(1):after {
    left: 50%;
}


.link-wrap span:nth-child(2):before, 
.link-wrap span:nth-child(2):after {
    width: 2px;
    height: 50%;
    left: 50%;
    margin-left: -1px;
}

.link-wrap span:nth-child(2):before {
    bottom: 50%;
}
.link-wrap span:nth-child(2):after {
    top: 50%;
}

#owl-carousel-gallery .carousel-item-all:hover .link-wrap {
    opacity: 0.8;
    -moz-opacity: 0.8;
    -webkit-opacity: 0.8;
    cursor: pointer;
}

#owl-carousel-gallery .carousel-item-all:hover .link-wrap span:before, 
#owl-carousel-gallery .img-box:hover .link-wrap span:after {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
}


#owl-carousel-gallery .carousel-item-all:hover .link-wrap span:nth-child(1):before, 
#owl-carousel-gallery .carousel-item-all:hover .link-wrap span:nth-child(1):after {
    width: 15px;
}

#owl-carousel-gallery .carousel-item-all:hover .link-wrap span:nth-child(2):before, 
#owl-carousel-gallery .carousel-item-all:hover .link-wrap span:nth-child(2):after {
    height: 15px;
}


@media (max-width: 991px){
    
    .link-wrap{
        display:none !important;
    }
    
}
/* ===================================
   Owl carousel
====================================== */
.extra-margin-owl {
    position: relative;
    height: auto;
    min-height: inherit;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    background: none;
}
.carousel-item-img-wrapper {
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: auto;
    z-index: 2;
}


.carousel-item-all {
    height: 70vh;
    position: relative;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item-photo-01 {
    background-image: url(../../img/photos/Vukayla_01.jpg);
}
.carousel-item-photo-02 {
    background-image: url(../../img/photos/Vukayla_02.jpg);
}
.carousel-item-photo-03 {
    background-image: url(../../img/photos/Vukayla_03.jpg);
}
.carousel-item-photo-04 {
    background-image: url(../../img/photos/Vukayla_04.jpg);
}
.carousel-item-photo-05 {
    background-image: url(../../img/photos/Vukayla_05.jpg);
}

.carousel-item-photo-06 {
    background-image: url(../../img/photos/Vukayla_06.jpg);
}
.carousel-item-photo-07 {
    background-image: url(../../img/photos/Vukayla_07.jpg);
}
.carousel-item-photo-08 {
    background-image: url(../../img/photos/Vukayla_08.jpg);
}
.img-box-inner .image-title {
    text-align: center;
    padding-bottom: 10px;
}


.img-box-inner .image-title a{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}
.img-box-inner a.link-effect::after{
    bottom: -5px;
}
.owl-nav-custom{
  position: relative;
    width: 114px !important;
    max-width: 114px;
    height: 50px;
    left: 2px;
    right: 0;
    margin: 3px auto;
    text-align: center;
    overflow: hidden;
}

.owl-prev, .owl-next {
  position: absolute;
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    background: #0B0B0B;
    cursor: pointer;
    z-index: 10;
}
.owl-prev {
    left: 0;
}
.owl-next {
    left: 60px;
}
.owl-prev.disabled, .owl-next.disabled {
   background: #151515;
    cursor: default !important;
    color: #fff;
}
/* ===================================
   Contact
====================================== */

.contact p{
  font-size: 18px;
}
.copyrights{
  font-size: 15px;
    text-align: right;
    color: #b2b2b2;
    opacity: 0.6;
}
/* ===================================
   Contact modal
====================================== */
.contact-modal {
position: fixed;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
visibility: hidden;
background: #111;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transform: scale(0.75);
   -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
     -o-transform: scale(0.75);
        transform: scale(0.75);
-webkit-transition: all 1s ease;
   -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
     -o-transition: all 1s ease;
        transition: all 1s ease;  
overflow-x: hidden;
overflow-y: auto;
z-index: 99999;
}

.contact-modal.open {
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
visibility: visible;
background: #191919;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
        transform: scale(1);
}

.contact-modal-closer {
position: relative;
width: 50px;
height: auto;
margin: -5px auto 0 auto;
font-size: 20px;
text-align: center;
color: #fff;
cursor: pointer;
}

.center-container-contact-modal {
position: absolute;
display: table;
height: 100%;
width: 100%;
left: 0;
top: 0;
background: none;
}

.center-block-contact-modal {
display: table-cell;
vertical-align: middle;
}

.contact-modal-top {
padding: 100px 0 0 0;
}

.contact-modal-wrapper {
position: relative;
width: 50%;
margin: 0 auto;
}
.contact-form-wrapper {
position: relative;
width: 100%;
top: -20px;
padding: 0;
text-align: center;
}
.contact-form-wrapper .more-wraper-center{
margin: 5px auto 0 auto;
}
.contact-form-wrapper button {
border: none;
background: none;
outline: none;
font-weight: 700;
}
.contact-modal-bottom {
padding: 0 0 100px 0;
}
@media only screen and (min-width: 1920px) {
  .contact-modal-title {
    margin: -7px 0 -1px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .contact-modal-wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 995px) {
  .contact-modal-title {
    font-size: 45px;
    margin: -4px auto 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .contact-modal-title {
    font-size: 35px;
    margin: -2px 0 0 0;
  }
  .contact-modal-top {
    padding: 50px 0 0 0;
    }
  .contact-modal-bottom {
        padding: 0 0 30px 0;
    }
    .center-block-contact-modal .inner-divider-100 {
    height: 30px;
    }
}
#contact-form input{
position: relative;
width: 100%;
height: 40px;
border-bottom: 1px solid #b2b2b2;
border-left: none;
border-right: none;
border-top: none;
padding: 5px 5px;
background: none;
margin: 10px 0 20px 0;
font-family: 'Syne', sans-serif;
font-size: 15px;
line-height: 1.5;
font-style: normal;
font-weight: 600;
text-align: center;
color: #b2b2b2;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
#contact-form textarea {
position: relative;
width: 100%;
height: 100px;
border-bottom: 1px solid #b2b2b2;
border-left: none;
border-right: none;
border-top: none;
padding: 5px 5px;
background: none;
margin: 16px 0 10px 0;
font-family: 'Syne', sans-serif;
font-size: 15px;
color: #b2b2b2;
line-height: 1.5;
font-style: normal;
font-weight: 600;
text-align: center;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
#contact-form input:hover, 
#contact-form textarea:hover {
border-color: rgba(178, 178, 178, .5);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
#contact-form input:focus,
#contact-form textarea:focus {
    
border-color: rgba(178, 178, 178, .5);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
#contact-form .more-wraper-center button{
color: #111 !important;    
}
.message-success {
position: relative;
    font-weight: 600;
    text-transform: none;
    line-height: 1.5;
    letter-spacing: normal;
    color: #b2b2b2;
    font-size: 30px;
    margin-bottom: 25px;
}

#contact-form .error {
position: absolute;
display: block;
font-size: 10px;
text-transform: uppercase;
color: #fff;
margin: -13px 0 0 0;
padding: 0;
letter-spacing: 0.15em;
font-weight: 500;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
left: 0; 
right: 0; 
margin-left: auto; 
margin-right: auto; 
width: 200px!important;
}
::-webkit-input-placeholder { font-size: 14px; color: #b2b2b2; }
:-ms-input-placeholder { font-size: 14px; color: #b2b2b2; }
::-moz-placeholder { font-size: 14px; color: #b2b2b2; }
input:-moz-placeholder { font-size: 14px; color: #b2b2b2; }

input:focus::-webkit-input-placeholder { color: transparent; }
input:focus:-ms-input-placeholder { color: transparent; }
input:focus::-moz-placeholder { color: transparent; }
input:focus:-moz-placeholder { color: transparent; }

textarea:focus::-webkit-input-placeholder { color: transparent; }
textarea:focus:-ms-input-placeholder { color: transparent; }
textarea:focus::-moz-placeholder { color: transparent; }
textarea:focus:-moz-placeholder { color: transparent; }

/* ===================================
   EPK
====================================== */



.epk-biography .section-txt .head-details{
    position: relative;
    display: inline-block;
    width: auto;
    color: #fff;
    min-width: 300px;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -5px;
    text-align: left;
    letter-spacing: normal;
}

.epk-biography .intro{
    font-size: 16px;
    font-weight: 500;
}

.epk-biography .more-button-txt-center{
    top: 18px;
}


@media only screen and (max-width: 576px) {

    .epk-biography .section-txt .head-details {
        width: 100%;
      }
}