*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,p{
    margin: 0;
}
a{
    text-decoration: none;
}
body{
    font-family: "Poppins", serif;
}

/* banner part start */
.img-fluid{
    max-width: 100%;
}
.container{
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}
.banner{
    min-height: 100vh;
    height: 100vh;
    background:#010313 url("../images/dot-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.d-lg-none{
    display: none;
}
.bg-img img{
    position: absolute;
    z-index: -1;
}
.bg-img img:first-child{
    width: 74%;
    bottom: 0;
    left: 0;
    
}
.bg-img img:nth-child(3){
    bottom: 0;
    left: 0;
    width: 70px;
}
.bg-img img:last-child{
    width: 20%;
    right: 0;
    bottom: 0;
}
.banner-logo{
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}
.banner-logo img{
    width: 90px;
}
.banner-content h1{
    display: inline-block;
    font-size: 120px;
    line-height: 90px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    text-align: center;
}
.banner-content h1 span{
    font-size: 90px;
    
}
.button-box{
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    justify-content: center;
    z-index: 100;
    width: 90%;

}
.button-box a{
    display: inline-block;
    width: 262px;
    
}
.button-box a:last-child{
    width: 243px;
}
.button-box a img{
    transition: .3s all linear;
}
.button-box a img:hover{
    transform: scale(1.02);
}
/* banner part end */