/* Desktop Large Screen Size*/
@media screen and (min-width: 100px) and (max-width: 1400px){}
/* Desktop Screen Size */
@media only screen and (min-width: 100px) and (max-width: 1200px){
    .nav-wrapper .section-nav.fixed{
        width: 25%;
    }
}
/* Laptop Screen Size */
@media only screen and (min-width: 100px) and (max-width: 992px){
    .About .about-avatar img{width: 250px;}
}
/* Tablet Screen Size */
@media only screen and (min-width: 100px) and (max-width: 991px){
    /*BG Vertical Lines*/
    .bg-lines .bg-line-1 {
        width: 25%;
    }

    .bg-lines .bg-line-2 {
        width: 50%;
    }

    .bg-lines .bg-line-3 {
        width: 75%;
    }

    .bg-lines .bg-line-4 {
        display: none;
    }
    .resume-wrapper .resume-box {
        margin-bottom: 24px;
    }

    .resume-wrapper .resume-box:last-child {
        margin-bottom: 0;
    }
    .header .header-left-name .header-heading {
        font-size: 36px;
    }
    .header .header-left-name .header-heading .stroke-text{
        font-size: 36px;
    }
    .nav-wrapper .section-nav {
        top: 0;
        bottom: 0;
        z-index: 99;
        height: 50px;
        padding: 15px;
    }

    .nav-wrapper .section-nav .navbar-menu {
        flex-direction: row;
        gap: 40px;
    }

    .nav-wrapper {
        height: 50px;
        overflow: visible;
    }
    .nav-wrapper .section-nav.fixed {
        width: 100%;
        height: 50px;
        top: auto;
        bottom: 0;
        left: 0;
        transition: all .3s linear;
        animation: 500ms fadeInTop ease-in-out 0s normal none 1 running;
    }
    .nav-wrapper .section-nav .navbar-menu li a span{
        font-size: 13px;
    }
    .nav-wrapper .section-nav .navbar-menu li a:before{
        font-size: 15px;
    }
    .nav-wrapper .section-nav .navbar-menu li a::after {
        width: 35px;
        height: 35px;
        right: -9px;
        top: 0;
    }
    .footer {
        padding-top: 30px;
        padding-bottom: 70px;
    }

}
/* Large Mobile Screen Size */
@media only screen and (min-width: 100px) and (max-width: 767px){
    .sections-wrapper section{
        padding: 50px 12px;
    }
    .user-role {
    font-size: 25px;
    }
    .title-heading::before{
        font-size: 22px;
        bottom: 15px;
    }
    .About .project-counter .counter-completed.row {
    row-gap: 15px;
    }
    .About .about-skills li{
        font-size: 14px;
    }
    .About .about-skills li span{
        font-size: 14px;
    }
    .nav-wrapper .section-nav .navbar-menu li{
        text-align: -webkit-center;
    }
     .nav-wrapper .section-nav .navbar-menu li a{
        height: 40px;
        width: 40px;
    }
    .nav-wrapper .section-nav .navbar-menu li a:before,
    .nav-wrapper .section-nav .navbar-menu li a:after{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        left: 0;
        top: 0;
        right: 0;
    }
     .nav-wrapper .section-nav .navbar-menu li a span {
        position: absolute;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        top: 0px;
        left: -10px;
        transition: all .3s linear;
        width: 65px;
        background-color: var(--primary-color);
        color: var(--white-color);
        font-size: 10px;
        padding: 5px;
        transition: all .3s linear;
    }
    .nav-wrapper .section-nav .navbar-menu li a span:after {
        position: absolute;
        content: '';
        width: 10px;
        height: 10px;
        bottom: -5px;
        left: 40%;
        background-color: var(--primary-color);
        border-radius: 10px 0px 0px 0px;
        transform: rotate(45deg);
    }
    .nav-wrapper .section-nav .navbar-menu li a:hover span{
        opacity: 1;
        top: -45px;
        visibility: visible;
    }
}
/* Mobile Screen Size */
@media only screen and (min-width: 100px) and (max-width: 575px){
    #wa-float { 
        padding: 8px; 
        gap: 0;
    }
    #wa-float .wa-text { 
        display:none;
    }
    .About .about-avatar img {
        width: 100%;
    }
    .header .header-left-name .header-heading {
        font-size: 25px;
        text-align: center;
    }

    .header .header-left-name {
        padding: 15px 0px;
    }

    .header .social-links ul {
        justify-content: space-evenly;
        text-align: center;
        font-size: 25px;
    }

    .header .header-left-name .header-heading .stroke-text {
        font-size: 25px;
    }

    .header .header-left-name {
        padding: 15px 0px;
    }

    .header .social-links ul {
        justify-content: space-evenly;
    }

    .nav-wrapper .section-nav,
    .nav-wrapper .section-nav.fixed {
        display: flex;
        align-items: center;
        justify-content: center;
        left: 0;
    }
    .nav-wrapper .section-nav .navbar-menu{
        gap: 20px;
    }

}
/* Small Screen Size */
@media only screen and (min-width: 100px) and (max-width: 320px){
    .user-role {
        font-size: 20px;
    }
}

