/* Universal Selector */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 2px solid red; */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

}

/* Header */

header {
    background: rgb(211, 211, 211, 0.4);
    height: 15vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10rem;
    color: #000;
    padding: 1rem 0;
    height: 10vh;
    position: fixed;
    z-index: 2;

}


header .logo {
    height: 60px;
    width: 70px;
    border-radius: 50%;
    font-size: 2vw;
    font-weight: bold;
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav li {
    list-style-type: none;
}


.nav ul li a {
    font-size: 1.5vw;
    color: #04973a;
    text-decoration: none;
    font-weight: 600;
}

.header-text {
    color: #16a34a;
    text-align: center;
    font-weight: 700;
    font-size: 3.8vw;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    margin: 1rem 0;

}

.mc-img {
    height: 80vh;
    width: 100%;
    border-radius: 0.5rem;
}

/* About Starts Here */

.about-section {
    margin: 3rem 2rem 0 2rem;
    display: block;
}

.about-section h1 {
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    color: #04973a;
    font-family: 'Open Sans', sans-serif;
}

.about-container {
    background-color: lightgrey;
    min-height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.1);
    animation: about 3s linear;
}

@keyframes about {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.about-container aside {
    width: 30%;
    height: 50vh;


}

.about-container img {
    width: 100%;
    height: 50vh;
    border-radius: 1rem;
    transition: all;
}

.about-container img:hover {
    transform: scale(1.03);
}

.about-container article {
    width: 60%;
    height: 50vh;
    text-align: center;
    padding-top: 7rem;
    font-size: 1.3vw;
    font-weight: 500;

}

/* About Ends Here */

/* Service Section Starts Here */

.service-container {
    text-align: center;
    margin-top: 3rem;
}

.service-container h1 {
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    color: #04973a;
    font-family: 'Open Sans', sans-serif;
}

.service-container p {
    text-align: center;
    padding: 0.5rem 3rem;
    font-size: 1.3vw;
    margin-bottom: 2rem;

}

.service-container h4 {
    text-align: center;
    color: #04973a;
    font-size: 1.3vw;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 2rem;

}

.download-buttons a {
    height: 12vh;
    padding-top: 2rem;
    text-align: center;

}

.btn {
    padding: 0.7rem 1.5rem;
    background-color: lightgray;
    color: #16a34a;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.12vw;
    transition: all 0.3s;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.1);
}


.btn:hover {
    transform: scale(1.03);
    background: #16a34a;
    color: #fff;
}

/* Service Section Ends Here */


/* Portfolio Stars Here */

.portfolio-section {
    margin-top: 3rem;
    width: 100%;
    min-height: 100vh;

}

.portfolio-section h1 {
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    color: #04973a;
    font-family: 'Open Sans', sans-serif;
}

.portfolio-section p {
    text-align: center;
    padding: 0.5rem 3rem;
    font-size: 1.3vw;
}

.portfolio {
    min-height: 7vh;
    width: 100%;
    padding-top: 2rem;
    margin-top: 2rem;
}

.portfolio h4 {
    text-align: center;
    color: #04973a;
    font-size: 1.3vw;

}

.portfolio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 55vh;
    gap: 1rem;
}

.portfolio-holder {
    background-color: lightgray;
    width: 95%;
    border-radius: 0.5rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 1rem;
    padding: 1rem;
    transition: all;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.1);
}

.portfolio-holder:hover {
    transform: scale(1.03);
}

.portfolio-holder aside {
    width: 70%;
}

.portfolio-holder img {
    width: 100%;
    height: 47vh;
}

.portfolio-holder article {
    width: 30%;
    height: 30vh;
}

.portfolio-holder article p {
    font-size: 1.18vw;
    padding-left: 0.5rem;
    width: 100%;
}


/* Portfolio Ends Here */

/* Skills and Tools Starts Here */

.skills {
    padding: 4rem 0;
    width: 100%;
    min-height: 70vh;

}

