/*
Theme Name: Music Band Group
Theme URI: https://templatesjungle.com/
Author: Templates Jungle
Author URI: https://templatesjungle.com/
Description: Music Band Group is specially designed musician for Music Band by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
  2.10 Buttons
    - Button Shapes
    - Button Color Scheme
  2.11 Images
    - Image Hover Effects
  2.12 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content colors

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Dropcap
  3.3 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Member Grid
  4.4 Product Grid

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 Post content
  5.3 About Author
  5.4 Comments List
  5.5 Comments Form
  5.6 Post Grid
  
6. WIDGET STYLES
  6.1 Gallery Widget

7. SITE STRUCTURE
  7.1 Preloader
  7.2 Header
    - Logo
    - Header Menu
    - Nav Sidebar
    - Social Media Header
  7.3 Billboard
    - Banner buttons
  7.4 Tours & Concerts Grid
  7.5 Tours & Concerts List
  7.6 Latest Videos
  7.7 Our store
  7.8 Instagram
  7.9 Footer
  7.10 Blog Page
    - post item
  
8. THIRD PARTY COMPONENTS
  8.1 Button arrow
  8.2 Button Swipe


------------------------------------------------*/

/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}
/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}
/* Theme Colors */
:root {
  --accent-color: #fe003c;
  --secondary-color: #c5a992;
  --dark-color: #2f2f2f;
  --heading-color: #111;
  --body-text-color: #333;
  --light-heading-color: #fff;
  --light-text-color: #afafaf;
  --dark-text-color: #2f2f2f;
}
/* Fonts */
:root {
  --body-font: "Roboto", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --secondary-font: "Playfair Display", Georgia, serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-text-color);
}
body.no-scroll {
  overflow: hidden;
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a:hover {
  color: #111;
  text-decoration: none;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}
ul li,
ol li {
  margin-bottom: 5px;
  outline: 0;
}
ul li.active a {
  color: #daa556;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 2rem;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}
figure {
  margin: 0;
}
img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
::selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}

/* image align */
figure.align-right {
  margin: 30px 0 30px 30px;
}

/* Typography */
/*----------------------------------------------*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.2;
  color: var(--dark-color);
}
h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: #fff;
}
h1,
h2,
h3 {
  margin: 25px 0;
  text-transform: capitalize;
}
h5,
h6 {
  letter-spacing: 1px;
}
h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.4;
}
h2,
.h2 {
  font-size: 1.5em;
  line-height: 1.4;
}
h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.4;
}
h4,
.h4 {
  font-size: 1.1em;
  line-height: 1.4;
}
h5,
.h5 {
  font-size: 0.83em;
  line-height: 1.25;
}
h6,
.h6 {
  font-size: 0.67em;
  line-height: 1.1;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 20px 0;
}
p:empty {
  display: none;
}
small {
  font-size: 85%;
}
mark {
  background-color: #fcf8e3;
  padding: 0.28rem;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
code,
kbd,
var {
  font-size: 14px;
}
code {
  background-color: #f9f2f4;
}
abbr {
  border-bottom: 0.1px dotted #666;
  cursor: help;
}
::placeholder {
  color: #999;
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/

.align-left {
  float: left;
  text-align: left;
}
.align-right {
  float: right;
  text-align: right;
}
.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/**::after,*/
.container::after,
.row::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/** Text Align
--------------------------------------------------------------*/

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lead {
  font-size: 120%;
  line-height: 1.7em;
}
.text-lead strong {
  font-size: 115%;
  font-weight: 500;
}
.text-muted {
  color: #777;
}
.text-pri {
  color: #ff9697;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33c3f0;
  outline: 0;
}
label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
}
label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}
ol {
  list-style: decimal inside;
}
ol,
ul {
  padding-left: 0;
  margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}
li {
  margin-bottom: 1rem;
}

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}

/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
.list-icon i {
  margin-right: 10px;
}
.list-unstyled {
  list-style: none;
}
.txt-fx .letter {
  opacity: 0;
}
.text-uppercase {
  text-transform: uppercase;
}
/* display flex utilities */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
/* disable selction in section title */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  background: var(--accent-color);
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 0.75em 1.5em;
  margin-top: 15px;
  font-size: 15px;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:hover,
