/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
@import url("https://use.typekit.net/ser7auq.css");
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    max-width: 1920px;
    margin: auto;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
#root, #__next {
    isolation: isolate;
}

ul,
ol,
li {
    padding-left: 0;
}
/*End of CSS Reset*/
/*@media screen and (min-width: 700px) {*/
    .grid-page-wrapper {
        width: 90vw;
        max-width: 1440px;
        margin-right: auto;
        margin-left: auto;
    }

    /*.grid-page-wrapper section:not(.featured-slider) {*/
    /*    min-height: 2000px;*/
    /*}*/

    section {
        /*height: 1250px;*/
    }
    @media all and (max-width: 768px)
    {
	    .grid-page-wrapper {
		    width: 100%;
	    }
	    section {
		    height: auto;
		    overflow: hidden;
	    }
	    section > * {
		    max-width: 90%;
		    margin-right: auto;
			margin-left: auto;
	    }
    }
    .featured-slider {
        height: 100%;
    }

    .landing-banner {
        padding-top: 100px;
    }

    .link-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .link-list .section-header {
        grid-column: span 2;
    }

    .link-list .magnify-animation {
        grid-column-start: 3;
    }

    .link-list__list-wrapper {
        grid-column-start: 4;
        grid-column: span 2;
    }
    
    @media all and (max-width: 1000px)
    {
	    .link-list {
		    grid-column-gap: 1rem;
		    grid-row-gap: 1rem;
	    }
	    .link-list .magnify-animation2 {
			grid-row-start: 2;
			grid-column-start:1;
			grid-column: span 2;  
			display: none;  
		}
		.link-list__list-wrapper {
        grid-column-start: 3;
        grid-column: span 3;
        grid-row: span 2
    }
    }
/*}*/
body {
    margin: auto;
    padding: 0;
    overflow-x: hidden;
}

#container {
    position: fixed;
    touch-action: none;
    height: 100vh !important;
    z-index: -90;
    opacity: .3;
}
#stretchy {
    min-height: 400vh
}
.body {
    width:100%;
    min-height: 100vh;
    margin:0;
    padding:0;
    overflow-x: hidden;
}
.acsb-page-iframe {
    background-color: #231a52;
}
.background {
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:100vw;
    min-height: 100vh;
    overflow:hidden;
    z-index:-100;
    background-image: url('../images/jpeg/mobile_bg.jpg');
    background-position: center center;
    background-size: cover;
}
.background {
    background: linear-gradient(-45deg, #221b51, #211b45, #231a52, #211862);
    background-size: 400% 400%;
    
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.background video {
    position:absolute;
    top:-90px;
    bottom:-90px;
    left:-90px;
    right:-90px;
    width: 120vw;
    min-height: 120vh;
    object-fit: cover;
    margin:auto;
    z-index:-100;
    display: none;
    /*-o-filter: blur(90px);*/
    /*filter: blur(90px);*/
}
@media all and (min-width: 769px)
{
	.background video {
		display: block;
	}
}

.background:after {
	content: "";
	position:absolute;
    top:-90px;
    bottom:-90px;
    left:-90px;
    right:-90px;
    width: 120vw;
    min-height: 120vh;
    object-fit: cover;
    margin:auto;
    z-index:-100;
    background-color: rgba(0,0,0,.3)
}
html {
    color: white;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    /*browser font size hack for accessibility to make rem multiple of 10's eg. 1rem = 10px*/
    font-size: 62.5%;
    text-rendering: optimizeLegibility;

    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}


#cursor{
    opacity:0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255, 0.7);
    border-radius: 50px;
    z-index: 1000000;
    margin: -55px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .07s linear all;
    transition: .07s linear all;
    pointer-events: none;
    box-sizing: border-box;
}
#cursor.zoom {
    -webkit-transform: scale(2);
    transform: scale(2);
}
#pointer{
    opacity:0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    margin: -5px;
    background: #00FFFF;
    border-radius: 50px;
    z-index: 1000000;
    pointer-events: none;
}

@keyframes cursorClick{
    from,to{
        border: 1px solid rgb(255, 255, 255);
        transform: scale(1);
    }
    60%{
        border: 1px solid rgba(38, 38, 38, 0);
        transform: scale(2);
    }
    70%{
        border: 1px solid rgba(38, 38, 38, 0);
        transform: scale(1.4);
    }
}

@media all and (max-width:768px)
{
	#cursor, #pointer {visibility: hidden;}
}

@media screen and (max-width: 700px) {
    h2 {

    }

    h6 {
        font-family: "sofia-pro", Helvetica, Arial, sans-serif!important;
        color: cyan!important;
        text-transform: uppercase!important;
    }
}

h2 {
    font-size: clamp(24px, 36px, 48px);
}
h6 {
    font-size: clamp(16px, 20px, 20px);
}


section {
    padding: 100px 0;
}
@media all and (max-width:768px)
{
	section {
    	padding: 0 0 100px 0;
	}
}
/*.sticky-header {*/
/*    bottom: 0;*/
/*}*/
@media all and (max-width:1000px) {
    section:not(.featured-slider):not(.link-list):not(.landing-banner) {
        display: flex!important;
        flex-direction: column!important;
    }


    section:not(.featured-slider):not(.link-list) .section-header {
        width: 100%!important;
        /*position: fixed;*/
        /*top: 10%;*/
        /*opacity: 0;*/
    }
}

