body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.top-nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.top-nav .navbar {
    padding: 15px 20px;
}
.top-nav .navbar-brand img{
    width: 250px;
}
.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1b2f61;
    height: 100vh;
    clip-path: polygon(0 0, 100% 0, 100% 64%, 30% 100%, 0 100%, 0% 50%);
    padding-top: 100px;
    z-index: -999;
}
.banner{
    padding-top: 100px;
}
.banner .text-heading{
    padding-top: 100px;
    padding-bottom: 30px;
}
.banner .text-heading h1{
    color: #fff;
    font-weight: 700;
    font-size: 60px;
    line-height: 100%;
}

.button{
    border: none;
    outline: none;
    background-color: #f5900c;
    color: white;
    font-weight: bold;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    padding: 13px 24px;
}

.learn-more-button
{
    border: none;
    outline: none;
    background-color: #20a2f3;
    color: white;
    font-weight: bold;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    padding: 13px 24px;
}
.banner-imgg{
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 900px;
}

@media (max-width:1199px){
    .banner-imgg{
        width: 600px;
    }
    .banner h1{
        font-size: 50px !important;
    }
}
@media (max-width:991px){
    .banner-imgg{
        width: 462px;
    }
    .banner h1{
        font-size: 40px !important;
    }
}


@media (max-width:600px){
    .banner::before{
        clip-path: unset;
        height: auto;
    }
    .banner{
        background-color: #1b2f61;
    }
    .banner-imgg{
        position: unset;
        padding-top: 50px;
    }
    .banner h1{
        font-size: 30px !important;
    }
}


