@font-face {
  font-family: jakartaExtraBold;
  src: local("OswaldHeavy"), url("../fonts/PlusJakartaSans-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: jakartaLight;
  src: local("OswaldHeavy"), url("../fonts/PlusJakartaSans-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: jakartaRegular;
  src: local("OswaldHeavy"), url("../fonts/PlusJakartaSans-Regular.ttf");
  font-display: swap;
}




.qarz-services-container {
  height: 300px;
  position: relative;
}

.qarz-services-dot {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 95px;
}

.qarz-services-image {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
  object-fit: contain;
}

.qarz-services-detail-dot {
  z-index: 1;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  margin: 10px 10px;
}

.qarz-services-detail-dot-active {
  z-index: 1;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: inline-block;
  margin: 0px 10px;
  border: 2px solid white;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

.mobile-nav {
  display: none !important;
}

.desktop-nav {
  display: block !important;
}

.equal-height {
  display: flex;
}

.col-equal-height {
  flex: 1;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.not-displayed {
  display: none;
}

.qarz-rounded-img {
  border-radius: 10px;
}

.full-width {
  width: 100%;
}

.no-margin {
  margin: 0;
}

.container-no-padding {
  padding: 0;
}

.qarz-animated-image img {
  transition: transform 1s ease;
}

.qarz-animated-image:hover img {
  transform: scale(1.03);
}

button:disabled,
button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.qarz-absolutely-centered {
  margin: auto;
}

.qarz-logo-featured {
  width: auto !important;
  max-height: 45px;
  border-radius: 0px;
  margin: 0px;
}

.qarz-logo-contact {
  width: 60%;
  height: 60%;
  object-fit: fill;
}


/*--------------------*/
/*       LOADER       */
/*--------------------*/
#qarz-preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('../images/qarz-preloader.png') 50% 50% no-repeat #ffffff;
  opacity: .8;
}


/*--------------------*/
/* SIDENAV            */
/*--------------------*/
#qarz-menu-container {
  min-height: 96vh;
}

.navbar {
  padding: .5rem 0;
}

#navbar-menu {
  padding: 0 !important;
}

.qarz-absolutely-nav-centered {
  margin: 50% 0;
}

.sidenav {
  height: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #ffffff;
  color: #58595b;
  overflow-x: hidden;
  transition: 0.5s;
  transition-timing-function: cubic-bezier(.51, .92, .24, 1.15);
  padding-top: 0px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #58595b;
  display: block;
  transition: 0.3s;
}

.qarz-header-button {
  margin: 0px 10px;
}



.subnav {
  display: contents;
}

.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #DDDDDD;
  width: 100%;
  z-index: 100;
  text-align: center;
  padding: 20px 15px;
}

.subnav-content a {
  color: #160F29;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
}

.subnav:hover .subnav-content {
  display: block;
}

#subnav-content-mobile a {
  padding: 10px 15px;
  font-size: 14px;
}





