@font-face {
    font-family: 'OpenSansHebrew-ExtraBold';
    src: url('../fonts/opensanshebrew-extrabold.woff2') format('woff2'),
        url('../fonts/opensanshebrew-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Reset all */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-family: Open Sans;
    font-size: 20px;
    line-height: 140%;
    background-color: #000714;
    color: #fff
}

h1 {
    font-family: 'OpenSansHebrew-ExtraBold';
    font-weight: 800;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #fff
}

h2 {
    font-family: 'OpenSansHebrew-ExtraBold';
    font-weight: 800;
    font-size: 50px;
    line-height: 120%;
}

h3 {
    font-family: 'OpenSansHebrew-ExtraBold';
    font-weight: 800;
    font-size: 30px;
    line-height: 120%;
}

.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hidden-before {
    visibility: hidden;
}

.animate__animated {
    visibility: visible !important;
}

/* Header */
header.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.nav-links {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

ul.nav-links a {
    font-size: 16px;
    line-height: 100%;
    text-decoration: none;
    color: #FFFFFFF2;
    transition: 0.3s ease;
}

ul.nav-links a:hover {
    color: #FFBF4E;
    transition: 0.3s ease;
}

header.header {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
    border-bottom: 1px solid #FFFFFF26;
    padding: 15px 0px;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
    z-index: -1;
}

.custom-dropdown {
    width: 100px;
    user-select: none;
    position: relative;
}

.dropdown-selected {
    padding: 8px 15px;
    background-color: #FFFFFF1A;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    line-height: 20px;
    justify-content: space-between;
}

.dropdown-options {
    width: 100px;
    display: none;
    position: absolute;
    top: 105%;
    left: auto;
    right: 0;
    background-color: #FFFFFF1A;
    z-index: 10;
    border-radius: 6px;
}

.dropdown-options .option {
    padding: 5px 12px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    line-height: 20px;
}

.dropdown-options .option:hover {
    background-color: #FFFFFF1A;
}

header#header.is-sticky {
    position: fixed;
    background: #000714d1;
    animation: slideDown 0.35s ease-out;
    z-index: 99999;
}

ul.nav-links a.active {
    color: #ffbf4e;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.dropdown-selected:hover {
    background-color: #ffffff17;
}

/* Banner */

.heroSwiper {
    width: 100%;
    aspect-ratio: 1920 / 900;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.swiper-slide {
    display: flex !important
}

.slide-content {
    max-width: 574px;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #71DEFF 37%, #E730FF 48%, #FFFFFF 73%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

section.hero h1 {
    position: relative;
}
section.hero h1 img,section.hero img.slide-logo {
    width: 200px;
    margin-bottom: 50px;
}
section.hero h1 img.stars {
    position: absolute;
    right: 37%;
    top: -27px;
}

.slide-content p {
    color: #FFFFFFB2;
    margin-top: 30px;
    margin-bottom: 20px;
}

.swiper-pagination {
    gap: 30px;
    display: flex;
    margin-left: auto;
    position: relative !important;
    margin-top: -70px;
}

span.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 0.2;
    border-radius: 1.29px;
    border-width: 3px;
    transform: rotate(45deg);
    opacity: 0.2 !important;
    background-color: #fff !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active,
span.swiper-pagination-bullet:hover {
    opacity: 1 !important;
}

/* Fire Section */
section.cycle .container {
    align-items: center;
    display: flex;
    gap: 60px;
}
.cycle-left h2 {
    position: relative;
}
.cycle span.gradient-text {
    position: relative;
}
img.fire {
    position: absolute;
    top: -33px;
    left: 83px;
}s
section.cycle {
    margin-top: 60px;
}

.cycle span.gradient-text img {
    position: absolute;
    left: 80px;
    top: -20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.fire-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fire-video {
    z-index: 2;
    border: none;
}
.poster-image {
    background: url(../../images/videobg.webp) center center / cover no-repeat;
    z-index: 3;
    transition: opacity 0.3s;
    position: absolute;
    width: 100%;
    height: 100%;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}
.custom-video {
    display: block;
    width: 100%;
    height: auto;
}
.video-overlay {
    z-index: 3 !important;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
}
.hidden {
    display: none !important;
}
section#games {
    margin-top: 60px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    background: transparent;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.play-button.hidden {
    display: none;
}

.cycle-left {
    width: 49%;
}

.cycle-right {
    width: 51%;
}
.cycle-left img {
    width: 200px;
}
.cycle-left p {
    color: #FFFFFFB2;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: #00000099;
    /* 60% black */
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gifslider {
    margin-top: 80px;
}

.gifslider img {
    border-radius: 10px;
}

.gifswiper-wrapper {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

.gifswiper-wrapper .swiper-button-prev,
.gifswiper-wrapper .swiper-button-next {
    background: #FFFFFF0D !important;
    height: 100px;
    width: 40px;
    top: 66%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.gifswiper-wrapper .swiper-button-prev {
    left: 0;
    margin-left: 0px;
}

.gifswiper-wrapper .swiper-button-next {
    right: 0;
    margin-right: 0px;
}

.gifslider .swiper-button-next:after,
.gifslider .swiper-button-prev:after {
    color: #fff;
    font-size: 16px !important;
}

.gifswiper-wrapper .swiper-button-next:hover,
.gifswiper-wrapper .swiper-button-prev:hover {
    background: #71DEFF !important;
}

/* services */
section.services {
    margin-top: 120px;
    margin-bottom: 120px;
}

section.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

section.services span.gradient-text {
    position: relative;
}

.services-wrapper {
    display: flex;
    gap: 20px;
}

section.services span.gradient-text img.service-lines {
    position: absolute;
    left: 34%;
    top: 21px;
}

.single-service {
    position: relative;
    background-color: #FFFFFF08;
    padding: 30px;
    border-radius: 10px;
    height: 320px;
    width: 100%;
}

img.service-bg {
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}

img.service-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

img.service-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.single-service h3 {
    color: #FFBF4E;
    margin-bottom: 10px;
}

.single-service p.subtitle {
    color: #FFFFFFB2;
}

p.service-content {
    color: #FFFFFFB2;
    margin-top: 30px;
    display: none;
}

img.service-avatar {
    position: absolute;
    right: 9px;
    top: 50px;
    z-index: -1;
    display: none;
}

.single-service:hover img.service-avatar {
    display: block;
}

.single-service:hover p.service-content {
    display: block;
}

.single-service:hover img.service-img {
    display: none;
}

/*About*/
section.about {
    background: url(../../images/about.webp);
    position: relative;
    display: flex;
    background-size: cover;
}

section.about h2 {
    position: relative;
    display: inline-block;
}

section.about h2 img.service-lines {
    position: absolute;
    bottom: -14px;
}

section.about .container {
    background: #0000004D;
    padding: 60px 80px;
    backdrop-filter: blur(10px);
    margin: 120px auto 0;
    border-radius: 10px;
}

section.about h2 {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg,
            #36E1FF 40%,
            #fc00ff 50%,
            #fff 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.title-wrapper {
    text-align: center;
}

p.about-sub-head {
    display: inline-block;
    background: linear-gradient(to right, #124DFF, #8013FF);
    border-radius: 10px;
    padding: 9px 20px;
    color: #fff !important;
}

section.about p {
    color: #FFFFFFB2;
    margin-bottom: 20px;
}

section.about p strong {
    color: #FFFFFFF2;
    font-weight: 600;
}

p.unique {
    color: #FBE44B !important;
    font-size: 24px;
    font-weight: 700;
}

/* Form */

.subscribe-form {
    display: flex;
    align-items: center;
    border: 1px solid #FFFFFF26;
    border-radius: 8px;
    overflow: hidden;
    padding: 6px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    background: #FFFFFF0D;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 9px 17px 9px 20px;
    font-size: 16px;
    color: white;
    outline: none;
}

.subscribe-form input::placeholder {
    color: FFFFFF80;

}

.subscribe-form button {
    border: none;
    padding: 15px 20px;
    height: 100%;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-size: 14px;
    background: linear-gradient(90deg, #004FFF 0%, #8C00FF 100%);
    border-radius: 5px;
    line-height: 18px;
}

.subscribe-form button:hover {
    opacity: 0.8;
}

div.subscription {
    margin-top: 60px;
    margin-bottom: 112px;
}

/*Footer*/

.top-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.container.top-footer {
    border-top: 1px solid #FFFFFF26;
    padding-top: 31px;
    padding-bottom: 31px;
}

.container.bottom-footer * {
    color: #FFFFFF80;
    font-size: 14px;
}

.container.bottom-footer {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding-bottom: 31px;
}

.contact-links {
    display: flex;
    gap: 16px;
}

.contact {
    font-size: 16px;
    margin-top: 6PX;
}

.email {
    margin-right: 20px;
    text-decoration: none;
}

.download {
    color: #FFFFFFB2 !important
}

.column {
    width: 33.33%
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.contact-links {
    justify-content: end;
}

footer ul.nav-links {
    justify-content: space-evenly;
}

@media(max-width:1500px) {
    section.about .container {
        margin: 120px 20px 0;
    }

    a.email {
        display: block;
    }
}

@media(min-width:1300px) and (max-width:1500px) {
    .heroSwiper {
        aspect-ratio: 1920 / 1100;
    }
}

@media(min-width:1200px) and (max-width:1299px) {
    .heroSwiper {
        aspect-ratio: 1920 / 1200;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .heroSwiper {
        aspect-ratio: 992 / 750;
    }

    .services-wrapper {
        gap: 4%;
        flex-wrap: wrap;
    }

    .single-service {
        width: 48%;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .heroSwiper {
        aspect-ratio: 768 / 650;
    }
}

@media(min-width:600px) and (max-width:768px) {
    .heroSwiper {
        aspect-ratio: 768 / 780;
    }

}

@media (max-width:599px) {
    .heroSwiper {
        aspect-ratio: 768 / 1100;
    }
}

@media (max-width:399px) {
    .heroSwiper {
        aspect-ratio: 768 / 1300;
    }
}

@media(min-width:768px) and (max-width:1024px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 45px;
    }

    p {
        font-size: 16px;
    }
}

@media(min-width:768px) and (max-width:992px) {
    section.cycle .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cycle-left,
    .cycle-right {
        width: 100%;
    }

    .services-wrapper {
        gap: 4%;
        flex-wrap: wrap;
    }

    .single-service {
        width: 48%;
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 35px;
    }

    p {
        font-size: 16px;
    }

    .services-wrapper {
        gap: 20px;
        flex-wrap: wrap;
    }

    .single-service {
        width: 100%;
    }

    header.header .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .lang-select {
        position: absolute;
        right: 20px;
        top: 15px;
    }

    nav {
        margin: 0 auto;
    }

    section.about .container {
        margin: 60px 20px 0;
        padding: 40px 20px;
    }

    .top-footer,
    .bottom-footer {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .contact {
        display: none;
    }

    .footer-right {
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .logo {
        justify-content: center;
        display: flex;
    }

    footer .column {
        width: 100%;
    }

    section.cycle .container {
        gap: 30px;
        flex-wrap: wrap;
    }

    .cycle-left,
    .cycle-right {
        width: 100%;
    }

    section.services span.gradient-text img.service-lines {
        position: absolute;
        top: -30%;
        left: 50%;
        transform: translateX(-50%);
    }

    ul.nav-links {
        gap: 20px;
    }

    .dropdown-options {
        background-color: #000000d4;
    }

    .dropdown-selected:hover {
        background-color: #000000d4;
    }
}

@media (max-width:768px) {
    ul.nav-links {
        gap: 13px;
    }
}
@media (max-width:767px) {
    .slide-content img {
    width: 150px !important;
    margin: 20px 0px !important;
}


}