.font-space {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
}

.magenta-text {
    color: #C13FB1 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -2.4px;
}

h1 {
    color: #111423;
    font-size: 120px;
    font-weight: 300;
    margin: 0;
}


@media only screen and (max-width: 1500px) {
    h1 {
        font-size: 90px;
    }
}

@media only screen and (max-width: 1200px) {
    h1 {
        font-size: 80px;
    }
}

@media only screen and (max-width: 1000px) {
    h1 {
        font-size: 70px;
    }
}


@media only screen and (max-width: 767px) {
    h1 {
        font-size: 60px;
    }
}

h1 span {
    display: block;
}

h2 {
    color: #111423;
    font-size: 64px;
    font-weight: 300;
    margin: 0;
}

@media only screen and (max-width: 1600px) {
    h2 {
        font-size: 54px;
    }
}


@media only screen and (max-width: 1400px) {
    h2 {
        font-size: 44px;
    }
}

@media only screen and (max-width: 1200px) {
    h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1000px) {
    h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 30px;
    }
}

p {
    color: #111423;
    font-size: 16px;
    font-weight: 300;
}

body {
    font-family: "Space Grotesk", sans-serif;
    margin: 0;
    padding: 0;
}

header {
    /* background-color: #fff; */
    /* background: linear-gradient(180deg,#fff 0,rgba(255,255,255,0) 100%); */
    position: absolute;
    overflow: hidden;
    top: 0;
    width: 100%;
    z-index: 10;
}

header .inner {
    padding: 2vw 5vw;
    position: relative;
}

header .button {
    color: #fff;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 2vw;
    right: 5vw;
    width: 20%;
}

header .button p {
    color: #fff;
}

header .button a span {
    position: relative;
    z-index: 1;
}

header .button a:before {
    background-color: #1d2dd7;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    transform: translateX(-100%);
    transition: .6s ease-in-out;
}

header .button a:hover {
    color: #fff;
}

header .button a:hover:before {
    background-color: #e24247;
    transform: translateX(0);
}

.logo {
    max-width: 400px;
}

@media only screen and (max-width: 1000px) {
    .logo {
        max-width: 200px;
    }

    header .button {
        width: 40%;
    }
}

@media only screen and (max-width: 767px) {

    header .button {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    .logo {
        max-width: 200px;
        padding: 10px 0;
    }
}

.flex-row {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .hero .flex-row {
        flex-direction: column-reverse;
    }

    .intro .flex-row {
        flex-direction: column;
    }
}

 /* hero */

 .hero {
    /* background-image: url('../images/mobius-hero.jpg');
    background-size: cover;
    background-position: top right; */
    overflow: hidden;
    position: relative;
    min-height: 100vh;
 }

 .hero .bg-video {
    /* display: none; */

    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 0;
 }

 .hero .bg-image img {
    display: none;
 }

.hero .content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10vw 5vw;
    position: absolute;
    width: 60vw;   
    min-height: 80vh;
    z-index: 1;
}

.hero .content h1 {
    color: #fff;
    line-height: 1;
}

.hero .content p {
    color: #fff;
}

.hero .content p.magenta-text {
    margin-top: 120px;
}
.hero video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

@media only screen and (max-width: 767px) {
    .hero .content {
        position: relative;
        width: 90vw;   
    }
}

/* intro  */

.intro {
    overflow: hidden;
    padding: 5vw;
}

.intro .title {
    width: 70%;
}

@media only screen and (max-width: 767px) {
    .intro .title {
        width: 100%;
    }
}

.intro .title h2 {
    margin-bottom: 40px;
}

.intro .title h2 span {
    color: #C13FB1;
}

.intro .text {
    margin-left: 55%;
    width: 45%;
}

@media only screen and (max-width: 767px) {
    .intro .text {
        justify-content: flex-start;
        width: 100%;
    }
}


.intro .text span {
    display: block;
}

.intro .text ul {
    margin: 30px 0;
    padding: 0;
}

.intro .text ul li {
    font-size: 16px;
    font-weight: 300;
    list-style-type: none;
    margin-bottom: 20px;
    padding: 0 0 0 30px;
    position: relative;
}


.intro .text ul li:before {
    content:'-';
    position: absolute;
    left: 0;
}

@media only screen and (max-width: 767px) {

    .intro .text {
        margin-left: 0;
    }
}

/* Videos */

.videos {
    overflow: hidden;
}

.videos .flex-row {
    gap: 20px;
    margin-bottom: 20px;
}


.video-one {
    background-color: #eaeaea;
    position: relative;
    min-height: 40vw;
    width: 50vw;
}

.video-two {
    background-color: #eaeaea;
    position: relative;
    min-height: 40vw;
    width: 50vw;
}

.bg-poster {
    background-size: cover;
    background-position: center;
    min-height: 50vw;
    position: relative;
}

.bg-poster a {
    background-color: rgba(52,61,80,0.0);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    transition: 300ms;
}

.bg-poster:hover a {
    background-color: rgba(52,61,80,0.0);
}

.play {
    background-color: #C13FB1;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 160px;
    width: 160px;
    position: absolute;
    transition: 300ms;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    transition: 300ms;
    z-index: 1;
    text-align: center;
}

.play span {
    color: #111423;
    display: block;
    padding: 20px;
}

.bg-poster:hover .play {
    transform: scale(1.2);
}

.play:hover {
    background-color: #111423;
}