section:not(.featured-slider):not(.link-list):not(.landing-banner){
    flex-direction: row;
    display: flex;
    position: relative;
    display: grid;
    grid-template-columns:35% auto;
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
}

section:not(.featured-slider):not(.link-list) .section-header {
   /* width: 28%;*/
    z-index: 100;
    /*position: relative;*/
    /*position: fixed;*/
    /*top: 10%;*/
    /*opacity: 0;*/
}

section .section-header h2 {
	font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-size: clamp(36px, 3vw, 48px);
}
/*section.visible .section-header {*/
/*    opacity: 1;*/
/*    animation: fadeInUp 1s ease-in-out 0s forwards;*/
/*    z-index: 5;*/
/*}*/

section .section-header p {
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 18px, 20px);
    color: #E2D0FF;
    margin: 15px 0;
    line-height: 1.5;
}


section .section-header h6 {
    letter-spacing: 1px;
    font-size: 18px;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: #00FFFF;
}

/*section .section-header ul {*/
/*    display: none;*/
/*}*/
@media screen and (max-width: 1000px) {
    section .section-header ul.sortable__nav {
        /*display: none!important;*/
        position: absolute;
        height: 1px;width: 1px;opacity: 0;visibility: hidden;transform: translateX(-1000px);
    }
}

section .section-header ul {
    display: initial;
    list-style: none;
    padding-left: 0;
    font-size: clamp(18px, 1.5vw, 33px);
}


section .section-header li a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

section .section-header li a:hover, section .section-header li a:focus, section .section-header li a.active {
    color: white;
}

section .section-header li a .double-slash {
    opacity: 0;
    width: 0;
    transition-duration: .5s;
    height: 20px;
    display: inline;
}

/*section .section-header li a:hover .double-slash, section .section-header li a:focus .double-slash, */
section .section-header li a:hover .double-slash, section .section-header li a:focus .double-slash {
	width: 20px;
    margin-right: 10px;
}
section .section-header li a.active .double-slash {
    opacity: 1;
    width: 20px;
    margin-right: 10px;
}

@media all and (max-width: 768px)
{
	section .section-header ul li {
		margin-bottom: .5rem;
	}
	section .section-header p, section .section-header ul {
		font-size: 16px;
	}
}

/*section:not(.visible) .section-header {*/
/*    pointer-events: none;*/
/*}*/

.isolde-default{
    position: relative;
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: height .2s ease-out, opacity .2s ease-out .2s;
}
[data-isolde-el]{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .2s ease-out;
}

/*.bg-image {max-width: 150px}*/

.carousel {
    background: #FAFAFA;
}

.carousel-cell {
    width: 66%;
    height: 200px;
    margin-right: 10px;
    background: #8C8;
    border-radius: 5px;
    counter-increment: carousel-cell;
}

/* cell number */
.carousel-cell:before {
    display: block;
    text-align: center;
    content: counter(carousel-cell);
    line-height: 200px;
    font-size: 80px;
    color: white;
}
.hide {
    display: none
}
.show {
    display: initial;
}

.learn-more-link {
	color: #ffffff;
	text-transform: uppercase;
	font-family: "sofia-pro", Helvetica, Arial, sans-serif;
	display: flex;
	text-decoration: none;
    font-size: 1.75rem;
}
.learn-more-link img {
	margin-right: 1rem;
}


.responsive {
	display: none;
}
@media all and (max-width:700px)
{
	.non-responsive {
		display: none;
	}
	.responsive {
		display: block;
	}
	.landing-banner .fourth {
		font-size: 24px !important;
	}
}.landing-banner {
    position: relative;
    min-height: 750px;
    width: 90%;
    margin: auto;
    padding: 50px 0px 100px;
}

.landing-banner h2 {
    font-weight: 300;
    font-size: clamp(36px, 3vw, 48px);
}

.landing-banner .first span {
    /*display: block;*/
}

.landing-banner .second {
    display: inline-block;
    margin-right: 15px;
    padding-top: 0rem;
}

.landing-banner .third {
    display: inline-block;
}

.landing-banner .fourth {
    margin-top: 100px;
    font-weight: 400;

}
.landing-banner .bounce {
	display: inline-block;
}
.landing-banner .responsive  .bounce {
	display: block;
    text-align: center;
    margin: auto;
    margin-top: 50px;
    opacity: 0;
}
.landing-banner .bmc-logo {
    margin-bottom: 50px;
    transition: all .35s linear;
    opacity: 1;
}
@media all and (max-width: 700px)
{
	.landing-banner {
		width: 100%;
	}
}
@media (min-width: 700px){
    .landing-banner{
        max-height: 1050px;
        min-height: 800px;
        height: 90vh;
        padding: 100px 0;
        width: 100%;
    }
}

@media (min-width: 700px){
    .landing-banner{
        max-height: 1050px;
        min-height: 800px;
        height: 90vh;
        padding: 100px 0;
        width: 100%;
    }

    
}
.featured-slider{
    padding: 50px 0;
}

