*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'roboto', sans-serif;
}
html::-webkit-scrollbar{
    display: none;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #181818;
    color: whitesmoke;
}
.header{
    background: linear-gradient(rgba(0, 0, 0, 0.534), rgba(0, 0, 0, 0.726)), url('images/0e78df39-2a0f-4c5c-8ef8-65ab5f3b577b.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.navbar{
    backdrop-filter: blur(5px);
    background-color: #030120;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu{
    display: none;
}
.logo{
    width: 100px;
}
.navlinks{
    display: flex;
    gap: 10px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
}
.navlinks a{
    color: whitesmoke;
    padding: 10px;
}
.banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.big_logo{
    width: 200px;
}
.heading{
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}
.heading span{
    color: cyan;
}
.sub-heading{
    display: flex;
    margin: auto;
    width: 70%;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: cyan;
    border: none;
    border-radius: 10px;
    width: 250px;
    height: 40px;
    margin-top: 10px;
    transition: 1s;
}
.btn:hover{
    outline: 2px solid cyan;
    background-color: transparent;
    backdrop-filter: blur(5px);
    color: cyan;
}
.title{
    color: white;
    font-family: 'montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-top: 30px;
}
.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}
.card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    background-color: black;
}
.card img{
    width: 90%;
    display: flex;
    margin: auto;
    border-radius: 10px;
}
.card h3{
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    font-size: 30px;
}
.line{
    display: flex;
    height: 5px;
    width: 130px;
    background: cyan;
    border-radius: 3px;
    margin: 0 auto 10px;
}
.grid2{
    display: grid;
    padding: 10px 10%;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
    align-items: center;
    color: white;
}
.wrapper{
    background-color: black;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
}
.wrapper h3 span{
    font-weight: 400;
    color: cyan;
    padding-right: 10px;
}
.wrapper h5{
    color: red;
}
.social-img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
}
.flex-row{
    flex-direction: row;
    gap: 10px;
    justify-content: left;
    padding: auto 20px;
    transition: 1s linear;
}
.flex-row:hover{
    border: 2px solid cyan;
}







@media only screen and (max-width: 1024px) {
    .navbar{
        height: 70px;

    }
    .logo{
        width: 70px;
    }
    .navlinks{
        display: none;
        transition: 1s linear;
    }
    .navlinks.toggle{
        width: 100vw;
        left: 0;
        top: 70px;
        display: grid;
        position: absolute;
        align-items: center;
        justify-content: center;
        background-color: rgb(1, 7, 31);
        backdrop-filter: blur(5px);
        text-align: center;
        font-weight: 400;
        transition: 1s linear;
        padding: 10px;
    }
    .header{
        background-position: right;
    }
        .big_logo{
            width: 150px;
        }
        .heading{
            font-size: 50px;
        }
        .sub-heading{
            font-weight: 400;
            width: 90%;
            font-size: 18px;
        }
        .menu{
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 2;
        }
        
        .menu:before{
            display: flex;
            content: "";
            background-color: whitesmoke;
            height: 2px;
            width: 28px;
            transition: 1s linear;
            border-radius: 1px;
        }
        .menu.toggle:before{
            transform: rotate(45deg) translateY(9px);
            
        }
        .menu span{
            display: flex;
            background-color: whitesmoke;
            height: 2px;
            width: 28px;
            transition: 1s linear;
            border-radius: 1px;
        } 
        .menu.toggle span{
            opacity: 0;
        }
        .menu:after{
            display: flex;
            content: "";
            background-color: whitesmoke;
            height: 2px;
            width: 28px;
            transition: 1s linear;
            border-radius: 1px;
        }
        .menu.toggle:after{
            transform: rotate(-45deg) translateY(-9px);
            
        }
        .grid{
            grid-template-columns: repeat(2, 1fr);
            padding: 0;
            gap: 3px;
        }
        .grid2{
            grid-template-columns: repeat(1, 1fr);
        }
    }