/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #555555;
}

a {
  color: #2c83db;
}

a:hover {
  color: #2c83db;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top i {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus {
  background: #fff;
  color: #111;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*---------SCROLLBAR--------*/

::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-track{
    background-color: #fff;
    box-shadow: inset 0 0 1.5px 0.5px rgba(0,0,0,0.1);
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(
    45deg,
    #000,
    #000    
    );
    border-radius: 0px;
}

/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
.velo-slider__hint > span, .btn-draw {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

*, *:before, *:after {
  box-sizing: border-box;
}

#about {
  margin: 0;
  width: 100%;
  overflow: visible;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#about {
  font-family: "Montserrat",sans-serif;
  line-height: 1.5;
}

.about a {
  text-decoration: none;
  background-color: transparent;
  outline: 0;
}

.btn-draw {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.4s ease-in-out;
}

.btn-draw {
  color: #00ffc8;
  margin-left: 2.3em;
}
.btn-draw:after {
  content: "";
  top: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #00ffc8;
}
.btn-draw:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.4em;
  height: 1px;
  width: 3em;
  background-color: #00ffc8;
  transition: all 0.25s ease;
}
.btn-draw .btn-draw__text {
  position: relative;
  display: block;
  padding: 0.7555em 2.29em;
  line-height: 1.5;
  transition: transform 0.5s ease;
}
.btn-draw .btn-draw__text:before, .btn-draw .btn-draw__text:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background-color: #00ffc8;
}
.btn-draw .btn-draw__text:before {
  top: 0;
  left: 0;
  transition: width 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .btn-draw__text:after {
  bottom: 0;
  right: 0;
  transition: width 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .btn-draw__text > span:before, .btn-draw .btn-draw__text > span:after {
  content: "";
  position: absolute;
  height: 0;
  width: 1px;
  background-color: #00ffc8;
  transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
}
.btn-draw .btn-draw__text > span:before {
  left: 0;
  bottom: 0;
  transition: height 0.15s 0 cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .btn-draw__text > span:after {
  right: 0;
  top: 0;
  transition: height 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (hover) {
  .btn-draw:hover, a:hover .btn-draw {
    cursor: pointer;
    color: #00ffc8;
  }
  .btn-draw:hover:before, a:hover .btn-draw:before {
    width: 0;
    transition: all 0.4s ease;
  }
  .btn-draw:hover .btn-draw__text, a:hover .btn-draw .btn-draw__text {
    transform: translateX(-2.2em);
    transition: transform 0.5s ease, width 1s ease;
  }
  .btn-draw:hover .btn-draw__text:before, a:hover .btn-draw .btn-draw__text:before {
    width: 100%;
    max-width: 100%;
    transition: width 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .btn-draw__text:after, a:hover .btn-draw .btn-draw__text:after {
    width: 100%;
    transition: width 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .btn-draw__text > span:before, a:hover .btn-draw .btn-draw__text > span:before {
    left: 0;
    height: 100%;
    transition: height 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .btn-draw__text > span:after, a:hover .btn-draw .btn-draw__text > span:after {
    right: 0;
    height: 100%;
    transition: height 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }
}

.btn-draw.btn--white {
  color: #000;
}
.btn-draw.btn--white:before, .btn-draw.btn--white:after,
.btn-draw.btn--white .btn-draw__text:before,
.btn-draw.btn--white .btn-draw__text:after,
.btn-draw.btn--white .btn-draw__text > span:before,
.btn-draw.btn--white .btn-draw__text > span:after {
  background-color: #000;
}
.btn-draw.btn--white:hover, a:hover .btn-draw.btn--white {
  color: #000;
}

.velo-slides {
  z-index: 8;
  position: relative;
  height: 90vh;
  background-color: #111;
}
.velo-slides[data-velo-slider=on] {
  overflow: hidden;
}

.velo-slide {
  height: 90vh;
  z-index: 4;
}
@media (min-width: 54em) and (max-width: 65em) {
  .velo-slide {
    font-size: 80%;
  }
}
@media (min-width: 54em) and (min-height: 0) and (max-height: 45em) {
  .velo-slide {
    font-size: 70%;
  }
}
[data-velo-slider=on] .velo-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.velo-slide.is-active {
  z-index: 8;
}
.velo-slide__bg {
  z-index: 7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #111;
  padding-right: 90px;    
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-color: transparent;
  overflow: hidden;
}
.velo-slide__bg:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  background: transparent;
}
.velo-slide__figure {
  z-index: 0;
  position: relative;    
  height: 75%;
  width: 50%;
  top: 0;
  left: 0;    
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.5s ease;
  float: right;   
  top: 7.5%;  
  /*background-size: 95%;*/    
}
.is-hovering .velo-slide__figure {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.velo-slide__vid-wrap {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.velo-slide__vid-wrap:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  background: #111;
}
.is-hovering .velo-slide__vid-wrap {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
.velo-slide__vid {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  max-width: none;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.velo-slide__header {
  z-index: 9;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding: 6%;
}

.velo-slide--long .velo-slide__header {
  overflow: hidden;
}

.velo-slide--long .velo-slide__title {
  flex-shrink: 0;
}

.velo-slide--long .velo-slide__text {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.25rem;
}

@media (min-width: 866px) {
  .velo-slide--skills .velo-slide__header {
    overflow: hidden;
  }

  .velo-slide--skills .skills-bar-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    margin-top: 0.5rem;
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 36em;
  }

  .velo-slide--skills .skills-bar-container li {
    width: 100%;
    max-width: 36em;
  }
}

.velo-slide__meta {
  color: #000;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0.5em 0 1em;
  opacity: 0.65;
}

.velo-slide__pretitle {
  color: #000;
  max-width: 22em;
}

@media (min-width: 54em) {
  .velo-slide__pretitle {
    margin-left: 7%;
  }
}
.velo-slide__title {
  font-family: "Montserrat", sans-serif;    
  margin-bottom: 0.1em;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.025em;
  font-weight: 700;
  font-size: 2em;
}

@media (min-width: 54em) {
  .velo-slide__title {
    font-size: 2.3em;
  }
}
@media (min-width: 65em) {
  .velo-slide__title {
    font-size: 2.5em;
  }
}
@media (min-width: 91em) {
  .velo-slide__title {
    font-size: 2.5em;
  }
}
.velo-slide__text {
  color: #000;
  max-width: 40em;
  display: block;
  margin: 0%;
  line-height: 1.6;
  font-size: 15px;
  text-align: justify;
}

/* About UX: improve readability without changing global typography */
#about .velo-slide__text {
  text-align: left;
}

/* About UX: subtle mobile swipe cue */
.velo-swipe-hint {
  display: none;
  margin: 0.35rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (max-width: 865px) {
  .velo-swipe-hint {
    display: block;
  }
}

.velo-slide__btn {
  opacity: 0;
  flex-shrink: 0;
  margin-top: 0.75rem;
}

.velo-slide__btn > a {
  position: relative;
  display: inline-block;
}

.velo-slide__btn > a::before {
  content: "";
  position: absolute;
  inset: -8px -10px;
}
@media (min-width: 54em) {
  .velo-slide__text {
    font-size: 15px;
  }

  .velo-slide__btn {
    margin-left: 1vw;
  }
}
.is-active .velo-slide__btn {
  opacity: 1;
}
.velo-slide__btn > a > span {
  opacity: 0;
  overflow-y: hidden;
  transform: translate3d(0, 100%, 0);
}
.is-active .velo-slide__btn > a > span {
  opacity: 1;
  z-index: 9999;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease, opacity 0.8s ease;
}

.velo-slides[data-velo-theme=light] {
  background: transparent;
  /*border: 1em solid transparent;*/
}
.velo-slides[data-velo-theme=light] .velo-slide__bg {
  color: #c5cac5;
}

[data-velo-theme=dark] {
  background: #111;
}
[data-velo-theme=dark] .velo-slides__bg {
  background-color: #111;
  filter: grayscale(100%);
}

.oh  {
  display: block;
  overflow-y: hidden;
  padding: 0.02em 0;
}

.oh span {
  display: inline-block;
  transform: translate3d(0, 140%, 0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.8s ease;
}

.is-active .oh span {
  transform: translate3d(0, 0%, 0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}

.is-active .oh:nth-of-type(2n) span {
  transition-delay: 0.2s;
}

.velo-slider__hint {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0.5em;
  display: none;
  height: 90vh;
  width: 4em;
  font-size: 0.9em;
  color: #000;
}
@media (min-width: 54em) {
  .velo-slider__hint {
    display: block;
  }
}
.velo-slider__hint > span {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
  overflow: hidden;
}
.velo-slider__hint > span > span {
  display: inline-block;
  transform: translateY(-110%);
}
.is-active .velo-slider__hint > span > span {
  opacity: 1;
  top: 50%;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(0%);
  transition: 0.4s ease;
}

.velo-slides-nav {
  /* lateral navigation */
  position:absolute;
  z-index: 91;
  right: 1.6em;
  bottom: 25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

.velo-slides-nav__count {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1;
  user-select: none;
}
@media (min-width: 54em) {
  .velo-slides-nav {
    top: 73%;
      right: 95.5%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.velo-slides-nav__list {
  list-style: none;
}
.velo-slides-nav li:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  margin-bottom: 0;
}
.velo-slides-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2rem;
  height: 2rem;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.9);
  transition: color 0.3s ease, transform 0.2s ease;
}

.velo-slides-nav a::before {
  content: "";
  position: absolute;
  inset: -10px;
}
.velo-slides-nav a:hover {
  color: #000;
  transform: scale(1.05);
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.velo-slides-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
.velo-slides-nav i {
  font-size: 1.1rem;
  line-height: 1;
}
@media (min-width: 54em) {
  .velo-slides-nav i {
    font-size: 0.95rem;
  }
}

[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ssicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-down-chev:before {
  content: "";
}

.icon-right-chev:before {
  content: "";
}

.icon-up-chev:before {
  content: "";
}

.icon-left-chev:before {
  content: "";
}

.icon-up-arrow:before {
  content: "";
}

.icon-down-arrow:before {
  content: "";
}

.icon-left-arrow:before {
  content: "";
}

.icon-right-arrow:before {
  content: "";
}

/*----------responsive velo slides---------*/

@media (min-width:1375px) and (max-width:1455px){
.velo-slide__figure {
  z-index: 0;
  position: relative;
  height: 75%;
  width: 40%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.5s ease;
  float: right;
  top: 8%;
}
.velo-slide__text {
  color: #000;
  max-width: 40em;
  display: block;
  margin: 0%;
  line-height: 1.6;
  text-align: justify;
}   
}

@media (min-width:1200px) and (max-width:1375px){
 .velo-slide__figure {
  z-index: 0;
  position: relative;
  height: 75%;
  width: 40%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.5s ease;
  float: right;
  top: 8%;
}   
}

@media (min-width:1000px) and (max-width:1200px){
 .velo-slide__figure {
  z-index: 0;
  position: relative;
  height: 75%;
  width: 40%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.5s ease;
  float: right;
  top: 8%;
}    
}

@media (min-width:800px) and (max-width:1040px){
 .velo-slide__figure {
  z-index: 0;
  position: relative;
  height: 75%;
  width: 40%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.5s ease;
  float: right;
  top: 8%;
} 
.velo-slide__text {
  color: #000;
  max-width: 30em;
  display: block;
  margin: 0%;
  line-height: 1.6;
  text-align: justify;
} 
}

@media (min-width:0px) and (max-width:865px){
.velo-slide__figure {
  display: block;
  width: 100%;
  float: none;
  top: 0;
  background-size: cover;
  background-position: center;
}
}

/*--------------------------------------------------------------
# Velo repair — mobile/tablet stacked panels
--------------------------------------------------------------*/
@media (max-width: 865px) {
  #about.about {
    padding-top: 1.25rem;
    overflow: visible;
  }

  #about .section-title {
    margin-left: 1.25rem;
    margin-bottom: 0.35rem;
    padding-bottom: 0;
  }

  #about .section-title h2 {
    font-size: clamp(2.75rem, 14vw, 3.75rem);
    line-height: 1;
    margin-bottom: 0;
  }

  #about .velo-slides {
    margin-top: 0;
    padding-top: 0;
    height: min(calc(100dvh - 7.5rem), 640px);
    min-height: 420px;
    max-height: min(calc(100dvh - 7.5rem), 640px);
    background: #fff;
    overflow: hidden;
  }

  .velo-slides[data-velo-theme=light] {
    background: #fff;
  }

  [data-velo-slider=on] .velo-slide {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  [data-velo-slider=on] .velo-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 3;
  }

  .velo-slide__bg {
    position: relative;
    flex: 0 0 auto;
    height: auto;
    width: 100%;
    padding-right: 0;
    transform: none !important;
    overflow: hidden;
  }

  .velo-slide__bg::after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
  }

  .velo-slide__figure {
    width: 100%;
    height: clamp(132px, 26vh, 188px);
    float: none;
    top: 0;
    transform: none !important;
  }

  .velo-slide__header {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    z-index: 2;
    background: #fff;
    overflow: hidden;
    padding: 0.85rem 1.25rem 3rem;
    justify-content: flex-start;
    transform: none !important;
  }

  .velo-slide__title {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
    flex-shrink: 0;
  }

  .velo-slide__meta {
    flex-shrink: 0;
    font-size: 0.62rem;
    margin: 0 0 0.65rem;
    opacity: 0.8;
    color: #333;
  }

  .velo-slide__text {
    flex: 1 1 auto;
    min-height: 0;
    max-width: none;
    font-size: 0.875rem;
    line-height: 1.55;
    text-align: left;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.15rem;
  }

  .velo-slide--long .velo-slide__text {
    overflow-y: auto;
  }

  .velo-slide__btn {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 0.75rem;
    opacity: 1;
  }

  .velo-slide__btn > a > span {
    opacity: 1;
    transform: none;
  }

  .velo-slide__btn .btn-draw {
    margin-left: 0;
    color: #111;
  }

  .velo-slide__btn .btn-draw::before,
  .velo-slide__btn .btn-draw::after,
  .velo-slide__btn .btn-draw .btn-draw__text::before,
  .velo-slide__btn .btn-draw .btn-draw__text::after,
  .velo-slide__btn .btn-draw .btn-draw__text > span::before,
  .velo-slide__btn .btn-draw .btn-draw__text > span::after {
    display: none !important;
  }

  .velo-slide__btn .btn-draw .btn-draw__text {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.55rem 0;
    transform: none;
    border-bottom: 1px solid #111;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .velo-slide .skills-bar-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.35rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    left: auto;
    transform: none;
    padding-right: 0.15rem;
  }

  .velo-slide .skills-bar-container li {
    width: 100%;
    max-width: 100%;
    padding: 0.4rem 0;
    margin-bottom: 0.1rem;
  }

  .velo-slide .skills-bar-container li .progressbar-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding-right: 0;
  }

  .velo-slide .skills-bar-container li .progressbar-title p {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    margin: 0;
    padding-right: 0.25rem;
  }

  .velo-slide .skills-bar-container li .progressbar-title .percent {
    position: static;
    flex: 0 0 auto;
    font-size: 0.68rem;
    line-height: 1.35;
    opacity: 0.55;
    white-space: nowrap;
  }

  .velo-slide .skills-bar-container li .bar-container {
    height: 2px;
    margin-top: 0.4rem;
    border-radius: 1px;
  }

  .velo-slide .skills-bar-container li .bar-container .progressbar {
    border-radius: 1px;
  }

  .velo-slides-nav {
    left: 50%;
    right: auto;
    bottom: 0.65rem;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .velo-slides-nav__list {
    margin: 0;
    padding: 0;
  }

  .velo-slides-nav__list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
  }

  .velo-slides-nav__list li:first-child {
    margin-bottom: 0;
  }

  .velo-slides-nav__count {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    padding-right: 0.15rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 0.1rem;
    line-height: 1;
  }

  .velo-slides-nav a {
    box-shadow: none;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    line-height: 1;
  }

  .velo-slides-nav a.inactive {
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }

  .velo-slides-nav i {
    font-size: 0.95rem;
    line-height: 1;
  }
}

/*--------------------------------------------------------------
# Skills TEST
--------------------------------------------------------------*/
/*.skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;  
  z-index: -10;    
}
*/
.skills-bar-container li {
  position: relative;
  display:block;    
  width: 670px;
  height: 100%;    
  padding: 5px;
  margin-bottom: 0px;    
}
.skills-bar-container li .progressbar-title {
  color: #000;
}
.skills-bar-container li .progressbar-title p {
  display: inline-block;
  line-height: 1.2;    
}
.skills-bar-container li .progressbar-title .percent {
  position: absolute;
  right: 5px;
}
.skills-bar-container li .bar-container {
  background-color: gainsboro;
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 0px;
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.skills-bar-container li .bar-container .progressbar {
  position: absolute;
  width: 0%;
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* About skills: only animate bars when slide is active */
.velo-slide--skills .skills-bar-container li .bar-container .progressbar {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
.velo-slide--skills.is-active .skills-bar-container li .bar-container .progressbar {
  animation-play-state: running;
  -webkit-animation-play-state: running;
}
.skills-bar-container li .bar-container #progress-adv {
  -webkit-animation-name: progress-html;
  animation-name: progress-html;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.skills-bar-container li .bar-container #progress-brand {
  -webkit-animation-name: progress-css;
  animation-name: progress-css;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.skills-bar-container li .bar-container #progress-design {
  -webkit-animation-name: progress-javascript;
  animation-name: progress-javascript;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.skills-bar-container li .bar-container #progress-pub-books {
  -webkit-animation-name: progress-angular;
  animation-name: progress-angular;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.skills-bar-container li .bar-container #progress-media {
  -webkit-animation-name: progress-php;
  animation-name: progress-php;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.skills-bar-container li .bar-container #progress-photo {
  -webkit-animation-name: progress-angular;
  animation-name: progress-angular;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.skills-bar-container li .bar-container #progress-events {
  -webkit-animation-name: progress-angular;
  animation-name: progress-angular;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.skills-bar-container li .bar-container #progress-web {
  -webkit-animation-name: progress-angular;
  animation-name: progress-angular;
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.progressred {
  background-color: #000;
}

.progressblue {
  background-color: #000;
}

.progresspurple {
  background-color: #000;
}

.progressorange {
  background-color: #000;
}

.progressgreen {
  background-color: #000;
}

@-webkit-keyframes progress-html {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-css {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-javascript {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-php {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-angular {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-eve {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress-html {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress-css {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress-javascript {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress-php {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress-angular {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-eve {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progress-html {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-css {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-javascript {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-php {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-angular {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-eve {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-eve {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/*-----------skills container responsive----------*/

@media (min-width:1450px) and (max-width:1570px){
  .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 95%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}
.skills-bar-container li {
  position: relative;
  width: 570px;    
  padding: 5px;
  margin-bottom: 0px;
}        
}

@media (min-width:1042px) and (max-width:1370px){
  .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 520px;    
  padding: 5px;
  margin-bottom: 0px;
}  
}

@media (min-width:864px) and (max-width:1042px){
.skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 500px;    
  padding: 5px;
  margin-bottom: 0px;
}  
}

@media (min-width:720px) and (max-width:760px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 540px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:660px) and (max-width:720px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 560px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:630px) and (max-width:660px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 550px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:610px) and (max-width:630px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 535px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:580px) and (max-width:610px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 510px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:550px) and (max-width:580px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 485px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:530px) and (max-width:550px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 465px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:510px) and (max-width:530px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 450px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:490px) and (max-width:510px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 433px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:480px) and (max-width:490px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 420px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:460px) and (max-width:480px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 400px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:455px) and (max-width:460px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 380px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:410px) and (max-width:455px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 360px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}
@media (min-width:390px) and (max-width:410px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 340px;    
  padding: 5px;
  margin-bottom: 0px;
}
.progressbar-title{
  font-size:14px;       
}    
}
@media (min-width:375px) and (max-width:390px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 330px;    
  padding: 5px;
  margin-bottom: 0px;
}
.progressbar-title{
  font-size:14px;       
}    
}
@media (min-width:335px) and (max-width:375px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 280px;    
  padding: 5px;
  margin-bottom: 0px;
}
.progressbar-title{
  font-size:14px;       
}    
}
@media (min-width:310px) and (max-width:335px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 270px;    
  padding: 5px;
  margin-bottom: 0px;
}
.progressbar-title{
  font-size:14px;       
}    
}
@media (min-width:295px) and (max-width:310px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 260px;    
  padding: 5px;
  margin-bottom: 0px;
}
.progressbar-title{
  font-size:12px;       
}    
}
@media (min-width:280px) and (max-width:295px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 240px;    
  padding: 5px;
  margin-bottom: 0px;
}
.progressbar-title{
  font-size:14px;       
}    
}
@media (min-width:270px) and (max-width:280px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 230px;    
  padding: 5px;
  margin-bottom: 0px;
} 
.progressbar-title{
  font-size:12px;       
}     
}
@media (min-width:238px) and (max-width:270px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 200px;    
  padding: 5px;
  margin-bottom: 0px;
}  
 .progressbar-title{
  font-size:12px;       
}    
}
@media (min-width:215px) and (max-width:238px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 190px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

@media (min-width:200px) and (max-width:215px){
 .skills-bar-container {
  margin-top:150px ;
  position: relative;
  width: 100%;
  min-width: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  list-style: none;
}

.skills-bar-container li {
  position: relative;
  width: 170px;    
  padding: 5px;
  margin-bottom: 0px;
}    
}

/* Velo slides — reset legacy skills-bar positioning (wins over breakpoint ladder) */
.velo-slide .skills-bar-container {
  margin-top: 0;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 100%;
  list-style: none;
}

.velo-slide .skills-bar-container li {
  width: 100%;
  max-width: 40em;
}

.velo-slide .skills-bar-container li .progressbar-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.velo-slide .skills-bar-container li .progressbar-title p {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.3;
  margin: 0;
  padding-right: 0.35rem;
}

.velo-slide .skills-bar-container li .progressbar-title .percent {
  position: static;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.85em;
  opacity: 0.6;
}

.velo-slide .skills-bar-container li .bar-container {
  height: 2px;
  margin-top: 0.35rem;
  border-radius: 1px;
}

.velo-slide .skills-bar-container li .bar-container .progressbar {
  border-radius: 1px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 60px;
  overflow: hidden;
}

/* Nested sections — avoid double vertical padding (layout unchanged) */
#about .velo-slides,
#about .velo-slide,
#services .section-sliderrr {
  padding-top: 0;
}

.section-bg {
  background-color: whitesmoke;
}

.section-title {
  text-align: left;
  padding-bottom: 0px;
  margin-left: 47px;    
}

.section-title h2 {    
  font-size: 110px;
  font-weight: bold;
  margin-bottom: -10px;
  color: #151515;
  opacity: 0.3;    
}

.about .section-title {
  position: relative;
  z-index: 12;
  pointer-events: none;
}

.about .section-title h2{
  margin-bottom: 0;   
}

#about .velo-slides {
  margin-top: -1.5rem;
  padding-top: 2.75rem;
}

@media (max-width: 865px) {
  #about .velo-slides {
    margin-top: 0;
    padding-top: 0;
  }
}

.section-title p {
  margin-bottom: 0;
  color: #000;
  z-index: 10;
  font-size: 15px;    
}

/*----------responsive section title---------*/

@media (max-width: 1455px){
.section-title h2 {    
  font-size: 80px;
  font-weight: bold;
  margin-bottom: -10px;
  color: #151515;
  opacity: 0.3;    
}

.about .section-title h2 {
  margin-bottom: 0;
}
}

@media (max-width: 480px){
.section-title h2 {    
  font-size: 60px;
  font-weight: bold;
  margin-bottom: -5px;
  color: #151515;
  opacity: 0.3;    
}

.about .section-title h2 {
  margin-bottom: 0;
}

.section-title {
  text-align: left;
  padding-bottom: 20px;
  margin-left: 44px;    
}   
}

@media (max-width: 330px){
.section-title h2 {    
  font-size: 50px;
  font-weight: bold;
  margin-bottom: -5px;
  color: #151515;
  opacity: 0.3;    
}
.section-title {
  text-align: left;
  padding-bottom: 20px;
  margin-left: 37px;    
}   
}

/*--------------------------------------------------------------
# Services----ADVERTISING
--------------------------------------------------------------*/
#marketing-communication-strategy,
  #case-studies {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/marketing-communication-strategy.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#marketing-communication-strategy:before,
#case-studies:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#marketing-communication-strategy .container,
#case-studies .container {
  z-index: 2;
}

#marketing-communication-strategy p,
#case-studies p {
  color: #fff;
}

#marketing-communication-strategy h1,
  #marketing-communication-strategy h3,
  #case-studies h1,
  #case-studies h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

.service-hero-back {
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.08em;
  line-height: 1;
  left: clamp(18px, 5vw, 64px);
  margin: 0;
  min-height: 32px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  top: clamp(22px, 5vw, 48px);
  width: fit-content;
  z-index: 3;
}

.service-hero-back:hover,
.service-hero-back:focus {
  color: #fff;
  text-decoration: none;
}

.service-hero-back i {
  color: inherit;
  font-size: 15px;
  line-height: 1;
}

#advert {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/advertising.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#advert:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#advert p{
  color: #fff;  
}

#advert .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#advert .container {
  z-index: 2;
}

#advert h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#advert h1,
#advert h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;    
}

#advert .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#advert .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #advert {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #advert {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #advert h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #advert h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px){
   #advert {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}

@media (max-width: 320px){
   #advert {
    margin-top: 0px;
    height: calc(140vh - 60px);
  }
    #advert h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
}
}

/*--------------------------------------------------------------
# Services----BRANDING
--------------------------------------------------------------*/
#brand {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/branding.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#brand:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#brand .container {
  z-index: 2;
}

#brand p{
  color: #fff;  
}

#brand .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#brand h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#brand h1,
#brand h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

#brand .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#brand .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #brand {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #brand {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #brand h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #brand h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px){
   #brand {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}


@media (max-width: 320px){
   #brand {
    margin-top: 0px;
    height: calc(150vh - 60px);
  }
    #brand h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
}
}

/*--------------------------------------------------------------
# Services----DESIGN
--------------------------------------------------------------*/
#design {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/branding.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#design:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#design .container {
  z-index: 2;
}

#design p{
  color: #fff;  
}

#design .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#design h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#design h1,
#design h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

#design .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#design .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #design {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #design {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #design h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #design h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px){
   #design {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}

@media (max-width: 320px){
   #design {
    margin-top: 0px;
    height: calc(140vh - 60px);
  } 
    #design h1,
    #design h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
}
}

