    @font-face {
        font-family: 'BaseNeueTrialBold';
        src: url('BaseNeueTrial-Bold.ttf') format('truetype');
        font-weight: bold;
        font-style: normal;
    }

    @font-face {
        font-family: 'BaseNeueTrialRegular';
        src: url('BaseNeueTrial-Regular.ttf') format('truetype');
        font-weight: regular;
        font-style: normal;
    }

    body {
        background-color: #000;
    }

    .h1bg {
        position: relative;
    }

    .hero h1 {
        color: #FFF;
        font-family: "BaseNeueTrialBold";
        font-size: 100px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        position: absolute;
        bottom: -80px;
        margin-left: 150px;
    }

    .hero h1 span {
        display: block;
        color: #FFF;
        font-family: "BaseNeueTrialBold";
        font-size: 120px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    a.nav-link {
        color: #FFF;
        font-family: "BaseNeueTrialRegular";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    h2 {
        color: #FFF;
        font-family: "BaseNeueTrialBold";
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        width: 50%;
    }

    p {
        color: #FFF;
        font-family: "BaseNeueTrialRegular";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 50%;
    }

    .login-btn,
    .singup-btn {
        color: #FFF;
        font-family: "BaseNeueTrialRegular";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .singup-btn {
        border-radius: 30px;
        background: linear-gradient(260deg, #00EDDF 0%, #00877F 100%);
        display: flex;
        padding: 15px 28px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .contentslider {
        display: flex;
        text-align: left;
        padding-top: 30px;
    }

    .content-section {
        background-image: url(../assets/background.png);
        aspect-ratio: 1800 / 1192;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top;
        padding-top: 250px !important;
        margin-top: 350px !important;
    }

    .customBox {
        max-width: 750px;
        padding: 0 35px;
    }

    div#slickbox {
        padding-left: 30%;
    }

    .custom-dots a svg {
        fill: #FFFFFF33;
        width: 20px;
    }

    .custom-dots {
        background-color: #222424;
        width: 240px;
        margin: 0 auto;
        border-radius: 50px;
        padding: 15px 20px;
        text-align: center;
        gap: 20px;
        display: flex;
    }

    .custom-dots a.active svg {
        fill: #fff;
    }

    /*youtube*/

    .youtube {
        position: relative;
        aspect-ratio: 16 / 9;
        cursor: pointer;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .youtube img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .youtube .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 35px;
        height: 35px;
        background: url('../assets/playIcon.png') no-repeat center center;
        background-size: contain;
        transform: translate(-50%, -50%);
        transition: transform 0.3s;
    }

    .youtube:hover .play-button {
        transform: translate(-50%, -50%) scale(1.1);
    }

    .youtube iframe {
        width: 100%;
        height: 100%;
    }