@font-face {
  font-family: 'Acumin-Regular';
  src: url('../fonts/acuminpro-regular.otf?s46p3x');
  src: url('../fonts/acuminpro-regular.otf?s46p3x#iefix') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Acumin-Light';
  src:  url('../fonts/acuminpro-light.otf?s46p3x');
  src:  url('../fonts/acuminpro-light.otf?s46p3x#iefix') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AcuminCond-Black';
  src:  url('../fonts/acuminprocond-black.otf?s46p3x');
  src:  url('../fonts/acuminprocond-black.otf?s46p3x#iefix') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Acumin-Black';
  src:  url('../fonts/acuminpro-black.otf?s46p3x');
  src:  url('../fonts/acuminpro-black.otf?s46p3x#iefix') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  background: #000;
  font-family: 'Acumin-Regular', sans-serif;
}

body.open {
  position: static;
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: Acumin-Regular;
  font-weight: normal;
  font-style: normal;
}

a, p a {
  text-decoration: none;
  -webkit-transition: color .2s ease-out,border .2s ease-out;
  -o-transition: color .2s ease-out,border .2s ease-out;
  transition: color .2s ease-out,border .2s ease-out;
}

input:focus,
button:focus {
  outline: none;
}

button.btn:active, 
button.btn:focus, 
button.btn:target, 
button.btn:active:focus {
}

.Acumin-Black {
  font-family: Acumin-Black;
  font-weight: normal;
  font-style: normal;
}

.AcuminCond-Black {
  font-family: AcuminCond-Black;
  font-weight: normal;
  font-style: normal;
}

.Acumin-Light {
  font-family: Acumin-Light;
  font-weight: normal;
  font-style: normal;
}

.Acumin-Regular {
  font-family: Acumin-Regular;
  font-weight: normal;
  font-style: normal;
}

.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