.video-holder {
    max-width: 50vw;
}

@media only screen and (max-width: 767px) {
    .video-holder {
        max-width: 90vw;
    }

    .videos .flex-row {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .bg-poster {
        min-height: 100vw;
    }

    .video-one {
        min-height: 100vw;
        width: 100%;
    }

    .video-two {
        min-height: 100vw;
        width: 100%;
    }
}

/* contacts */

.contacts {
    background-image: url('../images/nexus-contact-bg.jpg');
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    min-height: 60vw;
 }

 .contacts .bg-video {
    display: none;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 60vw;
    width: 100%;
    position: absolute;
    z-index: 0;
 }

 .contacts .bg-image img {
    display: none;
 }

.contacts .content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 5vw;
    position: relative;
    width: 50vw;   
    min-height: 60vw;
    z-index: 1;
}

.contacts .content h1 {
    color: #fff;
    line-height: 1;
    margin-bottom: 40px;
}

.contacts .content p {
    color: #fff;
    font-size: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    max-width: 80%;
}

.contacts .content p.magenta-text {
    margin-top: 40px;
}

.contacts video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

@media only screen and (max-width: 767px) {

    .contacts {
        background-image: url('../images/nexus-contact-bg-mobile.jpg');
        padding: 40vw 0 20vw;
    }
    .contacts .content {
        width: 90vw;   
    }
}

.lity-close {
    background-color: #C13FB1;
    border-radius: 100%;
    position: absolute;
    top: -10px;
    right: -10px;

}

.lity-close:hover {
    background-color: #111423;
    position: absolute;
    top: -10px;
    right: -10px;
}

 /* footer */

 footer {
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;
 }

 .footer-top {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 5vw;
    min-height: 19.1vw;
    width: 100%;
 }

 .footer-top img {
    display: none;
 }

 .footer-bottom {
    border-top: 1px solid #111423;
    display: flex;
    margin: 0 5vw;
    padding-bottom: 40px;
    width: 100%;
 }

 footer a {
    color: #111423;
    text-decoration: none;
 }
 
 footer ul {
    list-style-type: none;
    padding-left: 0;
 }

 .copyright {
    width: 50%;
 }

 .propaganda {
    text-align: right;
    width: 50%;
 }

 .propaganda a {
    text-decoration: underline;
    text-underline-offset: 2px;
 }



@media only screen and (max-width: 1200px) {
    .footer-top .contact {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top .contact {
        width: 100%;
    }
}

.lity {
    background-color: rgba(52, 61, 80, 0.7);
}

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

/* values */

.values {
    border-left: 10px solid #C13FB1;
    overflow: hidden;
    margin: 0 0 100px 0;
    padding: 0 5vw;
}


.values.behaviours {
    border-left: 10px solid #C13FB1;
}

.values .heading-title {
    margin-bottom: 50px;
    width: 55%;
}

.values .heading-text {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 40px;
}

.values .accordion {
    width: 60%;

}

.values .heading-title h2 {
    font-size: 100px;
    max-width: 80%;
    line-height: 1.15;
}       

.values ul {
    list-style-type: none;
    margin: 40px 40px 0 0;
    padding: 0;
}

.values button {
    background-color: transparent;
    border: 0px solid transparent;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    padding: 20px 0;
    position: relative;
    width: 90%;
}

.values button:hover svg #Ellipse_8 {
    fill: #C13FB1;
}

.values button p {
    font-size: 30px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    margin: 0;
}

.values .image-wrap {
    width: 50%;
}

.values .ac-trigger svg,
.values .bc-trigger svg {
        transform: rotate(180deg);
        transition: transform 0.5s ease-in-out;
    }

.values .ac-trigger.active svg,
.values .bc-trigger.active svg {
        transform: rotate(0deg);
        transition: transform 0.5s ease-in-out;
}

.values .ac-panel,
.values .bc-panel {
        opacity: 0;
    height: 0;
    visibility: hidden;
    transition: transform 0.5s ease-in-out;
    width: 80%;
}

.values .ac-panel.active,
.values .bc-panel.active {
        opacity: 1;
    height: auto;
    visibility: visible;
    transition: transform 0.5s ease-in-out;
}

.values img {
    display: none;
}

.values img.icon {
    display: block;
    max-width: 55px;
    position: absolute;
    left: 0;
    top: 10px;
}

.image-or-video {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: 40vw;
    width: 100%;
}

.bc-trigger {
    padding-left: 70px !important;
}

@media only screen and (max-width: 1400px) {
    .values .heading-title h2 {
        font-size: 80px;
    }
}

@media only screen and (max-width: 1000px) {
    .values .heading-title h2 {
        font-size: 70px;
    }
    .values button p {
        font-size: 24px;
    }

}

@media only screen and (max-width: 767px) {

    .values .heading-title h2 {
        font-size: 50px;
    }
    .values .flex-row {
        flex-direction: column;
    }
    .values .heading-title {
        width: 100%;
    }

    .values button p {
        font-size: 20px;
    }

    .values .heading-text {
        width: 100%;
    }

    .values .accordion {
        width: 100%;
    }

    .values .heading-text {
        width: 100%;
    }
    .values button {
        width: 100%;
    }

    .values ul {
        margin: 40px 0;
    }

    .values .image-wrap {
        width: 100%;
    }

    .image-or-video {
        min-height: 90vw;

    }


}