/*Font Awesome Free Icon*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css");
/*Google fonts*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:500,700,900&display=swap');

/*===================================
 ==============General Css============
 =====================================*/
* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

::after,
::before {
    box-sizing: border-box;
}

.section {
    background: #f2f2fc;
    min-height: 100vh;
    display: block;
    padding: 40px 30px;
    position: fixed;
    left: 270px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow-y: auto;
    opacity: 1;
}
.section.back{
    z-index: 1;
}
.section.active{
    opacity: 1;
    z-index: 2;
    animation: styleshows 0.5s linear;
}
@keyframes styleshows {
    0%{
        transform: translateX(100%);
    }100%{
        transform: translateX(0%);
    }
    
}
.section-title {
    margin-top: 50px;
    position: relative;
    margin-bottom: 60px;
}

.section-title h1 {
    color: #302e4d;
    font-size: 40px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 50px;
    height: 5px;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 120%;
    left: 0;
    width: 25px;
    height: 5px;
}


body {
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* pure loader*/
.pure-loader{
    width: 100%;
    height: 100%;
    position: fixed;
    background: #191919;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after,
  .loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
  }
  .loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
      

/*====================================
 ==============aside Css==============
 =====================================*/
.aside {
    width: 270px;
    background: #fdf9ff;
    min-height: 100vh;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid #e8dfec;
    padding: 30px;
    z-index: 322;
    transition: 0.4s;
}
.aside.active{
    left: 0;
    transition: 0.4s;
}

.aside .aside-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* logo */
.aside .aside-content .logo {
    margin-bottom: 20px;
}

.aside .aside-content .logo a {
    color: #302e4d;
    font-size: 40px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding: 0 10px;
    line-height: 50px;
}

.aside .aside-content .logo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}

.aside .aside-content .logo a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
}

/* nav toggler */
.nav-toggler {
    width: 50px;
    height: 50px;
    border: 1px solid #d4d4e3;
    border-radius: 5px;
    background: #fdf9ff;
    position: fixed;
    left: 30px;
    top: 30px;
    z-index: 555;
    cursor: pointer;
   display: none;
   transition: 0.4s;
}
.nav-toggler.active{
    margin-left: 240px;
    transition: 0.4s;
}
 .nav-toggler::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    transform: translateY(-10px);
    transition: 0.4s;
}
.nav-toggler.active::before{
    transform: rotate(45deg);
}
.nav-toggler.active::after{
    transform: rotate(-45deg);
}
.nav-toggler.active span{
    transform: translateX(-30px);
    opacity: 0;
}
 .nav-toggler::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    transform: translateY(10px);
    transition: 0.4s;
}

.nav-toggler span {
    position: absolute;
    width: 30px;
    height: 3px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
    transition: 0.4s;
}

/* navbar */
.aside .aside-content nav {
    margin-top: 30px;
}

.aside .aside-content nav ul li a {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    color: #302e4d;
    font-weight: 600;
    line-height: 40px;
    transition: 0.3s ease-in-out;
    border-bottom: 1px solid #e8dfec;
}

.aside .aside-content nav ul li a .fa-solid {
    margin-right: 5px;
}

.aside .aside-content nav ul li a:not(.active):hover {
    padding-left: 5px;
}

/* copyright */
.aside .aside-content .copyright {
    margin-top: 30px;
}
.aside .aside-content .copyright p{
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 50px;
    color: #504e70;

}
/*===================================
 ============home section=============
 =====================================*/