/*--------------------*/
/* ANIMATIONS */
/*--------------------*/
.qarz-fade-in {
  -webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.qarz-fade-out {
  -webkit-animation: fadeout 1s;
  -moz-animation: fadeout 1s;
  -ms-animation: fadeout 1s;
  -o-animation: fadeout 1s;
  animation: fadeout 1s;
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-moz-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-ms-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-o-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


/*--------------------*/
/* SERVICES */
/*--------------------*/
.qarz-services-content-image {
  max-height: 400px;
  object-fit: cover;
}

button.qarz-button{
  background: transparent;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  z-index: 1;
}

button.qarz-button::before {
  right: auto;
  bottom: auto;
  width: 120%;
  height: 100%;
  transform-origin: left top;
}

.gallery .gallery-item {
	display: inline-block;
	margin-bottom: 20px;
	vertical-align: middle;
	float: none !important;
}

.gallery img {
  border: none !important;
	width: 80%;
}

.gallery-columns-5 br {
	display: none;
}


/*--------------------*/
/* HOMEPAGE */
/*--------------------*/
.qarz-date-text{
  font-size: 14px;
  color: #f86843;
  line-height: 1;
}

.qarz-services-link {
  color: #f86843 !important;
}

#qarz-content-page {
  padding-top: 103px;
  min-height: calc(100vh - 174px);
}

.qarz-logo-featured-animated-background {
  background-attachment: fixed !important;
  background-size: 80% !important;
  margin-bottom: 30px;
}

.qarz-logo-featured-animated {
  width: 101%;
  margin: -20px 0px;
}


/*--------------------*/
/* NEWS */
/*--------------------*/
a.qarz-news-link {
  color: #58595b;
}

.qarz-rounded-img-news {
  border-radius: 20px;
  height: 300px;
  object-fit: cover;
}

.qarz-news-content-single {
  max-height: 500px;
  overflow: hidden;
}

.qarz-news-content-another-single {
  max-height: 300px;
  overflow: hidden;
}

.qarz-news-container {
  padding: 15px 15px;
}

.qarz-news-title {
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.qarz-news-summarized-text {
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qarz-news-extra-top-margin {
  margin-top: 10px;
}

.qarz-news-sidebar-outer {
  position: relative;
}

.qarz-related-news {
  position: fixed;
}

.qarz-related-news h1 {
  font-size: 18px;
}

.qarz-related-news h1.qarz-title-other {
  font-size: 36px;
  color: #f86843;
  margin: 0px;
  margin-bottom: 15px;
}

/*--------------------*/
/* BANNER */
/*--------------------*/
.qarz-banner-title {
  font-size: 60px;
}

.qarz-banner-image {
  height: 350px;
}


/*--------------------*/
/* SERVICES */
/*--------------------*/
.qarz-services-title {
  font-size: 36px;
  text-align: center;
  margin: 15px 0px 30px 0px;
}

.qarz-service-content-summarized {
  line-height: 1.2;
  margin: 15px 0px 30px 0px;
}

.qarz-services-banner-image {
  max-height: 350px;
  object-fit: cover;
}

.qarz-services-mcc-container {
  padding: 15px 0px;
}


/*--------------------*/
/* VIDEO */
/*--------------------*/
.fluid-width-video-wrapper {
  height: 100%;
  position: unset !important;
}

.qarz-featured-video {
  width: inherit;
  height: 488px;
}

.qarz-next-video {
  width: inherit;
  height: 196.88px;
}

.qarz-video-category {
  color: #f48b31;
  margin: 10px 0;
  text-transform: uppercase;
  font-family: novaAltRegular, sans-serif;
  font-size: 12pt;
}

.qarz-video-content-single {
  text-align: center;
}

.qarz-video-container {
  padding-bottom: 15px;
}

.qarz-internal-video-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.qarz-internal-video-container iframe {
  position: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  border-radius: 20px;
}

.js-load-video {
  height: 100%;
  width: 100%;
}

.js-loaded-video {
  height: 100%;
  width: 100%;
}

.qarz-internal-play-button {
  position: absolute !important;
  top: 50%;
  left: 50%;
  display: block;
  padding: 30px;
  margin-top: -30px;
  margin-left: -30px;
}

.qarz-internal-play-button:after {
  margin-top: -24px;
  margin-left: -30px;
  display: block;
  position: absolute;
  right: 5;
  width: 47px;
  height: 47px;
  background-image: url('../images/video-play.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
  content: '';
}

.img-fluid {
  max-width: 100%;
  object-fit: cover;
}


/*--------------------*/
/* RESPONSIVE */
/*--------------------*/
@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  #qarz-content-page {
    min-height: calc(100vh - 381px);
  }

  .qarz-news-extra-top-margin {
    margin-top: 0px;
  }

  .qarz-logo-featured-animated-background {
    background-size: 145% !important;
  }

  .qarz-news-container {
    padding: 30px 15px;
  }

  .qarz-news-sidebar-outer {
    position: relative;
  }
  
  .qarz-related-news {
    position: relative;
  }

  #qarz-related-news {
    padding-top: 3rem;
  }

  .gallery-columns-5 .gallery-item {
    width: 33% !important;
  }

  header {
    backdrop-filter: none;
  }

  .artist-carousel-text {
    margin-bottom: 60px;
  }
  
}

@media (min-width: 768px) {
  .owl-carousel .owl-stage {
    transition: all 0.01s ease 0s !important;
  }
}

@media (min-width: 1200px) {
  .qarz-logo-featured-animated-background {
    background-size: 50% !important;
  }
}

@media (max-width: 1048px) {
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-nav {
    display: block !important;
  }
  .qarz-logo-featured {
    margin: auto;
  }
}



/* */



/*--------------------*/
/* GENERAL */
/*--------------------*/
body,
html {
  background-color: #EDEDED;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  font-size: 18px;
}

legend {
  background: #28C2FF;
  border-radius: 20px;
  width: auto;
  padding: 5px 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}

.fieldset-no-legend {
  margin-top: 22px;
}

.hide-legend {
  background: none !important;
  opacity: 0;
}

section {
  margin: 60px 0px;
}

hr {
  height: 2px;
  color: #DDDDDD;
  background-color: #DDDDDD;
  margin-top: 60px;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  border-radius: 10px;
  height: 200px;
  border: none;
  -ms-interpolation-mode: bicubic;
  margin-bottom: 30px;
  width: 100%;
  object-fit: cover;
}

.cover-object-news {
  max-height: 500px;
  height: 100%;
}

button {
  padding: 5px 10px;
  border: none;
  background: #28C2FF;
  color: #FFFFFF;
  font-family: jakartaExtraBold;
  border-radius: 999px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  padding: 10px 15px;
}

button:focus, button:active {
  outline: none !important;
  box-shadow: none;
}

button:hover {
  background-color: #3066BE;
  color: #ffffff;
}

button.primary {
  font-size: 20px;
  width: 100%;
}

button.primary:hover {
  /* TODO */
}

button.secondary {
  border: none;
  color: #160F29;
  background: transparent;
  font-family: jakartaRegular;
}

button.secondary:hover {
  background-color: #DDDDDD;
  color: #160F29;
}

button.tertiary {
  background: #EDEDED;
  border: 2px solid #9B9B9B;
  border-radius: 999px;
  font-family: jakartaExtraBold;
  font-size: 18px;
  color: #000000;
}

button.tertiary:hover {
  border: 2px solid #28C2FF;
}

.horizontal-scrollable > .row {
  overflow-x: auto;
  white-space: nowrap;
}

.horizontal-scrollable > .row > .col-xs-4 {
  display: inline-block;
  float: none;
}

.row {
  margin: 30px 0px;
}


/*--------------------*/
/*      ARTISTS      */
/*--------------------*/
.anchor-artist-type {
  scroll-margin-top: 134px;
}

.qarz-artists-title {
  margin-bottom: 30px;
}


/*--------------------*/
/*  BASIC TYPOGRAPHY  */
/*--------------------*/
h1 {
  font-size: 28px;
  font-family: jakartaExtraBold;
}

h2 {
  font-size: 24px;
  font-family: jakartaExtraBold;
}

h2 .light {
  font-family: jakartaRegular;
}

h3 {
  font-size: 20px;
  font-family: jakartaExtraBold;
}

p.big-description {
  font-size: 22px;
  font-family: jakartaRegular;
}

p.date {
  font-size: 20px;
  font-family: jakartaLight;
  color: #3066BE;
}

a.nostyle:link {
  text-decoration: inherit;
  color: inherit;
}

a.nostyle:visited {
  text-decoration: inherit;
  color: inherit;
}


/*--------------------*/
/* NAVBAR */
/*--------------------*/
header {
  position: fixed;
  width: 100%;
  background-color: rgba(237,237,237,0.9);
  z-index: 100;
  backdrop-filter: blur(2px);
}

header button {
  font-size: 14px;
}

.qarz-transparent-image {
  width: 30px;
  height: 30px;
}

.qarz-navbar-padding {
  padding: 0px 10px;
}

.qarz-fixed-nav {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  transition: all 0.5s;
  margin: 0px !important;
}

#navbar-banner {
  margin: 15px 0px;
}