/*--------------------------------------------------------------
# Services----PUBLICATIONS
--------------------------------------------------------------*/
#annual {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/publications.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#annual:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#annual .container {
  z-index: 2;
}

#annual p{
  color: #fff;  
}

#annual .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#annual h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#annual h1,
#annual h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

#annual .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#annual .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #annual {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #annual {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #annual h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #annual h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px){
   #annual {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}

@media (max-width: 320px){
   #annual {
    margin-top: 0px;
    height: calc(140vh - 60px);
  } 
    #annual h1,
    #annual h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
}
}
/*--------------------------------------------------------------
# Services----AUDIOVISUAL
--------------------------------------------------------------*/
#audio {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/audiovisual.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#audio:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#audio .radio {
  animation: radio 2s infinite;
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  display: block;
  flex: 0 0 auto;
  height: 50px;
  max-width: 100%;
  width: 50px;
}
/*
@keyframes radio {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}*/

@keyframes radio {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	
	70% {
		transform: scale(1.2);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
	
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

#audio .container {
  z-index: 2;
}

#audio p{
  color: #fff;  
}

#audio .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#audio h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#audio h1,
#audio h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

#audio .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#audio .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #audio {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #audio {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #audio h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #audio h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }   
}
@media (max-width: 400px){
   #audio {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}

@media (max-width: 320px){
   #audio {
    margin-top: 0px;
    height: calc(140vh - 60px);
  } 
   #audio h1,
   #audio h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
}   
}

