.ez-home-hero {
    position: relative;
    isolation: isolate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--ez-home-hero-bg, none);

    & > .ez-home-hero__overlay {

    }
    & > .ez-home-hero__shape {
        position: absolute;
        width: var(--shapeSize, 3vw);
        height: var(--shapeSize, 3vw);
        filter: blur(var(--shapeBlur, 10px));
        rotate: var(--shapeRotate, -9deg);
        transform-origin: 50% 50%;
        transform: translate(-50%, -50%);
        top: var(--shapeOffsetY, 50%);
        left: var(--shapeOffsetX, 50%);
        opacity: var(--shapeOpacity, 0.75);
    }
    & > .ez-home-hero__shape::before {
        content: "";
        position: absolute;
        inset: 0;
        background: white;
        clip-path: polygon(50% 0%, 65% 30%, 98% 35%, 70% 60%, 79% 91%, 50% 75%, 21% 91%, 30% 60%, 2% 35%, 35% 30%);
        border-radius: 50%;
    }
    & > .ez-home-hero__shape--one{
        --shapeSize: 6.25vw;
        --shapeOffsetY: 13%;
        --shapeOffsetX: 30%;
        --shapeRotate: -13deg;
        --shapeBlur: 15px;
        --shapeOpacity: 0.4;
    }
    & > .ez-home-hero__shape--two{
        --shapeSize: 2.6045vw;
        --shapeOffsetY: 23%;
        --shapeOffsetX: 51%;
        --shapeRotate: -7deg;
        --shapeBlur: 12px;
        --shapeOpacity: 0.5;
    }
    & > .ez-home-hero__shape--three{
        --shapeSize: 8.8545vw;
        --shapeOffsetY: 52%;
        --shapeOffsetX: 53%;
        --shapeRotate: 10deg;
        --shapeBlur: 24px;
        --shapeOpacity: 0.35;
    }
}

.ez-home-hero {
    min-height: 790px;
    color: #fff;
    background-color: #282829;
    overflow: hidden;
}

.ez-home-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 120px 0 180px;
}

.ez-home-hero__content {
    max-width: 640px;
}

.ez-home-hero__title {
    margin: 0;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ez-home-hero__description {
    max-width: 640px;
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.ez-home-hero__description p:last-child {
    margin-bottom: 0;
}

.ez-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ez-home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 34px;
    font-family: Raleway, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ez-home-hero__button--primary {
    background: #8abecc;
    border-color: #8abecc;
    color: #fff;
}

.ez-home-hero__button--primary:hover {
    background: #fff;
    border-color: #fff;
    color: #222230;
}

.ez-home-hero__button--secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.ez-home-hero__button--secondary:hover {
    background: #fff;
    color: #222230;
}

.ez-home-hero__cta-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(40, 40, 41, 0.82);
}

.ez-home-hero__cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: space-evenly;
    gap: 18px;
}

.ez-home-hero-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    align-items: center;
    color: #fff;
    text-decoration: none;
    grid-gap: 30px;
}

.ez-home-hero-card:hover {
    color: #fff;
    background: rgba(40, 40, 41, 0.92);
}

.ez-home-hero-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ez-home-hero-card__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.ez-home-hero-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0;
}

.ez-home-hero-card__title {
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.ez-home-hero-card__link {
    color: #8abecc;
    font-family: Raleway, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media only screen and (max-width: 1240px) {
    .ez-home-hero {
        min-height: 680px;
    }

    .ez-home-hero__inner {
        min-height: 520px;
        padding: 96px 0 184px;
    }

    .ez-home-hero__title {
        font-size: 42px;
    }

    .ez-home-hero-card__title {
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .ez-home-hero {
        min-height: 600px;
    }

    .ez-home-hero__inner {
        min-height: 0;
        padding: 88px 0 40px;
    }

    .ez-home-hero__title {
        font-size: 36px;
    }

    .ez-home-hero__cta-band {

    }

    .ez-home-hero__cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .ez-home-hero-card {
        grid-template-columns: 96px 1fr;
        grid-gap: 18px;
    }

    .ez-home-hero-card__body {
        padding: 16px 0;
    }
}

@media only screen and (max-width: 767px) {
    .ez-home-hero {
        min-height: 0;
    }

    .ez-home-hero__inner {
        padding: 72px 0 24px;
    }

    .ez-home-hero__content {
        max-width: none;
    }

    .ez-home-hero__title {
        font-size: 30px;
    }

    .ez-home-hero__description {
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.6;
    }

    .ez-home-hero__actions {
        margin-top: 24px;
    }

    .ez-home-hero__button {
        width: 100%;
    }

    .ez-home-hero__cta-band {
        display: none;
    }

    .ez-home-hero__cta-grid {
        grid-template-columns: 1fr;
    }

    .ez-home-hero-card {
        grid-template-columns: 88px 1fr;
        grid-gap: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .ez-home-hero__title {
        font-size: 26px;
    }

    .ez-home-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ez-home-hero-card__image {
        min-height: 96px;
    }

    .ez-home-hero-card__body {
        padding-top: 0;
        align-items: center;
    }
}
