/*font Variables*/
/*Color Variables*/
body {
  line-height: 1.6;
  font-size: 18px;
  font-family: "Saira", sans-serif;
  font-weight: 400;
  color: #647589; }

html {
  scroll-behavior: smooth; }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.li {
  list-style: none;
  margin: 0px;
  padding: 0px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #231F20;
  font-family: "Metal Mania", cursive;
  font-weight: 400; }

h1 {
  font-size: 42px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  a:hover, a:focus {
    text-decoration: none;
    outline: none; }

button:focus {
  outline: none;
  box-shadow: none; }

.slick-slide:focus {
  outline: none;
  box-shadow: none; }

.slick-slide img {
  display: inline-block !important; }

input,
textarea {
  line-height: 50px;
  border: none;
  width: 100%;
  padding: 0 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 35px rgba(6, 16, 34, 0.1);
  border-radius: 8px;
  font-size: 16px; }

input:focus,
textarea:focus {
  outline: none; }

textarea {
  height: 120px;
  resize: none; }

button {
  border: none; }

img {
  max-width: 100%;
  height: auto; }

.btn:focus {
    outline: none;
    box-shadow: none;
}
/* Main Title Area css
============================================================================================ */
.section-title {
  margin-bottom: 50px;
  text-align: center; }
  .section-title h2 {
    font-size: 60px; }
    .section-title h2 span {
      color: #A32F22; }

/* Start Primary btns css
============================================================================================ */
.primary-btn {
  display: inline-block;
  line-height: 60px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: #A32F22;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0 38px;
  box-shadow: 0 6px 20px #a32f22bd;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .primary-btn:hover {
    background: #231F20;
    color: #fff; }

/* gradient-bg css
============================================================================================ */
.gradient-bg {
  background: -webkit-linear-gradient(90deg, #FE690B 0%, #FF8F1E 100%);
  background: -moz-linear-gradient(90deg, #FE690B 0%, #FF8F1E 100%);
  background: -o-linear-gradient(90deg, #FE690B 0%, #FF8F1E 100%);
  background: linear-gradient(90deg, #FE690B 0%, #FF8F1E 100%); }

/* video button css
============================================================================================ */
.play-btn {
  position: relative;
  height: 104px;
  width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #A32F22;
  font-size: 30px;
  z-index: 2; }
  .play-btn:after {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: glowing 2s linear infinite;
    -moz-animation: glowing 2s linear infinite;
    -o-animation: glowing 2s linear infinite;
    animation: glowing 2s linear infinite;
    z-index: -1; }
@-webkit-keyframes glowing {
  0% {
    height: 100%;
    width: 100%; }
  50% {
    height: 150%;
    width: 150%; }
  100% {
    height: 100%;
    width: 100%; } }
@-moz-keyframes glowing {
  0% {
    height: 100%;
    width: 100%; }
  50% {
    height: 150%;
    width: 150%; }
  100% {
    height: 100%;
    width: 100%; } }
@-o-keyframes glowing {
  0% {
    height: 100%;
    width: 100%; }
  50% {
    height: 150%;
    width: 150%; }
  100% {
    height: 100%;
    width: 100%; } }
@keyframes glowing {
  0% {
    height: 100%;
    width: 100%; }
  50% {
    height: 150%;
    width: 150%; }
  100% {
    height: 100%;
    width: 100%; } }
/* animation delay css
============================================================================================ */
.delay-1 {
  animation-delay: .1s; }

.delay-2 {
  animation-delay: .2s; }

.delay-3 {
  animation-delay: .3s; }

.delay-4 {
  animation-delay: .4s; }

.delay-5 {
  animation-delay: .5s; }

.delay-6 {
  animation-delay: .6s; }

.delay-7 {
  animation-delay: .7s; }

.delay-8 {
  animation-delay: .8s; }

.delay-9 {
  animation-delay: .9s; }

.delay-10 {
  animation-delay: 1s; }

.delay-11 {
  animation-delay: 1.1s; }

.delay-12 {
  animation-delay: 1.2s; }

.delay-13 {
  animation-delay: 1.3s; }

.delay-14 {
  animation-delay: 1.4s; }

.delay-15 {
  animation-delay: 1.5s; }

.delay-16 {
  animation-delay: 1.6s; }

.delay-17 {
  animation-delay: 1.7s; }

/* Start Header area style
============================================================================================ */
.sticky-wrapper {
  position: absolute;
  width: 100%; }
  .sticky-wrapper.is-sticky .header-area {
    border-bottom: 1px solid #A32F22; }
    .sticky-wrapper.is-sticky .header-area .desktop-logo {
      border: 1px solid #A32F22;
      border-top: 0; }

.inner-page .sticky-wrapper {
  position: absolute;
  width: 100%; }
  .inner-page .sticky-wrapper.is-sticky .header-area .navbar .navbar-brand img {
    filter: brightness(0) invert(1); }
  .inner-page .sticky-wrapper.is-sticky .header-area .navbar .navbar-nav .nav-item a {
    color: #fff; }
.inner-page .header-area .navbar .navbar-nav .nav-item a {
  color: #231F20; }
.inner-page .header-area .navbar .navbar-nav .nav-item:hover > a {
  opacity: 1;
  color: #A32F22; }

.header-area {
  position: absolute;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #fff;
  width: 100%;
  padding: 25px 0;
  top: 0;
  border-bottom: 1px solid transparent; }
  .header-area .mobile-logo {
    display: none; }
  .header-area .desktop-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 160px;
    width: 300px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    top: -25px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .header-area .desktop-logo .navbar-brand {
      margin: 0;
      padding: 0; }
  .header-area .navbar {
    background: transparent;
    padding: 0px;
    border: 0px;
    border-radius: 0px; }
    .header-area .navbar .navbar-nav .nav-item {
      margin-right: 35px; }
      .header-area .navbar .navbar-nav .nav-item a {
        font: 500 22px/50px "Saira", sans-serif;
        text-transform: uppercase;
        color: #647589;
        padding: 0px;
        display: inline-block;
        position: relative; }
        .header-area .navbar .navbar-nav .nav-item a:hover {
          color: #A32F22; }
      .header-area .navbar .navbar-nav .nav-item:last-child {
        margin-right: 0px; }
    .header-area .navbar .navbar-nav .nav-item:hover > a {
      opacity: 1; }
    .header-area .navbar .right-menu {
      justify-content: flex-end; }

/* banner area style
============================================================================================ */
.banner-area {
  background: url(../img/bg/banner-bg.png) center center no-repeat;
  background-size: cover;
  padding: 175px 0 40px;
  position: relative;
  z-index: 1; }
  .banner-area .play-btn {
    position: absolute;
    right: 70px;
    bottom: 70px; }
  .banner-area .banner-content h1 {
    font-size: 87px;
    color: #fff;
    margin-bottom: 15px; }
  .banner-area .banner-content .banner-desc p {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px; }
  .banner-area .banner-content .form-group {
    position: relative;
    margin-top: 45px;
    width: 90%; }
    .banner-area .banner-content .form-group i {
      position: absolute;
      left: 30px;
      top: 30px; }
    .banner-area .banner-content .form-group input {
      line-height: 80px;
      padding: 0 200px 0 55px; }
    .banner-area .banner-content .form-group .primary-btn {
      position: absolute;
      right: 10px;
      top: 10px; }

.animated-logo-wraper {
    display: flex;
    justify-content: center;
    margin-top: -50px;
}

    .animated-logo-wraper .animated-logo-inner {
        height: 470px;
        width: 470px;
        background: #ffffff80;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .animated-logo-wraper .animated-logo-inner svg {
            width: 450px;
        }

        .animated-logo-wraper .animated-logo-inner .flex-container {
            display: none;
        }


/* about area css
============================================================================================ */
.about-area {
  padding: 120px 0; }
  .about-area .about-content .section-title {
    text-align: left;
    margin-bottom: 0; }
    .about-area .about-content .section-title h2 {
      margin-bottom: 15px; }
  .about-area .about-content .primary-btn {
    margin-top: 15px; }

/* top songs area css
============================================================================================ */
.top-songs-area {
  background: url(../img/bg/top-songs-bg.png) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 120px 0 70px; }
  .top-songs-area .container-fluid {
    padding: 0; }
  .top-songs-area .section-title {
    text-align: left;
    margin-bottom: 25px; }
  .top-songs-area .top-songs-slider-wrap .slick-arrow {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F1F1F1;
    border-radius: 50%;
    border: 1px solid #D8D8D8;
    position: absolute;
    top: -132px;
    right: 22%;
    font-size: 24px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .top-songs-area .top-songs-slider-wrap .slick-arrow.next {
      right: 17%; }
    .top-songs-area .top-songs-slider-wrap .slick-arrow:hover {
      background: #A32F22;
      color: #fff;
      box-shadow: 0 8px 15px #a32f2259;
      border: 1px solid transparent; }
  .top-songs-area .top-songs-slider-wrap.slick-slider {
    margin: 0 -15px; }
    .top-songs-area .top-songs-slider-wrap.slick-slider .slick-list {
      padding-top: 50px;
      padding-bottom: 80px !important; }
      .top-songs-area .top-songs-slider-wrap.slick-slider .slick-list .slick-slide {
        margin-left: 15px;
        margin-right: 15px; }
  .top-songs-area .top-songs-slider-wrap .single-songs-video {
    position: relative;
    z-index: 1;
    border: 8px solid #fff;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 40px #a32f2240; }
    .top-songs-area .top-songs-slider-wrap .single-songs-video.video-bg1 {
      background: url(../img/thumb/top-songs-thumb.png) center no-repeat;
      background-size: cover; }
    .top-songs-area .top-songs-slider-wrap .single-songs-video.video-bg2 {
      background: url(../img/thumb/top-songs-thumb-love.png) center no-repeat;
      background-size: cover; }
    .top-songs-area .top-songs-slider-wrap .single-songs-video.video-bg3 {
        background: url(../img/thumb/top-songs-thumb-heaven.png) center no-repeat;
        background-size: cover;
    }
    .top-songs-area .top-songs-slider-wrap .single-songs-video.video-bg4 {
        background: url(../img/thumb/top-songs-thumb-fix.png) center no-repeat;
        background-size: cover;
    }
    .top-songs-area .top-songs-slider-wrap .single-songs-video .play-btn {
      position: absolute;
      left: 50%;
      top: 50%;
      height: 130px;
      width: 130px;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }

/* Creative Team area css
============================================================================================ */
.creative-team-area {
  background: url(../img/bg/creative-team-bg.png) center no-repeat;
  background-size: cover;
  padding: 120px 0;
  overflow: hidden; }
  .creative-team-area .section-title h2 {
    color: #fff; }
  .creative-team-area .section-title p {
    color: #fff; }
  .creative-team-area .team-slider-wrap .slick-arrow {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F1F1F1;
    border-radius: 50%;
    border: 1px solid #D8D8D8;
    position: absolute;
    top: 45%;
    left: -60px;
    font-size: 24px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 3;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    .creative-team-area .team-slider-wrap .slick-arrow.next {
      left: auto;
      right: -60px; }
    .creative-team-area .team-slider-wrap .slick-arrow:hover {
      background: #A32F22;
      color: #fff;
      box-shadow: 0 8px 15px #a32f2259;
      border: 1px solid transparent; }
  .creative-team-area .team-slider-wrap .slick-dots {
    text-align: center;
    margin-top: 50px; }
    .creative-team-area .team-slider-wrap .slick-dots li {
      display: inline-block;
      margin: 0 8px; }
      .creative-team-area .team-slider-wrap .slick-dots li.slick-active button {
        width: 52px;
        border-radius: 14px;
        background: #A32F22; }
      .creative-team-area .team-slider-wrap .slick-dots li button {
        height: 25px;
        width: 25px;
        border-radius: 50%;
        background: #ffffff59;
        text-indent: -9999px; }
  .creative-team-area .team-slider-wrap.slick-slider {
    margin: 0 -55px; }
    .creative-team-area .team-slider-wrap.slick-slider .slick-list .slick-track {
      display: flex;
      align-items: center; }
      .creative-team-area .team-slider-wrap.slick-slider .slick-list .slick-track .slick-slide {
        margin-left: 55px;
        margin-right: 55px; }
        .creative-team-area .team-slider-wrap.slick-slider .slick-list .slick-track .slick-slide.slick-center .single-team-slider {
          transform: translate(-70px, 0px);
          width: calc(100% + 140px) !important;
          max-width: initial;
          align-items: center; }
          .creative-team-area .team-slider-wrap.slick-slider .slick-list .slick-track .slick-slide.slick-center .single-team-slider .team-content-desc {
            background: #34181fa3;
            margin: 40px; }
            .creative-team-area .team-slider-wrap.slick-slider .slick-list .slick-track .slick-slide.slick-center .single-team-slider .team-content-desc .team-body {
              display: block;
              opacity: 1;
              visibility: visible; }
  .creative-team-area .team-slider-wrap .single-team-slider {
    border-radius: 10px;
    min-height: 380px;
    display: inline-flex !important;
    justify-content: center;
    align-items: flex-end; }
    .creative-team-area .team-slider-wrap .single-team-slider.team-bg1 {
        background: url(../img/thumb/Lord-graham-russell--2022-380x380.jpg) center no-repeat;
        background-size: cover;
    }
    .creative-team-area .team-slider-wrap .single-team-slider.team-bg2 {
        background: url(../img/thumb/samGoldstein-380x380.jpg) center no-repeat;
        background-size: cover;
    }
    .creative-team-area .team-slider-wrap .single-team-slider.team-bg3 {
        background: url(../img/thumb/Craig-Clyde-380x380.jpg) center no-repeat;
        background-size: cover;
    }
    .creative-team-area .team-slider-wrap .single-team-slider.team-bg4 {
        background: url(../img/thumb/ivie-380x380.jpg) center no-repeat;
        background-size: cover;
    }
    .creative-team-area .team-slider-wrap .single-team-slider.team-bg5 {
        background: url(../img/thumb/RachelKlein-380X380.jpg) center no-repeat;
        background-size: cover;
    }
    .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc {
      text-align: center;
      padding: 20px;
      margin: 0;
      border-radius: 10px;
      width: 100%; }
      .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-head h3 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 5px; }
      .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-head p {
        margin-bottom: 0;
        color: #fff; }
      .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-body {
        margin-top: 20px;
        display: none;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
        .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-body p {
          font-size: 16px;
          color: #fff; }
        .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-body .team-social {
          display: flex;
          justify-content: center;
          align-items: center; }
          .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-body .team-social li {
            margin-right: 20px; }
            .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-body .team-social li:last-child {
              margin-right: 0; }
            .creative-team-area .team-slider-wrap .single-team-slider .team-content-desc .team-body .team-social li a {
              color: #fff; }

/* Festival cast Team area css
============================================================================================ */
.festival-cast-area {
  padding: 120px 0 90px; }
    .festival-cast-area .single-festival-item {
        position: relative;
        background: url(../img/thumb/holden-smith-2022-308x343.jpg) top center no-repeat;
        background-size: cover;
        border-radius: 10px;
        height: 345px;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        margin-bottom: 60px;

    }

        .festival-cast-area .single-festival-item.festival-gr {
            background: url(../img/thumb/Lord-graham-russell--2022-380x380.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-sg {
            background: url(../img/thumb/samGoldstein-416x345.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-cc {
            background: url(../img/thumb/Craig-Clyde-380x380.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-jm {
            background: url(../img/thumb/Jonathan-McDonald-416x312.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-shm {
            background: url(../img/thumb/Shannon-McCullock-416x345.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-jc {
            background: url(../img/thumb/Jim-Christian-416x345.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-jw {
            background: url(../img/thumb/Gage-Williams-416X345.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-ji {
            background: url(../img/thumb/ivie-380x380.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-rk {
            background: url(../img/thumb/RachelKlein-380X380.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-bg2 {
            background: url(../img/thumb/parrish-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-bg3 {
            background: url(../img/thumb/Brooke-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-bg4 {
            background: url(../img/thumb/megan-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .festival-cast-area .single-festival-item.festival-britt {
            background: url(../img/thumb/Brittany-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-britt-2022 {
            background: url(../img/thumb/Brittany-2022-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-dee {
            background: url(../img/thumb/dee-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-mike {
            background: url(../img/thumb/mike-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en1 {
            background: url(../img/thumb/jordyn-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en1-2022 {
            background: url(../img/thumb/jordyn-2022-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en2 {
            background: url(../img/thumb/ashlyn-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en3 {
            background: url(../img/thumb/jeff-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en4 {
            background: url(../img/thumb/JAIDEN-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en5 {
            background: url(../img/thumb/greg-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en6 {
            background: url(../img/thumb/karin-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en7 {
            background: url(../img/thumb/karli-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en8 {
            background: url(../img/thumb/maxx-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en9 {
            background: url(../img/thumb/nick-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-en10 {
            background: url(../img/thumb/colton-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-Steve {
            background: url(../img/thumb/steve-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-SteveL {
            background: url(../img/thumb/steveL-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-Tom {
            background: url(../img/thumb/tom-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-Dave {
            background: url(../img/thumb/dave-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-Dr {
            background: url(../img/thumb/dr-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-holden {
            background: url(../img/thumb/holden-smith-2022-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-angie {
            background: url(../img/thumb/angie-call-2022-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-sara {
            background: url(../img/thumb/sara-mcdonald-2022-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-aleisha {
            background: url(../img/thumb/aleisha-meier-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-zac {
            background: url(../img/thumb/zac-freeman-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-trevor {
            background: url(../img/thumb/trevor-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-jaiden {
            background: url(../img/thumb/jaiden-castleton-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-lorinda {
            background: url(../img/thumb/lorinda-kim-griffiths-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-ellie {
            background: url(../img/thumb/ellie-otis-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-josh {
            background: url(../img/thumb/josh-richardson-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-laverne {
            background: url(../img/thumb/laverne-mcdermott-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-madison {
            background: url(../img/thumb/madison-portillo-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-tynan {
            background: url(../img/thumb/tynan-portillo-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-amanda {
            background: url(../img/thumb/amanda-shrum-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-jake {
            background: url(../img/thumb/jake-trumbo-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-kayson {
            background: url(../img/thumb/kayson-brown-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-jay {
            background: url(../img/thumb/jay-lawrence-308-343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-mark {
            background: url(../img/thumb/mark-maxson-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-david {
            background: url(../img/thumb/david-slack-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-davin {
            background: url(../img/thumb/davin-tayler-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-band-jon {
            background: url(../img/thumb/Jonathan-McDonald-416x312.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-drew {
            background: url(../img/thumb/dc-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-ash {
            background: url(../img/thumb/dc-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-caroline {
            background: url(../img/thumb/dc-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-marcia {
            background: url(../img/thumb/dc-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-maire {
            background: url(../img/thumb/dc-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-jeremy {
            background: url(../img/thumb/jeremy-cormwall-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
        .festival-cast-area .single-festival-item.festival-justin {
            background: url(../img/thumb/justin-2021-308x343.jpg) top center no-repeat;
            background-size: cover;
        }
       
    .festival-cast-area .single-festival-item .festival-content-wrap {
      text-align: center;
      background: #fff;
      padding: 15px;
      box-shadow: 0 6px 35px #0000001f;
      border-radius: 10px;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      position: absolute;
      bottom: -30px;
      left: 15px;
      right: 15px; }
      .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-head h3 {
        font-size: 28px;
        margin-bottom: 0; }
      .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-head p {
        font-size: 16px;
        color: #A32F22;
        margin-bottom: 0; }
      .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-body {
        padding-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: background .1s linear, color .1s linear, max-height 1s linear; }
        .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-body p {
          font-size: 15px;
          font-weight: 300;
          color: #647589;
          transition: color .1s linear; }
        .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-body .festival-social {
          display: flex;
          justify-content: center;
          align-items: center; }
          .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-body .festival-social li {
            margin-right: 20px; }
            .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-body .festival-social li:last-child {
              margin-right: 0; }
            .festival-cast-area .single-festival-item .festival-content-wrap .festival-content-body .festival-social li a {
              color: #647589; }
    .festival-cast-area .single-festival-item:hover .festival-content-wrap {
      background: #A32F22;
      box-shadow: 0 8px 40px #a32f22bd; }
      .festival-cast-area .single-festival-item:hover .festival-content-wrap .festival-content-head h3 {
        color: #fff; }
      .festival-cast-area .single-festival-item:hover .festival-content-wrap .festival-content-head p {
        color: #fff; }
      .festival-cast-area .single-festival-item:hover .festival-content-wrap .festival-content-body {
        padding-top: 15px;
        max-height: 50em;
        overflow: hidden; }
        .festival-cast-area .single-festival-item:hover .festival-content-wrap .festival-content-body p {
          color: #fff; }
        .festival-cast-area .single-festival-item:hover .festival-content-wrap .festival-content-body .festival-social li a {
          color: #fff; }

/* Dark Festival cast Team area css
============================================================================================ */
.dark-festival-cast-area {
    background: url(../img/bg/creative-team-bg.png) center no-repeat;
    background-size: cover;
    padding: 120px 0;
    overflow: hidden;
}
}

    .dark-festival-cast-area .dark-single-festival-item {
        position: relative;
        background: url(../img/thumb/justin-308x343.jpg) top center no-repeat;
        background-size: cover;
        border-radius: 10px;
        height: 345px;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        margin-bottom: 60px;
    }

        .dark-festival-cast-area .dark-single-festival-item.festival-bg2 {
            background: url(../img/thumb/parrish-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .dark-single-festival-item.festival-bg3 {
            background: url(../img/thumb/Brooke-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-bg4 {
            background: url(../img/thumb/megan-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-britt {
            background: url(../img/thumb/Brittany-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-dee {
            background: url(../img/thumb/dee-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-mike {
            background: url(../img/thumb/mike-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-en1 {
            background: url(../img/thumb/jordyn-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-en2 {
            background: url(../img/thumb/ashlyn-308x343.jpg) top center no-repeat;
            background-size: cover;
        }

        .dark-festival-cast-area .single-festival-item.festival-en3 {
            background: url(../img/thumb/jeff-308x343.jpg) top center no-repeat;
            background-size: cover;
        }



    .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap {
        text-align: center;
        background: #fff;
        padding: 15px;
        box-shadow: 0 6px 35px #0000001f;
        border-radius: 10px;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        position: absolute;
        bottom: -30px;
        left: 15px;
        right: 15px;
    }

        .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-head h3 {
            font-size: 28px;
            margin-bottom: 0;
        }

        .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-head p {
            font-size: 16px;
            color: #A32F22;
            margin-bottom: 0;
        }

        .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-body {
            padding-top: 0;
            max-height: 0;
            overflow: hidden;
            transition: background .1s linear, color .1s linear, max-height 1s linear;
        }

            .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-body p {
                font-size: 15px;
                font-weight: 300;
                color: #647589;
                transition: color .1s linear;
            }

            .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-body .dark-festival-social {
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-body .dark-festival-social li {
                    margin-right: 20px;
                }

                    .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-body .dark-festival-social li:last-child {
                        margin-right: 0;
                    }

                    .dark-festival-cast-area .dark-single-festival-item .dark-festival-content-wrap .dark-festival-content-body .dark-festival-social li a {
                        color: #647589;
                    }

    .dark-festival-cast-area .dark-single-festival-item:hover .dark-festival-content-wrap {
        background: #A32F22;
        box-shadow: 0 8px 40px #a32f22bd;
    }

        .dark-festival-cast-area .dark-single-festival-item:hover .dark-festival-content-wrap .dark-festival-content-head h3 {
            color: #fff;
        }

        .dark-festival-cast-area .dark-single-festival-item:hover .dark-festival-content-wrap .dark-festival-content-head p {
            color: #fff;
        }

        .dark-festival-cast-area .dark-single-festival-item:hover .dark-festival-content-wrap .dark-festival-content-body {
            padding-top: 15px;
            max-height: 50em;
            overflow: hidden;
        }

            .dark-festival-cast-area .dark-single-festival-item:hover .dark-festival-content-wrap .dark-festival-content-body p {
                color: #fff;
            }

            .dark-festival-cast-area .dark-single-festival-item:hover .dark-festival-content-wrap .dark-festival-content-body .dark-festival-social li a {
                color: #fff;
            }

/* Footer area css
============================================================================================ */
.footer-area {
  position: relative;
  z-index: 1;
  background: url(../img/bg/footer-bg.png) bottom center no-repeat;
  background-size: cover; }
  .footer-area .footer-top {
    padding: 120px 0 80px; }
    .footer-area .footer-top .single-footer-widget .footer-title {
      font-size: 36px;
      margin-bottom: 15px;
      text-transform: capitalize;
      color: #fff; }
    .footer-area .footer-top .single-footer-widget .footer-menu li {
      margin-bottom: 5px; }
      .footer-area .footer-top .single-footer-widget .footer-menu li a {
        color: #B9B9B9;
        font-size: 20px; }
    .footer-area .footer-top .single-footer-widget .footer-logo {
      text-align: center; }
    .footer-area .footer-top .single-footer-widget .footer-address-wrap li {
      margin-bottom: 10px;
      color: #B9B9B9;
      font-size: 20px; }
      .footer-area .footer-top .single-footer-widget .footer-address-wrap li span {
        color: #fff; }
      .footer-area .footer-top .single-footer-widget .footer-address-wrap li a {
        color: #B9B9B9;
        font-size: 20px; }
  .footer-area .footer-bottom {
    border-top: 1px solid #9F9D9E;
    padding: 35px 0; }
    .footer-area .footer-bottom .copyright {
      text-align: center; }
      .footer-area .footer-bottom .copyright p {
        font-size: 18px;
        margin-bottom: 0;
        color: #fff; }

/*# sourceMappingURL=main.css.map */






.tab-slider--nav, .tab-c-slider--nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-slider--tabs, .tab-c-slider--tabs {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    overflow: hidden;
    background: #fff;
    user-select: none;
    width: 120px;
    margin: 0 20px;
}

    .tab-slider--tabs:after, .tab-c-slider--tabs:after {
        content: "";
        width: 60px;
        background: url(../img/fav.png);
        height: 60px;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 250ms ease-in-out;
        background-size: 75% 75%;
        background-repeat: no-repeat;
        border: 1px solid #A32F22;
        border-radius: 50%;
        background-position: 50% 50%;
        background-color: #fff;
        z-index: 2;
        cursor: pointer;
    }

    .tab-slider--tabs.slide:after, .tab-c-slider--tabs.slide:after {
        left: 50%;
    }

.tab-slider--trigger, .tab-c-slider--trigger {
    z-index: 2;
    cursor: pointer;
    display: inline-block;
    transition: color 250ms ease-in-out;
    user-select: none;
    width: 60px;
    height: 60px;
    position: relative;
    background: #fff;
}

    .tab-slider--trigger:before, .tab-c-slider--trigger:before {
        position: absolute;
        left: 0;
        top: 50%;
        height: 25px;
        width: 100%;
        content: "";
        background: #A32F22;
        transform: translateY(-50%);
    }

    .tab-slider--trigger.active {
        color: #fff;
    }

.tab-slider--body, .tab-c-slider--body {
    margin-bottom: 30px;
}

.tab-slider--trigger1:before, .tab-c-slider--trigger1:before {
    border-radius: 30px 0 0 30px;
}

.tab-slider--trigger2:before, .tab-c-slider--trigger2:before {
    border-radius: 0 30px 30px 0;
}


.tab-slider--tabs.slide.active .tab-slider--trigger1:before, .tab-slider--tabs.slide.active .tab-slider--trigger2:before {
    background: #231F20;
}

.left-cast.slide, .right-cast.slide {
    font-weight: 700;
}

.tab-slider--nav a.left-cast, .tab-slider--nav a.right-cast {
    color: #647589;
}

/* tab system for Creative Team Dark */

.tab-c-slider--trigger.active {
    color: #fff;
}
.tab-c-slider--tabs.slide.active .tab-c-slider--trigger1:before, .tab-c-slider--tabs.slide.active .tab-c-slider--trigger2:before {
    background: #A32F22;
}
.tab-c-slider--nav a.left-creative, .tab-c-slider--nav a.right-creative {
    color: #647589;
}
.tab-c-slider--trigger {
    background: url(../img/bg/creative-team-bg.png) center no-repeat;
}
.tab-c-slider--tabs{
    background:none;
}