*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
}
.mayur-nav{
    height: 150;
}
.navbar-nav .nav-link{
    color: white !important;
    font-size: 15px;
    margin-top: 15px;
}
.nav-item{
padding: 5px;
margin-right: -10px;
}
.navbar-nav{
      margin-left: 21px;
}
.bg-mayur{
    background-color: skyblue;
    height: 600px;
}

.aboutus{
    background-color: black;
}


.tittle{
    color: white;
    align-items: center;
    text-align: center;
    margin-left: 150px;
    font-size: x-large;
}

.logo2{
    margin-bottom: 250px;
}


.slider{
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}
.slider img{
    width: 100%;
    display: none;
}
img.displaySlide{
    display: block;
    animation-name: fade;
    animation-duration: 1.5s;
}
.slider button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 10px 15px;
    background-color: hsla(0, 0%, 0%, 0.5);
    color: white;
    border: none;
    cursor: pointer;
}
.prev{
    left: 0;
}
.next{
    right: 0;
}
@keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
}