*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}
.max-width{
    max-width:1300px;
    padding:0 80px;
    margin:auto;
}
.navbar{
    position:fixed;
    width:100%;
    z-index:999;
    padding:30px 0;
    /* background:crimson; */
    transition:all 0.3s ease;



}
.navbar.sticky{
    padding:15px 0;
    background-color:#000;

}
.navbar .max-width{
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.navbar .logo a{
    font-size: 35px;
    font-weight:600;
    color: rgb(10, 103, 185);


}
.navbar .logo a span{
    color:#000;
    transition: all 0.3s ease;



}
.navbar.sticky .logo a span{
    color:#fff;

}
.navbar .menu li{
    list-style:none;
    display: inline-block;

}
.navbar .menu li a{
    color: rgb(10, 103, 185);
    font-size: 18px;
    font-weight: 500;
    margin-left:25px;
    transition: color 0.3s ease;

}
.navbar .menu li a:hover{
    color:#000;

}
.navbar.sticky .menu li a:hover{
    color:#fff;

}
/*menu btn styling*/
.menu-btn{
    color:#fff;
    font-size:23px;
    cursor:pointer;

}
/* Home Section Styling*/
.home{
    display:flex;
    /* replace image with dynamic photo created in photoshop */
    background:url("bidnessone.jpg") no-repeat center;
    height:100vh;
    color: rgb(10, 103, 185);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    

}
.home .max-width{
    margin:auto 0 auto 40px;
}
.home .home-content .text-one{
    font-size: 27px;
}
.home .home-content .text-two{
    font-size: 27px;
    font-weight: 600;
    margin-left:-3px;

}
.home .home-content .text-three{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-three span{
    color:#000;
    font-weight: 500;
}
.home .home-content a{
    display:inline-block;
    background-color:rgb(10, 103, 185);
    font-size: 25px;
    padding:12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid rgb(10, 103, 185);
    transition:all 0.3s ease;

    /* assign different color later */
}
.home .home-content a:hover{
    color:#000;
    background: none;
}

/* about section styling */
section{
    padding:100px 0;

}
.about{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.about .title{
    position: relative;
    text-align: center;
    font: size 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
.about .title::before{
    content:"";
    position:absolute;
    bottom:0px;
    left:50%;
    width:180px;
    height: 3px;
    background: #111;
    transform:translateX(-50%);

}
.about .title::after{
    content:"Who I am";
    position:absolute;
    bottom: -12px;
    left:50%;
    font-size:20px;
    color:rgb(10, 103, 185);
    padding:5px;
    background: #fff;
    transform:translateX(-50%);

}
.about .about-content{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}
.about .about-content .left{
    width:45%;


}
.about .about-content .left img{
    height:400px;
    width:400px;
    object-fit:cover;
    border-radius: 6px;


}
.about .about-content .right{
    width:55%;
    
}

























/* responsive media query start */
@media(max-width:1104px){
    .home .max-width{
        margin-left: 0px;
    }
}
@media(max-width:991px){
    .max-width{
        padding: 0 50px;
    }
}
@media(max-width:947px){
    .max-width{
        padding:0 5opx;

    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position:fixed;
        background:#111;
        left:-100%;
        top:0;
        width:100%;
        height: 100vh;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;


    }
    .navbar .menu.active{
        left:0;

    }
    .navbar .menu li{
        display:block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-two{
        font-size: 70px;
    
    }
    .home .home-content .text-three{
        font-size: 35px;
        
    }
    .home .home-content a{
        font-size:23px;
        padding: 10px 30px;

    }
    @media(max-width:690px){
        .max-width{
            padding:0 23px;
        }.home .home-content .text-two{

            font-size:60px;
        }
        .home .home-content .text-three{
            font-size: 32px;

        }
        .home .home-content a{
            font: size 20px;

        }
    }
    @media(max-width:500px)
    {
        .home .home-content .text-two{

            font-size:50px;
        }
        .home .home-content .text-three{
            font-size: 27px;

        }

    }


}
.circle{
    width:150px;
    height: 150px;
    margin:12px 0 0 0;
    border-radius:50%;
    background-color:rebeccapurple;
    animation: colorOff 5s infinite;


}
@keyframes colorOff{
    0%{
        
    }
    33%{
        background-color: rgb(10, 103, 185);
    }
    66%{
        background-color: chartreuse;
    }
    100%{
        background-color: #fff;
    }
}