/* show objects being animated */
.animated {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.animated.moveUp {
  -webkit-animation-name: moveUp;
  -moz-animation-name: moveUp;
  -o-animation-name: moveUp;
  animation-name: moveUp;
}

@-webkit-keyframes moveUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(25px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes moveUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(25px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes moveUp {
  0% {
    opacity: 1;
    -o-transform: translateY(25px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateY(25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullscreen-bg {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 103%;
  height: 103%;
}

.fullscreen-bg figure {
  margin: 0;
}

.fullscreen-bg video {
    /* Make video to at least 100% wide and tall */
  /*min-width: 100%; 
  min-height: 100%; */
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: 100%;
  ;
  height: auto;
  display: flex;
  position: relative;
  /* Center the video */
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);*/;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}

.dropup {
  margin: 0;
  margin-bottom: 30px;
}

.navigation-drawer-icon {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}

.navigation-drawer-icon span:nth-child(1) {
  top: 3px;
}

.container  {
	padding-left:  0;
	padding-right:  0;
}

.container > .row  {
	margin-left:  0;
	margin-right:  0;
}

.navigation-drawer-icon span:nth-child(1), 
.navigation-drawer-icon span:nth-child(4) {
  -webkit-transition: opacity 0s 150ms, -webkit-transform 150ms 150ms;
  transition: opacity 0s 150ms, -webkit-transform 150ms 150ms;
  transition: opacity 0s 150ms, transform 150ms 150ms;
  transition: opacity 0s 150ms, transform 150ms 150ms, -webkit-transform 150ms 150ms;
}

.navigation-drawer-icon span:nth-child(2), 
.navigation-drawer-icon span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0) rotate(0);
  transform: translate3d(0, -50%, 0) rotate(0);
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms;
}

.navigation-drawer-icon span:nth-child(4) {
  bottom: 3px;
}

.navigation-drawer-icon span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  border-radius: 5px;
}

.collapse.show ~ .navigation-drawer-icon span:nth-child(4) {
  -webkit-transform: translate3d(0, -7px, 0);
  transform: translate3d(0, -7px, 0);
}

.collapse.show ~ .navigation-drawer-icon span:nth-child(3) {
  -webkit-transform: translate3d(0, -50%, 0) rotate(-45deg);
  transform: translate3d(0, -50%, 0) rotate(-45deg);
}

.collapse.show ~ .navigation-drawer-icon span:nth-child(1) {
  -webkit-transform: translate3d(0, 7px, 0);
  transform: translate3d(0, 7px, 0);
}

.collapse.show ~ .navigation-drawer-icon span:nth-child(2) {
  -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
  transform: translate3d(0, -50%, 0) rotate(45deg);
}

.collapse.show ~ .navigation-drawer-icon span:nth-child(2), 
.collapse.show ~ .navigation-drawer-icon span:nth-child(3) {
  -webkit-transition: -webkit-transform 150ms 150ms;
  transition: -webkit-transform 150ms 150ms;
  transition: transform 150ms 150ms;
  transition: transform 150ms 150ms, -webkit-transform 150ms 150ms;
}

.collapse.show ~ .navigation-drawer-icon span:nth-child(1), 
.collapse.show ~ .navigation-drawer-icon span:nth-child(4) {
  opacity: 0;
  -webkit-transition: opacity 0s 150ms, -webkit-transform 150ms;
  transition: opacity 0s 150ms, -webkit-transform 150ms;
  transition: opacity 0s 150ms, transform 150ms;
  transition: opacity 0s 150ms, transform 150ms, -webkit-transform 150ms;
}

.box-menu-sm {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.collapse {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.collapse.show {
  z-index: 1020;
  display: flex;
  align-items: center;
}

.collapsing {
    /*transition: unset!important;*/;
}

.navbar-toggler {
  z-index: 1020;
}

.navbar-expand-lg .navbar-collapse {
  flex-basis: 100%;
}

/* HEADER */

header {
  display: flex;
  caption-side: top;
  vertical-align: middle;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0 auto;
  position: relative;
  position: fixed;
  z-index: 9999;
  mix-blend-mode: difference;
}

@keyframes fadeOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.barHeader {
  position: fixed;
  position: relative;
  width: 100%;
  top: 10px;
  min-width: 320px;
  white-space: nowrap;
  text-align: center;
  z-index: 100;
  max-width: 100vw;
  width: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  padding: 0px calc(3.43em - 15px);
}

.wordmark {
  max-width: 148px;
}

.logo {
  display: block;
  position: relative;
  z-index: 99;
  width: 130px;
  left: 0;
  white-space: nowrap;
  font-size: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.wrapLogo {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  height: 45px;
  z-index: 10000;
}

.mc-icon {
  position: fixed;
  z-index: 999;
  display: flex;
  width: 100px;
  top: 30px;
  left: calc(3.43em - 15px);
}

.mc-wordmark {
  position: fixed;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  mix-blend-mode: difference;
  max-width: 95px;
  top: 40px;
  left: calc(3.43em + 45px);
}


.svg {
}

.triggerMenu {
  padding: 1.5rem;
}

.triggerMenu {
  display: flex;
  align-items: center;
  position: absolute;
  width: auto;
  height: 4rem;
  top: 0;
  right: calc(3.43em - 15px);
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.iconMenu--hamburger {
  position: relative;
  width: 25px;
  height: 20px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

body.view-web.open:not(.mobile-ios) .triggerMenu.open {
  margin-right: 15px;
}

body.view-web.open:not(.mobile-ios) {
  padding-right: 15px;
}

body.mobile-ios.open {
  overflow: hidden;
  position: relative;
}

.triggerMenu.open .iconMenu--hamburger span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.iconMenu--hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.triggerMenu.open .iconMenu--hamburger span:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.iconMenu--hamburger span:nth-child(2) {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
  right: 0;
  left: auto;
}

.triggerMenu.open .iconMenu--hamburger span:nth-child(3) {
  top: 9px;
  width: 100%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.iconMenu--hamburger span:nth-child(3) {
  bottom: 0;
  right: 0;
  left: auto;
  width: 100%;
}

.menuContents {
  display: table;
  right: 0;
  height: 0;
  overflow: hidden;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  min-width: 320px;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99;
  height: 100vh;
  -moz-transition: -moz-transform .45s cubic-bezier(.45,0,0,1);
  -o-transition: -o-transform .45s cubic-bezier(.45,0,0,1);
  -webkit-transition: -webkit-transform .45s cubic-bezier(.45,0,0,1);
  transition: transform .45s cubic-bezier(.45,0,0,1);
  -moz-transform: translate3d(0,-100%,0);
  -ms-transform: translate3d(0,-100%,0);
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}

.menuContents.open {
    /*height: 100vh;*/
    /*margin-top: 0px;*/
  -moz-transform: translate3d(0,0%,0);
  -ms-transform: translate3d(0,0%,0);
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);
}

.overlay {
  display: block;
  position: fixed;
  z-index: 98;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 100vh;
  -moz-transition: -moz-transform .45s cubic-bezier(.45,0,0,1);
  -o-transition: -o-transform .45s cubic-bezier(.45,0,0,1);
  -webkit-transition: -webkit-transform .45s cubic-bezier(.45,0,0,1);
  transition: transform .45s cubic-bezier(.45,0,0,1);
  -moz-transform: translate3d(0,-100%,0);
  -ms-transform: translate3d(0,-100%,0);
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}

.overlay.open {
  -moz-transform: translate3d(0,0%,0);
  -ms-transform: translate3d(0,0%,0);
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);
}

.nav-container {
  padding: 2.43em calc(3.43em - 15px);
}

.nav-desktop {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-container .nav .nav-item:last-child {
    /*margin-bottom: 2.5em;*/
  margin-bottom: 0;
}

.box-empty {
  display: block;
  position: relative;
  height: 120px;
  width: 100%;
}

.menu-container {
  height: 100vh;
  padding-top: calc(3.43em * 2);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.open .barHeader {
    /*min-height: 107px;*/;
}

.menuContents.open .menu-container .nav-container:first-child {
  min-height: 440px;
}

/* HEADER */


.navbar {
  position: fixed;
  height: auto;
  padding: 0;
  -ms-overflow-style: none;
  flex-direction: column;
  align-items: flex-start;
  mix-blend-mode: difference;
  height: 100vh;
}

.nav-link-credits,
.nav-link {
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  padding: .5rem 0rem;
  line-height: 1.5;
  font-weight: 900!important;
  letter-spacing: 1.25px;
  font-size: 0.937em;
  width: fit-content;
}

.nav-link-credits:hover,
.module-footer a:hover {
  text-decoration: none;
}

.item_outer {
  position: relative;
  display: block;
  overflow: hidden;
  width: max-content;
  padding: 0;
  margin: 0 .5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: padding .2s ease-in-out;
  -o-transition: padding .2s ease-in-out;
  transition: padding .2s ease-in-out;
}

.nav .nav-item:hover .item_outer {
  padding: 0 30px 0 1em;
}

.lists-artists h1 {
  cursor: pointer;
  position: relative;
  display: flex;
  width: fit-content;
}

.nav-link:after {
  content: '';
  width: 0;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 6px;
  left: 0;
  -webkit-transition: .25s cubic-bezier(.165,.84,.44,1);
  -o-transition: .25s cubic-bezier(.165,.84,.44,1);
  transition: .25s cubic-bezier(.165,.84,.44,1);
}

.nav-link:hover:after {
  width: calc(100% - 38px);
}

.nav-link.active .item_outer {
  padding: 0 30px 0 1em;
}

.nav-link.active:after {
  width: calc(100% - 38px);
}

.bg-black {
  background: #000000;
}

.bg-black-gray {
  background: #222222;
}

.bg-black-gray-ligth {
  background: #979797;
}

.text-gray {
  color: #D8D8D8!important;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.card,
.card-img-top {
  border: 0px solid rgba(0,0,0,.125);
  border-radius: 0;
}

.max-width {
  max-width: 100%;
}

.margin-x {
  margin-left: calc(3.43em - 15px);
  margin-right: calc(3.43em - 15px);
}

.margin-l-video {
  margin-left: 0;
  /*margin-left: calc(-9.375em - 15px);*/;
}

.margin-r-video {
  margin-right: calc(3.43em - 15px);
}

.margin-x-header {
  margin-left: 80px;
  margin-right: 80px;
}

.margin-y {
  margin-bottom: 2.5em;
}

.blocks-items {
  position: relative;
  width: 100%;
  -webkit-column-gap: 8.12rem;
  -moz-column-gap: 8.12rem;
  column-gap: 8.12rem;
}

.block-item {
  position: relative;
  width: 100%;
}

.block-item img {
}

.card-body {
  padding: 1.25rem 0;
}

.ratio1_1:before {
  content: "";
  display: block;
  padding-top: calc(60%);
}

.ratio1_2:before {
  content: "";
  display: block;
  padding-top: calc(100%);
}

.ratio1_3:before {
  content: "";
  display: block;
  padding-top: calc(125%);
}

.card {
  background: transparent;
}
.content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 100%;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 100%!important;
  /*
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;*/
  background-repeat: no-repeat!important;
  background-position: center;
}

.image-hover {
  display: block;
  min-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 1;
  opacity: 0;
  opacity: 0.3;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.content:hover .image-hover {
  opacity: 0;
}

.box {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
}

.box-menu {
  max-height: 100vh;
  padding: 30px calc(3.43em - 15px);
  margin-bottom: calc(9.375em * 2);
  width: 100%;
  display: flex;
}

.nav-item {
  margin-bottom: 2.5em;
  margin-bottom: 25px;
}

.box-container-home {
  z-index: 1;
  position: absolute;
  align-items: center;
  width: 100%;
}

#our-work .box-container-home {
  position: relative;
}

.box-container-home-text {
  width: 100%;
  max-width: 240px;
  position: relative;
  z-index: 1;
}

.box-container-home-video {
  width: 100%;
  z-index: 0;
  margin: calc(3.43em - 15px);
  margin-top: -120px;
  margin-bottom: calc(5.93em * 2);
}

.box-container-home-video .embed-responsive {
  padding: calc(2.43em * 2 ) calc(3.43em - 15px);
    /*padding: 0;*/;
}

.box-container-home-video.box-container-our-work {
  margin-top: calc(-9.375em * 2.5);
}

.module-text-head {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.75px;
  margin-bottom: 1rem;
}

.module-text-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 900;
}

.module-text-title-slider {
  font-size: 40px;
  line-height: 42px;
  font-weight: 900;
  letter-spacing: 1.11px;
}

.module-text-sumary {
  line-height: 40px;
  letter-spacing: 0.6px;
  font-size: 24px;
}

.card-body .card-title {
  line-height: 20px;
  font-weight: 900!important;
  letter-spacing: 1.75px;
  font-size: 14px;
}

.module-footer a,
.module-footer p,
.card-body .card-text {
  line-height: 25px;
  font-size: 15px;
  letter-spacing: 0.65px;
  color: #ebebeb!important;
}

/* End Albums */

.margin-y-module {
  margin-top: 220px;
  margin-bottom: 220px;
}

.margin-y-module-3 {
  margin-top: 450px;
  margin-bottom: 450px;
}

.margin-top-module {
  margin-top: 150px;
}

.margin-bottom {
  margin-bottom: 220px;
}

.module-text-head.margin-bottom-1,
.margin-bottom-1 {
  margin-bottom: 50px;
}

.margin-bottom-1x {
  margin-bottom: 100px;
}

.margin-bottom-slider-title {
  margin-bottom: 70px;
}

.slider-title {
  min-height: 126px;
}

.margin-bottom-module {
  margin-bottom: 150px;
}

.margin-top-1 {
  margin-top: 50px;
}

.margin-top--1 {
  margin-top: -220px;
}

.owl-carousel.owl-drag .owl-item .item {
  display: flex;
}

.box-slider-expanded {
  padding: 0;
}

.box-slider-expanded .margin-x {
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min-content;
  position: relative;
  padding: 0 4px;
}

.owl-theme .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  display: flex!important;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 1;
  -webkit-transition: .2s left,.2s -webkit-transform;
  transition: .2s left,.2s -webkit-transform;
  -o-transition: .2s transform,.2s left;
  transition: .2s transform,.2s left;
  transition: .2s transform,.2s left,.2s -webkit-transform;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
  display: flex;
  font-size: 1em;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: transparent!important;
  color: #6c757d!important;
  text-decoration: none;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 16px;
  height: 16px;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent!important;
  border: 1px solid #000;
  margin: 0!important;
}

.owl-carousel.owl-drag .owl-item h6,
.owl-carousel.owl-drag .owl-item h1,
.owl-carousel.owl-drag .owl-item p {
  /* opacity: 0; */;
}

.owl-carousel.owl-drag .owl-item.active.center h6,
.owl-carousel.owl-drag .owl-item.active.center h1,
.owl-carousel.owl-drag .owl-item.active.center p {
  /* opacity: 1; */;
}

.owl-carousel.owl-drag .owl-item img {
  width: 100%;
  height: auto;
  flex: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.owl-carousel.owl-drag .owl-item .item .item-photo {
}

.owl-carousel.owl-drag .owl-item img {
  max-width: 715px;
  min-height: 425px;
}

.owl-theme .owl-nav {
  margin-top: 0!important;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  z-index: 0;
}

.owl-pagination {
  display: flex;
  position: relative;
  width: fit-content;
  padding: 0px 1em;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  width: auto;
}

.owl-carousel .owl-stage-outer {
  min-height: 425px;
}

.owl-carousel.owl-drag .owl-item img {
  padding-bottom: 32px;
}

.mxw-350 {
  max-width: 100%;
}

.mxw-350 .slider-title {
  max-width: 250px;
}

.mxw-370 {
  max-width: 100%;
}

.mxw-370 .slider-title {
  max-width: 300px;
}

.mxw-475 {
  max-width: 100%;
}

.mxw-475 .slider-title {
  max-width: 400px;
}

.slider-texto {
  min-width: auto;
}


/* Albums */

.tLb--content__grid {
  margin: -2px -2px 0rem;
}

.tLb--content__grid:after, 
.tLb--content__grid:before {
  content: ' ';
  display: table;
}

.tLb--content__cardContainer {
  width: 33.333%;
  float: left;
}

.o--cardContainer {
  display: inline-block;
  position: relative;
}

.o--cardContainer .o--card {
  position: absolute;
  top: 2.5px;
  bottom: 2.5px;
  left: 2.5px;
  right: 2.5px;
}

.o--cardContainer:after {
  padding-top: 100%;
  display: block;
}

.o--cardContainer:after, 
.o--media--drag:after, 
.o--mediaCluster__mediaWrapper:after, 
.o--mediaGrid__mediaWrapper:after {
  content: '';
}

.o--card__mediaContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  background: #3E3E3E;
  overflow: hidden;
}

.o--card__media {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0;
  object-position: 50% 0;
  color: #999;
}

.o--card__mediaOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.03) rgba(0,0,0,.05) rgba(0,0,0,.05);
  background: rgba(0,0,0,.9);
  padding: 1em 2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.o--cardContainer:hover .o--card__mediaOverlay {
  opacity: 1;
}

.eltdf-btn .eltdf-btn-icon-holder {
  width: 35px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease-in-out!important;
  display: flex!important;
  align-items: center;
  justify-content: flex-end;
  margin: 0em 1.5em;
}

.eltdf-btn {
  min-height: 40px;
  font-size: 0.875em;
  letter-spacing: 2.11px;
  line-height: 1;
  width: auto;
  width: max-content;
  border-radius: 50%;
}

.eltdf-btn:hover {
  color: #000;
  background: #FFF;
}

/*.eltdf-btn:hover {
    color: #FFFFFF;
    background: transparent!important;
}
*/

.eltdf-btn:hover .pt-1 {
  color: #000;
}

.eltdf-btn .eltdf-btn-text {
  display: inline-block;
  vertical-align: middle;
}

.eltdf-btn .eltdf-btn-icon-elem {
  display: inline-block;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out!important;
}

input[type="email"] {
  height: auto;
  border: 0;
  padding: 0rem;
  border-radius: 0rem;
  color: #2ec3e5;
  border-bottom: 2px solid #2ec3e5;
  background-color: transparent;
  font-family: Acumin-Light;
  font-weight: normal;
  font-style: normal;
  line-height: 1em;
  max-width: 265px;
}

.form-control:focus {
  color: #2ec3e5;
  background-color: transparent!important;
  outline: 0;
  box-shadow: 0 0 0 0rem transparent;
  border-bottom: 2px solid #2ec3e5;
}

form .input-group {
  margin-bottom: 30px;
}

::-webkit-input-placeholder {
 /* Chrome/Opera/Safari */
  color: #2ec3e5;
}

::-moz-placeholder {
 /* Firefox 19+ */
  color: #2ec3e5;
}

:-ms-input-placeholder {
 /* IE 10+ */
  color: #2ec3e5;
}

:-moz-placeholder {
 /* Firefox 18- */
  color: #2ec3e5;
}

input[type="email"]::placeholder {
  color: #2ec3e5;
}

#albums {
  top: -100px;
}

#albums .margin-y-module {
  margin-top: -120px;
  margin-bottom: 200px;
}

.my-gallery figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-calc(100%);
  width: -moz-calc(100%);
  width: calc(100%);
  height: -webkit-calc(100%);
  height: -moz-calc(100%);
  height: calc(100%);
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1em;
  flex-direction: column;
}

.arrow_right_white {
  width: 30px;
  height: 14px;
  background: url('../images/arrow.png');
  -webkit-background-size: 30px!important;
  -moz-background-size: 30px!important;
  -o-background-size: 30px!important;
  background-size: 30px!important;
  background-repeat: no-repeat;
  background-position: center;
}

.arrow_right_black {
  width: 30px;
  height: 14px;
  background: url('../images/arrow-black.png');
  -webkit-background-size: 30px!important;
  -moz-background-size: 30px!important;
  -o-background-size: 30px!important;
  background-size: 30px!important;
  background-repeat: no-repeat;
  background-position: center;
}

.container-about {
  padding: 310px 0px 340px 0px;
  margin: 0;
}

.box-bg-about {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -ms-flex: 0 0 calc(100%);
  flex: 0 0 calc(100%);
  max-width: calc(100%);
}

.box-about-img-top {
  position: absolute;
  top: calc(-300px + 180px);
  right: 0;
  width: 75%;
}

.box-about-img-top img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 950px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0;
  object-position: 50% 0;
  color: #999;
}

.box-about-img-left {
  position: absolute;
  top: 420px;
  left: 0;
  width: 50%;
  max-width: 205px;
  max-height: 378px;
}

.box-about-img-left img {
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0;
  object-position: 50% 0;
  color: #999;
}

.box-about-img-botton {
  position: absolute;
  width: 50%;
  bottom: calc(-340px + 220px);
  right: 0;
}

.box-about-img-botton img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0;
  object-position: 50% 0;
  color: #999;
}

.container-about .margin-y-module {
  margin-top: 270px;
  margin-bottom: 385px;
}

.fullscreen-bg__video {
  position: absolute;
  top: 50%!important;
  left: 50%!important;
  width: auto!important;
  height: auto!important;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.embed-responsive video {
  width: auto;
}

.no-hover:focus,
.no-hover:hover {
  text-decoration: none!important;
  color: #2ec3e5;
}

.hover-underline:focus,
.hover-underline:hover {
  color: #2ec3e5;
}

.product-device img {
  width: 100%;
  max-width: 261px;
  height: auto;
  flex: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

#image-artist-square {
  max-width: 250px;
}

@media (min-width:576px) {
    
  header {
    top: 0px;
  }

  .logo {
    width: 130px;
  }

  .barHeader {
    padding: 0px calc(3.43em - 15px);
  }

  .triggerMenu {
    top: 0px;
    right: calc(3.43em - 15px);
  }

  .menuContents.open .menu-container .nav-container:first-child {
    min-height: 520px;
  }

  .margin-y-module {
    margin-top: 220px;
    margin-bottom: 220px;
  }

  .container-about .margin-y-module {
    margin-top: 270px;
    margin-bottom: 340px;
  }

  .margin-y-module-3 {
    margin-top: 450px;
    margin-bottom: 450px;
  }

  .margin-top-module {
    margin-top: 150px;
  }

  .margin-bottom {
    margin-bottom: 220px;
  }

  .margin-top-1 {
    margin-top: 50px;
  }

  .module-text-head.margin-bottom-1,
  .margin-bottom-1 {
    margin-bottom: 50px;
  }

  .margin-bottom-module {
    margin-bottom: 150px;
  }

  .margin-top--1 {
    margin-top: -220px;
  }

  .container {
    max-width: 100%;
  }

  .box-menu {
    max-height: 100vh;
    padding: 30px calc(4.68rem - 1.5rem);
    padding-left: calc(3.43em - 15px);
    padding-right: calc(3.43em - 15px);
  }

  .margin-x {
    margin-left: calc(3.43em - 15px);
    margin-right: calc(3.43em - 15px);
  }

  .margin-x-header {
    margin-left: calc(6.86em - 15px);
    margin-right: calc(6.86em - 15px);
  }

  .blocks-items {
    -webkit-column-count: 1!important;
    -moz-column-count: 1!important;
    column-count: 1!important;
    -webkit-column-gap: 0rem;
    -moz-column-gap: 0rem;
    column-gap: 0rem;
  }

  .margin-y {
    margin-bottom: 2.5em;
  }

  .module-text-head {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.75px;
    margin-bottom: 1rem;
  }

  .module-text-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 900;
    letter-spacing: 1.11px;
  }

  .module-text-sumary {
    line-height: 40px;
    letter-spacing: 0.6px;
    font-size: 24px;
  }

  .image-slider {
    margin-bottom: 40px;
  }

  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: unset;
  }

  .owl-carousel.owl-drag .owl-item img {
    height: unset;
    margin-left: unset;
    padding-bottom: 0;
  }

  .owl-theme .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    display: flex!important;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: transparent!important;
    border: 1px solid #000;
  }

  .owl-theme .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    background: transparent!important;
    border: 1px solid #000;
  }

  #albums {
    top: -100px;
  }

  #albums .margin-y-module {
    margin-top: -120px;
    margin-bottom: 200px;
  }

  input[type="email"] {
    max-width: 265px;
  }

  .eltdf-btn .eltdf-btn-icon-holder {
    margin: 0em 1.5em;
    width: 45px;
  }

  .arrow_right_white,
  .arrow_right_black {
    width: 45px;
    -webkit-background-size: 45px!important;
    -moz-background-size: 45px!important;
    -o-background-size: 45px!important;
    background-size: 45px!important;
  }

  .my-gallery figure figcaption {
    padding: 1em;
  }

  .container-about {
    padding: 375px 0px 340px 0px;
  }

  .box-bg-about {
    -ms-flex: 0 0 calc(100%);
    flex: 0 0 calc(100%);
    max-width: calc(100%);
  }

  .box-about-img-botton {
    position: absolute;
    width: 50%;
    bottom: calc(-340px + 120px);
    right: 0;
  }

  .box-about-img-top {
    right: 0;
    width: 75%;
  }

  .box-about-img-left {
    left: 0;
    width: 50%;
    display: flex;
    justify-content: start;
    max-width: 205px;
    max-height: 378px;
  }

  .box-about-img-left img {
    max-width: 284px;
  }

  .fullscreen-bg__video {
    position: absolute;
    top: 50%!important;
    left: 50%!important;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .box-container-home-video {
    margin-top: -250px;
  }

  .box-container-home-text {
    max-width: 320px;
  }

  .embed-responsive video {
    width: 100%;
  }
}

