/* Hero section */
.site-header {
 background: transparent;
}
.hero {
    background: #000;
    position: relative;
}

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

.hero__single-slide {
    height: 70vh;
    position: relative;
    display: flex !important;
}

.hero__image {
    height: 504px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__image img {
    height: 100%;
    width: auto;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .custom-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 9999;
    background: transparent;
    border: 0;
}

.slick-prev {
    left: 50px;
}

.slick-next {
    right: 30px;
}

.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 220px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slick-dots li.slick-active button {
    background: #34E7A6;
}

.slick-dots li button {
    content: '';
    font-size: 0;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    padding: 0;
}

.hero__container {
    height: 100%;
    z-index: 199;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding-top: 30vh;
}

.hero__content-holder {
    z-index: 2;
}

.hero__content {
    margin-bottom: 60px;
    max-width: 901px;
}

.hero__content h1,
.hero__content h2 {
    font-size: 30px;
    font-family: 'Archivo', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.hero__content h1 strong,
.hero__content h2 strong {
    color: #34E7A6;
    font-weight: 400;
}

@media only screen and (min-width: 991px) {
    .hero__single-slide {
        height: 100vh;
    }
    .hero__content h1 {
        font-size: 70px;
    }

    .slide__background {
        width: 100%;
    }
}

/* Page content */

.page-content {
    background: #000;
    padding-top: 60px;
    padding-bottom: 120px;
}
.page-content__content {
    max-width: 800px;
    width: 100%;
}
.page-content__content h2 {
    font-size: 18px;
    font-family: 'Archivo', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #34E7A6;
    margin-bottom: 30px;
}

.page-content__content blockquote {
    margin: 0 0 45px 0;
}

.page-content__content blockquote p {
    margin: 0 0 45px 0;
    font-size: 18px;
    font-family: 'Archivo', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.page-content__content p {
    font-size: 16px;
    font-family: 'Archivo', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.page-content__animation {
    margin-top: 50px;
}

@media only screen and (min-width: 991px) {
    .page-content__holder {
        display: flex;flex-flow: row;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    .page-content__animation {
        margin-top: 0;
    }
    .page-content__content h2 {
        font-size: 24px;
        margin-bottom: 60px;
    }
    .page-content__content blockquote p {
        font-size: 30px;
    }

    .page-content__content p {
        font-size: 18px;
    }
}