::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #e1e1e1;
}
::-webkit-scrollbar-thumb {
    background: #035656;
    transition: .5s ease-in-out;
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 173, 29);
}
*{
    transition: all .3s;
}
html,body{
    font-family: 'Lato', sans-serif !important;
    overflow-x: hidden;
}

.mmasami_header_area {
    padding: 60px 0px;
    background-image: linear-gradient(rgb(4 104 104),rgb(2 46 46));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 1px 0px 100px rgb(3 93 93);
    margin-bottom: 60px;
}

.msmasami_profile_section .msmasami_profile_photo img {
    border-radius: 100%;
    border: 10px solid rgb(2 102 102);
    width: 300px;
    height: 300px;
}
.mmasami_profile_area {
    /* font-family: 'TitilliumWeb'; */
    color: #ffffff;
}
.mmasami_profile_area h2 {
    font-weight: 600;
    font-size: 30px;
}
.mmasami_profile_area p {
    /* font-family: 'TitilliumWeb'; */
    font-size: 16px;
}

.mmasami_profile_area a.nav_menu {
    color: #ffffff;
    background: #035d5d;
    margin: 3px 3px;
    padding: 6px 18px;
    font-size: 15px;
    border-radius: 3px 15px 3px 15px;
    text-decoration: none;
    display: inline-block;
    /* font-family: 'TitilliumWeb'; */
}
.mmasami_profile_area a.nav_menu:hover{
    background: #006262;
}

.mmasami_social_icons {
    margin-top: 15px;
    margin-bottom: -85px;
}
.mmasami_social_icons a, .mmasami_social_icons a:hover {
    color: transparent;
}
.mmasami_social_icons a i {
    font-size: 22px;
    background: #035656;
    color: #ffffff;
    border-radius: 1000px;
    padding: 10px;
    transition: .3s;
    margin: 3px 3px;
}
.mmasami_social_icons a:hover i {
    background: #006262;
}

#about_basic_section{
    margin-bottom: 50px;
}
#about_basic_section .about_basic_section{
    padding: 30px;
    border-radius: 15px;
}
#footer_section{
    padding: 15px 0px;
    background: rgb(3 100 100);
}
#footer_section h2{
    color: white;
    font-weight: 700;
}
#footer_section .social_icon{
    color: #fff;
}
#footer_section .social_icon a{
    text-decoration: none;
    color: white;
    margin: 0px 5px;
    width: 12px !important;
    transition: .3s !important;
}
#footer_section .social_icon a:hover{
    color: rgb(197, 196, 196);
}
#footer_section .social_icon a i{
    font-size: 20px;
}
#scroll_btn {
    box-shadow: 2px 2px 20px rgb(3 101 101);
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(3 99 99);
    color: white;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 1000px;
    font-size: 18px;
}
#scroll_btn:hover {
    background-color: #555;
}
#preloader{
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99999;
}
#preloader .loader{
    width: 200px;
    height: 200px;
    border-radius: 1000px;
    background: rgb(255, 255, 255);
    border: 20px solid rgba(214, 214, 214, 0.795);
    border-top: 20px solid #035d5d;
    animation: rotate 2s linear infinite;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.signature img {
    width: 80px;
}