#audio .same-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 59px;
}

#audio .same-line h1 {
  margin: 0;
}

#audio .social__content {
  display: flex;
  flex: 0 0 auto;
  line-height: 0;
  position: relative;
}

#audio .social__content a {
  align-items: center;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

@media (min-width: 768px) {
  #audio .same-line {
    justify-content: flex-start;
  }
}
@media (max-width:768px){
  #audio .same-line {
    gap: 12px;
  }

  #audio .radio,
  #audio .social__content a {
    height: 42px;
    width: 42px;
  }

  .social__tooltip{
   display: none;     
}  
}

/*------------audiovisual TOOLTIP-----------*/

/*.social, .social__container, .social__content {
  display: flex;
}*/
.social__content {
  position: relative;
  cursor: pointer;
}
.social__tooltip {
  opacity: 0;
  position: absolute;
  padding: 0.5rem 1rem;
  background-color: #2c83db;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 0.5rem;
  pointer-events: none;
  margin-top: 5px;    
}
.social__tooltip::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #2c83db;
  border-radius: 3px;
}
.social__content, .social__tooltip, .social__icon {
  transition: 0.3s;
}
.social__content:hover .social__icon {
  color: #fff;
}

.social__tooltip-left {
  left: 0;
  transform: translateX(-100%);
}
.social__tooltip-left::after {
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  right: 1px;
}
.social__content:hover .social__tooltip-left {
  opacity: 1;
  left: -1rem;
}

/*.social__tooltip-right {
  right: 0;
  transform: translateX(100%);
}
.social__tooltip-right::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 1px;
}
.social__content:hover .social__tooltip-right {
  opacity: 1;
  right: -1rem;
}*/

/*--------------------------------------------------------------
# Services----EVENTS
--------------------------------------------------------------*/
#events {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/events-pr.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#events:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#events .container {
  z-index: 2;
}

#events p{
  color: #fff;  
}

#events .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#events h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#events h1,
#events h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

#events .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#events .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #events {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #events {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #events h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #events h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 400px){
   #events {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}

@media (max-width: 320px){
   #events {
    margin-top: 0px;
    height: calc(140vh - 60px);
  } 
  #events h1,
  #events h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
}    
}

/*--------------------------------------------------------------
# Services----WEBSITES
--------------------------------------------------------------*/
#web {
  width: 100%;
  height: calc(75vh - 72px);
  background: url("../images/services/cards/website-social-media.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 0;
  padding: 0;
}

#web:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#web .container {
  z-index: 2;
}

#web p{
  color: #fff;  
}

#web .back{
  color: #fff;
  text-decoration: none;
  font-size: 23px; 
}

#web h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
}

#web h1,
#web h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 700;
}

#web .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 0px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#web .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #web {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #web {
    margin-top: 0px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #web h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #web h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 400px){
   #web {
    margin-top: 0px;
    height: calc(120vh - 60px);
  } 
}

@media (max-width: 320px){
   #web {
    margin-top: 0px;
    height: calc(140vh - 60px);
  } 
  #web h1,
  #web h3 {
  color: #fff;
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
}
   
}

/* Keep every service hero aligned with the Marketing & Communication Strategy reference. */
#advert,
#brand,
#annual,
#audio,
#events,
#web {
  background-position: center center;
  background-size: cover;
  height: calc(75vh - 72px);
}

@media (min-width: 1024px) {
  #advert,
  #brand,
  #annual,
  #audio,
  #events,
  #web {
    background-attachment: scroll;
  }
}

@media (max-width: 992px) {
  #advert,
  #brand,
  #annual,
  #audio,
  #events,
  #web {
    height: calc(75vh - 72px);
  }
}

@media (max-width: 768px) {
  #advert h1,
  #advert h3,
  #brand h1,
  #brand h3,
  #annual h1,
  #annual h3,
  #audio h1,
  #audio h3,
  #events h1,
  #events h3,
  #web h1,
  #web h3 {
    font-size: 35px;
    line-height: 1.2;
  }
}

@media (max-width: 400px) {
  #advert,
  #brand,
  #annual,
  #audio,
  #events,
  #web {
    height: calc(75vh - 72px);
  }
}

@media (max-width: 320px) {
  #advert,
  #brand,
  #annual,
  #audio,
  #events,
  #web {
    height: calc(75vh - 72px);
  }

  #advert h1,
  #advert h3,
  #brand h1,
  #brand h3,
  #annual h1,
  #annual h3,
  #audio h1,
  #audio h3,
  #events h1,
  #events h3,
  #web h1,
  #web h3 {
    font-size: 35px;
    line-height: 1.2;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.section-sliderrr {
    padding: 10px 0;
    background: #333;
}

.sliderrr {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Modern scroll snapping (reliable across browsers) */
    scroll-snap-type: x mandatory;
}

.service-card {
    flex: 0 0 auto;
    position: relative;
    /* Card scales by viewport, but typography scales by card width (container queries). */
    container: inline-size / serviceCard;
    width: clamp(260px, 78vw, 980px);
    aspect-ratio: 16 / 9;
    margin: 20px 20px 10px 0;
    scroll-snap-align: start;
    overflow: hidden;
    isolation: isolate;
}

.sliderrr > .service-card:first-child {
    margin-left: 20px;
}

.service-card__media {
    position: absolute;
    inset: 0;
    filter: grayscale(100%);
    transition: filter .5s ease;
    transform: translateZ(0);
    pointer-events: none;
}

.service-card__media .img-sliderrr {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (hover: hover) {
    .service-card:hover .service-card__media {
        filter: grayscale(0%);
    }
}

.service-card:focus-within .service-card__media {
    filter: grayscale(0%);
}

@media (prefers-reduced-motion: reduce) {
    .service-card__media {
        transition: none;
    }
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: clamp(10px, 2.2cqi, 16px);
    padding: clamp(18px, 7cqi, 72px) clamp(18px, 5.5cqi, 56px);
    z-index: 2;
    pointer-events: none;
}

.service-card__overlay,
.service-card-title {
    pointer-events: none;
}

.service-card__overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 60%);
    z-index: -1;
}

.service-card-title {
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.05;
    margin: 0;
    padding: 0;
    text-wrap: balance;
}

@container serviceCard (inline-size >= 320px) {
  .service-card-title {
    font-size: clamp(1.25rem, 6cqi, 2.2rem);
  }
}

@container serviceCard (inline-size >= 520px) {
  .service-card-title {
    font-size: clamp(1.6rem, 6.2cqi, 3.4rem);
  }

}

@media screen and (min-width: 768px) {
  .service-card {
    width: clamp(420px, 60vw, 980px);
  }
}

/* Mobile sizing + typography tuning (same look, better fit) */
@media (max-width: 767.98px) {
  .service-card {
    width: min(88vw, 420px);
    margin: 16px 16px 10px 0;
  }

  .sliderrr > .service-card:first-child {
    margin-left: 16px;
  }

  .service-card__overlay {
    padding: 18px 18px;
  }

  .service-card-title {
    font-size: 1.25rem;
    line-height: 1.1;
  }

}

