/* @import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Carlito:wght@300;400;500;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Wix Madefor Text", sans-serif; */
    font-family: 'Carlito', sans-serif;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}


/* =====================================================/
   START: Hero Section
/===================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 105vh;
    padding-left: 60px;
}


/* 🎥 Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/* 🌑 Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 58, 58, 0.5) ;
    z-index: 2;
}


/* ✨ Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 890px !important;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    min-height: 143vh;
}

 
.hero-border-wrap {
    position: relative;
    width: 100%;
    height: 500px;
	padding: 0px !important;
    display: flex;
    align-items: center;
    text-align: start;
}

.animated-border{
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    border-radius: 3px;
}

.animated-border polyline {
    fill: none;
    stroke: #E50415;
    stroke-width: 5;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;

    animation: drawLine 4s linear forwards;
}

@keyframes drawLine{
    to{
        stroke-dashoffset: 0;
    }
}


/* hero-text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 23px;
    padding-top: 65px;
}

.hero-text h1 {
    font-size: 100px;
    font-weight: bold;
    line-height: 70px;
    color: #f9f9f9;
}

.hero-text p {
    font-size: 22px;
    font-weight: bold;
    color: #f9f9f9;
    line-height: 16px;
}

.hero-text .hero-btn a {
    min-height: 90px;
    min-width: 0px;
    width: 90px;
    height: 90px;
    pointer-events: auto;
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    order: 3;
    position: relative;
    border-radius: 99px;
    background: rgba(77, 77, 77, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-text .hero-btn a img {
    width: 36px;
    height: 36px;
    display: inline-block;
    animation: upDown 2.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    will-change: transform;

}

@keyframes upDown {

    0%{
        transform: translateY(0);
    }


    50%{
        transform: translateY(-14px);
    }

    100%{
        transform: translateY(0);
    }
}


/* 📱 Responsive Design */
@media(max-width:768px) {
    .hero-section {
        position: relative;
        width: 100%;
        height: 90vh;
        padding-left: 0px;
        padding: 0 40px;
        overflow: hidden;
    }

    .hero-text h1 {
        font-size: 35px;
        font-weight: bold;
        line-height: 20px;
        color: #f9f9f9;
    }

    .hero-text p {
        font-size: 30px;
        font-weight: bold;
        color: #f9f9f9;
        line-height: 40px;
    }


    .hero-text .hero-btn a {
        min-height: 50px;
        min-width: 0px;
        width: 50px;
        height: 50px;
        pointer-events: auto;
        margin-left: 0%;
        margin-right: 0%;
        margin-top: 0px;
        margin-bottom: 0px;
        display: flex;
        align-self: flex-start;
        align-items: center;
        justify-content: center;
        order: 3;
        position: relative;
        border-radius: 99px;
        background: rgba(77, 77, 77, 0.45);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .hero-text .hero-btn a img {
        width: 18px;
        height: 18px;
        display: inline-block;
        animation: upDown 2.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
        will-change: transform;

    }

    .hero-border-wrap {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0px !important;
        display: flex;
        align-items: center;
        text-align: start;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        max-width: 100% !important;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        min-height: 120vh;
    }



}


/* =====================================================/
   END: Hero Section
/===================================================== */
