/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #F0EDEE;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
}

img {
    width: 100%;
    object-fit: cover;
}

.container {
    width: 80%;
    margin: auto;
}
.heading {
    animation: slideIn 1s ease-in-out;
}
.about,
.myEducation,
.skills,
.MyJourney,
.FeaturedWor1k,
.freelanceAccounts,
.connect
 {
    animation: slideIn 3s ease-in-out;

}
.about::after {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background-color: #120D31;
    margin: 0 auto;
    margin-top: 20px;
}
.myEducation__title::after ,.myJourney__title::after{
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background-color: #120D31;
    margin: 0 auto;
    margin-top: 10px;
}
.educationStep,.myJourneyStep{
    width: 100%;
    border-bottom: 1px solid #120D31;
    padding: 20px 0;
   
}
.myJourneyStep:last-child{
    border: none;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
    .myEducation__title::after,.myJourney__title::after{
        display: none;
    }

}