.home .home-intro {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.home .home-intro .img-box {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #fff;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.343);
    background: #fff;
}

.home .home-intro .img-box .spainer {
    position: absolute;
    width: 98%;
    height: 98%;
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: spain 13s linear infinite;
}

@keyframes spain {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.home .home-intro .img-box img {
    position: absolute;
    width: 95%;
    height: 95%;
    border: 7px solid #fff;
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.home .home-intro h1 {
    color: #302e4d;
    font-size: 35px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}

.home .home-intro p {
    color: #302e4d;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

/* social */
.home .home-intro .social {
    margin-top: 20px;
}

.home .home-intro .social ul li {
    display: inline-block;
}

.home .home-intro .social ul li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
    color: #fdf9ff;
    margin: 0 3px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
}

.home .home-intro .social ul li a:hover {
    transform: scale(1.1);
}

.home .home-intro .social ul li a .fa-brands {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*===================================
 ============about section============
 =====================================*/
/* section sub heading */
.about .section-sub-heading h2 {
    color: #504e70;
    font-size: 25px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about .section-sub-heading p {
    color: #504e70;
}

.about .row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* personal data */
.about .row .personal-info {
    flex: 0 0 58%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about .row .personal-info .info-item {
    flex: 0 0 48%;
    text-transform: capitalize;
}

.about .row .personal-info .info-item p {
    line-height: 35px;
    font-weight: 600;
    color: #504e70;
    padding: 3px 0;
    border-bottom: 1px solid #d4d4e3;
}

.about .row .personal-info .info-item p span {
    font-weight: 400;
}
/* button css */
.about .row .personal-info .btn-lists {
    margin: 40px 0px;
    width: 100%;
}

.about .row .personal-info .btn-lists a {
    display: inline-block;
    color: #fdf9ff;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 20px;
    transition: 0.4s;
    cursor: pointer;
}

.about .row .personal-info .btn-lists a:hover {
    transform: scale(1.1);
}

.about .row .personal-info .btn-lists a:last-child {
    margin-right: 0;
}

.about .row .personal-info .btn-lists .btn {
    padding: 10px 25px;
    border-radius: 20px;
}

/* skills */
.about .row .skills {
    flex: 0 0 38%;
}

.about .row .skills .progressbar-item {
    margin-bottom: 15px;
}

.about .row .skills .progress-bar {
    margin: 0 0 10px;
    overflow: visible;
    background: transparent;
}

.about .row .skills .progress-number {
    padding-bottom: 2px;
    position: relative;
    margin: 2px 0;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    color: #2e2e2e;
}

.about .row .skills .progress-title {
    z-index: 100;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #504e70;
    text-transform: capitalize;
}

.about .row .skills .progress-number-mark {
    padding: 6px 6px 5px;
    border-radius: 3px;
    color: #fdf9ff;
    margin-bottom: 4px;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    font-size: 16px;
    font-weight: 500;
    transform: translateX(-50%);
}

.about .row .skills .down-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.about .row .skills .progress-bg {
    height: 6px;
    background: #e8dfec;
    overflow: hidden;
    border-radius: 6px;
}

.about .row .skills .progress-fill {
    height: 6px;
    width: 0%;
    border-radius: 6px;
}
/* education css */
.about .row .education{
    margin-top: 25px;
    flex: 0 0 48%;
}
.about .row .experience{
    margin-top: 25px;
    flex: 0 0 48%;
}
.about .row .education h2,
.about .row .experience h2{
    text-transform: capitalize;
    color: #504e70;
    margin-bottom: 40px;
}
.education-content,
.experience-content{
    padding: 30px 20px;
    background: #fdf9ff;
    border-radius: 10px;
    box-shadow:  0 0 15px rgba(0, 0, 0, 0.184);
}
.about .education-content .education-info,
.about .experience-content .experience-info{
    padding: 0 0 40px 25px;
    position: relative;
}
.about .education-content .education-info::after,
.about .experience-content .experience-info::after{
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.about .education-content .education-info:last-child,
.about .experience-content .experience-info:last-child{
    padding-bottom: 0;
}
.about .education-content .education-info span,
.about .experience-content .experience-info span{
    color: #504e70;
}
.about .education-content .education-info h3,
.about .experience-content .experience-info h3{
    color: #504e70;
    margin: 12px 0px 20px 0px;
    text-transform: capitalize;
}
.about .education-content .education-info p,
.about .experience-content .experience-info p{
    color: #504e70;
    text-transform: capitalize;
}
/*===================================
 ==========services section==========
 =====================================*/
.services .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.services .row .services-item{
    flex:  0 0 31.3333%;
    background: #fdf9ff;
    margin: 1%;
    padding: 20px;
    text-align: center;
    border: 1px solid #e8dfec;
    border-radius: 5px;
    
}
.services .services-item .services-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 5px auto;
    line-height: 50px;
    transition: 0.3s;
    font-size: 25px;
}
.services .services-item:hover .services-icon{
    color: #fdf9ff;
    font-size: 20px;
}
.services .services-item h3{
    text-transform: capitalize;
    color: #504e70;
    margin: 10px 0px;
}
.services .services-item p{
    color: #504e70;
    margin: 10px 0px;
}
/*===================================
 ==========portfolio sectio==========
 =====================================*/
.portfolio .btn-list{
    text-align: center;
    margin: 10px 0px;
}
.portfolio .btn-list button{
    outline: none;
    border: none;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    color: #504e70;
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    margin: 0 5px;
    transition: 0.3s;
    background: none;
}
.portfolio .row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.portfolio .row .item{
    flex: 0 0 31.3333%;
    max-width: 31.3333%;
    height: 250px;
    margin: 1%;
    position: relative;
    border: 5px solid #fdf9ff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.portfolio .row .item img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.portfolio .row .item .text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #302e4d66;
    padding: 10px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.portfolio .row .item .text h3{
    position: absolute;
    top: 20px;
    left: -100%;
    color: #fdf9ff;
    text-transform: capitalize;
    transition: 0.3s;
}
.portfolio .row .item .text .icon{
    position: absolute;
    right: -100%;
    bottom: 20px;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #ffffff;
    border-radius: 50%;
}
.portfolio .row .item:hover .text{
    visibility: visible;
    opacity: 1;
}
.portfolio .row .item:hover .text h3{
    left: 20px;
}
.portfolio .row .item:hover .text .icon{
    right: 30px;
}

/* lightbox */
.lightbox{
    position: fixed;
    background: rgba(0, 0, 0, 0.484);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
    cursor: zoom-out;
    z-index: 1111;
    opacity: 0;
    visibility: hidden;
}
.lightbox.open{
    visibility: visible;
    opacity: 1;
    animation: lightboxopen 0.4s linear;
}
@keyframes lightboxopen {
    0%{
        opacity: 0;
    }100%{
        opacity: 1;
    }
}
.content{
    position: relative;
}
.lightbox-close{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: auto;
    cursor: pointer;
    margin-bottom: 5px;
   color: #fdf9ff;
   font-size: 22px;
   background: #302e4d79;
   border-radius: 5px;
}
.content img{
    max-width: 100%;
    max-height: 450px;
    display: block;
    cursor: pointer;
}

.imagestext{
    display: flex;
    justify-content: space-between;
}
.img-title{
    text-transform: capitalize;
    color: #fdf9ff;
    font-size: 18px;
    font-weight: 500;
}
.counter{
    color: #fdf9ff;
}
.nextitem{
    position: absolute;
    top: 50%;
    right: 40px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 45px;
    text-align: center;
    background: #fdf9ff;
    transition: 0.3s;
}
.previtem{
    position: absolute;
    top: 50%;
    left: 40px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 45px;
    text-align: center;
    background: #fdf9ff;
    transition: 0.3s;
}
.previtem:hover,
.nextitem:hover{
    transform: scale(1.1);
}

/*====================================
 ============blog sectio==============
 =====================================*/
.blog .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.blog .row .blog-item{
    flex: 0 0 31.3333%;
    max-width: 31.3333%;
    background: #fdf9ff;
    border-radius: 10px;
    box-shadow: 0 0 15px #1d1b1b37;
    margin: 1%;
}
.blog .row .blog-item .img-box{
    position: relative;
}
.blog .row .blog-item .img-box img{
    width: 100%;
    max-height: 200px;
    display: block;
}
.blog .row .blog-item .img-box span{
    position: absolute;
    display: inline-block;
    left: 20px;
    bottom: 20px;
    padding: 3px 5px;
    border-radius: 5px;
    color: #fdf9ff;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.blog .row .blog-item .blog-text{
    padding: 20px;
}
.blog .row .blog-item .blog-text h3{
    color: #504e70;
    text-transform: capitalize;
    margin: 10px 0px;
}
.blog .row .blog-item .blog-text p{
    text-transform: capitalize;
    color: #504e70;
}
.blog .row .blog-item .blog-text .tags{
    margin-top: 15px;
}
.blog .row .blog-item .blog-text .tags p{
    text-transform: capitalize;
    color: #504e70;
}
.blog-post-popup{
    width: 100%;
    height: 100vh;
    background: #fdf9ff;
    padding: 20px;
    overflow-y: auto;
    color: #504e70;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.184);
    position: absolute;
    top: 0px;
    left: 0;
}
.blog-post-popup .post-close{
    width: 45px;
    height: 45px;
    padding: 40px 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    cursor: pointer;
}
.post-views{
    padding: 20px 20px 80px 20px;
    border-bottom: 1px solid #e8dfec;
}
.entry-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8dfec;
    padding: 15px 0;
}
.entry-author{
    margin-right: 10px;
}
.post-icon{
    color: #504e70;
    margin-right: 5px;
    font-size: 13px;
}
.post-content{
    margin-top: 30px;
}
.post-content .post-images{
    text-align: center;
}
.post-content .post-images img{
    max-width: 100%;
    max-height: 400px;
}
.post-text{
    margin-top: 20px;
}
.blog-post-popup .form{
    margin-top: 40px;
}
.blog-post-popup .input-field{
    flex: 0 0 48%;
    width: 48%;
    margin: 1%;
}
.blog-post-popup .input-field:nth-child(3){
    flex: 0 0 98%;
    margin: 2% 1%;
}
.blog-post-popup .input-field input{
    width: 100%;
    height: 40px;
    padding: 10px 20px;
    border-radius: 20px;
    outline: none;
    font-size: 18px;
    color: #504e70;
    border: 1px solid #d4d4e3;
}
.blog-post-popup .input-field input::placeholder{
    text-transform: capitalize;
    font-size: 18px;
    color: #504e70;
}
.blog-post-popup .form .row textarea{
    width: 98%;
    margin: 1%;
    padding: 10px 20px;
    border-radius: 20px;
    outline: none;
    font-size: 18px;
    color: #504e70;
    border: 1px solid #d4d4e3;
    resize: none;
}
.blog-post-popup .form .row input[type="submit"]{
    display: inline-block;
    padding: 15px 40px;
    margin-right: auto;
    margin-left: 15px;
    border-radius: 50px;
    color: #fdf9ff;
    text-transform: capitalize;
    font-weight: 600;
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.4s;
}
.blog-post-popup .form .row input[type="submit"]:hover{
    transform: scale(1.1);
}








/*====================================
 ===========contact sectio============
 =====================================*/
.contact .row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contact .row .contact-data{
    flex:  0 0 31.33333%;
    margin: 1%;
    text-align: center;
}
.contact .row .contact-data .icon{
    margin: 10px 0px 15px 0px;
    font-size: 24px;
}
.contact .row .contact-data h3{
    text-transform: capitalize;
    color: #504e70;
}
.contact .row .contact-data span{
    display: inline-block;
    margin: 5px 0px;
    color: #504e70;
}
.contact .row .contact-data span a{
    color: #504e70;
}
/* inpput fields */
.contact .form{
    margin-top: 20px;
}
.contact .input-field{
    flex: 0 0 48%;
    width: 48%;
    margin: 1%;
}
.contact .input-field:nth-child(3){
    flex: 0 0 98%;
    margin: 2% 1%;
}
.contact .input-field input{
    width: 100%;
    height: 40px;
    padding: 10px 20px;
    border-radius: 20px;
    outline: none;
    font-size: 18px;
    color: #504e70;
    border: 1px solid #d4d4e3;
}
.contact .input-field input::placeholder{
    text-transform: capitalize;
    font-size: 18px;
    color: #504e70;
}
.contact .form .row textarea{
    width: 98%;
    margin: 1%;
    padding: 10px 20px;
    border-radius: 20px;
    outline: none;
    font-size: 18px;
    color: #504e70;
    border: 1px solid #d4d4e3;
    resize: none;
}
.contact .form .row input[type="submit"]{
    display: inline-block;
    padding: 15px 40px;
    margin-right: auto;
    margin-left: 15px;
    border-radius: 50px;
    color: #fdf9ff;
    text-transform: capitalize;
    font-weight: 600;
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.4s;
}
.contact .form .row input[type="submit"]:hover{
    transform: scale(1.1);
}

/* body dark css */
body.dark .section{
    background: #151515;
}
body.dark .about .row .skills .progress-bg,
body.dark .contact .input-field input,
body.dark .contact .form .row textarea,
body.dark .blog .row .blog-item,
body.dark .services .row .services-item,
body.dark .education-content,
body.dark .experience-content,
body.dark .blog-post-popup,
body.dark .blog-post-popup .input-field input,
body.dark .blog-post-popup .form .row textarea,
body.dark .aside{
    background: #222222;
}


body.dark .section-title h1,
body.dark .home .home-intro h1,
body.dark .aside .logo a,
body.dark .aside ul li a{
    color: #ffffff;
    
}
body.dark .contact .input-field input,
body.dark .contact .form .row textarea,
body.dark .portfolio .row .item,
body.dark .services .row .services-item,
body.dark .about .row .personal-info .info-item p,
body.dark .aside,
body.dark .aside ul li a{
    border-color: #393939;
}
body.dark .blog-post-popup .input-field input::placeholder,
body.dark .blog-post-popup .form .row textarea::placeholder,
body.dark .blog-post-popup .input-field input,
body.dark .blog-post-popup .form .row textarea,
body.dark .aside .aside-content .copyright p,
body.dark .contact .form .row textarea::placeholder,
body.dark .contact .input-field input::placeholder,
body.dark .contact .input-field input,
body.dark .contact .form .row textarea,
body.dark .blog .row .blog-item .blog-text h3,
body.dark .about .section-sub-heading h2,
body.dark .services .services-item h3,
body.dark .contact .row .contact-data span ,
body.dark .contact .row .contact-data span a,
body.dark .contact .row .contact-data h3,
body.dark .blog .row .blog-item .blog-text p,
body.dark .portfolio .btn-list button,
body.dark .services .services-item p,
body.dark .about .education-content .education-info p,
body.dark .about .experience-content .experience-info p,
body.dark .about .education-content .education-info h3,
body.dark .about .experience-content .experience-info h3,
body.dark .about .education-content .education-info span,
body.dark .about .experience-content .experience-info span,
body.dark .about .row .education h2,
body.dark .about .row .experience h2,
body.dark .about .row .skills .progress-number-mark,
body.dark .about .row .skills .progress-title,
body.dark .about .row .personal-info .info-item p,
body.dark .about .section-sub-heading p,
body.dark .blog-post-popup h2,
body.dark .entry-meta,
body.dark .entry-meta .post-icon,
body.dark .post-text p,
body.dark .home .home-intro p{
    color: #e9e9e9;
}