* {
    cursor: none !important;
}

body {
    color: #000;
    transition: background-color 1000ms linear;
}

/* globals start */
.bg-fire {
    background-color: #e34f1a;
}

.bg-yellow {
    background-color: #E9AE4D;
}

.bg-blue {
    background-color: #6695D8;
}

.bg-green {
    background-color: #55A46C;
}

/* spaces start */
.pt-44 {
    padding-top: 44px;
}

.pb-75 {
    padding-bottom: 75px !important;
}
.mb-13 {
    margin-bottom: 13px!important;
}
.mb-80 {
    margin-bottom: 80px;
}

.px-1-25 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* fonts start */
.f-poppins {
    font-family: 'Poppins', sans-serif;
}
.f-america {
    font-family: 'GT America';
}

.fs-50 {
    font-size: 50px;
}

.fs-24 {
    font-size: 24px;
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 500;
}

/* header start */
.logo-top {
    position: absolute;
    top: 11%;
    right: -14%;
    font-size: 3vw;
}

.header h1,
.header h2 {
    font-size: 7.8vw;
    font-family: 'HelveticaNeue';
    font-weight: 500;
}
.header h2 {
    position: relative;
    white-space: nowrap;
}
.header h2 a:after {
    content:"";
    position:absolute;
    bottom:5%;
    left:0;
    right:0;
    border-bottom: 3px solid transparent;
    transition: border-color .6s;
}
.header h2 a:hover:after {
   border-color:#000;
}
.header p {
    font-size: 3vw;
}

.top-player button {
    z-index: 1;
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    animation: rotating 20s linear infinite;
}

