﻿@keyframes spin {
    0 {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotateImageLoading {
    from {
        transform: translate(-50%,-50%) rotateY(0) scale(1.01)
    }

    to {
        transform: translate(-50%,-50%) rotateY(360deg) scale(1.01)
    }
}

@keyframes shine-skeleton-lines {
    0 {
        background-position: -100px
    }

    40%,100% {
        background-position: 600px
    }
}

.cmp-hero {
    position: relative;
    padding: 40px 0;
    min-height: 380px;
    background-color: var(--color-bg-01);
    display: flex;
    align-items: flex-end
}

.cmp-hero__container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1436px;
    padding: 0 16px;
    z-index: 1
}

@media(min-width:764px) {
    .cmp-hero__container {
        padding: 0 32px
    }
}

.cmp-hero__title {
    margin: 0;
    max-width: 230px;
    animation: .5s .35s heroFade backwards ease-out
}

    .cmp-hero__title .cmp-title__text {
        color: var(--color-font-03);
        font-family: 'CupraBook',sans-serif;
        font-weight: 350;
        text-transform: initial;
        font-size: 30px;
        line-height: 36px
    }

.cmp-hero__text {
    margin: 24px 0 0;
    max-width: 456px;
    animation: .5s .65s heroFade backwards ease-out
}

    .cmp-hero__text .cmp-text, .cmp-hero__text .cmp-text p {
        color: var(--color-font-03);
        font-family: 'CupraBook',sans-serif;
        font-weight: 350;
        font-size: 16px;
        line-height: 24px
    }

        .cmp-hero__text .cmp-text a {
            color: var(--color-font-03);
            text-decoration: underline
        }

.cmp-hero__cta {
    display: inline-block;
    margin: 24px 0 0;
    width: auto;
    min-width: 110px;
    animation: .5s .85s heroFade backwards ease-out
}

.cmp-hero__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

    .cmp-hero__image .cmp-image__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center
    }

    .cmp-hero__image:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(0,rgba(27,27,27,0.6) 24.15%,rgba(0,0,0,0) 76.58%);
        z-index: 1
    }

@keyframes heroFade {
    from {
        transform: translateY(20px);
        opacity: 0
    }
}

@media(min-width:764px) {
    .cmp-hero__title {
        max-width: 406px
    }

        .cmp-hero__title .cmp-title__text {
            font-family: 'CupraLight',sans-serif;
            font-weight: 300;
            font-size: 40px;
            line-height: 44px
        }
}

@media(min-width:1016px) {
    .cmp-hero {
        padding: 64px 0;
        min-height: 550px
    }

    .cmp-hero__title {
        max-width: 604px
    }

        .cmp-hero__title .cmp-title__text {
            font-size: 60px;
            line-height: 64px
        }

    .cmp-hero__text {
        max-width: 624px;
        margin: 40px 0 0
    }

        .cmp-hero__text .cmp-text, .cmp-hero__text .cmp-text p {
            font-size: 20px;
            line-height: 24px
        }

            .cmp-hero__text .cmp-text a {
                text-decoration: underline
            }

    .cmp-hero__cta {
        margin: 40px 0 0;
        min-width: 120px
    }
}

@media(min-width:1436px) {
    .cmp-hero {
        padding: 80px 0;
        min-height: 620px
    }

    .cmp-hero__title {
        max-width: 790px
    }

        .cmp-hero__title .cmp-title__text {
            font-size: 76px;
            line-height: 80px
        }

    .cmp-hero__text {
        max-width: 790px
    }

        .cmp-hero__text .cmp-text, .cmp-hero__text .cmp-text p {
            font-size: 24px;
            line-height: 28px
        }

            .cmp-hero__text .cmp-text a {
                text-decoration: underline
            }
}