.btn:focus,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="file"]:focus,
input[type="file"]:hover,
button:focus,
button:hover {
  text-decoration: none;
  outline: 0;
}
.light .btn:hover {
  color: #fff;
}
.btn:last-child {
  margin-right: 0;
}
.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.325em 1.7em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 0.5em 1.75em;
  font-size: 0.75em;
}
.btn.btn-large {
  padding: 1em 2.5em;
}
.btn.btn-xlarge {
  padding: 1.5em 2.7em;
  font-size: 0.9em;
}
.btn.btn-image {
  background-color: transparent;
  padding: 0;
  max-height: 50px;
}
.btn.btn-image img {
  max-height: 50px;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 4px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0, 0, 0, 1);
  color: #121212;
}
.btn.btn-outline-dark:hover {
  background: #121212;
  border-color: #121212;
  color: #fff;
}
.btn.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.045);
  background: #fff;
  border-color: #fff;
  color: #121212;
}
.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: 0.85em 0;
  width: 100%;
  text-align: center;
}
/* button with line */
.btn-with-line {
  color: #fff;
  position: relative;
}
.btn-with-line:after {
  content: "";
  position: absolute;
  top: 8px;
  right: -66px;
  border-bottom: 2px solid #fff;
  width: 50%;
  z-index: 9;
  transition: 0.3s ease-out;
}
.btn-with-line:hover {
  color: #fff;
}
.btn-with-line:hover:after {
  width: 30%;
  right: -41px;
}
/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-common {
  background: var(--accent-color);
  color: #fff;
}
.btn.btn-common:hover {
  background: #151515;
  color: #fff;
}
.btn.btn-accent {
  color: #ffffff;
  background-color: var(--accent-color);
}
.btn.btn-accent:hover {
  color: #ffffff !important;
  background-color: #121212;
}
.btn.btn-gray,
.btn.btn-grey {
  background: #9e9e9e;
  color: #fff;
}
.btn.btn-black {
  background: #121212;
  color: #fff;
}
.btn.btn-black:hover {
  background-color: #fff;
  color: #121212;
}
.btn.btn-white {
  background: #f8f8f8;
  text-shadow: none;
  color: #121212 !important;
}
.btn.btn-white:hover {
  background: var(--accent-color);
  text-shadow: none;
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}
.btn-center {
  text-align: center;
  display: block;
}
.btn-right {
  text-align: right;
  display: block;
}

/*----------------------------------------------*/
/* 2.11 Images */
/*----------------------------------------------*/

/* Image hover Effects */
.image-hvr-effect {
  display: flex;
  overflow: hidden;
}
.image-hvr-effect img.post-image {
  transform: scale(1.1);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.image-hvr-effect:hover img.post-image {
  transform: scale(1);
}

/*----------------------------------------------*/
/* 2.12 Section */
/*----------------------------------------------*/
/* Hero section
/*----------------------------------------------*/
.hero-section .hero-content {
  padding-top: 18em;
  padding-bottom: 10em;
  display: flex;
  align-items: center;
}
.hero-section {
  position: relative;
  color: #fff;
}
.hero-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(39, 39, 39, 0.4);
  z-index: -1;
}
.hero-section,
.hero-section h1,
.hero-section a,
.hero-section a:hover {
  color: #fff;
}
.hero-section h1 {
  font-size: 4em;
}

@media only screen and (max-width: 768px) {
  .hero-section h1 {
    font-size: 2em;
  }
  .hero-section .hero-content {
    padding-top: 12em;
    padding-bottom: 6em;
  }
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}
.padding-2xlarge {
  padding-top: 15em;
  padding-bottom: 15em;
}

@media only screen and (max-width: 768px) {
  .padding-small,
  .padding-medium,
  .padding-large,
  .padding-xlarge {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}

/* no padding */
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-top {
  padding-top: 0 !important;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}
.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}
.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Section bg colors
--------------------------------------------------------------*/
.bg-dark {
  background: var(--dark-color);
}
.content-light h1,
.content-light h2,
.content-light h3,
.content-light h4,
.content-light h5,
.content-light h6 {
  color: var(--light-heading-color);
}
.content-light a,
.content-light {
  color: var(--light-text-color);
}
.content-light a:hover {
  color: var(--light-text-color);
}

