body{
    background-color: #282a2f;
    color: #fff;
    font-family: "Mulish", sans-serif;
}
a {
    text-decoration: unset;
    transition: all .2s;
}

.cursor{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f75023;
    position: fixed;
    z-index: 2000;
    pointer-events: none;
    /* transition: all .1s; */
    left: -30px;
    top: -30px;
    animation: hueAnimation 5s infinite;
}

.cursor::before{
    content: "";
    width: 30px;
    height: 30px;
    left: -12px;
    top: -12px;
    border-radius: 50%;
    border: 2px solid #f75023;
    transition: all .2s ease-out;
    position: absolute;
}

.cursorClicked{
    animation: clickAnimate .5s infinite forwards;
}

@keyframes clickAnimate {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes hueAnimation {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Jost", sans-serif;    
}
a { transition: all .2s; }
section{
    /* min-height: 500px; */
    min-height: 300px;
}

/* Offcanvas Menu Start */
.menu-toggler{
    color: aqua;
    border-color: aqua;
    padding: 0px 10px;
    font-size: 22px;
    position: fixed;
    right: 25px;
    top: 20px;
    z-index: 1000;
}
.menu-toggler:hover{
    background: aqua;
    color: #222;
}
.offcanvas {
    max-width: 330px;
    padding: 25px;
    text-align: center;
    background-color: #1e1e22; 
}
.offcanvas .profile-photo {
    max-width: 150px;
    width: 100%;
    margin: auto;
    border-radius: 50%;
    border: 7px double #424346;
}
.offcanvas-header{
    position: relative;
}
.offcanvas-header .btn-close{
    position: absolute;
    top: 0;
    right: 0;
}

#menu-list a {
    padding: 9px 0;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    color: #fff;
}
#menu-list a:hover, #menu-list a.active{
    color: aqua;
}
#menu-list a span{
    position: relative;
}
#menu-list a span::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: aqua;
    right: 100%;
    top: 50%;
    margin-top: -2px;
    margin-right: 7px;
    transition: all .3s;
}
#menu-list a span::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: aqua;
    left: 100%;
    top: 50%;
    margin-top: -2px;
    margin-left: 7px;
    transition: all .3s;
}
#menu-list a.active span:before, #menu-list a.active span:after{
    width: 20px;
}

/* About Section */
#about{
    background-color: #202020;
}
#about .label{
    margin-bottom: 15px;
    position: relative;
}
#about .count h1{
    font-family: 'Mulish';
    font-weight: 600;
}
#about img {
    max-width: 450px;
    margin: auto;
    display: block;
    width: 100%;
}
#intro {
    color: aqua;
}

.copyright {
    font-size: 12px;
    color: #ffffffb3;
}

/* .content-wrapper {
    margin-left: 330px;
} */

/* Service Section */
#services{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #282a2f;
}
#services .box{
    background-color: #363641;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    margin: 30px 0;
    align-items: center;
    column-gap: 30px;
    transition: all .4s;
}
#services .box img.icon{
    width: 60px;
}
#services .box:hover{
    background-color: #42424e;
}

/* Skills Section */
#skills{
    background-color: #202020;
    padding-top: 70px;
    padding-bottom: 70px;
}
#skills figure{
    background: #212529;
    padding: 20px 15px;
    margin: 12px 0;
    border-radius: 5px;
    transition: all .3s;
}
#skills figure img{
    max-width: 70px;
}
#skills figure figcaption {
    margin-top: 15px;
}
#skills figure:hover{ background-color: #303134; }

/* Portfolio */
#portfolio{
    padding: 70px 0;
}
#portfolio .linkto {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #fff;
    margin: 20px 0;
}
#portfolio .linkto:hover{
    color: aqua;
}
.screen {
	width: 100%;
	overflow: hidden;
	position: relative;
    aspect-ratio: 1/1;
}
/* .screen img {
	transition-timing-function: ease-in-out;
    transition-duration: 3s;
}
.screen:hover img {
    margin-top: 350px;
    transform: translate(0, -100%);
    transition-timing-function: ease-in-out;
    transition-duration: 3s;
} */

#resume {
    background: #202020;
}
#resume h4 {
    color: aqua;
}
#resume .featured-image {
    filter: opacity(.8);
    transform: rotateY(180deg);
}
#resume .flex-box {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    justify-content: space-between;
    align-items: center;
    background: #363641;
    gap: 15px;
    transition: all .3s;
}
#resume .flex-box .inner-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
#resume .flex-box:hover{
    background: #42424e;
}
#resume .flex-box div {
    max-width: 400px;
}
#resume .flex-box .inner-flex img {
    max-width: 50px;
}
#resume .flex-box .company {
    font-family: Mulish, sans-serif;
    font-weight: 700;
}
#resume .flex-box .post {
    margin-top: 15px;
    color: aqua;
}
#resume .flex-box .duration {
    font-size: 14px;
}
#resume .flex-box .duration i{
    color: aqua;
    margin-right: 7px;
    opacity: .7;
}
#resume .education .flex-box{
    margin: 30px 0 0;
}

#contact .flex-box {
    display: flex;
    column-gap: 12px;
    margin: 15px 0;
}
#contact .flex-box i{
    color: aqua;
}
#contact .flex-box a{
    color: #fff;
}
#contact .flex-box a:hover{
    color: aqua;
}
.socials{
    margin-top: 40px;
}
.socials a {
    background: #4d4f54;
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 5px;
    font-size: 18px;
}
.socials a:hover{
    background: aqua;
    color: #303134; 
}

/* Media Query Max Width */
@media(max-width: 768px){
    #portfolio, #skills, #services {
        padding: 50px 0;
    }
}

@media(max-width: 575px){
    #resume .flex-box{
        padding: 25px;
    }
}

@media(max-width: 425px){
    .count br {
        display: none;
    }
    #skills figure img {
        max-width: 50px;
    }
    #skills figure figcaption{
        font-size: 15px;
    }
}

@media(max-width: 375px){
    #skills figure{
        padding: 15px 10px;
    }
    #resume .flex-box .inner-flex {
        gap: 15px;
    }
    #resume .flex-box .inner-flex img {
        max-width: 40px;
    }
    #resume .flex-box {
        padding: 20px;
    }
    #resume .flex-box .company {
        font-size: 18px;
    }
}

/* Media Query Min Width */
@media(min-width: 1200px){
    .offcanvas{
        max-width: 330px;
    }
    .content-wrapper {
        margin-left: 330px;
    }
}

@media(min-width: 992px){
    .offcanvas{
        max-width: 300px;
    }
    .content-wrapper {
        margin-left: 300px;
    }
}

@media(min-width: 768px){
    .offcanvas{
        max-width: 250px;
    }
    .content-wrapper {
        margin-left: 250px;
    }
    .offcanvas{
        transform: none !important;
        visibility: visible;
    }
}