/* Heading */
.section-banner {
    padding: 0;
}
.section-heading {
    background-image: url(../images/heading-bg.png);
    background-size: cover;
    background-position: center;
    color: #78CDF6;
}

@media (min-width: 768px) {
    .section-heading {
        min-height: 281px;
    }
}


.section-heading:after,
.section-heading:before {
    content: '';
    background-image: url(../images/heading-left.svg);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100%;
    left: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 10rem;
}

.section-heading:after {
    background-image: url(../images/heading-right.svg);
    left: unset;
    right: 0;
    background-position: right;
}

.section-heading h1 {
    color: #fff;
}

.section-heading p {
    color: #fff;
}

/* Breadcrumbs */
.section-breadcrumbs {
    padding: 0;
    padding-top: 1rem;
    font-size: .8rem;
}

.section-breadcrumbs p {
    margin: 0;
}

.section-breadcrumbs a {
    color: var(--li-purple);
}

/* Intro */
.section-intro .intro {
    margin-bottom: 3rem;
    max-width: 100%;
}

.intro-card {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0 4rem;
    justify-content: center;
}

.intro-card figure {
    margin-bottom: 0;
    flex-basis: 33%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-card .inner {
    padding: 2rem 4rem 0;
    flex-basis: 67%;
}

.events-template-default .intro-card .inner {
    padding: 2rem 2rem 0;
    flex-basis: 100%;
}

.intro-card h4 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.intro-card h4 figure {
    width: 2rem;
    height: 2rem;
    flex-basis: auto;
    border: 1px solid #373737;
    border-radius: 50%;
    padding: .25rem;
    margin-right: 1rem;
}

.intro-card

/* Team */
.owl-profiles {
    margin-bottom: 1rem;
}

.owl-profiles .row {
    margin: 0;
}

.profile-buttons {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.profile-buttons .btn {
    margin: .5rem;
}

.profile-buttons .btn:first-child {
    margin-left: 0;
}

.profile-buttons .btn:last-child {
    margin-right: 0;
}

.profile-buttons .btn::before {
    content: '';
    position: absolute;
    border-top: 1px solid#451F9D;
    width: 100vw;
    left: -50vw;
    height: 1px;
    z-index: -1;
}

.profile-card {
    background: #fff;
    margin-bottom: 2rem;
    padding-top: 2rem;
    transition: all .3s;
}

.profile-card img {
    border-radius: 50%;
    max-width: 10rem;
    max-height: 10rem;
    object-fit: cover;
    margin: 0 auto;
}

.profile-name {
    font-weight: 700;
    display: block;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.profile-card button {
    display: block;
    background: #451F9D;
    background: #24C1AF;
    color: #fff;
    transition: all .3s;
    margin-top: 1rem;
    padding: .25rem 0;
    border: none;
    width: 100%;
    font-weight: 300;
}

.profile-card:hover {
    transform: translate(.5rem, -.5rem);
    cursor: pointer;
}

.profile-card:hover button {
    background: #451F9D;
}

/* FAQs */
.faq {
    margin-bottom: 2rem;
}

.accordion {
    cursor: pointer;
    padding: 1.5rem 3rem;
    width: 100%;
    border: none;
    outline: none;
    transition: all 0.3s;
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.15), 0 8px 16px -8px rgba(0, 0, 0, .15), 0 -6px 16px -6px rgba(0, 0, 0, .025);
    text-align: left;
    background: #fff;
    box-shadow: 3px 3px 5px 0 rgba(38, 38, 38, .15);
}

.accordion:hover {
    background: #f9f9f9;
}

.accordion:before {
    content: '';
    width: 2rem;
    height: 100%;
    background: url(../images/faq-side.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.accordion:after {
    content: '';
    width: 5rem;
    height: 3rem;
    background: url(../images/faq-drop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) scaleY(1);
    transition: all .3s;
}

.accordion.active:after,
.accordion:hover:after {
    transform: translateY(-50%) scaleY(-1);
}

.panel {
    background-color: #FAFAFA;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 2rem;
}

.panel p {
    margin-top: 2rem;
}

/* News */
.news-card {
    margin: 2rem 0;
    background: #fff;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.news-card figure {
    margin-bottom: 0;
}

.news-card .inner {
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.news-card .inner .btn {
    margin-top: auto;
}

.news-card .date {
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-card .categories {
    margin-bottom: 1rem;
}

.news-card .categories a {
    color: var(--li-purple);
    margin-right: .5rem;
    text-decoration: underline;
}

.news-card .categories a:hover {
    color: var(--li-green);
}

.news-card h4 {
    margin-bottom: 1rem;
}

.news-card h4 a {
    color: #373737;
}

.news-card h4 a:hover {
    color: var(--li-purple);
    text-decoration: none;
}

.news-card .author {
    margin-bottom: 2rem;
    display: block;
}

/* Case Studies */
.casestudy-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 2rem 0;
}

.casestudy-card .inner,
.casestudy-card figure {
    flex: 0 0 100%;
    padding: 2rem 15px;
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.casestudy-card figure img {
    box-shadow: 3px 3px 5px 0 rgba(38, 38, 38, .15)
}

.casestudy-card h4 {
    font-size: 1.2rem;
}

.casestudy-card p {
    margin: 0;
    font-size: .8rem;
}

.casestudy-card a {
    margin-bottom: 0;
}

/* Events */
.section-events:after,
.section-events:before {
    content: '';
    background: url(../images/arrow-bg.svg);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(180deg);
    height: 75%;
    width: 30vw;
    z-index: -1;
}

.section-events:after {
    left: unset;
    right: 0;
    transform: translateY(-50%);
}

.events-card {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    flex-grow: 1;
}

.events-card > a {
    flex-basis: 50%;
    display: block;
}

.events-card figure {
    margin-bottom: 0;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.events-card .inner {
    padding: 2rem 4rem;
    flex-basis: 50%;
}

.events-card .date {
    font-weight: 700;
    margin-bottom: 1rem;
}

.events-card .categories {
    margin-bottom: 1rem;
}

.events-card .categories a {
    color: var(--li-purple);
    margin-right: .5rem;
    text-decoration: underline;
}

.events-card .categories a:hover {
    color: var(--li-green);
}

.events-card h4 {
    margin-bottom: 1rem;
}

.events-card h4 a {
    color: #373737;
}

.events-card h4 a:hover {
    color: var(--li-purple);
    text-decoration: none;
}

.events-card .author {
    margin-bottom: 2rem;
    display: block;
}

/* CTA */
.section-cta {
    background: var(--li-green);
    color: #fff;
    margin: 6rem 0 4rem;
    text-align: center;
    font-weight: 700;
    font-size: 3rem;
    padding: 4rem 0;
}
.section-cta:before,
.section-cta:after {
    content: '';
    background: url(../images/wires-bg.svg);
    background-position: left;
    background-size: 28rem;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
}

.section-cta:after {
    left: unset;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.section-cta.blue {
    background: #78cdf6;
}

.section-cta.purple {
    background: var(--li-purple);
}

.section-cta.orange {
    background: #fe6644;
}

.cta-button {
    background: url(../images/cta-clip.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: -3.2rem;
    transform: translateX(-50%);
    width: 20rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button .btn {
    margin: 0;
}

/* Brands */
.section-brands {
    background: #FAFAFA;
    padding: 0;
    margin: 10rem 0 2rem;
}

.section-brands-v2 {
    margin-top: 0;
}

.owl-brands .owl-stage {
    display: flex;
    align-items: center;
}

.owl-brands .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.owl-brands .owl-nav .owl-prev,
.owl-brands .owl-nav .owl-next {
    margin-left: -3rem;
}

.owl-brands .owl-nav .owl-next {
    margin-left: unset;
    margin-right: -3rem;
}

.owl-brands .icon {
    width: 2rem;
    height: 2rem;
    background: url(../images/icon-chevron.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    transition: all .3s;
}

.owl-brands .icon-next {
    transform: rotate(180deg);
}

.owl-brands .owl-nav .owl-prev:hover .icon,
.owl-brands .owl-nav .owl-next:hover .icon {
    width: 2.5rem;
    height: 2.5rem;
}

.brands-title {
    position: absolute;
    top: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fafafa;
    display: inline-block;
    padding: 1.5rem 1rem;
    font-weight: 700;
}

.brands-title:after,
.brands-title:before {
    content: '';
    width: 5rem;
    height: 100%;
    background: #fafafa;
    position: absolute;
    left: -2.8rem;
    z-index: -1;
    top: 0;
    transform: skewX(-35deg);
}

.brands-title:after {
    left: unset;
    right: -2.8rem;
    transform: skewX(35deg);
}

/* Gallery */
.section-gallery {
    overflow: hidden;
}

.section-gallery .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-gallery {
    margin: 2rem 0;
}

.owl-gallery:before {
    content: '';
    background-image: url(../images/carousel-bg.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translate(-50vw, -50%);
    height: 80%;
    width: 100vw;
    left: 50%;
}

.owl-gallery figure {
    margin: 0;
}

.owl-gallery .owl-item {
    transition: all 1s;
    transform: translateX(50%) scale(.6);
}

.owl-gallery .owl-item.center {
    transform: scale(1);
    transition: all 1s;
}

.owl-gallery .owl-item.center + .owl-item {
    transform: translateX(-50%) scale(.6);
    z-index: -1;
}

/* Partners */
.partner-item {
    padding: 2rem;
}

.partner-item .partners-card {
    margin-bottom: 0;
}

@media(max-width: 1499px) {
    .news-card .inner {
        padding: 2rem;
    }
    .events-card > a {
        flex-basis: 100%;
    }
}

@media(max-width: 1199px) {
    .intro-card .inner {
        padding: 2rem 2rem 0;
    }
    .section-cta {
        margin: 4rem 0 4rem;
        font-size: 2rem;
        padding: 3rem 0 4rem 0;
    }
    .section-cta:before, .section-cta:after {
        opacity: .5;
    }
}

@media(max-width: 991px) {
    .section-heading:after, .section-heading:before {
        width: 5rem;
    }
    .section-intro .intro {
        margin-bottom: 1rem;
    }
    .profile-buttons {
        margin-bottom: 1rem;
    }
    .intro-card {
        justify-content: left;
    }
    .intro-card figure {
        flex-basis: 50%;
        padding-bottom: 37.5%;
        margin-left: 1rem;
        margin-top: 1rem;
    }
    .intro-card .inner {
        flex-basis: 100%;
        padding: 1rem 1rem 0;
    }
    .intro-card {
        margin: 2rem 0;
    }
    .intro-card h4 {
        margin-bottom: 1rem;
    }
    .intro-card h4 figure {
        margin: 0;
        margin-right: 1rem;
    }
    .news-card {
        margin: 1rem 0;
    }
    .news-card .author {
        margin-bottom: 1rem;
    }
    .section-cta {
        margin: 2rem 0;
    }
    .section-cta:before, .section-cta:after {
        background-size: 22rem;
    }
    .section-brands {
        margin: 7rem 0 2rem 0;
    }
    .casestudy-card .inner, .casestudy-card figure {
        padding: 1rem 15px;
    }
    .casestudy-card figure {
        padding-bottom: 0;
    }
    .events-card .inner {
        padding: 2rem;
    }
}

@media(max-width: 767px) {
    .intro-card figure {
        flex-basis: 100%;
        padding-bottom: 75%;
        margin-left: 0;
        margin-top: 0;
    }
    .profile-buttons .btn {
        margin: .5rem 0;
        width: 100%;
    }
    .profile-buttons .btn::before {
        display: none;
    }
    .profile-buttons {
        justify-content: flex-start;
    }
    .section-heading p {
        display: none;
    }
    .section-cta {
        margin: 0 0 2rem 0;
        font-size: 1.5rem;
        padding: 1rem 0 3rem 0;
    }
    .section-cta:before, .section-cta:after {
        background-size: cover;
        opacity: .25;
    }
    .cta-button {
        width: 15rem;
    }
    .events-card figure {
        flex-basis: 100%;
        padding-bottom: 75%;
    }
    .events-card .inner {
        padding: 1rem;
        flex-basis: 100%;
        order: 1;
    }
    .events-card .author {
        margin-bottom: 1rem;
    }
    .faq {
        margin-bottom: 1rem;
    }
    .accordion {
        padding: 1rem 3rem;
    }
    .accordion:after {
        width: 3rem;
        right: 1rem;
    }
}

@media(max-width: 575px) {
    .section-heading h1 {
        font-size: 1.5rem;
        padding-left: 3rem;
    }
    .section-heading h1:before {
        left: calc(-50vw - 1rem);
    }
    .section-heading h1:after {
        left: -1rem;
        width: 3rem;
        height: 3rem;
    }
    .section-heading:after, .section-heading:before {
        width: 3rem;
    }
    .news-card {
        margin: 1rem 0;
    }
    .brands-title {
        top: -3.5rem;
    }
}