@media (min-width:576px) and (orientation : landscape) {
    
  .menuContents {
    /* margin-top: -100%;*/;
  }

  .box-about-img-left {
    width: 50%;
    display: flex;
    justify-content: start;
    left: 0;
  }

  .box-container-home-video {
    width: 100%;
    z-index: 0;
    margin: calc(3.43em - 15px);
    margin-top: -250px;
    margin-bottom: calc(5.93em * 2);
  }

  .box-container-home-text {
    max-width: 320px;
  }

  .embed-responsive video {
    width: 100%;
  }

  .owl-theme .owl-nav.disabled + .owl-dots {
    /*width: 100%;
    margin-top: 0;
    position: absolute;
    bottom: 155px;
    justify-content: center;
    display: flex;*/
  }
}

@media (min-width:768px) {
    
  .mc-icon {
    position: fixed;
    z-index: 999;
    display: flex;
    width: 100px;
    top: 30px;
    left: calc(5.93em - 15px);
  }

  .mc-wordmark {
    position: fixed;
    z-index: 999;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    mix-blend-mode: difference;
    max-width: 95px;
    top: 40px;
    left: calc(5.93em + 45px);
  }

  header {
    top: 0px;
  }

  .fullscreen-bg__video {
    position: relative;
  }

  .embed-responsive video {
    width: 100%;
  }

  .logo {
    width: 148px;
  }

  .barHeader {
    padding: 0px calc(5.93em - 15px);
  }

  .triggerMenu {
    top: 0px;
    right: calc(5.93em - 15px);
  }

  .nav-container {
    padding: 2.43em calc(5.93em - 15px);
  }

  .nav-desktop {
    padding: 0;
    margin: 0;
  }

  .margin-y-module {
    margin-top: 220px;
    margin-bottom: 220px;
  }

  .container-about .margin-y-module {
    margin-top: 270px;
    margin-bottom: 320px;
  }

  .margin-y-module-3 {
    margin-top: 450px;
    margin-bottom: 450px;
  }

  .box-container-home.box-mh-hero {
    min-height: 888px;
  }

  .margin-top-module {
    margin-top: 150px;
  }

  .margin-bottom {
    margin-bottom: 220px;
  }

  .module-text-head.margin-bottom-1,
    .margin-bottom-1 {
    margin-bottom: 140px;
  }

  .margin-bottom-module {
    margin-bottom: 150px;
  }

  .margin-top--1 {
    margin-top: -220px;
  }

  .container {
    max-width: 100%;
  }

  .box-menu {
    max-height: 100vh;
    padding: 30px calc(8.12rem - 1.5rem);
    padding-left: calc(5.93em - 15px);
    padding-right: calc(5.93em - 15px);
    margin-bottom: calc(9.375em * 2);
    width: 100%;
    display: flex;
  }

  .box-container-home-video {
    width: 100%;
    z-index: 0;
    margin: 0 calc(5.93em - 15px);
    margin-top: -560px;
    margin-bottom: 0;
  }

  .box-container-home-video.box-container-our-work {
    margin-top: calc(-9.375em * 2.5);
  }

  .box-container-home-video .embed-responsive {
    padding: 0;
    min-height: 520px;
  }

  .box-container-home-text {
    max-width: 420px;
    left: calc(5.93em - 15px);
    right: calc(5.93em - 15px);
  }

  .max-width {
    max-width: 100%;
  }

  .blocks-items {
    grid-template-columns: 2;
    grid-gap: 4.03em;
  }

  .margin-x {
    margin-left: calc(5.93em - 15px);
    margin-right: 4.68em;
  }

  .margin-x-header {
    margin-left: calc(4.68em * 2 + 15px);
    margin-right: calc(4.68em * 2 + 15px);
  }

  .margin-y {
    margin-bottom: 2.5em;
  }

  .blocks-items {
    -webkit-column-count: 2!important;
    -moz-column-count: 2!important;
    column-count: 2!important;
    -webkit-column-gap: 2.5em;
    -moz-column-gap: 2.5em;
    column-gap: 2.5em;
  }

  .module-text-head {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.75px;
    margin-bottom: 1rem;
  }

  .module-text-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.75px;
  }

  .slider-title {
    min-height: 150px;
  }

  .mxw-350,
  .mxw-370 {
    max-width: 100%;
  }

  .module-text-sumary {
    font-size: 34px;
    line-height: 1.8em;
    letter-spacing: .85px;
  }

  .image-slider {
    margin-bottom: 60px;
  }

  .box-slider-expanded .margin-x {
    margin: 0;
  }

  .owl-carousel.owl-drag .owl-item h6, 
  .owl-carousel.owl-drag .owl-item h1, 
  .owl-carousel.owl-drag .owl-item p {
    opacity: 0;
  }

  .owl-carousel.owl-drag .owl-item.active.center h6, 
  .owl-carousel.owl-drag .owl-item.active.center h1, 
  .owl-carousel.owl-drag .owl-item.active.center p {
    opacity: 1;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: transparent!important;
    border: 1px solid #000;
  }

  .owl-theme .owl-dots .owl-dot.active span {
    width: 16px;
    height: 16px;
    background: transparent!important;
    border: 1px solid #000;
  }

  .owl-theme .owl-nav.disabled + .owl-dots {
   /* width: 100%;
    margin-top: 0;
    position: absolute;
    bottom: 130px;
    justify-content: center;
    display: flex;*/
  }

  .owl-carousel.owl-drag .owl-item img {
    padding-bottom: 0;
  }

  .margin-bottom-slider-title.module-text-title {
    max-width: 85%;
  }

  .tLb--content__cardContainer {
    width: 33.333%;
    float: left;
  }

  #albums {
    top: -150px;
  }

  #albums .margin-y-module {
    margin-top: -250px;
    margin-bottom: 520px;
  }

  input[type="email"] {
    max-width: 375px;
  }

  .eltdf-btn .eltdf-btn-icon-holder {
    margin: 0em 1.5em;
    width: 45px;
  }

  .arrow_right_white,
  .arrow_right_black {
    width: 45px;
    -webkit-background-size: 45px!important;
    -moz-background-size: 45px!important;
    -o-background-size: 45px!important;
    background-size: 45px!important;
  }

  .my-gallery figure figcaption {
    padding: 30px 40px;
  }

  .container-about {
    padding: 375px 0px 450px 0px;
  }

  .box-bg-about {
    -ms-flex: 0 0 calc(100%);
    flex: 0 0 calc(100%);
    max-width: calc(100%);
  }

  .box-about-img-botton {
    position: absolute;
    width: 50%;
    bottom: calc(-450px + 200px);
    right: 0;
  }

  .box-about-img-top {
    right: 0;
    width: 75%;
  }

  .box-about-img-left {
    top: -80px;
    left: 0;
    width: auto;
    max-width: 254px;
    max-height: 524px;
  }

  .product-device img {
    width: 100%;
    max-width: 261px;
    height: auto;
    flex: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }

}