/*====================================================================*/
/* 3. EXTENDED TYPOGRAPHY */
/*====================================================================*/
/*----------------------------------------------*/
/* 3.1 Blockquote /Pullquote */
/*----------------------------------------------*/
.single-post .content p:first-child,
.quote blockquote,
blockquote,
.single-post .content blockquote p,
.pullquote-right,
.pullquote-left {
  font-size: 27px;
  line-height: 1.4em;
  font-style: italic;
  margin: 0 0 30px;
  padding: 0;
}
.pullquote-right,
.pullquote-left {
  width: 40%;
}
blockquote cite {
  display: block;
  font-size: 0.8em;
  margin-top: 20px;
  font-style: italic;
}
.pullquote-left {
  float: left;
  margin: 20px 20px 20px 0;
}
.pullquote-right {
  float: right;
  margin: 20px 0 20px 20px;
}

/*----------------------------------------------*/
/* 3.2 Dropcap */
/*----------------------------------------------*/
.dropcap {
  display: inline-block;
  margin: 20px;
  font-size: 4em;
  font-weight: bolder;
  text-transform: uppercase;
  text-align: center;
  color: #111;
  float: left;
}
.dropcap.colored {
  color: #2bcaae;
}

/*----------------------------------------------*/
/* 3.3 Text Highlights */
/*----------------------------------------------*/
.highlight {
  background: #2bcaae;
  color: #fff;
  padding: 1px 5px;
}
.highlight.light {
  background: #ffff99;
  color: #101010;
}
.highlight.dark {
  background: #333;
}

.colored {
  color: #2bcaae !important;
}

/*====================================================================*/
/* 4. CONTENT ELEMENTS */
/*====================================================================*/

/*--------------------------------------------------------------
/** 4.1 General Tabs
--------------------------------------------------------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  color: #999;
  padding: 10px 30px;
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.bootstrap-tabs .tab-content {
  padding: 20px 0;
}
.bootstrap-tabs .tab-content > .tab-pane {
  display: none;
}
.bootstrap-tabs .tab-content > .active {
  display: block;
}

/*--------------------------------------------------------------
/** 4.2 Accordions
--------------------------------------------------------------*/
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow-anchor: none;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  /*box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);*/
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

/* 4.3 Member Grid
--------------------------------------------------------------*/
.member-grid .team-member .member-details {
  margin-top: 30px;
}
.member-grid .team-member .member-details h4 {
  margin-bottom: 0;
}
.member-grid .team-member .designation {
  margin-bottom: 15px;
}
.member-grid .team-member .social-links {
  font-size: 20px;
}

@media screen and (max-width: 575px) {
  .member-grid .text-content {
    padding-bottom: 25px;
  }
  .member-grid .social-links {
    font-size: 16px;
  }
  .member-grid .text-content:hover .social-links {
    bottom: 10px;
  }
}

/* 4.4 Product Grid
--------------------------------------------------------------*/
.product-item {
  margin-bottom: 30px;
}
.product-item p {
  font-size: 0.8em;
  margin: 20px 0 0;
}
.product-item h5 {
  font-size: 1.1em;
  margin: 0;
}
.product-detail {
  padding-left: 60px;
}
.product-detail .product-title,
.product-detail p {
  margin: 0;
}
.product-detail .price {
  font-size: 32px;
}

/*====================================================================*/
/* 5. BLOG STYLES */
/*====================================================================*/

/* 5.1 Blog Single Post
------------------------------------------*/
/* breadcrumbs */
.breadcrumbs span {
  display: inline-block;
}

/* 5.3 About Author
------------------------------------------*/
.author-post {
  padding-left: 30px;
}
.author-post h4 {
  font-weight: 500;
  text-transform: none;
}

/* 5.4 Comments List
------------------------------------------*/
.comment-meta span.meta-date {
  font-size: 13px;
  padding-right: 10px;
}
.comments-wrap .child-comments {
  padding-left: 50px;
}

/* 5.5 Comments Form
------------------------------------------*/
.comment-respond .comment-form {
  display: flex;
}

