/* Table of Content
==================================================
    1.Reset & Basics
    2.Basic Styles
    3.Typography and Common style
    4.Links
    5.Misc


/* Reset & Basics (Inspired by E. Meyers) */

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
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;
    text-decoration: none;
}

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;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

img {
    display: inline-block;
    vertical-align: middle;
    height: auto;
    max-width: 100%;
}

.map img {
    max-width: none;
}

a:focus {
    outline: 0;
}

iframe {
    width: 100%;
    border: none;
    display: inline-block;
}

::-moz-selection {
    background: #ff5252;
    color: #ffffff;
}

/* End reset & basics (Inspired by E. Meyers) */

/*Basic Styles*/

body {
    background: #13181d;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffffff;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/*End basic styles*/

/* Typography and Common style*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Dosis", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    margin-bottom: .5rem;
    font-weight: 400;
    position: relative;
    letter-spacing: 2px;

}

h1, .h1 {
    font-size: 2.875rem;
    line-height: 1.2;
    letter-spacing: 5px;
}

h2, .h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    letter-spacing: 5px;
}

h3, .h3 {
    font-size: 1.125rem;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.h4 {
    font-weight: 500;
}

h5, .h5 {
    font-size: 1rem;
}

h6, .h6 {
    font-size: .75rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.h5 {
    font-weight: 600;
}

.block-title {
    display: inline-block;
    position: relative;
    padding: 0 .625em;
}

.block-title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: .875rem;
    background: #ff5252;
    bottom: .775rem;
    left: 0;
}

.span {
    font-size: .75rem;
}

.big-icon {
    font-size: 5rem;
    opacity: .5;
    color: #3b4b5b;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin: .7537rem 0;
    font-weight: 300;
    line-height: 1.5735rem;
}

p, .p {
    line-height: 1.9;
    margin-bottom: 1.875rem;
    font-size: .8125rem;
    display: block;
}

p span, small span {
    font-size: inherit;
}

p em {
    display: inline-block;
}

form {
    position: relative;
}

em {
    margin-bottom: .5rem;

}

.w-93 {
    width: 93%;
}

.opc-70 {
    opacity: .7;
}

.vertical-align {
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.text-small {
    font-size: 12px;
    display: inline-block;
}

section,
.section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.block-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: .3125rem;
}

.front-p {
    position: relative;
    z-index: 100;
}

.uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #ffffff;
}

.text-red {
    color: #ff5252;
}

.bold {
    font-weight: 700;
}

.switch-fot {
    font-family: 'Source Code Pro', monospace;
}

.form-control-border0 {
    border: none;
}

.height-70 {
    height: 70vh;
}

img {
    margin-bottom: 1rem;
    display: block;
}

img.animated {
    -webkit-transform: translateX(-10px) translateZ(0);
    transform: translateX(-10px) translateZ(0);
    transition: .45s ease;
    width: calc(100% + 10px);
    max-width: initial;
}

img:hover {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.sing {
    max-width: 30%;
}

.adjust-space {
    margin-top: -30px;
    display: block;
}

.container {
    position: relative;
}

.indent {
    text-indent: -999px;
    display: none;
}

input[type]:-moz-placeholder {
    color: rgba(85, 45, 35, .5);
}

:-moz-placeholder {
    color: rgba(85, 45, 35, .5);
}

::-moz-placeholder {
    color: rgba(85, 45, 35, .5);
}

:-ms-input-placeholder {
    color: rgba(85, 45, 35, .5);
}

::-webkit-input-placeholder {
    color: rgba(85, 45, 35, .5);
}

.zoomM {
    animation: zoom 15s ease 0s normal both infinite;
    -webkit-animation: zoom 15s ease 0s normal both infinite;
    -moz-animation: zoom 15s ease 0s normal both infinite;
    -ms-animation: zoom 15s ease 0s normal both infinite;
    -o-animation: zoom 15s ease 0s normal both infinite;
}

body.TempMousiqua {
    word-break: break-word;
}

@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

/* End typography and common style*/

/*Links*/

a.link {
    margin-bottom: 1rem;
    display: block;
    color: #ffffff;
}

.as-link {
    cursor: pointer;
}

a,
.but,
.block-hover,
input[type="text"],
.mobile-but .lines:after,
.mobile-but .lines:before,
.insta-Feed li img,
.block-tabs li,
.playlist li {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.btn-s {
    padding: .29rem .725rem .29rem .625rem;
    font-size: .6875rem;
}

.btn.with-ico i {
    margin-right: .5125rem;

}

.with-ico i {
    display: inline-block;
    margin-right: .8125rem;
}

.border-2 {
    border-color: #ff5252 !important;

}

.border-3 {
    border-color: rgba(255, 255, 255, .7) !important;

}

.but:hover {
    color: #ffffff;
}

.block-social li a {
    color: rgba(255, 255, 255, .7);
    border: 2px solid transparent;
    border-color: rgba(255, 255, 255, .07);
    padding: 0.2875rem 0.55rem;
    font-size: 0.9357rem;
    display: inline-block;
    margin-right: .3rem;
}

.block-social li a:hover {
    color: rgba(255, 255, 255, 1);
}

a.link:hover {
    opacity: .7;
    text-decoration: none;
}

strong a {
    color: #ffffff;
}

p a.link {
    margin-top: 0;
    font-size: inherit;
    text-decoration: underline;
    display: inline-block;

}

section.divider {
    padding-top: 12rem;
    padding-bottom: 12rem;
}

section.main {
    padding-top: 7.42857rem;
    padding-bottom: 7.42857rem;
}

div[class*="col-"].gap-one-bottom-md, .gap-one-bottom-md {
    padding-bottom: 5rem;
}

div[class*="col-"].gap-one-top-md, .gap-one-top-md {
    padding-top: 5rem;
}

div[class*="col-"].gap-double-md, .gap-double-md {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

div[class*="col-"].gap-one-bottom-lg, .gap-one-bottom-lg {
    padding-bottom: 10rem;
}

div[class*="col-"].gap-one-top-lg, .gap-one-top-lg {
    padding-top: 10rem;
}

div[class*="col-"].gap-double-lg, .gap-double-lg {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

div[class*="col-"].gap-one-bottom-sm, .gap-one-bottom-sm {
    padding-bottom: 3rem;
}

div[class*="col-"].gap-one-top-sm, .gap-one-top-sm {
    padding-top: 3rem;
}

div[class*="col-"].gap-double-sm, .gap-double-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/*End links*/

/*Misc */

.bg-secondary {
    border-top: 1px solid rgba(59, 75, 91, 0.3)
}

.bg-red {
    background: #ff5252;
}

/*End misc */

/*

Mousiqua - Music Band and Musician Bootstrap 4 Template
Copyright 2018  www.mutationmedia.net 
Created by : mutationthemes  

*/

/* Table of Content ================================================== 

1.Preloader
2.Site wrapper
3.Search form
4.To the top
5.About section
6.Discography section
7.Band section
8.Tours section
9.Gallery section
10.News section
11.Contact section
12.Footer section
13.Mediaqueries 




/*Preloader*/
.loader {
    background: #13181d;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.loader-inner {
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.loading-spinner {
    width: 6.25rem;
    height: 6.25rem;
    animation: spinner-rotate 2s ease-in-out infinite;
    -webkit-animation: spinner-rotate 2s ease-in-out infinite;
    -moz-animation: spinner-rotate 2s ease-in-out infinite;
    -ms-animation: spinner-rotate 2s ease-in-out infinite;
    -o-animation: spinner-rotate 2s ease-in-out infinite;
}

.spinner {
    animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
    -webkit-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
    -moz-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
    -ms-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
    -o-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes spinner-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: trotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes spinner-color {
    0%, 100% {
        stroke: #d0343a;
    }
    20% {
        stroke: #ff5252;
    }
    40% {
        stroke: #d0343a;
    }
    60% {
        stroke: #ff5252;
    }
    80% {
        stroke: #d0343a;
    }
    100% {
        stroke: #ff5252;
    }
}

@keyframes spinner-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -125px;
    }
}

/*End preloader*/
/*Site wrapper*/
.wrapper {
    position: relative;
}

/*End site wrapper*/
/*Search form*/
.block-search-form {
    position: fixed;
    background: rgba(19, 24, 29, .8);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1045;
    overflow: hidden;
    display: none;
}

span.close-search {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.block-search-form .block-content {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*End search form*/
/*To the top*/
.block-top:not(.active) {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    -webkit-transform: translate3d(0, 20px, 0);
    -moz-transform: translate3d(0, 20px, 0);
    pointer-events: none;
}

.block-top.active:hover {
    transform: translate3d(0, -5px, 0);
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    color: #ffffff;
}

.block-top {
    position: fixed;
    width: 3.2rem;
    height: 3.2rem;
    background: #ff5252;
    text-align: center;
    right: 2.875rem;
    bottom: 3.6875rem;
    padding-top: .6rem;
    z-index: 100;
    color: #ffffff;
}

.block-top i {
    font-size: 1.2rem;
}

/*End to the top*/
/* Hero Section*/
section.hero {
    background: #222222;
    padding: 0;
    overflow: hidden;
}

.background-img img {
    display: none;
}

.background-img {
    width: 100%;
    height: 100%;
}

.background-img {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #151514;
    background-image: none;
    background-origin: padding-box;
    background-position: 50% 50% !important;
    background-repeat: repeat;
    background-size: cover !important;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.overlay:before, .block-hover:before {
    position: absolute;
    background: rgba(19, 24, 29, .8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    content: "";
}

.header {
    padding: .4em 0;
}

.slider .slides li {
    background-size: cover;

}

.header.default {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1040;
}

.header .left-part {
    float: left;
    margin-left: 3.125rem;
}

.header .right-part {
    float: right;
    margin-right: 3.125rem;
    position: relative;
}

.header.switched-header {
    background-color: #ffffff;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
}

.header .logo {
    display: inline-block;
}

.header .logo h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.header.switched-header .logo h2 {
    color: #222222;
}

.mobile-but {
    display: inline-block;
    height: 1.5rem;
    position: absolute;
    right: -1.275rem;
    top: -2.175rem;
    z-index: 1000;
    display: none;
}

.mobile-but .lines {
    transform: translate(0px, 10px) rotate(0deg);
    -webkit-transform: translate(0px, 10px) rotate(0deg);
    -ms-transform: translate(0px, 10px) rotate(0deg);
    -moz-transform: translate(0px, 10px) rotate(0deg);
}

.mobile-but .lines, .mobile-but .lines:after, .mobile-but .lines:before {
    height: 0.125rem;
    width: 1.5625rem;
}

.mobile-but .lines:after, .mobile-but .lines:before {
    content: " ";
    display: block;
}

.mobile-but .lines:after {
    transform: translate(0px, 4px) rotate(0deg);
    -webkit-transform: translate(0px, 4px) rotate(0deg);
    -ms-transform: translate(0px, 4px) rotate(0deg);
    -moz-transform: translate(0px, 4px) rotate(0deg);
}

.mobile-but .lines:before {
    transform: translate(0px, -4px) rotate(0deg);
    -webkit-transform: translate(0px, -4px) rotate(0deg);
    -ms-transform: translate(0px, -4px) rotate(0deg);
    -moz-transform: translate(0px, -4px) rotate(0deg);
}

.mobile-but .lines:after, .mobile-but .lines:before {
    background: #ff5252;
}

.toggle-mobile-but.active .mobile-but .lines:after {
    transform: translate(0px, -1px) rotate(45deg);
    -webkit-transform: translate(0px, -1px) rotate(45deg);
    -ms-transform: translate(0px, -1px) rotate(45deg);
    -moz-transform: translate(0px, -1px) rotate(45deg);
}

.toggle-mobile-but.active .mobile-but .lines:before {
    transform: translate(0px, 1px) rotate(-45deg);
    -webkit-transform: translate(0px, 1px) rotate(-45deg);
    -ms-transform: translate(0px, 1px) rotate(-45deg);
    -moz-transform: translate(0px, 1px) rotate(-45deg);
}

.main-nav li {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 1.9625rem;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.main-menu li a, .main-nav li span, .main-nav li a {
    color: #ffffff;
    position: relative;
    padding: 1rem 0;
}

.switched-header .main-nav li a {

}

.main-nav li span.search-ico {
    cursor: pointer;
    color: #ff5252;
}

a.block-top {
    line-height: 2rem;
}

div#main-body {
    margin-top: 1rem;
}

.block-helper li {
    position: relative;
    font-size: 1rem;
}

.block-helper li {
    margin-left: 0;
}

.block-helper li a {
    color: #ff5252;
}

.header.switched-header .main-nav li a {
    color: #292929;
    opacity: .5;
}

.header .main-nav li a:hover {
    background-color: transparent;
}

.block-helper li a {
    color: #ff5252;
    opacity: 1;
}

.hero-content {
    color: #ffffff;
    position: relative;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 4;
}

h1.large {
    font-size: 4.4rem;
    line-height: 1.5;
    letter-spacing: .425rem;
    font-weight: 100;
}

.back-rect {
    border: 10px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #d0343a 0%, #ff5252 100%);
    -ms-border-image: -ms-linear-gradient(top, #d0343a 0%, #ff5252 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #d0343a 0%, #ff5252 100%);
    border-image: linear-gradient(to bottom, #d0343a 0%, #ff5252 100%);
    border-image-slice: 1;
    width: 17.25rem;
    height: 21.5625rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.front-rect {
    border-right: 10px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #d0343a 0%, #ff5252 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #ff3d49 0%, #ff5252 100%);
    border-image: linear-gradient(to bottom, #d0343a 0%, #ff5252 100%);
    border-image-slice: 1;
    width: 17.25rem;
    height: 21.5625rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%), -50%;
    position: absolute;
}

.video-play-but {
    border: 2px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    height: 7.5em;
    width: 7.5em;
    position: relative;
    background: none;
    margin-top: 3.125em;
}

.video-play-but:after {
    border-color: transparent transparent transparent #ffffff;
    border-style: solid;
    border-width: 17px 0 17px 24px;
    content: "";
    height: 0;
    margin-left: -0.625rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.block-video .video-play-but:after {
    border-width: 10px 0 10px 15px;
    margin-left: -0.375rem;
    border-color: transparent transparent transparent #222222;
}

.video-play-but:hover {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
}

/* End hero Section*/
/* Discography section*/
.block-album a {
    color: #ffffff;
}

.block-teaser {
    text-transform: uppercase;
    border-top: 6px solid #ff5252;
    border-bottom: 6px solid #ff5252;
    padding: 1.25rem 0;
}

.block-teaser p {
    font-weight: 700;
    font-size: 1.3rem;
    padding-bottom: .5rem;
}

.block-teaser a {
    font-weight: 700;
    font-size: .9rem;
}

.countdown {
    font-size: 4rem;
    font-weight: 300;
}

/* End discography Section*/
/* Audio player*/
.block-tracklist .audiojs {
    background-image: none;
    background-color: #1a1a1a;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 7.3rem;
    display: none;
}

/* .block-tracklist .audiojs .scrubber {
     background-color: rgba(255, 255, 255, 0.7);
     position: absolute;
     height: 4px;
     top: 33px;
     z-index: 9999;
     width: calc(100% - 130px);
     left: 55px;
     border-top: 0;
}
 .block-tracklist .audiojs .time {
     position: absolute;
     text-shadow: none;
     border: none;
     height: auto;
     line-height: normal;
     margin: 0;
     padding: 0;
     top: 20px;
     right: 62px;
}
 .block-tracklist .audiojs .progress{
     border-radius: 0;
}
 .block-tracklist .audiojs .play-pause{
     height: 55px;
     width: 35px;
}
 .block-tracklist .audiojs p{
     position: relative;
     top: 27px;
     left: 7px;
}*/
.block-tracklist .audiojs .play-pause {
    border-right: 0;
}

.block-tracklist .block-lyrics {
    display: none;
    margin: 0 auto;
}

.block-tracklist .playlist {
    border: 1px solid rgba(255, 255, 255, .1);
}

.block-tracklist .playlist li {
    padding-bottom: 1rem;
    padding-left: 2.5rem;
    padding-top: 1rem;
    padding-right: 1.5rem;
    cursor: pointer;
    position: relative;
}

.block-tracklist .playlist li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.block-tracklist .playlist li:hover {
    background: #090d11;
}

.block-tracklist .playlist li.playing {
    background: #090d11;
}

.block-tracklist .playlist li:before {
    content: "\e8d4";
    font-family: "fontello";
    position: absolute;
    left: 1.0625rem;
    top: 1.3rem;
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, .7);
}

.block-tracklist .playlist li.playing:before {
    content: "\e8d8";
    color: #ff5252;
}

.block-tracklist .playlist li.playing.pause:before {
    content: "\e8d4";
    color: #ff5252;
}

span.selected, a.selected {
    color: #ffffff;
}

/* End audio player*/
/* Band members section*/
.block-member {
    position: relative;
}

.block-member .member-info {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 82, 82, .95);
    width: 100%;
    text-align: center;
    padding: 1.45rem 0;
}

/* End band members section*/
/* Tours section*/
.block-tabs li {
    margin: 0 .78125rem;
    cursor: pointer;
    position: relative;
    padding: 0 .25rem;
    opacity: .7;
}

.block-tabs li.active {
    opacity: 1;
}

.block-tab li, .block-tab li .block-video {
    display: none;
}

.block-tab li.active, .block-tab li.active .block-video {
    display: block;
}

.block-video {
    background: #000;
    position: relative;
    overflow: hidden;
}

.block-video .video-play-but {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin-top: -2.25rem;
    margin-left: -2.25rem;
    margin-bottom: 0 !important;
    height: 4.5rem;
    width: 4.5rem;
    background: #ffffff;
}

.block-video.show-video .video-play-but.play-video, .block-video.show-video img {
    opacity: 0 !important;
    pointer-events: none;
}

img.background-img {
    object-fit: cover;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.block-subscribe {
    position: relative;
}

.block-subscribe p {
    font-weight: 700;
    font-size: 1.3rem;
}

.block-subscribe:before {
    content: "\ea0c";
    font-family: "fontello";
    position: absolute;
    right: 3.75rem;
    top: 50%;
    font-size: 17.5rem;
    color: #ffffff;
    opacity: .1;
    transform: translateY(-50%) rotate(-26deg);
    -webkit-transform: translateY(-50%) rotate(-26deg);
    -moz-transform: translateY(-50%) rotate(-26deg);
    -ms-transform: translateY(-50%) rotate(-26deg);
    -o-transform: translateY(-50%) rotate(-26deg);
}

/* End tours section*/
/*Gallery section*/
.card-gallery.image-gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
}

.card-gallery.image-gallery > a > img {
    margin-bottom: .35em;
}

.card-gallery > * {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

/*End gallery section*/
/*News section*/
.news-list > li {
    margin-bottom: 7.5rem;
}

.news-list li:last-child {
    margin-bottom: 0;
}

/*End news section*/
/*Twitter section*/
.tweets {
    position: relative;
}

.tweets .tweet {
    margin-top: 1rem;
    font-size: 1rem;
}

.tweets .slides p {
    margin-bottom: 0;
}

.tweets .slides p a {
    text-decoration: underline;
    color: #ffffff;
    opacity: .7;
}

.tweets .slides p a:hover {
    text-decoration: none;
    opacity: 1;
}

.tweets .slides p.timePosted a {
    margin-top: 1rem;
    color: #d0343a;
    opacity: 1;
    display: inline-block;
    font-size: .9375rem;
}

.tweets .slides p.interact {
    display: none;
}

.tweets .slides .user [data-scribe="element:screen_name"] {
    display: block;
    font-size: .9375rem;
    line-height: 1.68421053rem;
    font-weight: normal;
}

.tweets .slides .user [data-scribe="element:name"] {
    display: none;
}

.tweets .slides .user img {
    display: inline-block;
    clear: both;
    margin-bottom: 0.92857143rem;
    border-radius: 50%;
}

/*End twitter section*/
/*Contact section*/
.contact .block-social li {
    margin: 0 2.48rem;
}

.contact .block-social li a {
    border: none;
    font-size: 5em;
    opacity: .5;
    color: #3b4b5b;
}

.contact .block-social li a:hover {
    opacity: 1;
}

/*End contact section*/
/*Footer*/
.footer {
    background: #ffffff;
    color: #292929;

}

.footer small span {
    opacity: .5;
}

.footer .list-inline-item {
    position: relative;
}

.footer .list-inline-item a {
    color: #292929;
    opacity: .5;
}

.footer .list-inline-item:not(:first-child):after {
    content: "-";
    position: absolute;
    left: -.8125rem;
    top: .0625rem;
    opacity: .5;
}

.footer .list-inline-item a:hover {
    opacity: 1;
}

/*End footer*/

div#flexiCarousel, .flex-viewport, .flexslider .slides {
    height: 100%;
}

.flexslider .slides li {
    max-height: 100%;
    height: 100%;
}


div#main-body.widthHalf {
    min-height: 50vh;
}

div#main-body.widthQuarter {
    min-height: 75vh;
}

.widget-title {
    display: inline-block;
    position: relative;
    line-height: 1em;
}

.widget-title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: .25rem;
    background: #ff5252;
    bottom: 0.75rem;
    left: 0;
    display: inline-block;
}

.black {
    color: #000;
}

.flex-control-nav li:before {
    display: none;
}

.inner-hero > h1 {
    z-index: 99
}

body.TempMousiqua .social-icons .fa {
    font-style: normal;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

/*Media queries*/
@media all and (max-width: 990px) {

    .header .left-part,
    .header .right-part {
        float: none;
        display: block;
    }

    .header .left-part {
        margin-left: 1.857em;
    }

    .header {
        background-color: #ffffff !important;
    }

    .header .logo {
        margin-top: 0;
        color: #222222 !important;
    }

    .header .logo h2 {
        color: #222222 !important;
        margin-bottom: auto;
        font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
    }

    .mobile-but {
        display: block;
    }

    .main-nav ul {
        display: none;
        margin-left: 1.857em;
    }

    .main-nav li {
        float: none;
        display: block;
        margin-left: 0;
    }

    .main-menu li a, .main-nav li span {
        display: inline-block;
        padding: .5rem 0;

    }

    .TempMousiqua .wrapper .main-nav ul.nav li a {
        color: #292929 !important;
        opacity: .5 !important;
    }

    .main-nav li:last-child a {

    }

    .block-helper li a {
        color: #ff5252 !important;
        opacity: 1 !important;
    }

    .main-nav ul ul {
        margin-left: 0;
    }

    .block-teaser p {
        font-size: 1.4rem;
    }

    .inner-hero > h1 {
        white-space: initial;
    }
}

@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) and (orientation: portrait) {
    input,
    textarea {
        -webkit-appearance: none;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
    .card-gallery.image-gallery > a > img {
        margin-bottom: .75em;
    }

}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {

    .card-gallery.image-gallery > a > img {
        margin-bottom: .75em;
    }

    h1, .h1 {
        font-size: 2.835rem;
    }

    h3, .h3 {
        font-size: 1rem;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    input,
    textarea {
        -webkit-appearance: none;
    }

    .card-gallery.image-gallery > a > img {
        margin-bottom: .75em;
    }

    section.about a.btn-primary {
        display: block;
    }

    section.about a.btn-primary i {
        display: none;
    }

    .contact .block-social li {
        margin: 0 1.5rem;
    }

    .height-70 {
        height: 100vh;
    }

}

@media only screen and (min-width: 768px) and (max-width: 960px) {
    input,
    textarea {
        -webkit-appearance: none;
    }

    .sing {
        max-width: 20%;
        margin-bottom: 3rem !important;
    }

    .card-gallery.image-gallery > a > img {
        margin-bottom: .75em;
    }

    h1.large {
        font-size: 4rem;
    }

    .block-subscribe p {
        font-size: 1.4rem;
    }

    .height-70 {
        height: 100vh;
    }

}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    input,
    textarea {
        -webkit-appearance: none;
    }

    .hero .main-slider .slides li {
        height: 500px !important;
    }

    section.about .block-content.text-md-right, .block-album {
        margin-bottom: 1.875em;
    }

    .playlist li .col-lg-6 span, .block-tab .col-lg-4 span {
        margin-bottom: 1rem;
        display: block;
    }

    .back-rect, .front-rect {
        display: none;
    }

    h1.large {
        font-size: 4rem;
    }

    .height-70 {
        height: 100vh;
    }

    .sing {
        margin-bottom: 3rem !important;
        max-width: 25%;
    }

    .card-gallery.image-gallery {

        column-count: 1;
        column-gap: 0rem;
    }

    .card-gallery.image-gallery > a > img {
        margin-bottom: 1rem;
    }

}

@media only screen and (max-width: 479px) {
    input,
    textarea {
        -webkit-appearance: none;
    }

    .back-rect, .front-rect {
        display: none;
    }

    h1.large {
        font-size: 3rem;
    }

    .playlist li .col-lg-6 span, .block-tab .col-lg-4 span {
        margin-bottom: 1rem;
        display: block;
    }

    .sing {
        margin-bottom: 3rem !important;
        max-width: 40%;
    }

    section.about .block-content.text-md-right, .block-album {
        margin-bottom: 1.875em;
    }

    .card-gallery.image-gallery {

        column-count: 1;
        column-gap: 0rem;
    }

    .block-subscribe:before {
        right: 1.75rem;
    }

    .block-subscribe p {
        font-size: 1.4rem;
    }

    .card-gallery.image-gallery > a > img {
        margin-bottom: 1rem;
    }

    .height-70 {
        height: 100vh;
    }

    .block-tracklist .block-content img {
        display: none;
    }

    .block-title:before {
        content: none;
    }

    .news-list > li, .news-list li:last-child {
        margin-bottom: 5rem;
    }

}

/* iphone 6+, 6s+, 7+, 8+ */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    section.hero.intro {
        height: 500px !important;
    }

    .hero .main-slider .slides li {
        height: 500px !important;
        max-height: 100%;
    }
}

/*End media queries*/