.empty-space {
  padding-top: 190px;
}

.navbar-toggle {
  border: none;
}

.navbar-toggle-close {
  background-color: transparent;
  border: none;
  font-size: 42px;
  color: #58595b;
}

.navbar-toggle-close:hover{
  color: #58595b;
  background-color: #ffffff;
}

.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(88, 89, 91, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}


/*--------------------*/
/* FOOTER */
/*--------------------*/
footer {
  background: #000000;
  position: absolute;
  width: 100%;
}

footer .footer-row {
  margin: 60px 0px;
}

footer a {
  color: #ffffff;
  font-size: 14px;
  margin: 30px;
}


/*--------------------*/
/*      CAROUSEL      */
/*--------------------*/
.owl-theme .owl-dots .owl-dot span {
  background: #EDEDED !important;
  width: 15px !important;
  height: 15px !important;
  margin: auto !important;
  border: 2px solid #9B9B9B !important;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #28C2FF !important;
  border: 2px solid #28C2FF !important;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.owl-theme .owl-dots .owl-dot {
  width: 30px;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  min-height: 155px;
  min-width: 155px;
  object-fit: cover;
}

.owl-prev {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  margin-left: -20px;
  display: block !important;
  border:0px solid black;
}

.owl-next {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  right: -25px;
  display: block !important;
  border:0px solid black;
}