/* 5.6 Post Grid
--------------------------------------------------------------*/
.post-grid .post-grid-item {
  display: flex;
  padding: 60px 0;
  justify-content: space-between;
}
.post-grid .post-item {
  padding: 15px;
  flex-basis: 25%;
}
.post-grid .post-item:last-child {
  padding-right: 0;
}
.post-grid .post-content {
  padding: 30px 0;
}
.post-grid .post-content .meta-date {
  font-style: italic;
}
.post-grid h2.post-title {
  font-family: "Playfair display", sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  padding-bottom: 20px;
  margin: 0;
}

@media (max-width: 991px) {
  .post-grid .post-item {
    flex-basis: 100%;
  }
  .post-grid .post-media img {
    height: 240px;
  }
  .post-grid .post-content {
    width: 100%;
  }
  .post-grid h2.post-title {
    font-size: 1em;
    line-height: 1.5;
  }
}

/*====================================================================*/
/* 6. WIDGETS */
/*====================================================================*/

/* 6.1 Gallery Widget
--------------------------------------------------------------*/
.widget-gallery {
  display: flex;
  flex-wrap: wrap;
}
.widget-gallery a {
  margin: 0 10px 10px 0;
}
.widget-gallery img.gallery-image {
  width: 68px;
  height: 68px;
  object-fit: cover;
  margin-bottom: 5px;
}

/*----------------------------------------------*/
/* 7. SITE STRUCTURE */
/*----------------------------------------------*/
/* 7.1 Preloader */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 20;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 4px solid #fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

/*--------------------------------------------------------------
/** 7.2 Header
--------------------------------------------------------------*/
/* Logo */
.logo h2 {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}
#header.style2 {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  height: auto;
  min-height: 200px;
  background: #000;
}
.head-content {
  width: 100%;
}
.head-content .navbar {
  justify-content: space-between;
}
.head-content .navbar a {
  color: #fffffe;
  font-size: 3em;
}
#header.style2 .box-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.logo {
  flex-shrink: 0;
}
.social-block {
  position: absolute;
  right: 50px;
}

@media screen and (max-width: 992px) {
  #header.style2 .box-right {
    width: 100%;
    justify-content: flex-start;
  }
  .social-block {
    display: none;
  }
}

/** Nav Sidebar
--------------------------------------------------------------*/
#navsidebarCollapse {
  background: transparent;
}
#navsidebarCollapse a {
  color: #fff;
  font-size: 32px;
}
.nav-sidebar {
  width: 380px;
  position: fixed;
  top: 0;
  left: -380px;
  height: 100vh;
  z-index: 999;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.nav-sidebar.active {
  left: 0;
}
.closebtn {
  width: 35px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-sidebar ul {
  margin-top: 50px;
  margin-left: 30px;
  list-style: none;
}
.nav-sidebar ul li a {
  padding: 10px;
  font-size: 1.6em;
  font-weight: 700;
  display: block;
  color: #000;
}
.nav-sidebar ul li a:hover {
  color: var(--accent-color);
}

/* - Social Media Header
--------------------------------------------------------------*/

.social-block .social-icon {
  padding-top: 10px;
}
.social-block .social-icon a {
  color: #fff;
  padding: 5px;
  font-size: 2em;
}
.social-block .social-icon a:hover {
  color: #776c6e;
  text-decoration: none;
}

@media screen and (max-width: 575px) {
  .navbar .social-block {
    display: none;
  }
}

/* 7.3 Billboard
--------------------------------------------------------------*/

#billboard {
  position: relative;
}
#billboard .slider-item {
  height: 100vh;
}
#billboard .banner-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15% 20% 15% 15%;
}
#billboard .banner-text h2 {
  font-family: "Playfair display", sans-serif;
  color: #fff;
  font-size: 180px;
  line-height: 0.8em;
  text-transform: uppercase;
}
/* album details */
#billboard.style2 .album-details {
  position: relative;
  height: 100%;
}
#billboard.style2 .album-details {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  height: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
#billboard.style2 .album-details {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
#billboard.style2 .album-details .details-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#billboard.style2 .album-details p {
  font-size: 13px;
  color: #fff;
  width: 50%;
  padding: 20px;
  margin-bottom: 0;
}