@media all and (max-width: 700px){
    
    .landing-banner h2 {
        font-weight: 300;
		font-size: clamp(20px, 5vw, 45px);
    }

    .landing-banner .first span {
        display: initial;
    }

    .landing-banner .second {
        padding-top: 0;
    }

    .landing-banner h2.fourth {
        font-size: clamp(20px, 5vw, 45px);
    }
 }


.featured-slider .slider-item a .play-big {
    box-shadow: 0px 0px 1px 1px #0000001a;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.featured-slider .slider-item a:hover .play-big {
    animation: sonarEffect 1s infinite;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(182, 21, 255, 0.22), 0 0 10px 10px #fc4298, 0 0 0 10px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(182, 21, 255, 0.22), 0 0 10px 10px #fc4298, 0 0 0 10px rgba(255,255,255,0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


.featured-slider .play-big {
    position: absolute;
    border-radius: 50%;
    height: 100px;
}

.featured-slider .play-small {
    height: 15px;
    width: 15px;
    display: inline;
    margin-right: 1rem;
    /*height: 15px;*/
    /*width: 15px;*/
    /*display: inline;*/
}

.featured-slider .dot {
    display: inline;
    margin-right: 10px;
}

.featured-slider .slider-item.right {
    flex-direction: row-reverse;
}

.slider-item .video-poster {
    position: relative;
    /*width: 90%;*/
    margin: auto;
    max-width: 373px;
    max-height: 321px;
}
:root {
	--video-width: clamp(350px, 60vw, 800px);
}

.video-poster iframe {
	width: 560px;
	height: 315px;
	width: var(--video-width);
	height: calc(var(--video-width) * .5625);
}

.video-poster-img {
	position: absolute;
	top: 0;
    left: 0;
    width: 560px;
	height: 315px;
    width: var(--video-width);
	height: calc(var(--video-width) * .5625);
    background-position: center center;
    background-size: cover;
}
.slider-item .video-poster-1 {

    transition: all .35s linear;
}


.video-detail .label {
    opacity: 0;
}

.slider-item a {
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.slider-item .video-detail {

    text-transform: uppercase;
    color: white;
    width: 90%;
    margin: auto;
}


.slider-item .video-detail__purple {
    background: rgb(110,21,255);
    background: linear-gradient(142deg, rgba(110,21,255,0.22) 33%, rgba(110,21,255,0.11) 65%, rgba(110,21,255,0.05) 100%);
    padding: 40px 40px;
    max-width: 500px;
    backdrop-filter: blur(15px);
}


.slider-item h6{
    position: relative;
    display: inline;
    font-size: 18px;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: #00FFFF;
}
.slider-item h6 .tag {
    position: absolute;
    right: -40%;
    color: #6E15FF;
    border-radius: 20px;
    padding: 3px 16px;
    top: -15px;
    font-size: 12px;
    font-weight: 700;
    background-color: white;
    letter-spacing: 2px;
    /*position: absolute;*/
    /*right: -35%;*/
    /*color: #6E15FF;*/
    /*border-radius: 20px;*/
    /*padding: 8px 14px;*/
    /*top: -15px;*/
    /*font-size: 12px;*/
    /*font-weight: 700;*/
    /*background-color: white;*/
    /*letter-spacing: 2px;*/
}

.slider-item h3{
    font-size: 26px;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 20px 0;
    /*color: white;*/
}

.slider-item .video-detail span{
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.slider-item .video-detail span.watch-text{
    /*margin-top: 1rem;*/
}

.slider-item .video-detail a {
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    display: block;
}
@media screen and (max-width: 700px) {
    .featured-slider{
        padding: 50px 0!important;
        width: 100%!important;
        margin: auto!important;
    }
    .featured-slider .section-header {
        width: 100%!important;
        margin: auto!important;
        margin-bottom: 8rem!important;
    }
    .featured-slider .featured-slider__slider-wrapper {
        margin: auto!important;
        width: 100%!important;
    }
    .slider-item {
        margin-bottom: 0!important;
    }
    .slider-item .video-poster{
        width: 100%!important;
    }
    .video-detail {
        position: relative!important;
        top: 0!important;
        right: 0!important;
        width: 100%!important;
    }
    .video-detail-2 {
        left: 0!important;
    }
    .video-detail__purple {
        width: 100%!important;
        max-width: 100%!important;
    }
}

    .select {
        display: none;
    }
    .featured-slider {
        padding: 100px 0;
    }
    .featured-slider .section-header {
        margin: initial;
        width: 100%;
    }

   

    .featured-slider .featured-slider__slider-wrapper {
        width: 90%;
        margin-left: auto;
        margin-right: 0;
    }

    .featured-slider .slider-item {
        display: flex;
        position: relative;
        margin-bottom: 40rem;
        margin-top: 100px;
        /*display: flex;*/
        /*position: relative;*/
        /*margin-bottom: 100px;*/
        /*margin-top: 200px;*/
        /*transform: scale(.8)*/
        /*outline: white 1px solid;*/
    }

    .slider-item .video-poster{
        max-width: 100%;
        max-height: 100%;
    }

    .slider-item .video-poster-2 {
        width: 100%;
        margin: 0;
    }

    .slider-item .video-poster-1 {
        margin: 0;
        max-width: 970px;
        max-height: 694px;
    }

    .slider-item .video-detail {
        position: absolute;
        width: initial;
        margin: 0;
    }

    slider-item .video-detail__purple {
        background: rgb(110,21,255);
        background: linear-gradient(142deg, rgba(110,21,255,0.33) 33%, rgba(110,21,255,0.22) 65%, rgba(110,21,255,0.11) 100%);
        padding: 40px 40px;
        max-width: 500px;
        backdrop-filter: blur(15px);
    }

    .video-detail .label {
        background: rgb(182,21,255);
        margin-top: 15px;
        font-size: 16px;
        font-weight: 700;
        padding: 10px 40px;
        opacity: 1;
        display: inline-block;
        text-transform: capitalize;
        font-family: "sofia-pro", Helvetica, Arial, sans-serif;
        background: linear-gradient(142deg, rgba(182,21,255,0.33) 33%, rgba(182,21,255,0.22) 65%, rgba(182,21,255,0.11) 100%);
    }

    .slider-item.left .video-detail-1 {
        right: 2rem;
        top: 33rem;
        transition: all 1s ease;
    }
	.slider-item.left .video-detail.playing {
		top:100%;
		right:0;
	}
    .slider-item.right .video-detail-2 {
        left: -9%;
        top:60%;
        transition: all 1s ease;
    }
	.slider-item.right .video-detail.video-detail-2.playing {
		top:100%;
		left: 0;
	}
    .slider-item.left .video-detail-3 {
        right: -8%;
        top: 74%;
        transition: all 1s ease;
    }
    
    .slider-item h6 {
        font-size: 22px;
    }
    .slider-item h3{
        font-size: 33px;
    }
@media all and (max-width: 768px)
{
	.slider-item .video-detail__purple {
		padding: 2rem;
	}
	.slider-item h3 {
	    font-size: 24px;
    }
    .slider-item .video-detail span.tag {
	    display: none;
    }
}

/*@media (min-width: 950px) {
    .slider-item.right .video-detail-2{
        left: -24%;
        bottom: -4%;
    }
}*/

.list-item {
    list-style: none;
    margin-bottom: 50px;
}

.link-list {
    width: 100%;
    margin: 0;
}

.link-list .section-header {
    margin-bottom: 0;
}

/*.link-list .section-header h6{*/
/*    font-size: 18px;*/
/*}*/
/*.link-list .section-header h2 {*/
/*    font-size: 26px;*/
/*}*/

.link-list .magnify-animation {
    /*outline: white 1px solid;*/
    width: 220px;
    height: 845px;
}

.link-list__list-wrapper {
    /*outline: 1px solid white;*/
}

.list-item h3 {
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-size: 27px;
        text-transform: uppercase;
}

.list-item p {
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #E2D0FF;
}

.list-item a {
    margin-top: 30px;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    border-image-source: linear-gradient(90deg, rgba(166,68,247,1) 50%, rgba(252,66,152,1) 100%);
    border-image-slice: 1;
    overflow: hidden;


    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    padding: 20px;
    border-radius: 50px;
    border: 2px solid #FC4298FF;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    width: 300px;
}

.list-item a:after, .list-item a:before {
    position: absolute;
    transition: 0.3s;
    content: '';
    width: 0;
    bottom: -1px;
    background: rgb(166,68,247);
    background: linear-gradient(270deg, rgba(166,68,247,1) 50%, rgba(252,66,152,1) 100%);
    height: 120%;
    left: -10%;
    transform: skewX(15deg);
    z-index: -1;
}
.list-item a:hover, .list-item a:focus {
    color: #fff;
    /*border-radius: 10px;*/
}
.list-item a:hover:after, .list-item a:focus:after {
    width: 120%;
    
}




@media all and (max-width:700px) {
    .link-list {
        width: 100%!important;
        margin: auto!important;
        display: flex!important;
        flex-direction: column!important;
    }

    .link-list .section-header {
        margin-bottom: 3rem!important;
        width: 100%!important;

    }

    .link-list .magnify-animation2 {
        display: none!important;
    }
    .link-list__list-wrapper {
        width: 100%!important;
    }
    
}
.cards {
    width: 90%;
    margin: auto;
    flex-direction: column;
}


/*.cards .section-header ul {*/
/*    display: none;*/
/*}*/


.cards__wrapper {
    width: 100%;
	    transform: translateY(-15rem);
	    
}
@media all and (max-width: 768px)
{
	.cards {width: auto;}
	.cards__wrapper {
    	width: 100%;
	    transform: translateY(0);
	    
	}
}
.cards__wrapper .card-item__wrapper {
    position: relative;

    width: 450px;
    /*height: 650px;*/
    display: flex;

}


.card-item {
    padding-top: 50px;
    padding-bottom: 50px;
    /*filter: blur(1rem);*/
}

.card-item__wrapper:not(.slick-current) .card-item{
    filter: blur(1rem);
}

.card-item__wrapper .label {
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    opacity: 0;
    position: absolute;
    text-transform: uppercase;
    transform: rotateZ(180deg);
    writing-mode: vertical-rl;
    top: 10rem;
    left: 44rem;
    z-index: 1;
    color: #ffffff;
    background-color: rgba(110, 21, 255, .5);
    padding: 1rem 0;
}
.card-item__wrapper .card-item__details {
    opacity: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.card-item__details h3 {
     color: white;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 0px;
    margin-left: -40px;
}
.card-item__details h6 {
    color: white;
    font-size: 22px;
    margin-left: -40px;
    margin-top: -10px;
    position: relative;
    z-index: 2;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}
.card-item__wrapper .purple-square {
     width: 105%;
    position: relative;
    top: -3rem;
    right: 2rem;
    padding: 40px;
    font-size: 16px;
    line-height: 1.5;
    background: rgb(236,36,128);
    background: linear-gradient(156deg, rgba(236,36,128,.5) 0%, rgba(166,68,247,.7) 100%);
    color: #fff;
    opacity: 0;
    font-weight: 500;
}
.cards__wrapper .card-item__wrapper img {
    min-width: 544px;
    height: 854px;
    transform: scale(.75);
}


.card-item__wrapper, .card-item__wrapper .purple-square, .card-item__details {
    transition: all .2s ease;
}
.card-item__wrapper {
    transform: scale(1);

    z-index: 0;
}
.card-item__wrapper.slick-current .card-item{
    transform: scale(1);
    filter: blur(0);
    z-index: 1;
}

.card-item__wrapper.left {
    transform: translateX(8rem) scale(.95);
    z-index: -1;
}

.card-item__wrapper.right {
    transform: translateX(-8rem) scale(.95);
    z-index: -1;
}

.card-item__wrapper.slick-current, .card-item__wrapper.slick-current .purple-square, .card-item__wrapper.slick-current .card-item__details {
    opacity: 1;
}

.card-item__wrapper.slick-current .label {
    opacity: 1;
}

.cards {
    display: flex;
}

.cards__controller {

}
.cselect {
        display: none;
    }
@media all and (max-width: 768px)
{
	.cards__wrapper .card-item__wrapper {
		width: 500px;
	}
	.card-item__wrapper .card-item__details {
		position: relative;
		background: linear-gradient(156deg, rgba(236,36,128,.5) 0%, rgba(166,68,247,.7) 100%);
		padding: 40px;
		transform: translateY(-50%);
	}
	.cards__wrapper .card-item__wrapper img {
		min-width: 0;
		height: auto;
		transform: none;
	}
	.card-item__wrapper .purple-square {
		top:0;
		background: none;
		padding: 0px;
	}
	.cards__wrapper {transform: none;}
	.card-item__details h3 {
        margin-left: 0;
    }
    .card-item__details h6 {
        margin-left: 0;
    }
}
@media all and (max-width: 600px)
{
	.cards__wrapper {}
	.cards__wrapper .card-item__wrapper {
		width: 400px;
	}
	.cards__wrapper.slick-slider {
		overflow: visible;
	}
	.card-item__wrapper .label {
		right: 0;
		left: auto;
		z-index: 3;
	}
}
@media all and (max-width: 400px)
{
	.cards__wrapper .card-item__wrapper {
		width: 300px;
	}
	
}

@media screen and (max-width:1100px) {
    .cards {
        height: auto!important;
    }
    .cards__wrapper {
        width: 100%!important;
    }

    .card-item__details h3 {
        margin-left: 4rem;
    }
    .card-item__details h6 {
        margin-left: 4rem;
    }
    .card-item__wrapper .purple-square {
        right: 0rem;
        width: 100% !important;
    }
}
@media (min-width:1100px) {
    .cards {
        width: 100%;
        margin: 0;
        flex-direction: row;
    }
    .cards .section-header {
        /*width: 28%;*/
    }
    .cards__wrapper {
        margin-left: auto;
        /*width: 65%;*/
    }
    .cards .section-header ul {
        display: block;
    }
}
@media screen and (max-width: 1000px) {
    .tabs {
        width: 100%!important;
        margin: auto!important;
    }

    .cselect{
        position: relative !important;
		display: inline-block;
    }

    .cselect:after {
        content: "\25b6" !important;
position: absolute !important;
top: 2rem;
right: 0rem !important;
font-size: 2rem !important;
transform: rotate(90deg) translate(6px, 2rem) !important;
position: relative;

margin: auto;
    }
    .select {
        appearance: none!important;
        position: relative!important;
        border-radius: 10px!important;
        background: rgb(236,36,128)!important;
        background: -moz-linear-gradient(25deg, rgba(236,36,128,1) 31%, rgba(166,68,247,1) 100%)!important;
        background: -webkit-linear-gradient(25deg, rgba(236,36,128,1) 31%, rgba(166,68,247,1) 100%)!important;
        background: linear-gradient(25deg, rgba(236,36,128,1) 31%, rgba(166,68,247,1) 100%)!important;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ec2480",endColorstr="#a644f7",GradientType=1)!important;
        border-color: rgba(0,0,0,0)!important;
        width: 300px!important;
        height: 40px!important;
        font-family: "sofia-pro", Helvetica, Arial, sans-serif;
        font-size: 22px!important;
        font-weight: 700!important;
        color: #fff!important;
        display: block!important;
        margin:  2rem auto!important;
        text-align: center!important;
        text-indent: 5px;
    }

    .filtered-results__wrapper {
        margin-left: auto!important;
        margin-right: auto!important;
        width: 100%!important;
    }

    .filtered-results__wrapper .result {

        height: 220px!important;
        margin: auto;
    }
}

#isolde5 {
    opacity: 1;
}

.filtered-results__wrapper .result {
    /*position: relative;*/
    color: white;
    text-decoration: none;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    overflow: hidden;
}

.filtered-results__wrapper .card-content {
    position: absolute;
    bottom: 20px;
    font-size: 24px;
    left: 20px;
    right: 20px;
    line-height: 1.2;
    max-width: 218px;
}
@media all and (max-width: 900px)
{
	.filtered-results__wrapper .card-content {
		max-width: none;	
	}
}
.filtered-results__wrapper .card-label {
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 25px;
    padding: 7px 20px;
    font-size: 12px;
    letter-spacing: 1px;

    background: rgb(236,36,128);
    background: linear-gradient(156deg, rgba(236,36,128,1) 0%, rgba(166,68,247,1) 100%);
}

.filtered-results__wrapper .bg-image {
    position: absolute;
    z-index: -5;
    transition: transform ease .5s;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.filtered-results__wrapper .result:hover .bg-image{
    transform: scale(1.25);
    /*filter: blur(10px);*/
}

.filtered-results__wrapper .more {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filtered-results__wrapper .result:hover .arrow {
    margin-left: 20px;
}

.filtered-results__wrapper .more-wrapper{
    text-align: center;
    display: inline-block;
    transform: translateX(-2px);
}

.filtered-results__wrapper .arrow {
    display: inline;
    transition-duration: .5s;
}

.filtered-results__wrapper .result{
    height: 214px;
    width: 362px;

}

/*@media (min-width: 700px) {*/
    .tabs {
        width: 100%;
        margin: 0;
    }
    
    .filtered-results__wrapper {
        margin-left: auto;
        margin-right: 0;
        width: 100%;
        margin-bottom: 238px;
    /*    display: flex;
        flex-flow: row wrap;
        position: relative;
        gap: 1rem;*/
    }

    #isolde5 {
        opacity: 1;
    }

    .filtered-results__wrapper .result{
         height: 400px;
        width: 32%;
        
        color: white;
        text-decoration: none;
        font-family: "sofia-pro", Helvetica, Arial, sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
        line-height: 1;
        overflow: hidden;

    }
    .filtered-results__wrapper .two {
        height: 400px;
        width: 65.3%;
    }
/*}*/

.highlight {
    width: 90%;
    margin: auto;
}
@media all and (max-width: 768px)
{
	.highlight {
	    width: 100%;
	    margin: auto;
	}	
}

.highlight__wrapper{
    /*width: 65%;*/
    width: 80%;
    margin-left: auto;
}
@media all and (max-width: 1100px)
{
	.highlight__wrapper.slick-slider {
		width: 95%;
	}
	
}

@media all and (max-width: 1000px)
{
	.highlight__wrapper.slick-slider {
		/*width: 80%;*/
		overflow: visible;
	}
	
}

.highlight-item__wrapper:not(.slick-active) {
    opacity: 0;
    width: 0;
    transform: translateX(-7rem) scale(1) translateY(10rem);
	transform: translateX(-0) scale(.8) translateY(0);
}

.highlight-item__wrapper {
    /*padding: 100px 0;*/
}



.highlight-item__wrapper, .highlight-item__wrapper .purple-square, .highlight-item__details {
    transition: all .2s ease;

}


.highlight-item__wrapper:not(.slick-current) .highlight-item__details {
    opacity: 0;
}

.highlight-item__wrapper{
    position: relative;
}

.highlight-item {
    width: 670px;
    height: 682px;
    transform: scale(.85);
}

.highlight-item__wrapper.slick-current .main-img {
    position: relative;
    width: 670px;
    height: 682px;
    z-index: -5;
    /*transform: translate(-8rem, -8rem);*/
}

.highlight-item__wrapper .purple-square {
    padding: 40px;
    position: absolute;
    max-width: 700px;
    width: 96%;
    z-index: 2;
    bottom: -5rem;
    /*left: -11rem;*/
    backdrop-filter: blur(2rem);
    text-transform: uppercase;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    background: rgb(110,21,255);
    background: linear-gradient(90deg, rgba(110,21,255,0.57) 0%, rgba(110,21,255,0.1) 100%);
}

.highlight-item__wrapper .label {
    top: -10rem;
    top:2rem;
    right: 2rem;
    transform: scale(.8);
    position: absolute;
    backdrop-filter: blur(20px);

    padding: 10px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background: rgb(110,21,255);
    background: linear-gradient(90deg, rgba(110,21,255,0.57) 0%, rgba(110,21,255,0.1) 100%);
}


.highlight-item__wrapper .purple-square h6 {
    font-size: 25px;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: #00FFFF;
}
.highlight-item__wrapper .purple-square h3 {
    font-size: 33px;
    line-height: 1.2;
}

.highlight-item__wrapper.slick-active:not(.slick-current){
    /*transform: scale(.9);*/
    filter: blur(1rem);
    z-index: -1;
}

.highlight-item__wrapper.slick-current {
    transform: scale(1);
    filter: blur(0);
    /*width: 670px!important;*/
    /*z-index: 1;*/
}



.highlight-item__wrapper.left {
    /*transform: translateX(50px) translateY(100px);*/
    transform: translateX(39rem) scale(.8) translateY(-25rem);
    transform: translateX(55rem) scale(.8) translateY(-15rem);
}

.highlight-item__wrapper.right {
    transform: translateX(-47rem) scale(.8) translateY(9rem);
	transform: translateX(-55rem) scale(.8) translateY(9rem);
}

@media all and (max-width: 1000px)
{
	.highlight__wrapper {
		width: 100%;
	}
	.highlight-item__wrapper.left {
	    /*transform: translateX(50px) translateY(100px);*/
	    transform: translateX(50rem) scale(.8) translateY(-9rem);
	}
	
	.highlight-item__wrapper.right {
	    transform: translateX(-50rem) scale(.8) translateY(9rem);
	
	}
}
@media all and (max-width: 768px)
{
	.highlight-item {
		width: auto;
		height: auto;
	}
	
	.highlight-item__wrapper .purple-square h3 {
		font-size: 20px;
	}
	.highlight-item__wrapper.slick-current {
		width: auto !important;
	}
	.highlight-item__wrapper.slick-current .main-img {
		width: 300px;
		height: auto;
	}
}

.flex {
	display: flex;
    margin-top: 3rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.highlightPause {
	position: relative;
}

.highlightPause .playPause,
.cardsPause .playPause {
    opacity: 1;
    height: 30px;
    width: 30px;
    border: 2px solid white;
    border-radius: 50%;
    background-image: url("/content/dam/bmc/projects/innovation-lab/images/svg/pause-icon.svg");
	display: block;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    background-color: #6E15FF;
}

.cardsPause {
	position: absolute;
    right: -10%;
    bottom: 30%;
}

@media all and (max-width: 768px)
{
	.cardsPause {
		right:0;
		bottom: 0;
	}
}
.playPause.pause {
    background-image: url("/content/dam/bmc/projects/innovation-lab/images/svg/small-play-button.svg");
    
}

.card-item__wrapper.slick-slide:not(.slick-active) {
    opacity: 0;
}

@media screen and (max-width:700px) {
    .highlight {
        height: auto!important;
    }
    .highlight-item {
        transform: scale(1)!important;
    }
    .highlight-item__wrapper {
	    padding: 0;
    }
    .highlight__wrapper {
        width: 100%!important;
        margin: 7rem 0 2rem!important;
    }
    .highlight-item__wrapper .label {
        top: 0rem!important;
        right: 0rem!important;
    }
    /*.highlight-item {*/
    /*    transform: translate();*/
    /*}*/
	.highlight-item__wrapper.slick-active:not(.slick-current) {
		
	}
    .highlight-item__wrapper .purple-square {
        bottom: 0rem!important;
        width: 100%!important;
        left: 0rem!important;
        max-width: 300px;
        position: relative;
        padding: 20px;
        tra
    }
    .highlight-item__wrapper.slick-current .main-img {
        transform: translate(0, 0) scale(1);
    }
    .highlight-item__wrapper.left {
        transform: translateX(20rem) scale(.8) translateY(-20rem);
    }
    .highlight-item__wrapper.right {
        transform: translateX(-20rem) scale(.8) translateY(0rem) !important;
    }
}

@media (min-width: 700px) {
    .highlight {
        width: 100%;
        margin: 0;
    }
}

/*.active .highlight-item__details {*/
/*    opacity: 1;*/
/*}*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/*TODO: needs to start from lower and fly up faster*/

.landing-banner h2 {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 0s forwards;
}
.landing-banner h2.first {
    animation-delay: 0s;
}
.landing-banner h2.second {
    animation-delay: 1.5s;
}
.landing-banner h2.third {
    animation-delay: 2s;
}
.landing-banner h2.fourth {
    animation-delay: 3s;
}



.landing-banner h2.second {
    animation-delay: 1s;
}




.landing-banner h2.third {
    animation-delay: 1.5s;
}

.landing-banner h2.fourth {
    animation-delay: 2.5s;
}

/** {*/
/*    box-sizing: border-box;*/
/*    position: relative;*/
/*    cursor: crosshair;*/
/*}*/

html {
    /*cursor: crosshair;*/
    /*height: 100%;*/
    /*background: #000;*/
    /*color: #fff;*/
}

body {
    /*display: flex;*/
    /*place-items: center;*/
}

.magnify-animation2 {
    min-height: 100%;
    /*display: none;*/
    place-items: center;
	display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
}

.magnify-animation2 img {
	position: absolute;
	top:0;
	left:0;
	right:0;
	width: 75%;
	margin: auto;
}

.text-grid2 {
    /*cursor: crosshair;*/
    margin-top: -16px;
    font-family: "sofia-pro", Helvetica, Arial, sans-serif;
    font-weight: bold;
    --chars: 11;
    text-transform: uppercase;
    font-size: calc(40vmin / var(--chars));
    display: grid;
    grid-template-columns: repeat(6, 1.2em);
    /*transform: scale(.9);*/
}

.bounce {
	animation-name: bounce;
	-webkit-animation-duration: 1s;
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
	animation-delay: 4s;
}
@-webkit-keyframes bounce { 
    0% {-webkit-transform: translateY(0);}
	20% {-webkit-transform: translateY(0);opacity: 1;}
	50%, 80%, 100% {-webkit-transform: translateY(0);opacity: 1} 
    40% {-webkit-transform: translateY(-30px);} 
    60% {-webkit-transform: translateY(-15px);} 
 } 
@keyframes bounce {
	0% {transform: translateY(0);}
	20% {transform: translateY(0);opacity: 1;}
	50%, 80%, 100% {transform: translateY(0);opacity: 1} 
	40% {transform: translateY(-30px);} 
	60% {transform: translateY(-15px);} 
}

.magnify-animation {
    min-height: 100%;
    place-items: center;
	display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
}
.text-grid {
	cursor: none;
	font-family: "sofia-pro", Helvetica, Arial, sans-serif;
	font-weight: bold;
	--chars: 7;
	text-transform: uppercase;
	font-size: 2.5rem;
	display: grid;
	grid-template-columns: repeat(var(--chars), 1.2em);
	max-width: 100%;
	min-height: 450px;
	grid-row-gap: 2rem;
}
@media all and (max-width: 1100px)
{
	.link-list .magnify-animation {position: absolute;visibility: hidden;z-index: -1000}
}
.char {
	--d: max(0.5, var(--distance, 0));
	opacity: var(--d);
	display: inline-grid;
	place-items: center;
	transform: scale(max(1, calc(var(--d) * 1.6)));
	color: rgb(
		calc(110 * var(--d)),
		calc(110 * (1 - var(--d))),
		calc(200 + (10 * var(--d)))
	);
	transition: color 0.2s linear;
}

.text-grid div {
	padding: .5rem .5rem;
}
.text-grid svg {
	display: inline-block;
	transform: scale(1);
}

.text-grid svg, .text-grid svg path {
	transition: transform .8s ease;
}
.text-grid div.zoom svg, .text-grid div.zoom svg path
{
	transition: transform .8s ease;
}
.text-grid div.zoom svg {
	transform: scale(1.25);
}
.text-grid div.zoom svg path {
	stroke: #8b5dff
}



.fade-in-anim {
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0;transform: translateY(30rem); }
    to   { opacity: 1;transform: translateY(0); }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0;transform: translateY(30rem); }
    to   { opacity: 1;transform: translateY(0); }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0;transform: translateY(30rem); }
    to   { opacity: 1;transform: translateY(0); }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0;transform: translateY(30rem); }
    to   { opacity: 1;transform: translateY(0); }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0;transform: translateY(30rem); }
    to   { opacity: 1;transform: translateY(0); }
}