.owl-prev i, .owl-next i {
  transform : scale(1,6); color: #ccc;
}

.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

.artist-carousel-text {
  z-index: 1;
  background-color: #EDEDED;
}

.artist-carousel-text > div {
  width: 100%;
  height: 100%;
}


/*--------------------*/
/* HOMEPAGE */
/*--------------------*/
.artist-description {
  border-left: 1px solid #9B9B9B;
  padding-left: 15px;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.artist-description h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  margin: 0px;
  color: #000000;
}

.artist-description p {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;

  color: #3066BE;
}

#homepage-artists img {
  height: 200px;
  filter: grayscale(100%);
}

#homepage-artists img:hover {
  filter: none;
}

#artists-carousel .owl-dots {
  text-align: left;
}

#artists-carousel .owl-stage .owl-item.hide {
  opacity: 0;
  visibility: hidden;
}

#reviews-carousel .item {
  background: linear-gradient(104.61deg, #F9FAFC -7.08%, #E2E2E2 223.09%);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  align-items: center;
  padding: 80px;
  gap: 80px;
}

.news-card {
  padding: 15px;
}

.news-content {
  background: #F4F4F4;
  border-radius: 20px;
  padding: 15px 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.news-content h1 {
  margin-bottom: 1rem;
}

#photos-carousel img {
  border-radius: 20px;
}

.qarz-news-home-text{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  padding-bottom: 1px;
}


/*--------------------*/
/* VIDEO */
/*--------------------*/
.fluid-width-video-wrapper {
  height: 100%;
  position: unset !important;
}

.qarz-featured-video {
  width: inherit;
  height: 488px;
}

.qarz-next-video {
  width: inherit;
  height: 300px;
}

.qarz-video-category {
  color: #f48b31;
  margin: 10px 0;
  text-transform: uppercase;
  font-family: novaAltRegular, sans-serif;
  font-size: 12pt;
}

.qarz-video-content-single {
  text-align: center;
}

.qarz-video-container {
  padding-bottom: 15px;
}

.qarz-internal-video-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.qarz-internal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-load-video {
  height: 100%;
  width: 100%;
}

.js-loaded-video {
  height: 100%;
  width: 100%;
}

.qarz-internal-play-button {
  position: absolute !important;
  top: 50%;
  left: 50%;
  display: block;
  padding: 30px;
  margin-top: -30px;
  margin-left: -30px;
}

.qarz-internal-play-button:after {
  margin-top: -24px;
  margin-left: -30px;
  display: block;
  position: absolute;
  right: 5;
  width: 47px;
  height: 47px;
  background-image: url('../images/video-play.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
  content: '';
}

.img-fluid {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*--------------------*/
/*  COMPLETE ROSTER  */
/*--------------------*/
.roster-content {
  background: #F4F4F4;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.roster-content h1 {
  margin-bottom: 1rem;
}
