
.navigate{
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    background: white;
    
}

.navbar-nav .nav-item .nav-link {
    color: black !important;
    font-size: 1.1rem;
    margin-left: 30px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: black !important;
    transform: scale(1.1);
    background: white;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.dropdown-menu {
    background: #333;
    transition: opacity 0.3s ease;
}

.dropdown-item:hover {
    background-color: #007bff;
    color: white;
}

.navbar-brand img {
    width: 300px;
    margin-left: -45px;
}


.content{
    height: 60px;
    width: 100%;
    display: flex;
    background: linear-gradient(to right, #FF5733, #FFBD33, #f2295b);
}

.content2{
    width: 32%;
    height: 100%;
    margin-left: 10px;
}

.content2 p {
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
}
.content2 button{
    text-decoration: none;
    border: none;
    width: 150px;
    height: 35px;
    border-radius: 16px;
    margin-left: 100px;
    margin-top: 10px;
    background: linear-gradient(to right, #FF5733, #FFBD33, #f2295b);
    color: white;
    font-weight: bold;
}