@media (min-width:992px) {
    
  .mxw-350 {
    max-width: 350px;
  }

  .mxw-370 {
    max-width: 370px;
  }

  .mxw-475 {
    max-width: 475px;
  }

  .col-lg-4 {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-lg-8 {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }

  header {
    top: 30px;
  }

  .logo {
    width: 148px;
  }

  .barHeader {
    padding: 0px calc(8.12rem - 1.5rem);
  }

  .nav-container {
    padding: 2.43em calc(8.12rem - 1.5rem);
  }

  .nav-desktop {
    padding: 0;
    margin: 0;
  }

  .margin-y-module {
    margin-top: 220px;
    margin-bottom: 220px;
  }

  .margin-y-module-3 {
    margin-top: 450px;
    margin-bottom: 450px;
  }

  .margin-top-module {
    margin-top: 150px;
  }

  .margin-bottom {
    margin-bottom: 220px;
  }

  .module-text-head.margin-bottom-1,
  .margin-bottom-1 {
    margin-bottom: 140px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 25px;
  }

  .margin-bottom-module {
    margin-bottom: 150px;
  }

  .margin-top--1 {
    margin-top: -220px;
  }

  .container {
    max-width: 100%;
  }

  .box-menu {
    /* padding: 100px 0px 50px calc(8.12rem - 1.5rem); */
    padding: 100px 0px 0px calc(5.93em - 15px);
    margin-bottom: 0;
  }

  .nav-container {
    margin: 7.56em 0 4em;
  }

  .nav-desktop {
    padding: 0;
    margin: 0;
  }

  .box-container-home-video {
    position: relative;
    margin-left: -100px;
    min-width: 576px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home {
    max-width: 620px;
    min-height: 480px;
    padding: 155px 0;
  }

  .box-container-home.box-mh-hero {
    min-height: 888px;
  }

  .box-container-home-video.box-container-our-work {
    margin-top: -9.375em;
  }

  .box-container-home-video .embed-responsive {
    padding: 0;
    min-height: 520px;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 420px;
    left: 100px;
  }

  .nav-link-credits,
  .nav-link {
    font-size: 0.684em;
  }

  .max-width {
    max-width: 620px;
  }

  .margin-x {
    margin-left: 0;
    margin-right: calc(4.25em - 15px);
  }

  .margin-y {
    margin-bottom: 4.25em;
  }

  .blocks-items {
    -webkit-column-count: 2!important;
    -moz-column-count: 2!important;
    column-count: 2!important;
    -webkit-column-gap: 4.68rem;
    -moz-column-gap: 4.68rem;
    column-gap: 4.68rem;
  }

  .module-text-head {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.75px;
    margin-bottom: 1rem;
  }

  .module-text-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.75px;
  }

  .module-text-sumary {
    font-size: 34px;
    line-height: 1.8em;
    letter-spacing: .85px;
  }

  .card-body .card-title {
    line-height: 22px;
    font-weight: 900!important;
    letter-spacing: 2px;
    font-size: 16px;
  }

  .card-body .card-text {
    line-height: 29px;
    font-size: 16px;
    letter-spacing: 0.81px;
    color: #ebebeb!important;
  }

  .module-footer a > span:not(.icon) {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.11px;
    padding-top: .20rem;
  }

  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(4.68rem - 15px);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-3.2rem * 2);
  }

  .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: start;
    z-index: 1;
  }

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

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #727272!important;
    border: 0px solid #727272;
  }

  .owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: #727272!important;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
    background: #727272!important;
    border: 1px solid #727272!important;
  }

  .owl-pagination {
    width: min-content;
    margin-top: -40px;
  }

  .tLb--content__cardContainer {
    width: 33.333%;
    float: left;
  }

  #albums .margin-y-module {
    margin-top: 200px;
    margin-bottom: 200px;
  }

  input[type="email"] {
    max-width: 377px;
  }

  .eltdf-btn .eltdf-btn-icon-holder {
    margin: 0em 1.5em;
    width: 45px;
  }

  .arrow_right_white,
  .arrow_right_black {
    width: 45px;
    -webkit-background-size: 45px!important;
    -moz-background-size: 45px!important;
    -o-background-size: 45px!important;
    background-size: 45px!important;
  }

  .my-gallery figure figcaption {
    padding: 30px 40px;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }

  .owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
    height: 10px;
  }

  .owl-dot {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
  }

  .owl-dot.prev,
    .owl-dot.next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66);
  }

  .owl-dot.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .container-about {
    padding: 540px 0px 440px 0px;
  }

  .box-bg-about {
    -ms-flex: 0 0 calc(100%);
    flex: 0 0 calc(100%);
    max-width: calc(100%);
  }

  .box-about-img-botton {
    position: absolute;
    max-width: 360px;
    bottom: calc(-400px + 200px);
    right: 200px;
  }

  .box-about-img-top {
    right: 0;
    width: 50%;
  }

  .box-about-img-left {
    left: -100px;
    width: auto;
    max-width: 165px;
    height: 489.35px;
  }

  .owl-theme .owl-nav.disabled + .owl-dots {
    /*width: 100%;
    margin-top: 0;
    position: absolute;
    bottom: 155px;
    justify-content: center;
    display: flex;*/
  }

  .owl-carousel {
    justify-content: flex-start!important;
  }

  .product-device img {
    width: 100%;
    max-width: 241px;
    height: auto;
    flex: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #image-artist-square {
    max-width: 250px;
  }

}