/* Banner buttons */
#billboard.style2 .general-button a.btn {
  font-size: 13px;
  font-weight: bold;
  margin-top: 0;
  margin-right: 10px;
}
#billboard.style2 .slide-navigation {
  display: flex;
  margin-left: 60px;
}
#billboard.style2 .slide-navigation button {
  background: transparent;
  padding: 10px;
}
#billboard.style2 .slide-navigation i.icon {
  font-size: 30px;
}

@media (max-width: 1200px) {
  #billboard.style2 .general-button {
    width: 50%;
  }
}
@media (max-width: 991px) {
  #billboard .slider-item {
    height: 70vh;
  }
  #billboard .banner-text {
    padding: 0% 20% 15% 15%;
  }
  #billboard .banner-text h2 {
    font-size: 50px;
  }
  #billboard.style2 .album-details {
    height: 240px;
  }
  #billboard.style2 .album-details .details-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  #billboard.style2 .album-details {
    flex-wrap: wrap;
    padding: 20px 30px;
  }
  #billboard.style2 .album-details p {
    width: 100%;
    margin-right: 0;
    padding: 10px 0;
    margin: 0;
  }
  #billboard.style2 .general-button {
    width: 100%;
    display: flex;
  }
  #billboard.style2 .slide-navigation {
    margin-left: 0;
  }
}

/* 7.4 Tours & Concerts Grid
--------------------------------------------------------------*/
.special-events-grid .events-date {
  font-size: 2.8em;
  font-weight: 200;
  line-height: 1;
}
.special-events-grid strong {
  font-size: 1.5em;
}

/* 7.5 Tours & Concerts List
--------------------------------------------------------------*/
.special-events-list {
  max-width: 750px;
  width: 100%;
  margin: 60px auto;
  display: table;
}
.special-events-list .events-meta {
  border-bottom: 1px solid #e3dfde;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: table-row;
}
.special-events-list .events-date {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1;
  display: table-cell;
  width: 20%;
}
.special-events-list .events-btn {
  display: table-cell;
}
.special-events-list strong {
  font-size: 1.6em;
  font-weight: 800;
  display: block;
}

@media (max-width: 768px) {
  .special-events-list {
    width: 90%;
  }
}

@media (max-width: 599px) {
  .special-events-list .events-meta {
    flex-wrap: wrap;
  }
  .special-events-list .events-date {
    width: 100%;
  }
  .meta-location {
    margin-right: 50px;
  }
}

/* 7.6 Latest Videos
--------------------------------------------------------------*/
.latest-videos {
  background-color: #000;
}
.latest-videos .container {
  /*max-width: 1010px;*/
  margin: 0 auto;
  padding: 60px 0;
}
.latest-videos .slider-nav .slick-slide {
  margin: 10px;
}
.latest-videos .video-player {
  width: 100%;
}
.latest-videos .slider-nav {
  margin: 20px 0;
}
.pix_btn {
  text-align: center;
  padding: 20px 0;
}

/* 7.7 Our store
--------------------------------------------------------------*/
.our-store {
  background: url(images/productbg.jpg);
  color: #fff;
  position: relative;
}
.shadow-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}
.our-store .container {
  position: relative;
  /*max-width: 940px;*/
  z-index: 2;
}
.our-store .store-content {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.our-store .item-content {
  background-color: #000;
  margin: 0 10px;
}
.our-store .item-content .text-content {
  width: 85%;
  display: flex;
  justify-content: space-between;
  margin: 5px auto;
  align-items: baseline;
}
.our-store .item-content .item-title {
  font-family: "Playfair display", sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  color: #fff;
}
.our-store .item-content .item-title a:hover {
  color: #fff;
}
.our-store .item-content .item-price {
  font-size: 1em;
  font-weight: 600;
  color: #999;
}
.our-store .secondary-title h3 {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .our-store .store-content {
    flex-wrap: wrap;
  }
  .our-store .item-content {
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .our-store .store-content {
    justify-content: center;
  }
}

/* 7.8 Instagram
--------------------------------------------------------------*/
#instagram {
  background-color: #000;
  padding-bottom: 60px;
}
#instagram .container {
  padding-top: 60px;
}
#instagram .container figure {
  flex-basis: 16%;
}
@media (max-width: 768px) {
  #instagram .container figure {
    flex-basis: 33.33%;
  }
}

