.navbar{
    padding:0;
}
.navbar-nav{
    background-color: #101A2A;
}
.navbar-expand-md .navbar-nav .nav-link{
    font-size: 14px;
    text-transform: capitalize;
    height:inherit;
    line-height: inherit;  
    font-weight: normal;
}

.navbar-expand-md .navbar-nav .nav-link.active,.navbar-expand-md .navbar-nav .nav-link:hover{
    color:#7DC242;
}

.carousel-item{
    height:350px;
}
.carousel-item::after{
    content: '';
    display: block;
    position:absolute;
    width:100%;
    height:350px;
    left:0;
    top:0;
    z-index: 1;
    background-color:rgba(1, 7, 17, 0.62);
}
.carousel-caption{
    bottom:40%;
    transform: translateY(50%);
}
.carousel-caption h1{
    font-size: 22px;
}
.carousel-caption p{
    font-size: 15px;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
 
}
 
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {  
    
}
 
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
 
}
 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
    .navbar-nav{
        background-color:transparent;
    }
    .navbar-expand-md .navbar-nav .nav-link{
        font-size: 15px;       
        height:inherit;
        line-height: inherit;
        padding: 0 16px;
        color:#dadada;
        font-weight: 600;
    }

    .carousel-item{
        height:755px;
    }
    .carousel-item::after{
        content: '';
        display: block;
        position:absolute;
        width:100%;
        height:755px;
        left:0;
        top:0;
        z-index: 1;
        background-color:rgba(1, 7, 17, 0.62);
    }
    .carousel-caption h1{
        font-size: 50px;
    }
    .carousel-caption p{
        font-size: 30px;
    }
}