html{
    -webkit-tap-highlight-color: transparent;
}
*{
    top: 0;
    left: 0;
    right: 0;
    box-sizing:  border-box;
    margin: 0;
}
body{
    top: 0;
    left: 0;
    right: 0;
    box-sizing:  border-box;
    margin: 0;
    transition: all ease-in-out 0.5s;
}
nav{
    background-color: rgba(255, 255, 255, 0.87);
    box-shadow: rgba(0, 0, 0, 0.219) 1px 1px 10px;
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(10px);
    
}
@keyframes loading-anim {
    0% {scale: 0.7; opacity: 0.5;}
    50% {scale: 1; opacity: 1;}
    100%{scale: 0.7; opacity: 0.5;}
  }
.loading{
    display: flex;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    background-color: white;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.3s;
}
.loading img{
    width: 150px;
    filter: brightness(0);
    animation-name: loading-anim;
    animation-duration: 2s;
    animation-iteration-count:infinite;
    
}
.lding-hide{
    opacity: 0;
    filter: blur(10px);
    visibility: hidden;
}
.main{
    padding-top: 75px;
}

.navmain{
    max-width: 1720px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto 0 auto;
    padding: 10px 30px;
    align-items: center;

}
.navmain .navigation-right ul li{
    display: inline-block;
    list-style: none;
    margin-left: 20px;
}
.navmain .navigation-right ul li a{
    display: inline-block;
    text-decoration: none;
    list-style: none;
    font-size: 14px;
    color:#000000d3;
    font-family: 'Share Tech Mono', monospace;
    font-weight:bolder;
    transition: all ease-in 0.5s;
    
}
.navmain .navigation-right ul li a:hover{
    color: #64FFA5;
    transition: all ease-in-out 0.3s;
    
}

nav .navmain .logo-left img{
    filter: brightness(0);
    width:50px;
    transition: all ease-in-out 0.2s;
}
nav .navmain .logo-left img:hover{
    filter: brightness(1.4);
    width:50px;
    transition: all ease-in-out 0.2s;
}
nav:hover ~ .about-sec .divimg::after{
    content:"";
    position: absolute;
    background-color:#041f0f71;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
}






/*#############################################################################################*/
/*                                      About Section                                         */
/*#############################################################################################*/
.about-sec {
}

.about-sec .divimg{
    background-image: url('../img/painting-mountain-lake-with-mountain-background.jpg');
    height: 55vh;
    background-position:center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    font-family: 'Montserrat',sans-serif;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}
.about-sec .divimg p{
    color: white;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.about-sec .divimg h2{
    color: white;
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(35px, 8vw, 60px);
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.about-sec .divimg h3{
    color: white;
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(28px, 6vw, 45px);
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.about-sec .divimg h5{
    color: white;
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.about-sec .divimg::before{
    content:"";
    position: absolute;
    background-color:#0000007a;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    transition: all ease-in-out 0.2s;

}
.about-sec .divimg::after{
    content:"";
    position: absolute;
    background-color:#64ffa507;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 0%;
    transition: all ease-in-out 0.2s;

}
.about-sec .divimg:hover::after{
    content:"";
    position: absolute;
    background-color:#041f0f71;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
}
.imgcontent{
    width: 100%;
    max-width: 1070px;
    margin: auto;
    padding: 12px;
}









.about-sec .about-content {
    width: 100%;
    max-width: 1070px;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat',sans-serif;
    margin: 5em auto;
    padding: 20px;
}
.about-content h2{
    margin: 0 auto;
    color: #4eaf77;
    font-size: 30px;
}
.about-sec .about-content .flex-cols{
    width: 100%;
    max-width: 1070px;
    position: relative;
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat',sans-serif;
    margin: 40px auto;
}
.profile{
    position: relative;
    padding: 10px;
}
.profile .div{
    position: relative;
    max-height: 280px;
    transition: all ease-in-out .2s;
    flex-grow: 1;  
    flex-shrink: 1;  
    flex-basis: 100px;  
}
.profile .div:hover{
    position: relative;
    max-height: 280px;
    translate: -2px -2px;
    transition: all ease-in-out .2s;
}
.profile img{
    width: 100%;
    max-width: 280px;
}
.profile .div::after{
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    border: solid 2px #64FFA5;
    translate: 15px 15px;
    z-index: -2;
    transition: all ease-in-out .2s;
}
.profile .div:hover::after{
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    border: solid 2px #64FFA5;
    translate: 20px 20px;
    z-index: -2;
    transition: all ease-in-out  .2s;
}
.profile .div::before{
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 100%;
    background-color: #64ffa559;
    z-index: 1;
    transition: all ease-in-out 0.2s;
}
.profile .div:hover::before{
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 0%;
    width: 0%;
    background-color: #64ffa559;
    z-index: 1;
    transition: all ease-in-out .2s;
}



.about-content .flex-cols .right-col{
    width: 100%;
    max-width: 650px;
    padding: 10px;
}
.about-content .flex-cols .right-col .polls{
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.about-content .flex-cols .right-col .polls p{
    font-size: 14px;
    color: #0000007a;
}
.about-content .flex-cols .right-col .poll{
    height: 8px;
    background-color: lightgrey;
    max-width: 300px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.about-content #right-col-text p{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.8px;
    word-wrap: break-word;
    color: #0000007a;
    

}

#polls{
    margin-top: 30px;
}
#poll1::after{
    content: '';
    position: absolute;
    background-color:#64FFA5;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 90%;
    border-radius: 10px;
}
#poll2::after{
    content: '';
    position: absolute;
    background-color:#64FFA5;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 85%;
    border-radius: 10px;
}
#poll3::after{
    content: '';
    position: absolute;
    background-color:#64FFA5;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 70%;
    border-radius: 10px;
}
#poll4::after{
    content: '';
    position: absolute;
    background-color:#64FFA5;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 80%;
    border-radius: 10px;
}
#poll5::after{
    content: '';
    position: absolute;
    background-color:#64FFA5;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 85%;
    border-radius: 10px;
}
.bodyy{
    opacity: 0;
    transition: all ease-in 0.5;
}
.bodyy.show{
    opacity: 1;
    transition: all ease-in 0.5;
}


