/*--------------------------------------------------------------
/** 7.9 Footer
--------------------------------------------------------------*/

#footer {
  background-color: #000;
  color: #d8d8d8;
  padding: 40px 0;
}
#footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
#footer a {
  color: #d8d8d8;
  font-weight: 600;
}
#footer a:hover {
  color: #fff;
}
#footer .social-links li {
  padding-right: 20px;
}
#footer .social-links a {
  font-size: 2.5em;
}
#footer .social-links i {
  padding-right: 15px;
}
#footer .footer-menu li {
  text-transform: uppercase;
  padding-right: 25px;
}
#footer .copyright {
  text-align: center;
}

@media (max-width: 768px) {
  #footer .social-links a {
    font-size: 1.5em;
  }
}

/*----------------------------------------------*/
/* 8. THIRD PARTY COMPONENTS */
/*----------------------------------------------*/
/* 8.1 Button arrow
------------------------------------------------------------- */
.btn.btn-hover-arrow {
  overflow: hidden;
  text-transform: none;
}
.btn.btn-hover-arrow span {
  display: block;
  font-family: Raleway, sans-serif !important;
  font-style: italic;
  font-weight: 900;
  transition: 0.3s transform ease-out;
}
.btn.btn-hover-arrow:before {
  left: 100%;
  top: 0;
}
.btn.btn-hover-arrow:hover span {
  transform: translateX(-10px);
}
.btn.btn-hover-arrow:hover:before {
  left: 85%;
}
.btn.btn-hover-arrow:before {
  position: absolute;
  line-height: 3.2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* 8.2 Button Swipe
------------------------------------------------------------- */
a.btn.btn-swipe {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  border: 2px solid #111;
  background: #111;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
a.btn.btn-swipe:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
a.btn.btn-swipe:hover,
a.btn.btn-swipe:focus,
a.btn.btn-swipe:active {
  color: var(--dark-text-color);
}
a.btn.btn-swipe:hover:before,
a.btn.btn-swipe:focus:before,
a.btn.btn-swipe:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

a.btn.btn-swipe:focus:before,
a.btn.btn-swipe:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* - Button Swipe Light
------------------------------------------------------------- */
a.btn.btn-swipe.light {
  background: transparent;
  border-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

/*--------------------------------------------------------------
/** 16. Section Title
--------------------------------------------------------------*/
.section-header {
  padding-top: 100px;
  text-transform: uppercase;
  text-align: center;
}
.section-title {
  font-size: 2em;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}
.secondary-title {
  width: 100%;
  text-align: center;
}
.secondary-title h3 {
  font-family: "Playfair display", sans-serif;
  font-size: 16em;
  line-height: 0.8;
  width: 100%;
  text-align: center;
  color: black;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.3);
  letter-spacing: -9px;
  margin: 0;
}

@media (max-width: 799px) {
  .section-title {
    font-size: 1.8em;
  }
  .secondary-title h3 {
    font-size: 4em;
    -webkit-text-stroke-width: 1px;
  }
}

/*--------------------------------------------------------------
/**  Blog Page
--------------------------------------------------------------*/

.page-template-blog .post-media {
  min-height: 680px;
}
.page-template-blog .post-content {
  padding: 60px 0;
}
.page-template-blog .post-content h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1em;
  margin: 0 0 15px;
}
.page-template-blog .post-content p {
  font-size: 18px;
  line-height: 1.7em;
}
.page-template-blog .post-content p a.btn-read-more {
  display: block;
  margin-top: 20px;
}

/* page navigation */
.pagination .page-numbers {
  padding: 10px;
}
.pagination .page-numbers {
  color: #111;
}
.pagination .page-numbers.current {
  color: #fff;
  background: #111;
}

/* comment-list */
.comment-list .commentorImg {
  width: 100px;
  height: 100px;
}
.comment-list .comment-meta h4 {
  margin: 0 10px 0 0;
}