.slider-item.left.in-frame .video-poster {
	-webkit-animation: featuredLeftImg 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: featuredLeftImg 1s; /* Firefox < 16 */
    -ms-animation: featuredLeftImg 1s; /* Internet Explorer */
    -o-animation: featuredLeftImg 1s; /* Opera < 12.1 */
    animation: featuredLeftImg 1s;
}
.slider-item.left.in-frame .video-detail__purple {
	-webkit-animation: featuredLeftText 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: featuredLeftText 1s; /* Firefox < 16 */
    -ms-animation: featuredLeftText 1s; /* Internet Explorer */
    -o-animation: featuredLeftText 1s; /* Opera < 12.1 */
    animation: featuredLeftText 1s;
}
@keyframes featuredLeftImg {
	from {opacity: 0;transform: translateX(-30rem) translateY(15rem);}
	to {opacity: 1;transform: translateX(0) translateY(0);}
}
@keyframes featuredLeftText {
	from {opacity: 0;transform: translateX(30rem);}
	to {opacity: 1;transform: translateX(0);}
}

.slider-item.right.in-frame .video-poster {
	-webkit-animation: featuredRightImg 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: featuredRightImg 1s; /* Firefox < 16 */
    -ms-animation: featuredRightImg 1s; /* Internet Explorer */
    -o-animation: featuredRightImg 1s; /* Opera < 12.1 */
    animation: featuredRightImg 1s;
}
.slider-item.right.in-frame .video-detail__purple {
	-webkit-animation: featuredRightText 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: featuredRightText 1s; /* Firefox < 16 */
    -ms-animation: featuredRightText 1s; /* Internet Explorer */
    -o-animation: featuredRightText 1s; /* Opera < 12.1 */
    animation: featuredRightText 1s;
}
@keyframes featuredRightImg {
	from {opacity: 0;transform: translateX(30rem) translateY(15rem);}
	to {opacity: 1;transform: translateX(0) translateY(0);}
}
@keyframes featuredRightText {
	from {opacity: 0;transform: translateX(-30rem);}
	to {opacity: 1;transform: translateX(0);}
}

/*.landing-banner {*/
/*    animation: rotate 1s linear infinite;*/
/*    animation-play-state: paused;*/
/*    animation-delay: calc(var(--scroll) * -1s);*/

/*    animation-iteration-count: 1;*/
/*    animation-fill-mode: both;*/
/*}*/

/*@keyframes rotate {*/
/*    to {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

.result > * {opacity: 1;transition: opacity .4s ease;}
.result.hide > * {opacity: 0;}
