/* =====================================================
   ROK HERO BANNER
===================================================== */

.rok-hero-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.rok-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* =====================================================
   CONTENT
===================================================== */

.rok-hero-content {
    flex: 0 0 50%;
    max-width: 50%;
	z-index: 99;
	background:#0A0A0A;
}

.rok-hero-content .content-container{
	max-width:600px;
	padding-top:200px;
	padding-bottom:100px;
	z-index:99;
	margin-left:auto;
	margin-right:0px;
}

.rok-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(0, 255, 102, .12);
    color: #00ff66;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.rok-hero-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

.rok-hero-title span {
    color: #00ff66;
}

.rok-hero-description {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
    max-width: 650px;
}

/* =====================================================
   BUTTONS
===================================================== */

.rok-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.rok-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 15px 35px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .3s ease;
    font-weight: 700;
}

.rok-btn-primary {
    background: #00ff66;
    color: #000;
}

.rok-btn-primary:hover {
    transform: translateY(-2px);
    background: #00e65c;
}

.rok-btn-secondary {
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    background: transparent;
}

.rok-btn-secondary:hover {
    background: rgba(255,255,255,.08);
}

/* =====================================================
   IMAGE
===================================================== */

.rok-hero-image-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.rok-hero-image {
    position: relative;
    z-index: 2;
}

.rok-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   FALLBACK SHAPE
===================================================== */

.rok-hero-shape {
    width: 100%;
    height: 600px;
    border-radius: 60px;
    background: linear-gradient(
        135deg,
        #00ff66,
        #00c851
    );
}


.style-1 .rok-hero-banner {
    display: flex;
    min-height: 850px;
    overflow: hidden;
}

.style-1 .rok-hero-left {
    width: 55%;
    background: #090909;
    padding: 120px 80px;
    position: relative;
    z-index: 2;
}

.style-1 .rok-hero-right {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.style-1 .rok-hero-image {
    position: absolute;
    inset: 0;
}

.style-1 .rok-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.style-1 .rok-diagonal-shape {
    position: absolute;
    left: -120px;
    top: 0;
    width: 240px;
    height: 100%;
    background: #0A0A0A ;
    transform: skewX(-10deg);
    z-index: 3;
}
/* =====================================================
   STYLE 1
   Dark Agency Style
===================================================== */

.rok-hero-banner.style-1 {
    background: #0f0f0f;
    padding: 120px 0;
}

/* =====================================================
   STYLE 2
   Light Style
===================================================== */

.rok-hero-banner.style-2 {
    background: #ffffff;
    padding: 120px 0;
}

.rok-hero-banner.style-2 .rok-hero-title {
    color: #111;
}

.rok-hero-banner.style-2 .rok-hero-description {
    color: #666;
}

.rok-hero-banner.style-2 .rok-btn-secondary {
    border-color: #ddd;
    color: #111;
}

/* =====================================================
   STYLE 3
   Gradient Style
===================================================== */

.rok-hero-banner.style-3 {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #111827,
        #1e293b
    );
}

.rok-hero-banner.style-3 .rok-hero-title {
    color: #fff;
}

/* =====================================================
   IMAGE EFFECTS
===================================================== */

.rok-hero-image img {
    transition: transform .5s ease;
}

.rok-hero-banner:hover .rok-hero-image img {
    transform: translateY(-5px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .rok-hero-title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {

    .rok-hero-container {
        flex-direction: column;
    }

    .rok-hero-content,
    .rok-hero-image-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rok-hero-content {
        order: 1;
    }

    .rok-hero-image-wrap {
        order: 2;
        margin-top: 50px;
    }

    .rok-hero-title {
        font-size: 52px;
    }
}

@media (max-width: 767px) {

    .rok-hero-banner {
        padding: 80px 0 !important;
    }

    .rok-hero-title {
        font-size: 38px;
        line-height: 1.15;
    }

    .rok-hero-description {
        font-size: 16px;
    }

    .rok-btn {
        width: 100%;
    }

    .rok-hero-buttons {
        flex-direction: column;
    }

    .rok-hero-shape {
        height: 350px;
    }
}