.portfolio .service-page-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 40px;
}

.portfolio .service-page-card {
  background-color: #333;
  width: 100%;
  height: 360px;
  min-height: 360px;
  margin: 0;
  aspect-ratio: auto;
}

.portfolio .service-page-card.case-study-card--hidden {
  display: none !important;
}

.portfolio .service-page-card .service-card__media {
  filter: none;
  opacity: 1;
  transition: none;
}

.portfolio .service-page-card:hover .service-card__media,
.portfolio .service-page-card:focus-within .service-card__media {
  filter: none;
}

.portfolio .service-page-card .service-card__media .img-sliderrr {
  object-fit: cover;
}

.portfolio .service-page-card .service-card__overlay::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.52) 42%,
    rgba(0, 0, 0, 0.18) 72%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.portfolio .service-page-card .service-card-title,
.portfolio .service-page-card__summary,
.portfolio .service-page-card .service-card__more {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.portfolio .service-page-card .service-card__more {
  font-family: 'Montserrat';
  font-size: 13px;
  min-height: 44px;
  min-width: 130px;
  padding: 0 24px;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
  pointer-events: auto;
  transition: background-color .6s ease, color .6s ease;
}

.portfolio .service-page-card .service-card__more:hover {
  background-color: #fff;
  color: #333;
  text-shadow: none;
}

.portfolio .service-page-card__summary {
  max-width: 34rem;
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Montserrat';
  font-size: 14px;
  line-height: 1.5;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .portfolio .service-page-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 16px;
  }

  .portfolio .service-page-card {
    height: 280px;
    min-height: 280px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .portfolio .service-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio .service-page-card {
    height: 330px;
    min-height: 330px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.vbox-close{
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 0;
    width: 110px;
    height: 90px;
    padding: 6px;
    display: block;
    background-position:10px center;
    overflow: hidden;
    font-size: 50px;
    line-height: 1;
    text-align: center;
    z-index: 99;
}

.portfolio{
  padding: 0px 0px;
}

.portfolio-container{
  margin-left: 40px;    
  margin-right: 40px;
  margin-bottom: 40px;    
}

.portfolio .button {
  position: relative;    
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  z-index: 10;
  font-weight: 300;
  margin-top: 10px;
  outline: none;    
}

.portfolio .button {
  background-color: transparent; 
  color: #fff; 
  border: 1px solid #fff;
  font-family: 'Montserrat';
  z-index: 10;    
}

.portfolio .button:hover {
  background-color: #fff;
  color: #000;    
}

.portfolio .portfolio-item {
  padding: 6px;   
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 30px auto 30px auto;
  list-style: none;
  text-align: center;
  border-radius: 0;
  padding: 2px 15px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 5px;
  
}

/*-------filters-------*/
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px 8px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0px;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #2c83db;    
}

.portfolio #portfolio-flters[data-case-study-filters] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.portfolio #portfolio-flters[data-case-study-filters] li {
  padding: 0;
}

.portfolio #portfolio-flters[data-case-study-filters] button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  line-height: 1;
  padding: 10px 30px 8px 15px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters[data-case-study-filters] button:hover,
.portfolio #portfolio-flters[data-case-study-filters] button.filter-active,
.portfolio #portfolio-flters[data-case-study-filters] button:focus-visible {
  color: #2c83db;
}

.portfolio #portfolio-flters[data-case-study-filters] button:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 3px;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/*------*/
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.8);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 500;    
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 5px;
  
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #67b0d1 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 0px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*-----------DROPDOWN-----------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul { list-style-type: none; }

a {
  color: #000;
  text-decoration: none;
}


/*--------------------COLUMNS--------------------*/

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
}


/*----------------GRID SECTION----------------*/

.grid {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}
.grid > [class*=column-] {
  display: block;
}

.first {
  order: -1;
}

.last {
  order: 12;
}

.align-top {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-bottom {
  align-items: end;
}

.column-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.column-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.column-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.column-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.column-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.column-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.column-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.column-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.column-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.column-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.column-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.column-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 48rem) {
  .column-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .column-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .column-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .column-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .column-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .column-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .column-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .column-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .column-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .column-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .column-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .column-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 62rem) {
  .column-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .column-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .column-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .column-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .column-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .column-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .column-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .column-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .column-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .column-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .column-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .column-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 75rem) {
  .column-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .column-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .column-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .column-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .column-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .column-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .column-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .column-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .column-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .column-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .column-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .column-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@supports (display: grid) {
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  .grid > [class*=column-] {
    margin: 0;
    max-width: 100%;
  }

  .column-xs-1 {
    grid-column-start: span 1;
    grid-column-end: span 1;
  }

  .column-xs-2 {
    grid-column-start: span 2;
    grid-column-end: span 2;
  }

  .column-xs-3 {
    grid-column-start: span 3;
    grid-column-end: span 3;
  }

  .column-xs-4 {
    grid-column-start: span 4;
    grid-column-end: span 4;
  }

  .column-xs-5 {
    grid-column-start: span 5;
    grid-column-end: span 5;
  }

  .column-xs-6 {
    grid-column-start: span 6;
    grid-column-end: span 6;
  }

  .column-xs-7 {
    grid-column-start: span 7;
    grid-column-end: span 7;
  }

  .column-xs-8 {
    grid-column-start: span 8;
    grid-column-end: span 8;
  }

  .column-xs-9 {
    grid-column-start: span 9;
    grid-column-end: span 9;
  }

  .column-xs-10 {
    grid-column-start: span 10;
    grid-column-end: span 10;
  }

  .column-xs-11 {
    grid-column-start: span 11;
    grid-column-end: span 11;
  }

  .column-xs-12 {
    grid-column-start: span 12;
    grid-column-end: span 12;
  }

  @media (min-width: 48rem) {
    .column-sm-1 {
      grid-column-start: span 1;
      grid-column-end: span 1;
    }

    .column-sm-2 {
      grid-column-start: span 2;
      grid-column-end: span 2;
    }

    .column-sm-3 {
      grid-column-start: span 3;
      grid-column-end: span 3;
    }

    .column-sm-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }

    .column-sm-5 {
      grid-column-start: span 5;
      grid-column-end: span 5;
    }

    .column-sm-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }

    .column-sm-7 {
      grid-column-start: span 7;
      grid-column-end: span 7;
    }

    .column-sm-8 {
      grid-column-start: span 8;
      grid-column-end: span 8;
    }

    .column-sm-9 {
      grid-column-start: span 9;
      grid-column-end: span 9;
    }

    .column-sm-10 {
      grid-column-start: span 10;
      grid-column-end: span 10;
    }

    .column-sm-11 {
      grid-column-start: span 11;
      grid-column-end: span 11;
    }

    .column-sm-12 {
      grid-column-start: span 12;
      grid-column-end: span 12;
    }
  }
  @media (min-width: 62rem) {
    .column-md-1 {
      grid-column-start: span 1;
      grid-column-end: span 1;
    }

    .column-md-2 {
      grid-column-start: span 2;
      grid-column-end: span 2;
    }

    .column-md-3 {
      grid-column-start: span 3;
      grid-column-end: span 3;
    }

    .column-md-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }

    .column-md-5 {
      grid-column-start: span 5;
      grid-column-end: span 5;
    }

    .column-md-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }

    .column-md-7 {
      grid-column-start: span 7;
      grid-column-end: span 7;
    }

    .column-md-8 {
      grid-column-start: span 8;
      grid-column-end: span 8;
    }

    .column-md-9 {
      grid-column-start: span 9;
      grid-column-end: span 9;
    }

    .column-md-10 {
      grid-column-start: span 10;
      grid-column-end: span 10;
    }

    .column-md-11 {
      grid-column-start: span 11;
      grid-column-end: span 11;
    }

    .column-md-12 {
      grid-column-start: span 12;
      grid-column-end: span 12;
    }
  }
  @media (min-width: 75rem) {
    .column-lg-1 {
      grid-column-start: span 1;
      grid-column-end: span 1;
    }

    .column-lg-2 {
      grid-column-start: span 2;
      grid-column-end: span 2;
    }

    .column-lg-3 {
      grid-column-start: span 3;
      grid-column-end: span 3;
    }

    .column-lg-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }

    .column-lg-5 {
      grid-column-start: span 5;
      grid-column-end: span 5;
    }

    .column-lg-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }

    .column-lg-7 {
      grid-column-start: span 7;
      grid-column-end: span 7;
    }

    .column-lg-8 {
      grid-column-start: span 8;
      grid-column-end: span 8;
    }

    .column-lg-9 {
      grid-column-start: span 9;
      grid-column-end: span 9;
    }

    .column-lg-10 {
      grid-column-start: span 10;
      grid-column-end: span 10;
    }

    .column-lg-11 {
      grid-column-start: span 11;
      grid-column-end: span 11;
    }

    .column-lg-12 {
      grid-column-start: span 12;
      grid-column-end: span 12;
    }
  }
}
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

#highlight {
  color: #ea8478;
  font-size: 1.25rem;
}

.gallery {
  padding-top: 80px;
}

@media (max-width: 992px) {
  .gallery {
    padding-top: 85px;
  }
}

.gallery h5{
    text-justify: none;
}

/* Project intro panel — readable left-aligned copy on all work pages */
.proj {
  padding: 22px;
  text-align: left;
  text-align-last: left;
  margin-top: 5px;
}

.proj h5,
.proj .project-title,
.proj h1.project-title {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: left;
}

/* Light intro panels (e.g. yellow Phoenix Insurance) */
.proj.proj--light,
.proj.proj--light h5,
.proj.proj--light .project-title,
.proj.proj--light p {
  color: #000;
}

.proj.proj--light hr {
  background-color: #000;
}

.proj.proj--light .back_but {
  color: #000;
}

.proj.proj--light .controls button {
  border-color: #000;
}

.proj.proj--light .controls button a,
.proj.proj--light .controls button a i {
  color: #000;
}

.proj.proj--light .s__tooltip {
  color: #000;
}

.proj .column-xs-12 {
  margin: 0;
  padding: 0;
}

.proj p {
  text-align: left;
  text-align-last: left;
  line-height: 1.65;
  margin-bottom: 0;
  hyphens: auto;
  word-spacing: normal;
}

.proj hr {
  color: #fff;
  background-color: #fff;
  border: 0;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 0;
  width: 100%;
}

/* Intro panel is text, not a fixed image cell */
.gallery .box:has(.proj) .img-container {
  height: auto;
  min-height: 0;
  overflow: visible;
  cursor: default;
  background: #333;
}

/* Project accent token — brand colour on intro .box, grey reading surface unchanged */
.gallery .box.box--intro {
  background-color: var(--project-accent, #333);
}

.proj .project-description {
  max-width: 42ch;
}

/* Opt-in image fit — default remains cover via .img-container img */
.gallery .img-container--contain img {
  -o-object-fit: contain;
     object-fit: contain;
  object-position: center;
}

.gallery .img-container--cover img {
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center;
}

/* Publication, mockup, and screen-capture galleries — fill grid cells (crop if needed) */
.gallery.gallery--artwork .img-container:not(.img-container--contain) img {
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center;
}

.gallery.gallery--artwork .img-container:not(.img-container--contain) {
  background: #333;
}

.img-container {
  width: 100%;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  background: #333;
  line-height: 0;
}

.img-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.img-container:hover .img-content-hover {
  display: block;
}

.img-container img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
}

.img-container img:hover {
  transform: scale(1.03);
}

.gallery .box:not(:has(.proj)) .content {
  height: 100%;
}

.gallery .box:not(:has(.proj)) .img-container {
  height: 100%;
  min-height: 500px;
}

.img-content-hover {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  display: none;
  padding: 1rem;
  background: #fff;
  font-weight: 400;
  margin-top: 1.25rem;
  margin-left: -2rem;
}