.skills h1 {
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    color: #04973a;
    font-family: 'Open Sans', sans-serif;
}

.skills-img {
    width: 100%;
    min-height: 50vh;
    overflow: hidden;

}

.skills-img-container {
    height: 50vh;
    display: flex;
    width: fit-content;
    gap: 2rem;
    animation: scroll 110s linear infinite;
}

.skills-img-container img {
    width: 400px;
    min-height: 40vh;
    flex: 0 0 auto;
    display: block;
    border-radius: 1rem;

}



@keyframes scroll {
    0% {
        transform: translateX(-0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.skills-text {
    padding-left: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3rem;

}

.skills p {
    text-align: center;
    font-size: 1.3vw;
    padding: 0.5rem 3rem;
}

/* Skills and Tools Ends Here */


/* Features Section Starts Hre */

.feature-container {
    padding: 0 2rem;
    width: 100%;
    min-height: 60vh;
    padding: 1rem 0;
}

.feature-container h1 {

    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    color: #04973a;
    font-family: 'Open Sans', sans-serif;
    margin-top: 3rem;
}


.features {
    min-height: 40vh;
    width: 32%;
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.feature {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 43vh;
    gap: 1rem;
    color: #000;
    background: lightgray;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.1);
    padding: 1rem;
    border-radius: 8px;
    transition: all;
}

.feature:hover {
    transform: scale(1.03);
}

.feature-aside {
    min-height: 40vh;
    width: 60%;
}

.feature-aside img {
    width: 100%;
    min-height: 40vh;
    border-radius: 1rem;
}

.feature-article {
    margin-top: 10rem;
    text-align: center;
    min-height: 40vh;
    width: 50%;
}

.feature-grid {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 2rem;
}


/* Features Section Ends Here */


/*Contact Page Starts here */

.contact-container {
    width: 100%;
    min-height: 80vh;
}

.contact-container h1 {
    font-size: 3vw;
    font-weight: 700;
    text-align: center;
    color: #04973a;
    font-family: 'Open Sans', sans-serif;

}

.contact-page {

    min-height: 70vh;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 0 2rem;

}

.contact__details {
    height: 83vh;
    width: 50%;
    padding-left: 2rem;
    padding-top: 2rem;
    border-radius: 0.5rem;
    background-color: lightgray;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.1);
}

.contact__det {
    font-size: 1.8vw;
}

.contact__det a {
    color: blue;
}

.form-aw {
    font-size: 1.5vw;
    color: #04973a;
}

.contact__details__text {
    font-size: 3.5vw;
    font-weight: 700;
}

form {
    border-radius: 0.5rem;
    min-height: 70vh;
    width: 50%;
    background-color: lightgray;
    box-shadow: 0px 0px 10px rgba(7, 7, 7, 0.2);
}

.contact-form {
    min-height: 80vh;
    width: 70%;
    margin: 0 auto;
    padding-top: 1rem;
    padding-left: 3rem;
    font-size: 1.3vw;
}

.contact-form input {
    width: 50%;
    padding: 0.4rem 0.5rem;
    font-size: 1.3vw;
    border-radius: 0.6rem;

}

.contact-form input:focus,
.contact-form textarea:focus {
    border: none;
    outline: none;

}


.contact-form textarea {
    font-size: 1.3vw;
    padding: 0.5rem;
    width: 50%;
    height: 40vh;
    border-radius: 1rem;
}

.contact-form button {
    font-size: 1.3vw;
    font-weight: 600;
    padding: 0.5rem;
    width: 15%;
    border-radius: 0.7rem;
    margin-left: 10rem;
    background-color: #fff;
    border: none;
    color: blue;
    cursor: pointer;
    transition: all;
    margin-bottom: 1rem;
}

.contact-form button:hover {
    transform: scale(1.08);
    border: 3px solid rgb(4, 151, 58, 0.2);
}

/*contact Page Starts here */


/* Footer */
footer {
    font-size: 1.3vw;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

@media screen and (max-width: 996px) {

    .nav ul li a {
        font-size: 3vw;
    }

    .header-text {
        padding-top: 1rem;
    }

    .about-section {
        margin-top: 1rem;

    }

    .about-section h1 {
        font-size: 4vw;

    }

    .about-container aside {
        width: 50%;
        height: 50vh;
    }

    .about-container aside img {
        width: 100%;
        height: 50vh;
    }

    .about-container article {
        height: 50vh;
        padding-top: 3rem;

    }

    .about-container article p {
        font-size: 2.2vw;
        height: 50vh;

    }

    .service-container h1 {
        font-size: 4vw;
    }

    .service-container p {
        font-size: 2.2vw;
    }

    .service-container h4 {
        font-size: 2.5vw;
    }

    .btn {
        font-size: 1.8vw;
    }

    .portfolio-section h1 {
        font-size: 4vw;
    }

    .portfolio-section p {
        font-size: 2.2vw;
    }

    .portfolio {
        display: block;
        border-bottom: 2px solid #04973a;

    }

    .portfolio p {
        font-size: 2.2vw;
    }

    .portfolio h4 {
        font-size: 2.5vw;
    }

    .portfolio-container {
        gap: 2rem;
        display: block;

    }

    .portfolio-holder {
        margin: 3rem 0;
        width: 100%;

    }

    .portfolio-holder aside {
        width: 80%;
        padding: 0;

    }

    .portfolio-holder img {
        width: 100%;

    }

    .portfolio-holder article {
        width: 25%;

    }

    .portfolio-holder article p {
        margin-top: 4rem;
        font-size: 2vw;
        width: 100%;
        margin-right: 2rem;
    }

    .skills {
        height: 90vh;
    }

    .skills h1 {
        font-size: 4vw;
    }

    .skills p {
        font-size: 2.2vw;
    }

    .feature-container h1 {
        font-size: 4vw;
    }

    .feature-grid {
        display: block;
    }

    .feature {
        margin-top: 2rem;
        height: 50vh;
    }

    .feature-aside {
        height: 48vh;
        width: 70%;
    }

    .feature-aside img {
        height: 48vh;
        width: 100%;
    }

    .feature-article h3 {
        font-size: 2.3vw;
    }

    .feature-article p {
        font-size: 2.1vw;
    }

    .contact-container h1 {
        font-size: 4vw;
    }

    .contact-page {
        display: block;

    }

    .contact__details {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact__details__text {
        font-size: 5vw;
    }

    .contact__det {
        font-size: 2.3vw;
    }

    .form-aw {
        font-size: 2.5vw;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form label {
        font-size: 2.2vw;
    }

    .contact-form input {
        font-size: 2vw;
        width: 42%;
        height: 4vh;
    }

    .contact-form textarea {
        width: 55%;
        height: 40vh;
        font-size: 2.2vw;
    }

    .contact-form button {
        width: 20vw;
        margin-bottom: 1rem;
        font-size: 2vw;
    }

    .footer {
        width: 100%;
        font-size: 2.2vw;
    }
}

@media screen and (max-width: 768px) {

    header {
        gap: 3rem;
    }

    .nav ul li a {
        font-size: 3.2vw;
    }

    .header-text {
        padding-top: 1rem;
    }

    .about-section {
        margin-top: 1rem;

    }

    .about-section h1 {
        font-size: 5vw;

    }

    .about-container aside {
        width: 50%;
        height: 50vh;
    }

    .about-container aside img {
        width: 100%;
        height: 50vh;
    }

    .about-container article {
        height: 50vh;
        padding-top: 3rem;

    }

    .about-container article p {
        font-size: 2.7vw;
        height: 50vh;

    }

    .service-container h1 {
        font-size: 5vw;
    }

    .service-container p {
        font-size: 2.7vw;
    }

    .service-container h4 {
        font-size: 3vw;
    }

    .download-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 0 2rem;
    }

    .btn {
        font-size: 2.4vw;
    }

    .portfolio-section h1 {
        font-size: 5vw;
    }

    .portfolio-section p {
        font-size: 2.7vw;
    }

    .portfolio {
        display: block;
        border-bottom: 2px solid #04973a;

    }

    .portfolio p {
        font-size: 2.7vw;
    }

    .portfolio h4 {
        font-size: 3vw;
    }

    .portfolio-container {
        gap: 2rem;
        display: block;

    }

    .portfolio-holder {
        margin: 3rem 0;
        width: 100%;

    }

    .portfolio-holder aside {
        width: 80%;
        padding: 0;

    }

    .portfolio-holder img {
        width: 100%;

    }

    .portfolio-holder article {
        width: 25%;

    }

    .portfolio-holder article p {
        font-size: 2.7vw;
        width: 100%;
        margin-right: 2rem;
    }

    .skills {
        min-height: 100vh;
    }

    .skills h1 {
        font-size: 5vw;
    }

    .skills p {
        font-size: 2.7vw;
    }


    .feature-container {
        min-height: 100vh;
    }

    .feature-container h1 {
        font-size: 5vw;
    }

    .feature-grid {
        display: block;
    }

    .feature {
        margin-top: 2rem;
        height: 50vh;
    }

    .feature-aside {
        height: 48vh;
        width: 70%;
    }

    .feature-aside img {
        height: 48vh;
        width: 100%;
    }

    .feature-article h3 {
        font-size: 2.9vw;
    }

    .feature-article p {
        font-size: 2.6vw;
    }

    .contact-container h1 {
        font-size: 5vw;
    }

    .contact-page {
        display: block;

    }

    .contact__details {
        height: 70vh;
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact__details__text {
        font-size: 6vw;
    }

    .contact__det {
        font-size: 2.8vw;
    }

    .form-aw {
        font-size: 3.7vw;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form label {
        font-size: 2.7vw;
    }

    .contact-form input {
        font-size: 2.5vw;
        width: 50%;
        height: 5vh;
    }

    .contact-form textarea {
        width: 70%;
        height: 40vh;
        font-size: 3vw;
    }

    .contact-form button {
        width: 25%;
        margin-bottom: 1rem;
        font-size: 2.7vw;
    }

    .footer {
        width: 100%;
        font-size: 2.7vw;
    }
}

@media screen and (max-width: 600px) {

    header {
        gap: 2rem;
    }

    .nav ul li a {
        font-size: 3.5vw;
    }

    .header-text {
        padding-top: 1rem;
    }

    .about-section {
        margin-top: 1rem;

    }

    .about-section h1 {
        font-size: 6vw;

    }

    .about-section {
        width: 100%;
        margin-left: 0.25rem;
    }

    .about-container {
        gap: 1rem;
        width: 100%;
        padding-left: 1rem;

    }

    .about-container aside {
        width: 60%;
        height: 50vh;
    }

    .about-container aside img {
        width: 100%;
        height: 50vh;
    }

    .about-container article {
        height: 50vh;
        padding-top: 3rem;

    }

    .about-container article p {
        font-size: 3vw;
        height: 50vh;

    }

    .service-container h1 {
        font-size: 6vw;
    }

    .service-container p {
        font-size: 3vw;
    }

    .service-container h4 {
        font-size: 3.3vw;
    }

    .download-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 0 2rem;
    }

    .btn {
        font-size: 2.5vw;
        padding-top: 2rem;
    }

    .portfolio-section h1 {
        font-size: 6vw;
    }

    .portfolio-section p {
        font-size: 3vw;
    }

    .portfolio {
        display: block;
        border-bottom: 2px solid #04973a;

    }

    .portfolio p {
        font-size: 3vw;
    }

    .portfolio h4 {
        font-size: 3.3vw;
    }

    .portfolio-container {
        gap: 2rem;
        display: block;

    }

    .portfolio-holder {
        margin: 3rem 0;
        width: 100%;

    }

    .portfolio-holder aside {
        width: 80%;
        padding: 0;

    }

    .portfolio-holder img {
        width: 100%;

    }

    .portfolio-holder article {
        width: 25%;

    }

    .portfolio-holder article p {
        padding-left: 0.5rem;
        font-size: 3vw;
        width: 100%;
        margin-right: 2rem;
    }

    .skills {
        height: 60vh;
    }

    .skills h1 {
        font-size: 6vw;
    }

    .skills p {
        font-size: 3vw;
    }

    .skills-img-container {
        width: 80%;
        animation: scroll 10s linear infinite;
    }

    @keyframes scroll {
        0% {
            transform: translateX(-0);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .feature-container h1 {
        font-size: 6vw;
    }

    .feature-grid {
        display: block;
    }

    .feature {
        margin-top: 2rem;
        height: 50vh;
    }

    .feature-aside {
        height: 48vh;
        width: 70%;
    }

    .feature-aside img {
        height: 48vh;
        width: 100%;
    }

    .feature-article h3 {
        font-size: 3vw;
    }

    .feature-article p {
        font-size: 2.8vw;
    }

    .contact-container h1 {
        font-size: 6vw;
    }

    .contact-page {
        display: block;

    }

    .contact__details {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact__details__text {
        font-size: 7vw;
    }

    .contact__det {
        font-size: 3.3vw;
    }

    .form-aw {
        font-size: 4.1vw;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form label {
        font-size: 3vw;
    }

    .contact-form input {
        font-size: 3vw;
        width: 60%;
        height: 5vh;
    }

    .contact-form textarea {
        width: 80%;
        height: 40vh;
        font-size: 3.3vw;
    }

    .contact-form button {
        width: 30%;
        margin-bottom: 1rem;
        font-size: 3vw;
    }

    .footer {
        width: 100%;
        font-size: 3vw;
    }

}

@media screen and (max-width: 480px) {

    header {
        gap: 1rem;

    }

    .nav ul{
        gap: 1rem;
    }

    .nav ul li a {
        font-size: 3.5vw;
    }

    .header-text {
        padding-top: 1rem;
    }

    .mc-img{
        height: 60vh;
    }

    .about-section {
        margin-top: 1rem;

    }

    .about-section h1 {
        font-size: 7vw;

    }

    .about-section {
        min-height: 70vh;
        width: 100%;
        margin-left: 0.25rem;
    }

    .about-container {
        height: 50vh;
        width: 100%;
        display: block;
        padding: 1rem 0;

    }

    .about-container aside {
        margin-bottom: 1rem;
        width: 100%;
        height: 35vh;
        padding-top: 1rem;

    }

    .about-container aside img {
        margin-left: 5rem;
        width: 300px;
        height: 300px;
        border-radius: 50%;

    }

    .about-container article {
        height: 30vh;
        padding-top: 3rem;
        width: 100%;

    }

    .about-container article p {
        margin-top: 0;
        font-size: 3.7vw;
        height: 50vh;
        padding: 0 1rem;

    }

    .service-container h1 {
        font-size: 7vw;
    }

    .service-container p {
        font-size: 3.7vw;
    }

    .service-container h4 {
        font-size: 4.3vw;
    }

    .download-buttons {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        margin: 0 1.5rem;

    }

    .btn {
        font-size: 3.7vw;
        padding-bottom: 4rem;

    }

    .portfolio-section h1 {
        font-size: 7vw;
    }

    .portfolio-section p {
        font-size: 3.7vw;
    }

    .portfolio {
        display: block;
        border-bottom: 2px solid #04973a;

    }

    .portfolio p {
        font-size: 3.7vw;
    }

    .portfolio h4 {
        margin-top: 1rem;
        font-size: 4.4vw;
    }

    .portfolio-container {
        gap: 2rem;
        display: block;

    }

    .portfolio-holder {
        height: 70vh;
        display: block;
        margin: 2rem 0;
        width: 100%;

    }

    .portfolio-holder aside {
        height: 50vh;
        width: 100%;
    }

    .portfolio-holder img {
        height: 50vh;
        width: 100%;

    }

    .portfolio-holder article {
        padding-bottom: rem;
        height: 5vh;
        width: 100%;

    }

    .portfolio-holder article p {
        font-size: 4vw;
        width: 100%;
        margin-right: 2rem;
    }


    .skills {
        min-height: 85vh;
    }

    .skills h1 {
        font-size: 7vw;
    }

    .skills p {
        font-size: 3.7vw;
    }

    .skills-img-container {
        min-height: 40vh;
    }

    .skills-img-container img {
        height: 25vh;
        width: 70%;
    }

    .feature-container {
        min-height: 100vh;

    }

    .feature-container h1 {
        font-size: 7vw;
    }

    .feature-grid {
        min-height: 90vh;
        display: block;
    }

    .feature {
        display: block;
        margin-top: 2rem;
        height: 65vh;

    }

    .feature-aside {
        height: 48vh;
        width: 100%;
    }

    .feature-aside img {
        height: 48vh;
        width: 100%;
    }

    .feature-article {
        height: 5vh;
        margin-top: 1rem;
        width: 100%;
    }

    .feature-article h3 {
        font-size: 4vw;
    }

    .feature-article p {
        font-size: 3.5vw;

    }

    .contact-container {
        min-height: 100vh;
    }

    .contact-container h1 {
        font-size: 7vw;
    }

    .contact-page {
        min-height: 80vh;
        display: block;

    }

    .contact__details {
        height: 60vh;
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact__details__text {
        font-size: 8vw;
    }

    .contact__det {
        font-size: 3.8vw;
    }

    .form-aw {
        font-size: 4.7vw;
    }

    .contact-form {
        min-height: 50vh;
        width: 100%;
    }

    .contact-form label {
        font-size: 3.7vw;
    }

    .contact-form input {
        font-size: 3.7vw;
        width: 80%;
        height: 5vh;
    }

    .contact-form textarea {
        width: 90%;
        height: 40vh;
        font-size: 3.3vw;
    }

    .contact-form button {
        width: 35%;
        margin-left: 5rem;
        margin-bottom: 1rem;
        font-size: 3.7vw;
    }

    .footer {
        width: 100%;
        font-size: 3.7vw;
    }
}

@media screen and (max-width:400px) {
    .about-container aside {
        margin-bottom: 1rem;
        width: 100%;
        height: 35vh;
        padding-top: 1rem;

    }

    .about-container aside img {
        margin-left: 3rem;
        width: 300px;
        height: 300px;
        border-radius: 50%;

    }
}

@media  screen and (max-width:360px) {

    .about-container aside img {
        margin-left: 1rem;
        width: 300px;
        height: 300px;
        border-radius: 50%;

    }


}

@media screen and (max-width: 340px) {

    .container {
        width: 100%;
    }


    header {
        gap: 0.1rem;

    }

    .mc-img {
        height: 50vh;
        width: 100%;

    }

    .nav ul {
        gap: 0.6rem;
    }

    .nav ul li a {
        font-size: 3.9vw;
    }

    .header-text {
        font-size: 3.8vw;
        padding-top: 1rem;
    }

    .about-section {
        margin-top: 1rem;

    }

    .about-section h1 {
        font-size: 9vw;

    }

    .about-section {
        min-height: 80vh;
        width: 100%;
        margin-left: 0.25rem;
    }

    .about-container {
        gap: 1rem;
        width: 100%;
        height: 70vh;
        padding-left: 1rem;
        display: block;


    }

    .about-container aside {
        width: 100%;
        height: 35h;
        padding-left: 0;
    }

    .about-container aside img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        margin-left: 0.7rem;
        margin-top: 0.7rem;

    }

    .about-container article {
        margin-top: 0.3rem;
        height: 20vh;
        padding-top: 0.3rem;
        width: 100%;

    }

    .about-container article p {

        font-size: 4.5vw;
        height: 50vh;

    }

    .service-container h1 {
        font-size: 9vw;
    }

    .service-container p {
        font-size: 4.5vw;

    }

    .service-container h4 {
        font-size: 5.3vw;
    }

    .download-buttons {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        margin: 0 2rem;
    }

    .btn {
        font-size: 4.5vw;
        padding-top: 2rem;
    }

    .portfolio-section h1 {
        font-size: 9vw;
    }

    .portfolio-section p {
        font-size: 4.5vw;
    }

    .portfolio {
        display: block;
        border-bottom: 2px solid #04973a;

    }

    .portfolio p {
        font-size: 4.5vw;
    }

    .portfolio h4 {
        margin-top: 1rem;
        font-size: 5.3vw;
    }

    .portfolio-container {
        gap: 2rem;
        display: block;

    }

    .portfolio-holder {
        display: block;
        margin: 3rem 0;
        width: 100%;

    }

    .portfolio-holder aside {
        width: 100%;


    }

    .portfolio-holder img {
        width: 100%;

    }

    .portfolio-holder article {
        width: 100%;

    }

    .portfolio-holder article p {
        padding-left: 0.5rem;
        font-size: 5vw;
        width: 100%;
        margin-right: 2rem;
    }

    .skills {
        min-height: 85vh;
    }

    .skills h1 {
        font-size: 9vw;
    }

    .skills p {
        font-size: 4.5vw;
    }

    .skills-img-container {
        height: 40vh;
    }

    .skills-img-container img {
        width: 80%;
    }

    .feature-container h1 {
        font-size: 9vw;
    }

    .feature-container {
        width: 100%;
        min-height: 70vh;
    }

    .feature-grid {
        width: 95%;
        margin-left: 0.5rem;
        min-height: 100vh;
        display: block;
    }

    .feature {
        display: block;
        margin-top: 2rem;
        height: 65vh;
        width: 100%;

    }

    .feature-aside {
        height: 48vh;
        width: 100%;
    }

    .feature-aside img {
        height: 48vh;
        width: 100%;
    }

    .feature-article {
        height: 10vh;
        margin-top: 1rem;
        width: 100%;
    }

    .feature-article h3 {
        font-size: 5vw;
    }

    .feature-article p {
        font-size: 4.5vw;

    }

    .contact-container {
        min-height: 100vh;
        width: 100%;
    }

    .contact-container h1 {
        font-size: 9vw;

    }



    .contact-page {
        min-height: 80vh;
        width: 100%;
        display: block;
        padding: 0 1rem;

    }

    .contact__details {
        width: 100%;
        min-height: 50vh;
        padding: 1rem 1rem;

    }

    .contact__details__text {
        font-size: 10vw;
    }

    .contact__det {
        font-size: 4.8vw;
    }

    .form-aw {
        font-size: 5vw;
    }

    .contact-form {
        padding-left: 1rem;
        min-height: 50vh;
        width: 100%;

    }

    .contact-form label {
        font-size: 5vw;
    }

    .contact-form input {
        font-size: 5vw;
        width: 85%;
        height: 3vh;
    }

    .contact-form textarea {
        width: 90%;
        height: 20vh;
        font-size: 6vw;
    }

    .contact-form button {
        width: 35%;
        margin-left: 5rem;
        margin-bottom: 1rem;
        font-size: 4.5vw;
    }

    footer {
        width: 100%;
        height: 7vh;
    }

    .footer {

        width: 100%;
        font-size: 4.5vw;
    }
}