/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.cdnfonts.com/css/zombies-brainless');
/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---green: #BEF209;
    ---white: #ffffff;
    ---black: #000000;
    ---border: #e5e5e5;
}

/*---------------------Roots-----------------*/

.hero {
    position: absolute;
    background-color: transparent;
    width: 100%;
    top: 0;
    right: 0px;
    position: relative;
}

.hero canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero .container {
    position: relative;
    height: 1000px;
    z-index: 10;
}

.hero .container .topdata {
    position: absolute;
    width: 100%;
    left: 0;
    top: 15%;
    display: flex;
    align-items: top;
    justify-content: space-between;
    z-index: 10;
}

.hero .container .topdata .social i {
    width: 55px;
    height: 55px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.253);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(---white);
    border-radius: 100%;
    margin-top: 20px;
    cursor: pointer;
    z-index: 10;
}

.hero .container .topdata .social i:hover {
    animation: bounce-in 2s ease infinite;
}

@keyframes bounce-in {
    0% {
        opacity: 1;
        transform: scale(.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}

.hero .container .topdata p {
    color: var(---white);
    line-height: 35px;
    font-size: 18px;
    font-weight: 400;
}

.hero .container .bottomdata {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 8%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 7;
}

.hero .container .bottomdata h1 {
    font-size: 80px;
    line-height: 80px;
    color: var(---white);
    font-family: "Bebas Neue", sans-serif;
}

.hero .container .bottomdata h1 span {
    color: var(---green);
    font-weight: 400;
}

.hero .container .bottomdata h4 {
    color: var(---green);
    font-size: 20px;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.hero .container .bottomdata p {
    color: var(---white);
    text-align: center;
    font-size: 16px;
    line-height: 35px;
    display: none;
}

.hero .container .bottomdata .smallvideo {
    width: 300px;
    height: 330px;
}

.hero .container .bottomdata .smallvideo img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Fix for mobile view */



/* media quries */


@media (max-width:2600px) {
    .hero .container {
        height: 1300px;
    }
}

@media (max-width:1950px) {
    .hero .container {
        height: 1000px;
    }
}


@media (max-width:1772px) {}

@media (max-width:1674px) {}

@media (max-width:1590px) {}

@media (max-width:1486px) {
    .hero .container .bottomdata .smallvideo {
        width: 320px;
        height: 350px;
    }
}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }
}

@media (max-width:1280px) {

    html {
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }

    .hero .container .bottomdata .smallvideo {
        width: 280px;
        height: 300px;
    }

    .hero .container .bottomdata h1 {
        font-size: 70px;
        line-height: 70px;
    }
}

@media (max-width:850px) {
    .hero .container .bottomdata .smallvideo {
        width: 230px;
        height: 260px;
    }

    .hero .container .bottomdata h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .hero .container .bottomdata h4 {
        font-size: 16px;
        letter-spacing: 5px;
        margin-bottom: 10px;

    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero video {
        width: 100vw;
        /* Full screen width */
        height: 100vh;
        /* Full screen height */
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width:690px) {
    .hero .container .bottomdata .smallvideo {
        display: none;
    }

    .hero .container .bottomdata {
        justify-content: center;
    }

    .hero .container .bottomdata h1 {
        font-size: 60px;
        line-height: 60px;
        text-align: center;
        margin: 10px 0px;
    }

    .hero .container .bottomdata h4 {
        font-size: 16px;
        letter-spacing: 5px;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero .container .topdata p {
        display: none;
    }

    .hero .container .topdata .social i {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-top: 20px;
    }

    .hero .container .bottomdata p {
        display: inherit;
    }
}

@media (max-width:550px) {}

@media (max-width:500px) {}

@media (max-width:460px) {
    .hero .container {
        height: 750px;
    }

    .hero .container .bottomdata {
        bottom: 5%;
    }

    .hero .container .topdata {
        justify-content: right;
    }

    .hero .container .bottomdata h1 {
        font-size: 50px;
        line-height: 50px;
        text-align: center;
        margin: 10px 0px;
    }

    .hero .container .bottomdata h4 {
        font-size: 14px;
        letter-spacing: 5px;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width:430px) {
    .hero .container {
        height: 900px;
    }

    .hero .container .bottomdata {
        bottom: 5%;
    }

    .hero .container .topdata .social i {
        background-color: var(---white);
        color: var(---black);
        border: none;
        width: 40px;
        height: 40px;
    }

    .hero .container .topdata {
        justify-content: right;
    }

    .hero .container .bottomdata h1 {
        font-size: 50px;
        line-height: 50px;
        text-align: center;
        margin: 10px 0px;
    }

    .hero .container .bottomdata h4 {
        font-size: 14px;
        letter-spacing: 5px;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width:380px) {
    .hero .container .bottomdata h1 {
        font-size: 45px;
        line-height: 45px;
        text-align: center;
        margin: 10px 0px;
    }

    .hero .container .bottomdata h4 {
        font-size: 14px;
        letter-spacing: 5px;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero .container .bottomdata p {
        color: var(---white);
        text-align: center;
        font-size: 14px;
        line-height: 30px;
    }

    .hero .container {
        height: 700px;
    }
}

@media (max-width:450px) {
    .hero .container .bottomdata h1 {
        font-size: 40px;
        line-height: 40px;
        text-align: center;
        margin: 10px 0px;
    }

    .hero .container .bottomdata h4 {
        font-size: 12px;
        letter-spacing: 3px;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero .container .bottomdata p {
        color: var(---white);
        text-align: center;
        font-size: 12px;
        line-height: 25px;
    }
}