.title {
  color: #2e2e2e;
  font-size: 1.5rem;
  font-weight: 700;
}

.category {
  font-size: 1rem;
  color: #787878;
}

.img-content {
  display: none;
}

@supports (display: grid) {
  .gallery .grid {
    grid-gap: 1rem;
  }
}
@media (min-width: 62rem) {
  nav ul {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  .img-container img:hover {
    transform: none;
  }

  .img-container {
    height: 100%;
  }
  .img-container:hover .img-content-hover {
    display: none;
  }

  .img-content {
    display: block;
    padding: 1rem 0;
  }
}

figure {
  margin: 0 0 ;
}

/*----------animated buttons EXAMPLE PAGE---------*/

.proj h6 {
  font-size: 10px;
  color: #fff;
  font-weight: 200;
  margin-bottom: 15px;
}

.proj .youvid {
  font-size: 16px; 
  transition: 0.5s;
  color:#fff; 
  font-weight: 500;    
}

.proj .youvid:hover{
  transition: 0.5s;
  color:#fff;    
}

.box .proj .back_but {
  position: relative;    
  border: none;
  color: white;
  padding-bottom: 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
  z-index: 10;
  font-weight: 500;
  outline: none;
  align-content: center;
  justify-content: center;    
}

.box .proj .back_but {
  background-color: transparent; 
  color: #fff; 
  font-family: 'Montserrat';
  z-index: 10;    
}

.box .proj .back_but i{
    transform: translateX(-50%);
    transition: .5s;
}

.box .proj .back_but:hover i{
  transform: translateX(calc(-50% - 8px));
} 

/*--------next project--------*/
/*.social, .social__container, .social__content {
  display: flex;
}*/
.s__content {
  position: relative;
  cursor: pointer;
}
.s__tooltip {
  opacity: 0;
  position: absolute;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 0.5rem;
  pointer-events: none;
  margin-top: -38px; 
  line-height: 1.2;    
}
.s__tooltip::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.s__content, .s__tooltip, .s__icon {
  transition: 0.3s;
}
.s__content:hover .social__icon {
  color: #fff;
}

.s__tooltip-left {
  left: 0;
  transform: translateX(-100%);
  text-align: right;  
}
.s__tooltip-left::after {
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  right: 1px;
  text-align: right;  
}
.s__content:hover .s__tooltip-left {
  opacity: 1;
  left: -1rem;
  text-align: right;    
}

.s__tooltip-right {
  right: 0;
  transform: translateX(100%);
}
.s__tooltip-right::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 1px;
}
.s__content:hover .s__tooltip-right {
  opacity: 1;
  right: -1rem;
}

/*----------------------------------*/
.controls {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  width: 16rem;
  margin-top: 30px;
  margin-bottom: 15px;    
}
.controls button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  border: 1px solid #fff;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  overflow: hidden;
}
.controls button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.controls button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
.controls button a i {
  margin: 0;
  line-height: 1;
}
.previous, .next {
  color: #fff;
  transition: opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1);    
}

.previous:hover, .next:hover {
  opacity: 1;
}

.previous:hover span {
  animation: iconRight 0.35s cubic-bezier(0.19, 1, 0.22, 1) forwards reverse;
}

.next:hover span {
  -webkit-animation: iconRight 0.35s cubic-bezier(0.19, 1, 0.22, 1) forwards;
          animation: iconRight 0.35s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0) skewY(-10deg);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0) skewY(-10deg);
  }
}
@-webkit-keyframes imageEnter {
  0% {
    opacity: 0;
    transform: scale(2.05);
  }
}
@keyframes imageEnter {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
}
@-webkit-keyframes iconLeft {
  0%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-1rem);
  }
  51% {
    opacity: 0;
    transform: translateX(1rem);
  }
}
@keyframes iconLeft {
  0%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-1rem);
  }
  51% {
    opacity: 0;
    transform: translateX(1rem);
  }
}
@-webkit-keyframes iconRight {
  0%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(1rem);
  }
  51% {
    opacity: 0;
    transform: translateX(-1rem);
  }
}
@keyframes iconRight {
  0%, 100% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(1rem);
  }
  51% {
    opacity: 0;
    transform: translateX(-1rem);
  }
}

/*------------back to home button (works section)--------------*/