/*@media (min-width: 991.98px) and (max-width: 1400.98px) {
    
    .box-about-img-left {
        max-width: 205px;
        max-height: 524px;
    }

}*/

@media (min-width:1200px) {
    
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  header {
    top: 30px;
  }

  .logo {
    width: 148px;
  }

  .barHeader {
    padding: 0px calc(8.12rem - 1.5rem);
  }

  .margin-y-module {
    margin-top: 330px;
    margin-bottom: 330px;
  }

  .margin-y-module-3 {
    margin-top: 450px;
    margin-bottom: 450px;
  }

  .margin-top-module {
    margin-top: 150px;
  }

  .margin-bottom {
    margin-bottom: 220px;
  }

  .module-text-head.margin-bottom-1,
  .margin-bottom-1 {
    margin-bottom: 140px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 50px;
  }

  .margin-bottom-module {
    margin-bottom: 150px;
  }

  .margin-top--1 {
    margin-top: -220px;
  }

  .container {
    max-width: 1920px;
  }

  .box-menu {
    /* padding: 100px 0px 0px calc(8.12rem - 1.5rem); */
    padding: 100px 0px 0px calc(5.93em - 15px);
    margin-bottom: 0;
  }

  .nav-item {
    margin-bottom: 2.5em;
  }

  .nav-container {
    margin: 6.56em 0 0em;
  }

  .nav-desktop {
    padding: 0;
    margin: 0;
  }

  .box-container-home-video {
    position: relative;
    min-width: 716px;
    margin-left: -100px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home {
    max-width: 620px;
    padding: 155px 0;
  }

  .box-container-home.box-mh-hero {
    min-height: 1050px;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 500px;
  }

  .box-container-home-video .embed-responsive {
    padding: 0;
  }

  .nav-link-credits,
  .nav-link {
    font-size: 0.684em;
  }

  .max-width {
    max-width: 620px;
  }

  .margin-x {
    margin-left: 0;
    margin-right: calc(4.68rem - 15px);
  }

  .margin-y {
    margin-bottom: 4.68rem;
  }

  .blocks-items {
    -webkit-column-count: 2!important;
    -moz-column-count: 2!important;
    column-count: 2!important;
    -webkit-column-gap: 4.68rem;
    -moz-column-gap: 4.68rem;
    column-gap: 4.68rem;
  }

  .module-text-head {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.75px;
    margin-bottom: 1rem;
  }

  .module-text-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.75px;
  }

  .module-text-sumary {
    font-size: 34px;
    line-height: 1.8em;
    letter-spacing: .85px;
  }

  .card-body .card-title {
    line-height: 22px;
    font-weight: 900!important;
    letter-spacing: 2px;
    font-size: 16px;
  }

  .card-body .card-text {
    line-height: 29px;
    font-size: 16px;
    letter-spacing: 0.81px;
    color: #ebebeb!important;
  }

  .module-footer a > span:not(.icon) {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.11px;
    padding-top: .20rem;
  }

  .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: start;
    z-index: 1;
  }

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

  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(4.68rem - 15px);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-3.98rem * 2);
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #727272!important;
    border: 0px solid #727272;
  }

  .owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: #727272!important;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
    .owl-theme .owl-dots .owl-dot:hover span {
    background: #727272!important;
    border: 1px solid #727272!important;
  }

  .owl-pagination {
    margin-top: -80px;
  }

  .tLb--content__cardContainer {
    width: 33.333%;
    float: left;
  }

  #albums .margin-y-module {
    margin-top: 200px;
    margin-bottom: 200px;
  }

  input[type="email"] {
    max-width: 377px;
  }

  .eltdf-btn .eltdf-btn-icon-holder {
    margin: 0em 1.5em;
    width: 45px;
  }

  .arrow_right_white,
  .arrow_right_black {
    width: 45px;
    -webkit-background-size: 45px!important;
    -moz-background-size: 45px!important;
    -o-background-size: 45px!important;
    background-size: 45px!important;
  }

  .my-gallery figure figcaption {
    padding: 30px 40px;
  }

  .owl-dot {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
  }

  .owl-dot.prev,
    .owl-dot.next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66);
  }

  .owl-dot.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .container-about {
    padding: 720px 0px 400px 0px;
  }

  .box-bg-about {
    /*-ms-flex: 0 0 calc(66.666667% + 9.375em);
    flex: 0 0 calc(66.666667% + 9.375em);
    max-width: calc(66.666667% + 9.375em);*/
    -ms-flex: 0 0 calc(100%);
    flex: 0 0 calc(100%);
    max-width: calc(100%);
  }

  .box-about-img-botton {
    position: absolute;
    max-width: 360px;
    bottom: calc(-400px + 200px);
    right: 200px;
  }

  .box-about-img-top {
    right: 0;
    width: 50%;
  }

  .box-about-img-top img {
    max-height: 595px;
  }

  .box-about-img-left {
    left: -100px;
    width: auto;
    max-width: 205px;
  }

  .box-about-img-left img {
    /*display: block;
    height: 100%;
    width: 100%;
    max-height: 650px;*/
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0;
    object-position: 50% 0;
    color: #999;
  }

  .product-device img {
    width: 100%;
    max-width: 261px;
    height: auto;
    flex: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #image-artist-square {
    max-width: 350px;
  }

}