/*###############################################################################*/
/*                            Experience                                         */
/*###############################################################################*/
.experience-sec{
    padding:  75px 0;
    background-color: #64ffa513;
}
.exp-main{
    width: 100%;
    max-width: 1070px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    font-family: 'Montserrat',sans-serif;
}

.exp-main .flex-cols{
    display: flex;
    justify-content: space-between;
}
.exp-main .flex-cols .right-col{
    max-width: 650px;
    width: 100%;
    padding: 10px;
}
.exp-main .flex-cols .left-col{
    
    padding: 10px;
}
.exp-main .flex-cols .left-col h2{
    font-size: 35px;
    color: #4eaf77;

}

.exp-main .flex-cols .right-col .list{
    color: #000000b0;
    max-width: 700px;
    width: 100%;
    padding: 0 10px 30px  10px;
}
.exp-main .flex-cols .right-col ul{
    margin: 0;
    padding: 6px;
}
.exp-main .flex-cols .right-col ul li{
    padding: 10px;
    line-height: 30px;
    font-size: 16px;
}
.exp-main .flex-cols .right-col .list p{
    margin-top: 6px;
    line-height: 30px;
    font-size: 16px;
}
.exp-main .flex-cols .right-col h3{
    color: #000000cb;
}
.exp-main .flex-cols .right-col span p{
    margin-top: 10px;
    font-weight: 500;
    color: #000000cb;
}












/*###############################################################################*/
/*                            my works                                       */
/*###############################################################################*/
.mywork-sec{
    padding: 73px 0;
}
.mywork-main{
    max-width: 1070px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Montserrat',sans-serif;
}
.mywork-main h2{
    text-align: center;
    color: #4eaf77;
}
.mywork-main p{
    text-align: justify;
    color: #000000b0;
    line-height: 30px;
}
.mywork-main h3{
    text-align: justify;
    color: #000000b0;
    margin-bottom: 12px;
}
.mywork-main .flex-cols{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    margin: 48px auto  0;
}
.mywork-main .flex-cols .left-col{
    padding: 10px;
}
.mywork-main .flex-cols .right-col{
    padding: 10px;
}
.mywork-main .flex-cols .left-col .img{
    position: relative;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.089);
    border-radius: 5px;
    overflow: hidden;
    transition: all  .2s ease-in-out;
}
.mywork-main .flex-cols .left-col .img:hover{
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.205);
    transition: all  .2s ease-in-out;
    translate: 0 -8px;
}
.mywork-main .flex-cols .left-col .img::after{
    transition: all ease-in-out .2s;
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    background-color:#64ffa549;
    z-index: 1;
}
.mywork-main .flex-cols .left-col .img:hover::after{
    transition: all ease-in-out .2s;
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 0%;
    background-color:#b1ffd249;
    z-index: 1;
}
.mywork-main .flex-cols .left-col .img img{
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: 3px;
    height: 100%;
}
.mywork-main .flex-cols .right-col{
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: 3px;
}