.portfolio .btn {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.btn {
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: auto;
  min-height: 44px;
  min-width: 150px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn span {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  margin: 0;
  padding: 0;
  transition: color 0.4s ease;
}

.btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #151515;
  padding: 0 22px;
  text-decoration: none;
}

.btn:hover span {
  color: #151515;
}

.btn:hover .fa {
  color: #151515;
}

.btn:hover .span {
  visibility: visible;
}

.btn .fa {
  background-color: transparent;
  border-radius: 0;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.1em;
  height: auto;
  margin: 0;
  padding: 0;
  position: static;
  transition: color 0.4s ease;
  width: auto;
}


/*-------------------AUDIO (event - EU 60ANS)------------------*/
#box1{
  background-color: lightsteelblue;  
}
.container2 {   
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container2 .player {
  position: relative;
  background-color: #ffffff;
  width: 550px;
  height: 375px;
  border-radius: 3px;
  border-bottom: 6px solid #004ea7;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  z-index: 1;
}
.container2 .player:hover .mask {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 1s;
}
.container2 .player .like {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 20px;
  z-index: 15;
  font-size: 1.5em;
  vertical-align: middle;
  line-height: 38px;
  color: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.container2 .player .icon-heart {
  display: inline-block;
  font-size: 25px;      
}
.container2 .player .mask {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: all 1s;
}
.container2 .player-info {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 4;
  list-style: none;
  color: #000;
  transform: scale(1);
}
.container2 .player-info li {
  margin-bottom: 0px;
}
.container2 .player-info li:nth-child(1) {
  font-size: 1.1em;
}
.container2 .player-info li:nth-child(2) {
  font-size: 0.9em;
}
.container2 .player-info li:nth-child(3) {
  font-size: 0.7em;
}
.container2 .player .info-two {
  left: auto;
  right: 4.5%;
  z-index: 1;
  color: #000;
    position: absolute;
}
.container2 .player .info-one {
  text-align: left;
  left: 4.5%;   
}
.container2 .player .info-two li:nth-child(2) {
  float: right;
}
.container2 .player .info-two li:nth-child(3) {
  float: right;
  clear: both;
}
.container2 .player #play-button {
  box-sizing: border-box;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #077ccc;
  box-shadow: 0 8px 25px 6px rgba(0, 0, 0, 0.5);
  right: 40px;
  bottom: 90px;
  z-index: 5;
  cursor: pointer;
  transition: all 70ms;
  border: none;
}
.container2 .player #play-button:hover {
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.5);
  right: 45px;
  bottom: 95px;
  transition: all 70ms;
}
.container2 .player #play-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 52%;
  top: 50%;
  transform: translate(-48%, -50%);
  transition: all 70ms;
  color: #fff;
}
.container2 .player #play-button:hover .icon-play {
  font-size: 1.2em;
  transition: all 70ms;
}
.container2 .player #play-button .icon-cancel {
  position: absolute;
  font-size: 1.3em;
  left: 50%;
  top: 49%;    
  transform: translate(-50%, -51%);
  color: #fff;
}
.container2 .control-row {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 130px;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 3;
}
.container2 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #fff;
  left: 40px;
  bottom: 29px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.2em;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container2 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 53%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container2 .control-row .seek-field {
  bottom: 65px;
  left: 50px;
  position: absolute;
  width: 190px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-field {
  bottom: 65px;
  right: 150px;
  position: absolute;
  width: 55px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 58px;
  right: 185px;
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-icon .icon-volume-up {
  color: #000;
}
.container2 .like-active {
  color: #ef5350;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.container2 .waves-animation-one {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #077ccc;
  z-index: 3;
  left: 42.5%;
  bottom: 20%;
  transform: scale(0);
  -webkit-animation: waves-animation-one 0.25s;
          animation: waves-animation-one 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  display: none;
}
@-webkit-keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
@keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
.container2 .waves-animation-two {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #077ccc;
  z-index: 3;
  right: 40px;
  bottom: 35px;
  transform: scale(7.8);
  display: none;
  -webkit-animation: waves-animation-two 0.2s;
          animation: waves-animation-two 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
@keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
.container2 .info-active {
  -webkit-animation: info-active-animation 3s;
          animation: info-active-animation 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.37s;
          animation-delay: 0.37s;
}
@-webkit-keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
@keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
.container2 .play-active {
  -webkit-animation: play-animation 0.3s;
          animation: play-animation 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
@keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
.container2 .play-inactive {
  -webkit-animation: play-inactive 1s;
          animation: play-inactive 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
@keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"] + .thumb {
  display: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #f2f2f2;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #fff;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #fff;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-moz-range-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
  padding-top: 5px;
}
input[type="range"]::-ms-fill-lower {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-fill-upper {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0x;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: 1px;
}
input[type="range"]::-ms-tooltip {
  display: none;
}
input[type="range"]::-ms-ticks {
  display: none;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #fff;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #fff;
}

/*----------------audio reponsive---------------*/

@media (max-width:630px){

 .container2 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 35px;
  bottom: 42px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container2 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container2 .control-row .seek-field {
  bottom: 67px;
  left: 40px;
  position: absolute;
  width: 150px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-field {
  bottom: 36px;
  float: left;
  left: 120px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 28px;
  float: left;
  left: 110px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}    
}

@media (max-width:470px){
.container2 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 20px;
  bottom: 75px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container2 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
  .container2 .control-row .seek-field {
  bottom: 55px;
  left: -47px;
  position: absolute;
  width: 140px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-field {
  bottom: 26px;
  float: left;
  left: 35px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container2 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 18px;
  float: left;
  left: 25px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}     
}/*-------------------AUDIO (branding - greenfield)------------------*/
#box2{
  background-color: #b6ffba;  
}
.container9 {   
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container9 .player {
  position: relative;
  background-color: #ffffff;
  width: 550px;
  height: 375px;
  border-radius: 3px;
  border-bottom: 6px solid #2c8233;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  z-index: 1;
}
.container9 .player:hover .mask {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 1s;
}
.container9 .player .like {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 20px;
  z-index: 15;
  font-size: 1.5em;
  vertical-align: middle;
  line-height: 38px;
  color: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.container9 .player .icon-heart {
  display: inline-block;
  font-size: 25px;      
}
.container9 .player .mask {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: all 1s;
}
.container9 .player-info {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 4;
  list-style: none;
  color: #000;
  transform: scale(1);
}
.container9 .player-info li {
  margin-bottom: 0px;
}
.container9 .player-info li:nth-child(1) {
  font-size: 1.1em;
}
.container9 .player-info li:nth-child(2) {
  font-size: 0.9em;
}
.container9 .player-info li:nth-child(3) {
  font-size: 0.7em;
}
.container9 .player .info-two {
  left: auto;
  right: 4.5%;
  z-index: 1;
  color: #000;
    position: absolute;
}
.container9 .player .info-one {
  text-align: left;
  left: 4.5%;   
}
.container9 .player .info-two li:nth-child(2) {
  float: right;
}
.container9 .player .info-two li:nth-child(3) {
  float: right;
  clear: both;
}
.container9 .player #play-button {
  box-sizing: border-box;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #40a348;
  box-shadow: 0 8px 25px 6px rgba(0, 0, 0, 0.5);
  right: 40px;
  bottom: 90px;
  z-index: 5;
  cursor: pointer;
  transition: all 70ms;
  border: none;
}
.container9 .player #play-button:hover {
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.5);
  right: 45px;
  bottom: 95px;
  transition: all 70ms;
}
.container9 .player #play-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 52%;
  top: 50%;
  transform: translate(-48%, -50%);
  transition: all 70ms;
  color: #fff;
}
.container9 .player #play-button:hover .icon-play {
  font-size: 1.2em;
  transition: all 70ms;
}
.container9 .player #play-button .icon-cancel {
  position: absolute;
  font-size: 1.3em;
  left: 50%;
  top: 49%;    
  transform: translate(-50%, -51%);
  color: #fff;
}
.container9 .control-row {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 130px;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 3;
}
.container9 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #fff;
  left: 40px;
  bottom: 29px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.2em;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container9 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 53%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container9 .control-row .seek-field {
  bottom: 65px;
  left: 50px;
  position: absolute;
  width: 190px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-field {
  bottom: 65px;
  right: 150px;
  position: absolute;
  width: 55px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 58px;
  right: 185px;
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-icon .icon-volume-up {
  color: #000;
}
.container9 .like-active {
  color: #ef5350;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.container9 .waves-animation-one {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #40a348;
  z-index: 3;
  left: 42.5%;
  bottom: 20%;
  transform: scale(0);
  -webkit-animation: waves-animation-one 0.25s;
          animation: waves-animation-one 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  display: none;
}
@-webkit-keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
@keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
.container9 .waves-animation-two {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #40a348;
  z-index: 3;
  right: 40px;
  bottom: 35px;
  transform: scale(7.8);
  display: none;
  -webkit-animation: waves-animation-two 0.2s;
          animation: waves-animation-two 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
@keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
.container9 .info-active {
  -webkit-animation: info-active-animation 3s;
          animation: info-active-animation 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.37s;
          animation-delay: 0.37s;
}
@-webkit-keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
@keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
.container9 .play-active {
  -webkit-animation: play-animation 0.3s;
          animation: play-animation 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
@keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
.container9 .play-inactive {
  -webkit-animation: play-inactive 1s;
          animation: play-inactive 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
@keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"] + .thumb {
  display: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #f2f2f2;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #fff;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #fff;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-moz-range-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
  padding-top: 5px;
}
input[type="range"]::-ms-fill-lower {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-fill-upper {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0x;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: 1px;
}
input[type="range"]::-ms-tooltip {
  display: none;
}
input[type="range"]::-ms-ticks {
  display: none;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #fff;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #fff;
}

/*----------------audio reponsive---------------*/

@media (max-width:630px){

 .container9 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 35px;
  bottom: 42px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container9 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container9 .control-row .seek-field {
  bottom: 67px;
  left: 40px;
  position: absolute;
  width: 150px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-field {
  bottom: 36px;
  float: left;
  left: 120px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 28px;
  float: left;
  left: 110px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}    
}

@media (max-width:470px){
.container9 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 20px;
  bottom: 75px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container9 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
  .container9 .control-row .seek-field {
  bottom: 55px;
  left: -47px;
  position: absolute;
  width: 140px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-field {
  bottom: 26px;
  float: left;
  left: 35px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container9 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 18px;
  float: left;
  left: 25px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}     
}
/*-------------------AUDIO (branding - greenfield)------------------*/
#box3{
  background-color: #abe7ff;  
}
.container10 {   
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container10 .player {
  position: relative;
  background-color: #ffffff;
  width: 550px;
  height: 375px;
  border-radius: 3px;
  border-bottom: 6px solid #098dc1;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  z-index: 1;
}
.container10 .player:hover .mask {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 1s;
}
.container10 .player .like {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 20px;
  z-index: 15;
  font-size: 1.5em;
  vertical-align: middle;
  line-height: 38px;
  color: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.container10 .player .icon-heart {
  display: inline-block;
  font-size: 25px;      
}
.container10 .player .mask {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: all 1s;
}
.container10 .player-info {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 4;
  list-style: none;
  color: #000;
  transform: scale(1);
}
.container10 .player-info li {
  margin-bottom: 0px;
}
.container10 .player-info li:nth-child(1) {
  font-size: 1.1em;
}
.container10 .player-info li:nth-child(2) {
  font-size: 0.9em;
}
.container10 .player-info li:nth-child(3) {
  font-size: 0.7em;
}
.container10 .player .info-two {
  left: auto;
  right: 4.5%;
  z-index: 1;
  color: #000;
    position: absolute;
}
.container10 .player .info-one {
  text-align: left;
  left: 4.5%;   
}
.container10 .player .info-two li:nth-child(2) {
  float: right;
}
.container10 .player .info-two li:nth-child(3) {
  float: right;
  clear: both;
}
.container10 .player #play-button {
  box-sizing: border-box;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #00adf1;
  box-shadow: 0 8px 25px 6px rgba(0, 0, 0, 0.5);
  right: 40px;
  bottom: 90px;
  z-index: 5;
  cursor: pointer;
  transition: all 70ms;
  border: none;
}
.container10 .player #play-button:hover {
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.5);
  right: 45px;
  bottom: 95px;
  transition: all 70ms;
}
.container10 .player #play-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 52%;
  top: 50%;
  transform: translate(-48%, -50%);
  transition: all 70ms;
  color: #fff;
}
.container10 .player #play-button:hover .icon-play {
  font-size: 1.2em;
  transition: all 70ms;
}
.container10 .player #play-button .icon-cancel {
  position: absolute;
  font-size: 1.3em;
  left: 50%;
  top: 49%;    
  transform: translate(-50%, -51%);
  color: #fff;
}
.container10 .control-row {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 130px;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 3;
}
.container10 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #fff;
  left: 40px;
  bottom: 29px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.2em;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container10 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 53%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container10 .control-row .seek-field {
  bottom: 65px;
  left: 50px;
  position: absolute;
  width: 190px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-field {
  bottom: 65px;
  right: 150px;
  position: absolute;
  width: 55px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 58px;
  right: 185px;
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-icon .icon-volume-up {
  color: #000;
}
.container10 .like-active {
  color: #ef5350;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.container10 .waves-animation-one {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #00adf1;
  z-index: 3;
  left: 42.5%;
  bottom: 20%;
  transform: scale(0);
  -webkit-animation: waves-animation-one 0.25s;
          animation: waves-animation-one 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  display: none;
}
@-webkit-keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
@keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
.container10 .waves-animation-two {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #40a348;
  z-index: 3;
  right: 40px;
  bottom: 35px;
  transform: scale(7.8);
  display: none;
  -webkit-animation: waves-animation-two 0.2s;
          animation: waves-animation-two 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
@keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
.container10 .info-active {
  -webkit-animation: info-active-animation 3s;
          animation: info-active-animation 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.37s;
          animation-delay: 0.37s;
}
@-webkit-keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
@keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
.container10 .play-active {
  -webkit-animation: play-animation 0.3s;
          animation: play-animation 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
@keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
.container10 .play-inactive {
  -webkit-animation: play-inactive 1s;
          animation: play-inactive 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
@keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"] + .thumb {
  display: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #f2f2f2;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #fff;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #fff;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-moz-range-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
  padding-top: 5px;
}
input[type="range"]::-ms-fill-lower {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-fill-upper {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0x;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: 1px;
}
input[type="range"]::-ms-tooltip {
  display: none;
}
input[type="range"]::-ms-ticks {
  display: none;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #fff;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #fff;
}

/*----------------audio reponsive---------------*/

@media (max-width:630px){

 .container10 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 35px;
  bottom: 42px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container10 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container10 .control-row .seek-field {
  bottom: 67px;
  left: 40px;
  position: absolute;
  width: 150px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-field {
  bottom: 36px;
  float: left;
  left: 120px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 28px;
  float: left;
  left: 110px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}    
}

@media (max-width:470px){
.container10 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 20px;
  bottom: 75px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container10 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
  .container10 .control-row .seek-field {
  bottom: 55px;
  left: -47px;
  position: absolute;
  width: 140px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-field {
  bottom: 26px;
  float: left;
  left: 35px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container10 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 18px;
  float: left;
  left: 25px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}     
}
/*-------------------AUDIO (branding - total)------------------*/
#box4{
  background-color: #ffd0d2;  
}
.container11 {   
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container11 .player {
  position: relative;
  background-color: #ffffff;
  width: 550px;
  height: 375px;
  border-radius: 3px;
  border-bottom: 6px solid #ca0f17;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  z-index: 1;
}
.container11 .player:hover .mask {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 1s;
}
.container11 .player .like {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 20px;
  z-index: 15;
  font-size: 1.5em;
  vertical-align: middle;
  line-height: 38px;
  color: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.container11 .player .icon-heart {
  display: inline-block;
  font-size: 25px;      
}
.container11 .player .mask {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: all 1s;
}
.container11 .player-info {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 4;
  list-style: none;
  color: #000;
  transform: scale(1);
}
.container11 .player-info li {
  margin-bottom: 0px;
}
.container11 .player-info li:nth-child(1) {
  font-size: 1.1em;
}
.container11 .player-info li:nth-child(2) {
  font-size: 0.9em;
}
.container11 .player-info li:nth-child(3) {
  font-size: 0.7em;
}
.container11 .player .info-two {
  left: auto;
  right: 4.5%;
  z-index: 1;
  color: #000;
    position: absolute;
}
.container11 .player .info-one {
  text-align: left;
  left: 4.5%;   
}
.container11 .player .info-two li:nth-child(2) {
  float: right;
}
.container11 .player .info-two li:nth-child(3) {
  float: right;
  clear: both;
}
.container11 .player #play-button {
  box-sizing: border-box;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e21f27;
  box-shadow: 0 8px 25px 6px rgba(0, 0, 0, 0.5);
  right: 40px;
  bottom: 90px;
  z-index: 5;
  cursor: pointer;
  transition: all 70ms;
  border: none;
}
.container11 .player #play-button:hover {
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.5);
  right: 45px;
  bottom: 95px;
  transition: all 70ms;
}
.container11 .player #play-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 52%;
  top: 50%;
  transform: translate(-48%, -50%);
  transition: all 70ms;
  color: #fff;
}
.container11 .player #play-button:hover .icon-play {
  font-size: 1.2em;
  transition: all 70ms;
}
.container11 .player #play-button .icon-cancel {
  position: absolute;
  font-size: 1.3em;
  left: 50%;
  top: 49%;    
  transform: translate(-50%, -51%);
  color: #fff;
}
.container11 .control-row {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 130px;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 3;
}
.container11 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #fff;
  left: 40px;
  bottom: 29px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.2em;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container11 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.2em;
  left: 53%;
  top: 48%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container11 .control-row .seek-field {
  bottom: 65px;
  left: 50px;
  position: absolute;
  width: 190px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-field {
  bottom: 65px;
  right: 150px;
  position: absolute;
  width: 55px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 58px;
  right: 185px;
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-icon .icon-volume-up {
  color: #000;
}
.container11 .like-active {
  color: #ef5350;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-animation {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.container11 .waves-animation-one {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e21f27;
  z-index: 3;
  left: 42.5%;
  bottom: 20%;
  transform: scale(0);
  -webkit-animation: waves-animation-one 0.25s;
          animation: waves-animation-one 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  display: none;
}
@-webkit-keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
@keyframes waves-animation-one {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(7.8);
  }
  100% {
    transform: scale(7.8);
  }
}
.container11 .waves-animation-two {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e21f27;
  z-index: 3;
  right: 40px;
  bottom: 35px;
  transform: scale(7.8);
  display: none;
  -webkit-animation: waves-animation-two 0.2s;
          animation: waves-animation-two 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
@keyframes waves-animation-two {
  to {
    transform: scale(0);
  }
}
.container11 .info-active {
  -webkit-animation: info-active-animation 3s;
          animation: info-active-animation 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.37s;
          animation-delay: 0.37s;
}
@-webkit-keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
@keyframes info-active-animation {
  to {
    bottom: 56.5%;
  }
}
.container11 .play-active {
  -webkit-animation: play-animation 0.3s;
          animation: play-animation 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
@keyframes play-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  98% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px);
  }
  99% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(-200px, 65px) scale(0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translate(0, 65px) scale(1);
  }
}
.container11 .play-inactive {
  -webkit-animation: play-inactive 1s;
          animation: play-inactive 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
@keyframes play-inactive {
  from {
    transform: translate(0, 65px);
  }
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"] + .thumb {
  display: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #f2f2f2;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #fff;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  background: #fff;
  border-radius: 0;
  border: 0px solid #000101;
}
input[type="range"]::-moz-range-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
  padding-top: 5px;
}
input[type="range"]::-ms-fill-lower {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-fill-upper {
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0x;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
}
input[type="range"]::-ms-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px transparent;
  border: 0px solid transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: 1px;
}
input[type="range"]::-ms-tooltip {
  display: none;
}
input[type="range"]::-ms-ticks {
  display: none;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #fff;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #fff;
}

/*----------------audio reponsive---------------*/

@media (max-width:630px){

 .container11 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 35px;
  bottom: 42px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container11 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 1.1em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container11 .control-row .seek-field {
  bottom: 67px;
  left: 40px;
  position: absolute;
  width: 150px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-field {
  bottom: 36px;
  float: left;
  left: 120px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 28px;
  float: left;
  left: 110px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}    
}

@media (max-width:470px){
.container11 .control-row #pause-button {
  box-sizing: border-box;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f2f2f2;
  left: 20px;
  bottom: 75px;
  z-index: 5;
  cursor: pointer;
  border: none;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row #pause-button .icon-pause {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
.container11 .control-row #pause-button .icon-play {
  position: absolute;
  font-size: 0.9em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  color: #000;
}
  .container11 .control-row .seek-field {
  bottom: 55px;
  left: -47px;
  position: absolute;
  width: 140px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-field {
  bottom: 26px;
  float: left;
  left: 35px;    
  position: absolute;
  width: 50px;
  z-index: 5;
  transform: scale(0);
  display: none;
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.container11 .control-row .volume-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  bottom: 18px;
  float: left;
  left: 25px; 
  z-index: 5;
  font-size: 0.9em;
  display: none;
  transform: scale(0);
  -webkit-animation: scale-animation 0.4s;
          animation: scale-animation 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}     
}

/*---------------------------------------------
                 WORK SECTION
----------------------------------------------*/

/*-------------AUDIO PLAYER---------------*/


:root{
  --pink: #ff74a4;
  --violet: #9f6ea3;
  --lightblack: #515C6F;
  --white: #ffffff;
  --darkwhite: #cecaca;
  --pinkshadow: #ffcbdd;
  --lightbshadow: rgba(0,0,0,0.15);
}

.audi-o .wrapper{
  width: 350px;
  padding: 25px 30px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  background: rgba(255,255,255,0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0px 6px 15px var(--lightbshadow);
}
.audi-o .wrapper i{
  cursor: pointer;
}
.audi-o .top-bar, .progress-area .song-timer, 
.audi-o .controls1, .music-list .header, .music-list ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.audi-o .top-bar i{
  font-size: 30px;
  color: var(--lightblack);
}
.audi-o .top-bar i:first-child{
  margin-left: -7px;
}
.audi-o .top-bar span{
  font-size: 18px;
  margin-left: -3px;
  color: var(--lightblack);
}
.audi-o .img-area{
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-top: 0px;
  border-radius: 15px;
  box-shadow: 0px 6px 12px var(--lightbshadow);
}
.audi-o .img-area img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.audi-o .song-details{
  text-align: center;
  margin: 30px 0;
}
.audi-o .song-details p{
  color: #fff;
  margin: 0 0 8px;
}
.audi-o .song-details .name{
  font-size: 15px;
  line-height: 1.4;
}
.audi-o .song-details .artist{
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
  margin-bottom: 0;
}
.audi-o .wrapper.playlist-open .song-details{
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}
.audi-o .progress-area{
  height: 4px;
  width: 100%;
  border-radius: 50px;
  background: #999;
  cursor: pointer;
}
.audi-o .progress-area .progress-bar{
  height: inherit;
  width: 0%;
  position: relative;
  border-radius: inherit;
  background: #fff;
}
.audi-o .progress-bar::before{
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  top: 50%;
  right: -5px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  background: inherit;
  transition: opacity 0.2s ease;
}
.audi-o .progress-bar::before{
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0px 0px 9px #777;
}
.audi-o .progress-area .song-timer{
  margin-top: 2px;
}
.audi-o .song-timer span{
  font-size: 12px;
  color: #fff;
}
.audi-o .controls1{
  margin: 30px 0 5px 0;
}
.audi-o .controls1 i{
  font-size: 28px;
  user-select: none;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.audi-o .controls1 i:nth-child(2),
.audi-o .controls1 i:nth-child(4){
  font-size: 25px;
}
.audi-o .controls1 #prev{
  margin-right: 3px;
}
.audi-o .controls1 #next{
  margin-left: 3px;
}
.audi-o .controls1 .play-pause{
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  
}
.audi-o .play-pause::before{
  position: absolute;
  content: "";
  height: 43px;
  width: 43px;
  border-radius: inherit;
  
}
.audi-o .play-pause i{
  height: 43px;
  font-size: 43px;
  width: 43px;
  line-height: 43px;
  text-align: center;
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
}

.audi-o .music-list{
  position: absolute;
  background: var(--white);
  width: 100%;
  left: 0;
  bottom: 0%;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0px -5px 10px rgba(0,0,0,0.1);
  transition: all 0.15s ease-out;
}
.audi-o .music-list.show{
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}
.audi-o .header .row{
  display: flex;
  align-items: center;
  font-size: 19px;
  color: var(--lightblack);
}
.audi-o .header .row i{
  cursor: default;
}
.audi-o .header .row span{
  margin-left: 5px;
}
.audi-o .header #close{
  font-size: 22px;
  color: var(--lightblack);
}
.audi-o .music-list ul{
  margin: 0px 0;
  max-height: 260px;
  overflow: auto;
  margin-left: 5px;     
}
.audi-o .music-list ul::-webkit-scrollbar{
  width: 0px;
  height: 0px;    
}
.audi-o .music-list ul li{
  list-style: none;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 0px;
  color: var(--lightblack);
  border-bottom: 0px solid #E5E5E5;
  margin-left: 10px;
  gap: 8px;
}
.audi-o .music-list ul li:last-child{
  border-bottom: 0px;
}
.audi-o .music-list ul li .track-row{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  margin: 0;
}
.audi-o .music-list ul li .track-row span{
  font-size: 10px;
  margin-left: 0;
  line-height: 1.4;
}
.audi-o .music-list ul li .track-row p{
  opacity: 0.9;
  font-size: 10px;
  margin: 0;
  line-height: 1.4;
}
.audi-o ul li .audio-duration{
  font-size: 14px;
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}
.audi-o ul li.playing{
  pointer-events: none;
  color: var(--violet);
}

/* Work-page radio spot players — label/duration spacing + artwork centering */
.container2 .player,
.container9 .player,
.container10 .player,
.container11 .player,
.containeR2 .player {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.container2 .player .player-info.info-one,
.container9 .player .player-info.info-one,
.container10 .player .player-info.info-one,
.container11 .player .player-info.info-one,
.containeR2 .player .player-info.info-one {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
  margin: 0;
  bottom: 12px;
  max-width: calc(100% - 130px);
}

.container2 .player .player-info.info-one li,
.container9 .player .player-info.info-one li,
.container10 .player .player-info.info-one li,
.container11 .player .player-info.info-one li,
.containeR2 .player .player-info.info-one li {
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
}

/*-----------------POPUP-----------------*/
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    z-index: 4;
}

/* Inner */
.popup-inner {
    max-width:350px;
    width:90%;
    padding:0px;
    position:absolute;
    top:54%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:0px;
    border-radius: 15px;
}
 
/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(255,255,255,255.8);
    font-family:Arial, Sans-Serif;
    font-size:20px;
    text-align:center;
    line-height:100%;
    color:#000255;
    text-decoration: none;
}
 
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(255,255,255,1);
    text-decoration:none;
}

/* Audiovisual service page radio player */
.audiovisual-radio-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 2.25rem auto 0;
  padding: 1.25rem 1.4rem;
  background: #155e75;
  color: #fff;
}

.audiovisual-radio-showcase__copy {
  max-width: 680px;
}

.audiovisual-radio-showcase__eyebrow,
.audiovisual-radio-showcase__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.audiovisual-radio-showcase__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audiovisual-radio-showcase h2 {
  margin: 0.3rem 0 0.35rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.audiovisual-radio-showcase__button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  color: #155e75;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.audiovisual-radio-showcase__button:hover,
.audiovisual-radio-showcase__button:focus {
  background: #111827;
  color: #fff;
}

.audiovisual-player-popup,
.popup[data-popup="popup-1"] {
  z-index: 10000;
}

.popup[data-popup="popup-1"] .popup-inner {
  max-width: min(390px, calc(100vw - 30px));
}

.popup[data-popup="popup-1"] .popup-scroll {
  max-height: calc(100vh - 5rem);
  overflow: auto;
  border-radius: 15px;
}

.popup[data-popup="popup-1"] .popup-inner {
  max-width: 360px;
  width: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.popup[data-popup="popup-1"] .audi-o .wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.popup[data-popup="popup-1"] .audi-o .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.popup[data-popup="popup-1"] .audi-o .top-bar span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.popup[data-popup="popup-1"] .audi-o .top-bar a {
  color: #2c83db;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.popup[data-popup="popup-1"] .audi-o .top-bar a:hover {
  color: #fff;
}

.popup[data-popup="popup-1"] .audi-o .img-area {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.popup[data-popup="popup-1"] .audi-o .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.popup[data-popup="popup-1"] .audi-o .song-details {
  text-align: center;
  margin: 20px 0;
}

.popup[data-popup="popup-1"] .audi-o .song-details .name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.popup[data-popup="popup-1"] .audi-o .song-details .artist {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.popup[data-popup="popup-1"] .audi-o .progress-area {
  height: 6px;
  width: 100%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
}

.popup[data-popup="popup-1"] .audi-o .progress-area .progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: #2c83db;
  position: relative;
}

.popup[data-popup="popup-1"] .audi-o .progress-bar::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.popup[data-popup="popup-1"] .audi-o .progress-area .song-timer {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.popup[data-popup="popup-1"] .audi-o .song-timer span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
}

.popup[data-popup="popup-1"] .audi-o .controls1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 0 10px;
}

.popup[data-popup="popup-1"] .audi-o .controls1 i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.1s ease;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}

.popup[data-popup="popup-1"] .audi-o .controls1 i:hover {
  color: #2c83db;
  transform: scale(1.1);
}

.popup[data-popup="popup-1"] .audi-o .controls1 i:active {
  transform: scale(0.95);
}

.popup[data-popup="popup-1"] .audi-o .controls1 .play-pause {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2c83db;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 131, 219, 0.4);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  position: relative;
}

.popup[data-popup="popup-1"] .audi-o .controls1 .play-pause::before {
  display: none;
}

.popup[data-popup="popup-1"] .audi-o .controls1 .play-pause i {
  position: static;
  font-size: 2.2rem;
  color: #fff;
  width: auto;
  height: auto;
  line-height: 1;
  text-align: center;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}

.popup[data-popup="popup-1"] .audi-o .controls1 .play-pause:hover {
  background: #3b92ec;
  box-shadow: 0 6px 16px rgba(44, 131, 219, 0.6);
  transform: scale(1.05);
}

.popup[data-popup="popup-1"] .audi-o .controls1 .play-pause:active {
  transform: scale(0.95);
}

.popup[data-popup="popup-1"] .audi-o .music-list {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 20px 20px;
  max-height: 76%;
}

.popup[data-popup="popup-1"] .audi-o .music-list .header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.popup[data-popup="popup-1"] .audi-o .music-list .header span {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.popup[data-popup="popup-1"] .audi-o .music-list .header i {
  color: rgba(255, 255, 255, 0.7);
}

.popup[data-popup="popup-1"] .audi-o .music-list ul {
  max-height: 290px;
}

.popup[data-popup="popup-1"] .audi-o .music-list ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
}

.popup[data-popup="popup-1"] .audi-o .music-list ul li .track-row span {
  color: #fff;
  font-size: 0.85rem;
}

.popup[data-popup="popup-1"] .audi-o .music-list ul li .track-row p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.popup[data-popup="popup-1"] .audi-o .music-list ul li.playing {
  color: #2c83db;
}

.popup[data-popup="popup-1"] .audi-o .music-list ul li.playing .track-row span {
  color: #2c83db;
}

.popup[data-popup="popup-1"] .popup-close {
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: none;
  top: 12px;
  right: 12px;
  z-index: 10;
  transition: background-color 0.2s, color 0.2s;
}

.popup[data-popup="popup-1"] .popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.gallery-media-card-link {
  position: relative;
  text-decoration: none;
}

.gallery-media-card-link__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: #fff;
  color: #111827;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-media-card-link:hover .gallery-media-card-link__cta,
.gallery-media-card-link:focus .gallery-media-card-link__cta {
  background: #111827;
  color: #fff;
}

.service-card__button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.audio-modal {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.24s ease;
  z-index: 10000;
}

.audio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.audio-modal__overlay {
  background: rgba(0, 0, 0, 0.68);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.audio-modal__wrapper {
  position: relative;
  max-width: 520px;
  width: min(100%, 520px);
  z-index: 1;
  margin: 24px;
}

.audio-modal__dialog {
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  color: #fff;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  z-index: 1;
}

.audio-modal.is-open .audio-modal__dialog {
  transform: translateY(0) scale(1);
}

.audio-modal__close-outside {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 32px;
  width: 32px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 0;
  top: -44px;
  z-index: 20;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.audio-modal__close-outside:hover,
.audio-modal__close-outside:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.audio-modal__media {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-modal__media img {
  display: block;
  max-height: 100%;
  max-width: min(72%, 260px);
  object-fit: contain;
  width: auto;
}

.audio-modal__content {
  padding: 28px;
}

.audio-modal__eyebrow {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.audio-modal__content h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
}

.audio-modal__content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 22px;
}

.audio-modal__player {
  display: none;
}

.audio-modal__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 4vw, 24px);
  margin-top: 14px;
}

.audio-modal__control {
  align-items: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.audio-modal__control svg {
  display: block;
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.audio-modal__control:hover,
.audio-modal__control:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: none;
}

.audio-modal__control--play-pause {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #0f172a;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.audio-modal__control--play-pause:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

.audio-modal__control--play-pause svg {
  height: 24px;
  width: 24px;
}

/* Loop button active state */
.audio-modal__control.is-active {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  border: none;
}

/* Timeline Custom Styles */
.audio-timeline-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.audio-timeline {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}

.audio-timeline__progress {
  height: 100%;
  background: #dc2626;
  width: 0%;
  border-radius: 2px;
}

/* Sliding Playlist Overlay */
.audio-modal__playlist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.audio-modal__playlist-overlay.is-open {
  transform: translateY(0);
}

.audio-modal__playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.audio-modal__playlist-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audio-playlist-close-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  transition: color 0.2s ease;
}

.audio-playlist-close-btn:hover {
  color: #fff;
}

.audio-modal__track-list {
  display: grid;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.audio-modal__track {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  column-gap: 12px;
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 12px 14px;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
  border-radius: 8px;
}

.audio-modal__track img {
  align-self: center;
  background: #fff;
  display: block;
  grid-row: span 2;
  height: 46px;
  object-fit: contain;
  padding: 6px;
  width: 46px;
  border-radius: 4px;
}

.audio-modal__track span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.audio-modal__track small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.25;
}

.audio-modal__track:hover,
.audio-modal__track:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.audio-modal__track.is-active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.audio-modal__track.is-active img {
  background: #fff;
}

.audio-modal__track.is-active small {
  color: rgba(255, 255, 255, 0.7);
}

/* Floating equalizing widget */
.radio-floating-widget {
  position: fixed;
  top: 120px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.radio-floating-widget__bubble {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  margin-right: 12px;
}

.radio-floating-widget__bubble::after {
  display: none;
}

.radio-floating-widget__button {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.radio-floating-widget:hover .radio-floating-widget__bubble {
  transform: translateX(-4px);
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.radio-floating-widget:hover .radio-floating-widget__button {
  background: rgba(220, 38, 38, 0.85);
  border-color: rgba(220, 38, 38, 0.85);
  transform: scale(1.05);
}

/* Soundwave SVG anim styles */
.radio-floating-icon-svg {
  width: 38px;
  height: 38px;
  color: #fff;
}

/* Only animate when audio is playing */
.radio-floating-widget.is-playing .radio-floating-icon-svg line {
  animation: bounce-line 0.8s ease-in-out infinite alternate;
  transform-origin: center;
}

.radio-floating-widget.is-playing .radio-floating-icon-svg line:nth-child(3) {
  animation-delay: 0.1s;
}

.radio-floating-widget.is-playing .radio-floating-icon-svg line:nth-child(4) {
  animation-delay: 0.35s;
}

.radio-floating-widget.is-playing .radio-floating-icon-svg line:nth-child(5) {
  animation-delay: 0.2s;
}

.radio-floating-widget.is-playing .radio-floating-icon-svg line:nth-child(6) {
  animation-delay: 0.45s;
}

.radio-floating-widget.is-playing .radio-floating-icon-svg line:nth-child(7) {
  animation-delay: 0.15s;
}

@keyframes bounce-line {
  0% {
    transform: scaleY(0.3);
  }
  100% {
    transform: scaleY(1.1);
  }
}

@media (max-width: 768px) {
  .radio-floating-widget {
    top: 90px;
    right: 16px;
  }
  .radio-floating-widget__bubble {
    display: none;
  }
  .audio-modal__close-outside {
    right: 12px;
  }
  .audio-modal__wrapper {
    margin: 12px;
  }
}

body.audio-modal-open {
  overflow: hidden;
}

.media-detail-card {
  min-height: 0;
}

.media-detail-player {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #090909;
}

.media-detail-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

@media (max-width: 767px) {
  .audiovisual-radio-showcase {
    align-items: stretch;
    flex-direction: column;
  }

  .audiovisual-radio-showcase__button {
    width: 100%;
  }

  .popup[data-popup="popup-1"] .audi-o .wrapper {
    padding: 20px;
  }

  .popup[data-popup="popup-1"] .audi-o .img-area {
    height: 170px;
  }

  .popup[data-popup="popup-1"] .audi-o .controls1 {
    margin-top: 24px;
  }

  .popup[data-popup="popup-1"] .audi-o .music-list {
    padding: 15px;
  }

  .popup[data-popup="popup-1"] .audi-o .music-list ul {
    max-height: 230px;
    margin-left: 0;
  }

  .popup[data-popup="popup-1"] .audi-o .music-list ul li {
    margin-left: 0;
  }

  .audio-modal {
    padding: 16px;
  }

  .audio-modal__content {
    padding: 22px;
  }

  .audio-modal__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audio-modal__track-list {
    max-height: 260px;
  }
}

/*--------------------------------------------------------------
# Accessibility — non-visual helpers (no layout changes)
--------------------------------------------------------------*/
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #151515;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 15px;
  top: 15px;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

#team .card:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

.accordion .link:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

.velo-slides-nav a:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

.social-links a:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

.containerrr:focus:not(:focus-visible) {
  outline: none;
}

.containerrr:focus-visible {
  outline: 2px solid #2c83db;
  outline-offset: 2px;
}

/* Horizontal scrolling categories for any constrained viewport */
@media (max-width: 1199.98px) {
  .portfolio #portfolio-flters {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 10px 16px !important;
    margin: 15px 15px !important;
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    justify-content: flex-start !important;
    border-radius: 0 !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    mask-image: linear-gradient(to right, #000 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
  }

  .portfolio #portfolio-flters::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Opera */
  }

  .portfolio #portfolio-flters a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .portfolio #portfolio-flters li {
    display: block !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    border-radius: 0 !important;
    background: #f4f4f4 !important;
    border: 1px solid #e0e0e0 !important;
    color: #111 !important;
  }

  .portfolio #portfolio-flters a li.filter-active {
    background: #2c83db !important;
    color: #fff !important;
    border-color: #2c83db !important;
  }

  .portfolio #portfolio-flters[data-case-study-filters] li {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .portfolio #portfolio-flters[data-case-study-filters] button {
    display: block !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    border-radius: 0 !important;
    background: #f4f4f4 !important;
    border: 1px solid #e0e0e0 !important;
    color: #111 !important;
  }

  .portfolio #portfolio-flters[data-case-study-filters] button.filter-active {
    background: #2c83db !important;
    color: #fff !important;
    border-color: #2c83db !important;
  }
}

/* Next/Prev Service Navigation — compact service switcher */
.next-service-banner {
  width: 100%;
  padding: 14px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #333;
  overflow: visible;
}

.next-service-banner__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  overflow: visible;
}

.next-service-banner__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 0;
  padding: 0.45rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #3f3f3f;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  overflow: visible;
  white-space: normal;
  gap: 0.5rem;
}