@media (min-width:1300px) {

  .box-about-img-top {
    right: 0;
    width: 50%;
  }

  .box-about-img-top img {
    max-height: 595px;
  }

  .box-about-img-left {
    left: -100px;
    width: auto;
    max-width: 205px;
  }

  .box-container-home-video {
    position: relative;
    min-width: 716px;
    margin-left: -100px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home-video .embed-responsive {
    padding: 0;
    height: 100%;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 600px;
    left: 100px;
  }

  .product-device img {
    width: 100%;
    height: auto;
    flex: 1;
    -o-object-fit: cover;
    object-fit: cover;
  }

}

@media (min-width:1400px) {

  header {
    top: 30px;
  }

  .logo {
    width: 148px;
  }

  .barHeader {
    padding: 0px calc(8.12rem - 1.5rem);
  }

  .margin-y-module {
    margin-top: 330px;
    margin-bottom: 330px;
  }

  .margin-y-module-3 {
    margin-top: 450px;
    margin-bottom: 450px;
  }

  .margin-top-module {
    margin-top: 150px;
  }

  .margin-bottom {
    margin-bottom: 220px;
  }

  .module-text-head.margin-bottom-1,
  .margin-bottom-1 {
    margin-bottom: 140px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 40px;
  }

  .margin-bottom-module {
    margin-bottom: 150px;
  }

  .margin-top--1 {
    margin-top: -220px;
  }

  .container {
    max-width: 1920px;
  }

  .box-menu {
    padding: 60px calc(8.12rem - 1.5rem);
  }

  .nav-item {
    margin-bottom: 2.5em;
  }

  .nav-container {
    margin: 13.12em 0 0;
  }

  .nav-desktop {
    padding: 0;
    margin: 0;
  }

  .box-container-home-video {
    position: relative;
    min-width: 716px;
    margin-left: -100px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home {
    max-width: 620px;
    padding: 0;
  }

  .box-container-home.box-mh-hero {
    min-height: 1050px;
  }

  .embed-responsive.flex {
    align-items: center;
    flex-direction: column;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 600px;
    left: 100px;
  }

  .box-container-home-video .embed-responsive {
    padding: 0;
    height: 595px;
  }

  .nav-link-credits,
  .nav-link {
    font-size: 0.937em;
  }

  .max-width {
    max-width: 680px;
  }

  .margin-x {
    margin-left: 0;
    margin-right: calc(8.25em - 15px);
  }

  .margin-y {
    margin-bottom: 8.12rem;
  }

  .blocks-items {
    -webkit-column-count: 2!important;
    -moz-column-count: 2!important;
    column-count: 2!important;
    -webkit-column-gap: 8.12rem;
    -moz-column-gap: 8.12rem;
    column-gap: 8.12rem;
  }

  .module-text-head {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.75px;
    margin-bottom: 1rem;
  }

  .module-text-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.75px;
  }

  .module-text-sumary {
    font-size: 34px;
    line-height: 1.8em;
    letter-spacing: .85px;
  }

  .card-body .card-title {
    line-height: 22px;
    font-weight: 900!important;
    letter-spacing: 2px;
    font-size: 16px;
  }

  .card-body .card-text {
    line-height: 29px;
    font-size: 16px;
    letter-spacing: 0.81px;
    color: #ebebeb!important;
  }

  .module-footer p,
  .module-footer a {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.81px;
  }

  .module-footer a > span:not(.icon) {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.11px;
    padding-top: .20rem;
  }

  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(7.3em * 2);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-4.6rem * 2);
  }

  .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: start;
    z-index: 1;
  }

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

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #727272!important;
    border: 0px solid #727272;
  }

  .owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: #727272!important;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
    .owl-theme .owl-dots .owl-dot:hover span {
    background: #727272!important;
    border: 1px solid #727272!important;
  }

  .owl-pagination {
    margin-top: -80px;
  }

  .tLb--content__cardContainer {
    width: 33.333%;
    float: left;
  }

  #albums .margin-y-module {
    margin-top: 200px;
    margin-bottom: 200px;
  }

  input[type="email"] {
    max-width: 377px;
  }

  .eltdf-btn .eltdf-btn-icon-holder {
    margin: 0em 1.5em;
    width: 45px;
  }

  .arrow_right_white,
    .arrow_right_black {
    width: 45px;
    -webkit-background-size: 45px!important;
    -moz-background-size: 45px!important;
    -o-background-size: 45px!important;
    background-size: 45px!important;
  }

  .my-gallery figure figcaption {
    padding: 30px 40px;
  }

  .owl-dot {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
  }

  .owl-dot.prev,
    .owl-dot.next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66);
  }

  .owl-dot.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .container-about {
    padding: 500px 0px 575px 0px;
    margin-top: 200px;
  }

  .box-bg-about {
        /*-ms-flex: 0 0 calc(66.666667% + 9.375em);
        flex: 0 0 calc(66.666667% + 9.375em);
        max-width: calc(66.666667% + 9.375em);*/
    -ms-flex: 0 0 calc(100%);
    flex: 0 0 calc(100%);
    max-width: calc(100%);
  }

  .box-about-img-botton {
    position: absolute;
    max-width: 460px;
    bottom: calc(-575px + 200px);
    right: 200px;
  }

  .box-about-img-top {
    right: 0;
    width: 50%;
  }

  .box-about-img-top img {
    max-height: 595px;
  }

  .box-about-img-left {
    top: -150px;
    left: -100px;
    width: auto;
    max-width: 205px;
  }

  .box-about-img-left img {
    display: block;
    height: 100%;
    width: 100%;
    max-width: 350px;
    max-height: 650px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0;
    object-position: 50% 0;
    color: #999;
  }
}