.contact-sec{
    padding: 90px 0;
}
.contact-sec h2{
    color: #4eaf77;
    font-family: 'Montserrat',sans-serif;
    font-size: 30px;
    
}
.contact-main{
    max-width: 1070px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto 0 auto;

}
.contact-det{
    margin-top: 10px;
    padding: 10px;
}
.contact-det p{
    color: #000000b0;
    line-height: 30px;
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    max-width: 500px;
    text-align: center;
}
.contact-det a{
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    color: #4eaf77;
    border:#4eaf77  solid 1px !important;
    border-radius: 5px;
}
.contact-det a:nth-child(1){
    margin-right: 10px;
}
.contact-det a:nth-child(2){
    margin-left: 10px;
}
.contact-det a:hover{
    font-family: 'Share Tech Mono', monospace;
    color: #fff;
}
.contact-det a::after{
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 0%;
    background-color:#4eaf77;
    z-index: -1;
    transition: all ease-in-out 0.3s;
}
.contact-det a:hover::after{
    content: "";
    position: absolute;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    height: 100%;
    width: 100%;
    background-color:#4eaf77;
    z-index: -1;
}




.footerr{
    height: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.footerr p{
    color: #0000008f;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
}



.media-nav{
    display: none;
}






/*******************************/
/*           scroll animate    */
/*******************************/
html {
    scroll-behavior: smooth; /* Smooth scrolling behavior */
  }









/*---custom scrollbar---*/
::-webkit-scrollbar{
    width: 11px;
}
::-webkit-scrollbar-track{
    background-color:#ffffff;
}
/*! Firefox */    
html{
    scrollbar-color: #383b49 #ffffff;
    scrollbar-width: thin;
}

/*! Other Browser */
html {
    --scrollbarBG:#ffffff;
    --thumbBG: #383b49;
  }
  body::-webkit-scrollbar {
    width: 11px;
  }
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
  }
  body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
  }
  body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
  }






 /*********************resize media query*******************************/
 @media only screen and (max-width: 763px) {
    .about-sec .about-content .flex-cols{
        width: 100%;
        max-width: 1070px;
        position: relative;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        font-family: 'Montserrat',sans-serif;
        margin: 40px auto;

    }
    .profile{
        margin-top: 20px;
    }

    .exp-main .flex-cols{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mywork-main .flex-cols{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 98%;
        margin: 48px auto  0;
    }
    #reversed-wrap-flex-col{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap:wrap-reverse;
        width: 98%;
        margin: 48px auto  0;
    }
    .navmain .navigation-right ul{
        display: none;
    }
    .navmain .navigation-right{
        position: relative;
    }
    .anim-menu{
        position: sticky;
        float: right;
        padding: 3px;
        height: 35px;
        width: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-end;
        cursor: pointer;
        z-index: 9999;
        margin-right: 25px;
        top:20px;
        
    }
    .aactive ~ .media-nav{
        left: 40%;
        
    }
    .anim-menu :nth-child(1){
        height: 2px;
        width: 100%;
        background-color: black;
        transition: all ease-in-out 0.3s;
    }
    .anim-menu :nth-child(2){
        height: 2px;
        width: 85%;
        background-color: black;
        transition: all ease-in-out 0.3s;
    }
    .anim-menu :nth-child(3){
        height: 2px;
        width: 70%;
        background-color: black;
        transition: all ease-in-out 0.3s;
    }
    .aactive  :nth-child(1){
        transform: translateY(10px) rotate(405deg);
    }
    .aactive  :nth-child(3){
        transform: translateY(-10px) rotate(-45deg);
        width: 100%;
    }
    .aactive  :nth-child(2){
        transform: rotate(45deg);
        width: 100%;
        opacity: 0;
    }
    .media-nav{
        position: fixed;
        z-index: 999;
        width: 60%;
        height:100vh; 
        left: 100%;
        justify-content: center;
        padding-top: 90px;
        transition: all ease-in-out 0.2s;
        display: flex;
        background-color: #64FFA5;
    }
    .aactive ~ .media-nav{
        z-index: 999;
        box-shadow: 0 4px 40px 100vh rgba(255, 255, 255, 0.781);
        
    }
    .media-nav ul{
        padding: 0;
    }
    .media-nav ul li{
        text-decoration: none;
        list-style: none;
        font-size: 14px;
        color:#000000d3;
        font-family: 'Share Tech Mono', monospace;
        font-weight:bolder;
        transition: all ease-in 0.5s;
        padding: 20px 0;
    }
    .media-nav ul li a{
        text-decoration: none;
        list-style: none;
        font-size: 14px;
        color:#000000d3;
        font-family: 'Share Tech Mono', monospace;
        font-weight:bolder;
        transition: all ease-in 0.5s;
    }
 }
 @media only screen and (max-width: 517px){
    .polls{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    
 }