.next-service-banner__link--prev {
  align-items: center;
  padding-right: 1rem;
  margin-bottom: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  text-align: left;
}

.next-service-banner__link--next {
  align-items: center;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: right;
}

.next-service-banner__direction {
  display: none;
}

.next-service-banner__title {
  display: block;
  max-width: 100%;
  margin-top: 0;
  overflow: visible;
  overflow-wrap: break-word;
  color: inherit;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  line-height: 1.35;
  text-overflow: clip;
  white-space: normal;
}

.next-service-banner__link--prev::before,
.next-service-banner__link--next::after {
  flex: 0 0 auto;
  color: #8a1538;
  font-size: 1rem;
  line-height: 1;
}

.next-service-banner__link--prev::before {
  content: "\2190";
}

.next-service-banner__link--next::after {
  content: "\2192";
}

.next-service-banner__link:hover,
.next-service-banner__link:focus {
  background: transparent;
  color: #8a1538;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transform: none;
}

@media (min-width: 768px) {
  .next-service-banner {
    padding: 14px 0;
  }

  .next-service-banner__inner {
    align-items: center;
    flex-direction: row;
  }

  .next-service-banner__link {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .next-service-banner__link--prev {
    padding-right: 1rem;
    padding-bottom: 0;
    margin-bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 0;
  }

  .next-service-banner__link--next {
    padding-left: 1rem;
  }
}

/* Navigation Submenu and Hub Button Styling (UX Journey Fixes) */

/* Service Switching Submenu Utility Bar */
.service-submenu-bar {
  background: #fdfdfd;
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
  margin-bottom: 30px;
}
.service-submenu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.service-submenu-nav .submenu-item {
  color: #555555;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}
.service-submenu-nav .submenu-item:hover,
.service-submenu-nav .submenu-item.active {
  color: #000000;
  border-color: #000000;
}

/* Explore All Case Studies button on Homepage */
.btn-explore-hub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  border: 2px solid #000;
  padding: 12px 30px;
  border-radius: 0;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
}
.btn-explore-hub:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Footer Hub Link */
.footer-hub-link {
  margin: 20px 0;
  text-align: center;
}
.btn-hub-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 0;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-hub-link:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Lightbox transparency overrides to prevent white space/box around images */
.vbox-content,
img.vbox-figlio {
  background: transparent !important;
  background-color: transparent !important;
}


.media-detail-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