@media (min-width:1500px) {
  
  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(7.3em * 2);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-4.47rem * 2);
  }

  .owl-pagination {
    margin-top: -70px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 60px;
  }

  .box-about-img-top {
    right: 0;
    width: 50%;
  }

  .box-container-home-video {
    position: relative;
    min-width: 795px;
    margin-left: -110px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 600px;
    left: 110px;
  }

  .box-about-img-left {
    top: -150px;
    left: -110px;
    width: auto;
    max-width: 265px;
  }
}

@media (min-width:1600px) {
  
  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(7.3em * 2);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-6.47rem * 2);
  }

  .owl-pagination {
    margin-top: -100px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 80px;
  }

  .box-container-home-video {
    position: relative;
    min-width: 952px;
    margin-left: -130px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 600px;
    left: 130px;
  }

  .box-about-img-left {
    top: -150px;
    left: -130px;
    width: auto;
    max-width: 265px;
  }
}

@media (min-width:1700px) {
  
  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(7.3em * 2);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-7.47rem * 2);
  }

  .owl-pagination {
    margin-top: -130px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 100px;
  }

  .box-container-home-video {
    position: relative;
    min-width: 952px;
    margin-left: -180px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 600px;
    left: 180px;
  }

  .box-about-img-left {
    top: -150px;
    left: -180px;
    width: auto;
    max-width: 265px;
  }
}

@media (min-width:1800px) {
  
  .owl-carousel.owl-drag .owl-item .item .item-photo {
    padding-right: calc(7.3em * 2);
  }

  .owl-carousel.owl-drag .owl-item img {
    margin-left: calc(-8.47rem * 2);
  }

  .owl-pagination {
    margin-top: -160px;
  }

  .margin-bottom-slider-title {
    margin-bottom: 120px;
  }

  .box-container-home-video {
    position: relative;
    min-width: 952px;
    margin-left: -180px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box-container-home-text {
    padding: 0;
    max-width: 600px;
    left: 180px;
  }

  .box-about-img-left {
    top: -150px;
    left: -180px;
    width: auto;
    max-width: 265px;
  }
}

@media only screen and (min-width:1025px) {
  .edgtf-grid-list.edgtf-four-columns .edgtf-item-space:nth-child(4n+1) {
    clear: both;
  }
}
/*
 * Custom translucent site header
 */

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}

.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */
.lists-artists {
  position: relative;
  z-index: 1;
}

.product-device {
  position: absolute;
  left: -18.125em;
  width: 420px;
  height: auto;
}

.product-device::before {
}

.our-artists-photos {
  margin-left: 30px;
}

.product-device-2 {
  position: relative;
  left: unset;
  height: auto;
  width: 100%;
  background-color: #222222;
}

.product-device-3 {
  max-width: 420px;
}

.lists-artists h1 {
  cursor: pointer;
  position: relative;
  display: flex;
  width: fit-content;
}

.lists-artists h1:after {
  content: '';
  width: 0;
  height: 3px;
  background: currentColor;
  position: absolute;
  bottom: 4px;
  left: 0;
  -webkit-transition: .25s cubic-bezier(.165,.84,.44,1);
  -o-transition: .25s cubic-bezier(.165,.84,.44,1);
  transition: .25s cubic-bezier(.165,.84,.44,1);
}

.lists-artists .selected:after,
.lists-artists h1:hover:after {
  width: 100%;
}

/*
 * Extra utilities
 */