.btnPlay {
    min-width: 24px;
    min-height: 24px;
    background-image: url(../../images/play-btn.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.top-player.active .btnPlay {
    background-image: url(../../images/pause-icon.svg);
}

.volume-wrapper {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: .3s;
}

.top-player.active .volume-wrapper {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* header end */

/* hero start */
.hero h2 {
    font-family: 'HelveticaNeue';
    font-size: 7vw;
    font-weight: bold;
}

.type {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.animate__text {
    -webkit-animation-name: typing;
    animation-name: typing
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.bars-wrapper {
    position: absolute;
    bottom: -2px;
    right: 0;
    display: flex;
    transition: all .8s;
    opacity: 0;
    visibility: hidden;
}

.hero>div.active .bars-wrapper {
    visibility: visible;
    opacity: 1;
}


.bar-column {
    width: 22px;
    margin: 0 0 0 18px;
    padding: 0;
    position: relative;
    list-style-type: none;
    background: transparent;
    height: 100px;
}

.bar-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    border: 2px solid;
}

.bg-fire .bar-overlay {
    border-bottom-color: #d3582f;
}

.bg-yellow .bar-overlay {
    border-bottom-color: #E9AE4D;
}

.bg-blue .bar-overlay {
    border-bottom-color: #6695D8;
}

.bg-green .bar-overlay {
    border-bottom-color: #55A46C;
}

.bar-column:nth-child(1) .bar-overlay {
    animation: bar-height 2s 1s ease-out alternate infinite;
}

.bar-column:nth-child(2) .bar-overlay {
    animation: bar-height 2s 0.5s ease-out alternate infinite;
}

.bar-column:nth-child(3) .bar-overlay {
    animation: bar-height 2s 1.5s ease-out alternate infinite;
}

.bar-column:nth-child(4) .bar-overlay {
    animation: bar-height 2s 0.25s ease-out alternate infinite;
}

.bar-column:nth-child(5) .bar-overlay {
    animation: bar-height 2s 2s ease-out alternate infinite;
}

@keyframes bar-height {
    0% {
        height: 14px;
    }

    10% {
        height: 20px;
    }

    20% {
        height: 28px;
    }

    30% {
        height: 16px;
    }

    40% {
        height: 42px;
    }

    50% {
        height: 54px;
    }

    60% {
        height: 42px;
    }

    70% {
        height: 30px;
    }

    80% {
        height: 28px;
    }

    90% {
        height: 20px;
    }

    100% {
        height: 14px;
    }
}

/* hero end */

/* features start */
.features h4 {
    letter-spacing: -0.01em;
}

/* works start */

.works-header {
    padding: 1rem 1.25rem
}

.form-range::-webkit-slider-runnable-track {
    background-color: #000;
    height: 1px;
}

.form-range::-webkit-slider-thumb {
    width: 9px;
    height: 9px;
    background-color: #000;
    transform: translateY(calc(-50% + .5px));
    margin-top: unset;
    transition: .3s;
    box-shadow: none !important;
}

.form-range::-webkit-slider-thumb:hover {
    width: 14px;
    height: 14px;
}

.form-range::-webkit-slider-thumb:active {
    background-color: #000;
    border-color: #000;
}

.equaliser-container-xxl {
    display: none!important;
    transition:.5s;
    opacity: 0;
    visibility: hidden;
}
[aria-expanded="true"] .equaliser-container-xxl {
    opacity: 1;
    visibility: visible;
}
.equaliser-column {
    width: 3px;
    padding: 0;
    height: 20px;
    position: relative;
    list-style-type: none;
    margin-bottom: 0;
    margin-right: 1px;
}

.led-mask {
    display: block;
    margin: 0;
    position: relative;
}






.colour-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #000000;
}

.equaliser-column:nth-child(1) .colour-bar {
    animation: color-bar 2s 1s ease-out alternate infinite;
}

.equaliser-column:nth-child(2) .colour-bar {
    animation: color-bar 2s 0.5s ease-out alternate infinite;
}

.equaliser-column:nth-child(3) .colour-bar {
    animation: color-bar 2s 1.5s ease-out alternate infinite;
}

.equaliser-column:nth-child(4) .colour-bar {
    animation: color-bar 2s 0.25s ease-out alternate infinite;
}

.equaliser-column:nth-child(5) .colour-bar {
    animation: color-bar 2s 2s ease-out alternate infinite;
}

.equaliser-column .colour-bar.pause {
    animation-play-state: paused;
}

@keyframes color-bar {
    0% {
        height: 1px;
        background: #000000;
    }

    20% {
        height: 4px;
        background: #000000;
    }

    30% {
        height: 10px;
        background: #000000;
    }

    0% {
        height: 12px;
        background: #000000;
    }

    40% {
        height: 18px;
        background: #000000;
    }

    50% {
        height: 19px;
        background: #000000;
    }
}

.video_wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.works .accordion-body {
    padding-bottom: 24px;
}

/* video wrapper */
.video_wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video_wrapper iframe,
.video_wrapper .vimeo-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* works end */

.shine {
    width: 120.36px;
    height: 1086px;
    background: #DAD7D7;
    opacity: 0.2;
    filter: blur(100px);
    transform: rotate(-38.09deg);
    position: absolute;
    left: 48%;
}

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

/* splitting start */
.animate__animated .char {
    animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
    animation-delay: calc(10ms * var(--char-index));
}
@keyframes texteffect {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

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

/* splitting end */

/* footer start */
.footer h2 {
    font-family: 'HelveticaNeue';
    font-weight: bold;
    font-size:calc(5vw + 6px);
}
.social li {
    position: relative;
}
.social li span {
    position: absolute;
    top: -4%;
    font-weight: 600;
    right: -18px;
}
.social .list-inline-item:not(:last-child){
    margin-right: 25px;
}
.copyright h4 {
    font-family: 'HelveticaNeue';
    font-weight: 500;
    line-height: 34px;
}
.copyright-logo {
    font-size: 14px;
    position: absolute;
    top: -41%;
    right: -21%;
}
/* footer end */

#main-cursor {
    display: block;
    background-color: #000;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* 
#main-cursor.active {
    mix-blend-mode: difference;
    background-color: #fff;
}
*/

