*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}
body{
   /*background-color: #6e8ca4;*/
   background: linear-gradient(to bottom, #52607d, #91bfc7);
   padding-top: 80px;
   padding-bottom: 20px;
   padding-left: 20px;
   padding-right: 20px;
}
.Top-bar{
    max-width: 750px;
    display: grid;
    width: calc(100% - 24px);
    left: 0px;
    right: 0px;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgb(235, 238, 241);
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    width: 100%;
    margin: 8px auto;
    -webkit-box-align: center;
    align-items: center;
    padding: 8px 12px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}
.Top-bar.sticky{
    opacity: 1;
    pointer-events: all;
    top: 0;
    transition: all ease .5s;
}
.top-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.img-box{
    height: 60px;
    width:  60px;
}
.img-box img{
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}
.top-btn{
    height: 40px;
    width: 40px;
    background-color: black;
    color: white;
    cursor: pointer;
    border-radius: 50px;
    outline: 0;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Top-bar .name{
    font-weight: 700;
}
/* ============================================= */
.img-box-2{
    width: 120px;
    height: 120px;
    margin: auto;
    margin-bottom: 15px;
}
.img-box-2 img{
    width: 100%;
    height:100%;
    border-radius: 100px;
    object-fit: cover;
}
.motivational .Name{
    text-align: center;
}
.motivational .Name h1{
    font-size: 22px;
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}
.motivational .Name p{
    color: white;
    font-size: 18px;
    margin-bottom: 0px;
    letter-spacing: 1px;
}
/* ========================================== */
.useful-links .img-box-3{
    width:40px;
    height:40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.useful-links .img-box-3 img{
    width: 100%;
    border-radius: 50px;
    object-fit: cover;
}
.useful-links .link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.useful-links{
    margin: auto;
    display: block;
    min-height: 65px;
    /*max-width: 580px;*/
    border-radius: 50px;
    border: 2px solid black;
    padding: 10px;
    background-color: black;
    transition: all ease .3s;
    margin-bottom: 15px;
    text-decoration: none;
}
.useful-links .link p{
    color: #e08d1a;
    padding: 0px 50px;
    font-weight: 500;
    text-align: center;
    transition: all ease .3s;
    margin:0;
}
.useful-links:hover{
    background-color: transparent;
}
.useful-links:hover p{
    color: black;
}
.useful-links:hover .useful-link-btn{
    opacity: 1;
    pointer-events: all;
}
.useful-link-btn{
    height: 40px;
    width: 40px;
    border-radius: 50px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
    opacity: 0;
    pointer-events: none;
    flex-shrink: 0;
}
.useful-link-btn:hover{
   background-color: #5c849e;  
}
/* ================================ */

.logo{
    margin: auto;
    width: 110px;
    margin-top: 50px;
}

.pre{
    font-size: 10px;
    color: rgb(226, 226, 226);
}

.pre:hover{
    color: rgb(255, 255, 255);
}

/* ================================================= */
@media (max-width:992px) {

    body{
        padding-top: 50px;
    }
}

@media (max-width:768px) {}

@media (max-width:576px) {

    .useful-links .link p {
        font-size: 14px;
        padding: 0px 10px;
    }

}