.flex-equal > * {
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    flex: 1;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.bg-unsplash {
  background: url('../images/bg-unsplash.jpg');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-photo {
  background: url('../images/bg-photo.jpg');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-about {
  background: url('../images/bg-about.jpg');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
  /*margin: 0;*/
}

.bg-gray-news {
  background: url('../images/bg-news.jpg');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-our-work-primary {
  background: url('../images/__bg-our-work-2.png');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-our-work {
  background: url('../images/bg-our-work.jpg');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-featured-artists {
  background: url('../images/bg-artists.jpg');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-our-newsletter {
  background: url('../images/bg-form.png');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

#footer {
  background: url('../images/_bg-footer.png');
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-gray-dark {
  background-color: #1e1e1e;
}

.rounded-pill {
  border-radius: 50rem!important;
}

.border-white {
  border: 1.75px solid #D8D8D8;
}

.owl-carousel-artists .owl-pagination .owl-nav button i {
  color: #D8D8D8;
}

.owl-carousel-artists .owl-pagination .owl-dots .owl-dot.active span,
.owl-carousel-artists .owl-pagination .owl-dots button span {
  border: 1.75px solid #D8D8D8;
} 

.border-black {
  border: 1.75px solid #000000;
}

.border-top-dark {
  border-top: 2px solid #888889;
}

.text-black {
  color: #000000;
}

.text-underline {
  text-decoration: underline!important;
}

.eltdf-btn .eltdf-btn-icon-elem.hover {
  position: absolute;
  top: calc(50% - 1px);
  right: 100%;
  display: inline-block;
  -webkit-transform: translate(0,-45%) translateZ(0);
  transform: translate(0,-45%) translateZ(0);
  -webkit-transition: -webkit-transform .2s ease-in-out,right .2s ease-in-out!important;
  transition: transform .2s ease-in-out, right .2s ease-in-out!important;
}

.eltdf-btn.eltdf-btn-icon:hover .eltdf-btn-icon-holder .eltdf-btn-icon-elem {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.eltdf-btn.eltdf-btn-icon:hover .eltdf-btn-icon-holder .eltdf-btn-icon-elem.hover {
  right: 50%;
  -webkit-transform: translate(50%,-45%) translateZ(0);
  transform: translate(50%,-45%) translateZ(0);
}

.module-social .btn.eltdf-btn {
  min-width: 192px;
  max-width: 215px;
}

.module-social .eltdf-btn:hover {
  opacity: .9;
}

.module-social .btn.eltdf-btn:hover span:not(.icon) {
  color: #000;
}

.module-social .btn.eltdf-btn:hover span.icon {
  border-radius: 50%;
}

.module-social .fa {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%!important;
  width: 25px;
  height: 25px;
  padding-top: 1px;
  background: #ffffff;
  padding-left: 1px;
}

.module-social-mobile .fa {
  width: 45px;
  height: 45px;
  border-radius: 50%!important;
}

.module-social .fa {
  color: #000000;
  font-size: 14px;
}

.module-social-mobile .fa {
  font-size: 1.3em!important;
}

.module-social span > span i:before {
  left: 1px;
  position: relative;
}

.edgtf-gradients-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 0;
  border-radius: 0px;
}

.edgtf-gradients-holder>div {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.edgtf-gradients-holder .edgtf-gradient-shade {
  background: -o-linear-gradient(330deg,rgba(78,38,125,.5) 0,#481f82 100%);
  background: linear-gradient(120deg,rgba(78,38,125,.5) 0,#481f82 100%);
}

.edgtf-gradients-holder .edgtf-gradient-shape {
  top: 10%;
  right: -25%;
  left: auto;
  height: 100%;
  width: 100%;
  background: -o-linear-gradient(105deg,rgba(126,166,163,.5) 13%,rgba(72,31,130,.5) 61%,#36c4c9 75%);
  background: linear-gradient(-15deg,rgba(126,166,163,.5) 13%,rgba(72,31,130,.5) 61%,#36c4c9 75%);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  border-radius: 50%;
  opacity: .6;
  background-size: 200%;
  background-position: left top;
  -webkit-transition: background-position 1s .1s;
  -o-transition: background-position 1s .1s;
  transition: background-position 1s .1s;
}

.edgtf-gradients-holder .edgtf-gradient-1 {
  background: -webkit-gradient(linear,left bottom,left top,from(#4e267d),color-stop(35%,rgba(72,31,130,.5)),to(#311b99));
  background: -o-linear-gradient(bottom,#4e267d 0,rgba(72,31,130,.5) 35%,#311b99 100%);
  background: linear-gradient(0deg,#4e267d 0,rgba(72,31,130,.5) 35%,#311b99 100%);
  background-size: 200%;
  -webkit-transition: background-position 2s;
  -o-transition: background-position 2s;
  transition: background-position 2s;
}

.edgtf-gradients-holder .edgtf-gradient-2 {
  background: -o-linear-gradient(125deg,rgba(78,38,125,.38) 33%,rgba(54,196,201,.5) 41%,#311b99 75%);
  background: linear-gradient(-35deg,rgba(78,38,125,.38) 33%,rgba(54,196,201,.5) 41%,#311b99 75%);
  background-size: 200%;
  -webkit-transition: background-position 1s;
  -o-transition: background-position 1s;
  transition: background-position 1s;
}

.edgtf-gradients-holder .edgtf-gradient-move-1 {
  background: -o-linear-gradient(135deg,rgba(78,38,125,0) 48%,rgba(54,196,201,.13) 60%,rgba(78,38,125,0) 72%);
  background: linear-gradient(-45deg,rgba(78,38,125,0) 48%,rgba(54,196,201,.13) 60%,rgba(78,38,125,0) 72%);
  -webkit-animation: edgtfGradientMove 4s infinite;
  animation: edgtfGradientMove 4s infinite;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
  opacity: 0;
}

.edgtf-gradients-holder .edgtf-gradient-move-2 {
  background: -o-linear-gradient(45deg,rgba(78,38,125,0) 48%,rgba(54,196,201,.13) 60%,rgba(78,38,125,0) 72%);
  background: linear-gradient(45deg,rgba(78,38,125,0) 48%,rgba(54,196,201,.13) 60%,rgba(78,38,125,0) 72%);
  -webkit-animation: edgtfGradientMove 4s -2s infinite;
  animation: edgtfGradientMove 4s -2s infinite;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
  opacity: 0;
}

.content:hover .edgtf-gradients-holder {
  opacity: .8;
}

.content:hover .edgtf-gradients-holder>.edgtf-gradient-move-1,
.content:hover .edgtf-gradients-holder>.edgtf-gradient-move-2 {
  opacity: 1;
}

.content:hover .edgtf-gradients-holder>.edgtf-gradient-1,
.content:hover .edgtf-gradients-holder>.edgtf-gradient-2,
.content:hover .edgtf-gradients-holder>.edgtf-gradient-shape {
  background-position: right bottom;
}

.content:hover .edgtf-gradients-holder {
  opacity: .95;
}

@-webkit-keyframes edgtfGradientMove {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes edgtfGradientMove {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.my-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.my-gallery figure::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  opacity: 0;
  -webkit-transition: opacity .5s,-webkit-transform .5s;
  transition: opacity .5s,-webkit-transform .5s;
  -o-transition: transform .5s,opacity .5s;
  -moz-transition: transform .5s,opacity .5s,-moz-transform .5s;
  transition: transform .5s,opacity .5s;
  transition: transform .5s,opacity .5s,-webkit-transform .5s,-moz-transform .5s;
}

.my-gallery figure::after {
  opacity: 0;
  -webkit-transition: opacity .5s,-webkit-transform .5s;
  transition: opacity .5s,-webkit-transform .5s;
  -o-transition: transform .5s,opacity .5s;
  -moz-transition: transform .5s,opacity .5s,-moz-transform .5s;
  transition: transform .5s,opacity .5s;
  transition: transform .5s,opacity .5s,-webkit-transform .5s,-moz-transform .5s;
}

.my-gallery figure figcaption h4 {
  position: relative;
  bottom: 0;
  left: 0;
  color: #FFF;
  opacity: 0;
  -webkit-transform: translateX(-1.6rem);
  -moz-transform: translateX(-1.6rem);
  -ms-transform: translateX(-1.6rem);
  transform: translateX(-1.6rem);
  -webkit-transition: opacity .5s,-webkit-transform .5s;
  transition: opacity .5s,-webkit-transform .5s;
  -o-transition: transform .5s,opacity .5s;
  -moz-transition: transform .5s,opacity .5s,-moz-transform .5s;
  transition: transform .5s,opacity .5s;
  transition: transform .5s,opacity .5s,-webkit-transform .5s,-moz-transform .5s;
}

.my-gallery figure figcaption h4 {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-family: Acumin-Black;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.75px;
  text-transform: uppercase;
}

.my-gallery figure figcaption p {
  font-size: 15px;
  font-family: Acumin-Light;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  position: relative;
  margin-bottom: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  color: #FFF;
  -webkit-transform: translateX(-1.6rem);
  -moz-transform: translateX(-1.6rem);
  -ms-transform: translateX(-1.6rem);
  transform: translateX(-1.6rem);
  -webkit-transition: opacity .5s,-webkit-transform .5s;
  transition: opacity .5s,-webkit-transform .5s;
  -o-transition: transform .5s,opacity .5s;
  -moz-transition: transform .5s,opacity .5s,-moz-transform .5s;
  transition: transform .5s,opacity .5s;
  transition: transform .5s,opacity .5s,-webkit-transform .5s,-moz-transform .5s;
}

.my-gallery figure:hover::after {
  opacity: 1;
}

.my-gallery figure:hover figcaption p,
.my-gallery figure:hover figcaption h4 {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    
  .my-gallery figure:hover::after {
    opacity: 1;
  }

  .my-gallery figure:hover figcaption p,
    .my-gallery figure:hover figcaption h4 {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.navbar-toggle {
  border: none;
  background: transparent !important;
}

.navbar-toggle:hover {
  background: transparent !important;
}

.navbar-toggle .icon-bar {
  width: 22px;
  transition: all 0.2s;
}

.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggle .middle-bar {
  opacity: 0;
}

.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}

.app .hPHfEq.a-animatedIcon.-arrowRight.-left {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app .krbHOH.a-anchorButton.-secondary .a-animatedIcon, 
.app .krbHOH.a-anchorButton.-track .a-animatedIcon {
  fill: rgb(255, 255, 255);
}

.app .hPHfEq.a-animatedIcon.-arrowRight {
  width: 30px;
}

.app .krbHOH.a-anchorButton .a-animatedIcon {
  position: absolute;
  right: 20px;
  height: 10px;
  line-height: 10px;
}

.app .hPHfEq.a-animatedIcon {
  cursor: pointer;
  display: inline-block;
  top: 50%;
  transform: translateY(0%);
}

.app .krbHOH.a-anchorButton.-secondary .a-animatedIcon.-arrowRight.-left::before {
  background-color: rgb(255, 255, 255);
}

.app .hPHfEq.a-animatedIcon.-arrowRight.-left::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 2px;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: rgb(255, 255, 255);
  transform-origin: right center;
  -webkit-transition: width 400ms, height 400ms;
 /* For Safari 3.1 to 6.0 */
  transition: width 400ms, height 400ms;
}

.app .hPHfEq.a-animatedIcon.-arrowRight.-arrowRightW.-left::before {
  background-color: #000;
}

.app .hPHfEq.a-animatedIcon.-arrowRight svg {
  height: 10px;
  width: 8px;
  margin-left: -5px;
}

.app .ffaxGV.a-svgIcon {
  fill: rgb(255, 255, 255);
}

.app .ffaxGV.a-svgIcon {
  height: 100%;
  width: 100%;
  transition: fill 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

svg:not(:root) {
  overflow: hidden;
}

.app .ffaxGV.a-svgIcon.-invertColor {
  -webkit-transition: width 400ms, height 400ms;
 /* For Safari 3.1 to 6.0 */
  transition: width 400ms, height 400ms;
  fill: rgb(255, 255, 255);
}

.app .ffaxGV.a-svgIcon.-invertColorB {
  fill: rgb(0, 0, 0);
}

.app .ffaxGV.a-svgIcon,
.eltdf-btn:hover .ffaxGV.a-svgIcon.-invertColor {
  fill: rgb(0, 0, 0);
}

.eltdf-btn:hover .hPHfEq.a-animatedIcon.-arrowRight.-left::before {
  width: 45px;
  background-color: #000;
  -webkit-transition: width 400ms, height 400ms;
 /* For Safari 3.1 to 6.0 */
  transition: width 400ms, height 400ms;
}


.row-box-photos {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-grow: 1;
}

.col-box-photos {
  width: 50%;
}

.row-box-photo {

}

.row-box-photo img {
  margin: 0;
  padding: 0!important;
  min-height: 100%!important;
}
