@media only screen and (min-width: 768px) and (max-width: 992px) {}

/* ---------custome breakpoint at 725 max--------- */
@media only screen and (max-width: 725px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.875rem;
    }

    .menu-list {
        display: flex;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s;

        background: #00b881;
        position: absolute;
        top: 10vh;
        right: 0;
        height: 90vh;
        width: 40%;
        text-align: center;
    }

    .icon-bars {
        display: block;
        z-index: 1;
    }

    .show-data {
        background: var(--background-primary);
        backdrop-filter: blur(50%);
        position: absolute;
        top: 10vh;
        right: 0;

        height: 90vh;
        width: 40%;
        text-align: center;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        transition: all 0.5s;
    }

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        color: rgb(213, 108, 255);
        overflow-x: hidden;
    }

    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 0.875rem;
    }

    p {
        font-size: 0.75rem;
    }

    span {
        color: #ff1865;
    }

    /* navbar pages responsive */
    .navbar{
        padding: 0px;
        padding-right: 8vw;

    }
    .logo {
        margin: 0 1vw;
    }
    

    .menu-list {
        justify-content: start;
    }


    /* home page responsive */
    #home {
        flex-direction: column-reverse;
        height: auto;
        
        min-height: 100vh;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .home-title {
        height: 50%;
        width: 100%;
        padding: 50px 20px;
        text-align: center;
    }

    .home-picture {
        height: 50%;
        width: 50%;
        row-gap: 5px;
        justify-content: center;
    }

    .pic-div {
        max-height: 30vh;
        min-height: 25vh;
    }

    .pic-div img {
        max-width: 40vw;
        object-fit: cover;
        object-position: center;

        position: absolute;
        bottom: 0;
    }

    /* about me responsive */
    #about {
        height: auto;
        padding: 2vh 1vw;
        min-height: 120vh;
    }

    .about-content {
        flex-direction: column;
        gap: 2vw;
    }

    .about-picture {
        width: 100%;
        height: 60%;
    }

    .about-intro {
        width: 100%;
        height: 40%;
    }

    .about-picture-circle {
        max-height: 50vh;
        max-width: 50vh;
    }

    .about-picture img {
        max-height: 50vh;
        max-width: 100vw;

        position: relative;
        left: -15px;
        bottom: -30px;

        object-fit: cover;
        object-position: center;
    }

    /* skills page */
    #skills {
        flex-direction: column;
        height: auto;
    }

    .skills-title {
        color: #ff1865;
    }

    .skills-content {
        height: auto;
        padding: 0 2vw;
    }

    .skills-content-box {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        gap: 1vw;
    }

    .skills-content-box>div {
        flex-wrap: wrap;
        flex-basis: 25%;
        width: 15%;
        height: 20%;
    }

    .skills-content-box div p {
        font-size: 0.7rem;
        color: aqua;
    }

    /* education page: ; */
    #educations {
        height: auto;
    }

    .educations-title {
        color: #ff1865;
    }

    .educations-content {
        flex-direction: column;
        flex-wrap: wrap;
        padding: 0 2vw;
    }

    .educations-content-academy {
        width: 100%;
        height: auto;
        flex-basis: 100%;
    }

    .educations-content-online {
        width: 100%;
        flex-basis: 100%;
    }

    .academy {
        background: #374945;
        width: 100%;
        height: 15%;
        gap: 5px;
    }

    .academy h3 {
        color: #a2fa00;
    }

    /* project pages */
    #projects {
        height: auto;
    }

    .projects-content {
        height: 100vh;
        padding: 0 2vw;
    }

    .projects-content-box {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 10px;
        gap: 1px;
    }

    .project-item {
        width: 100%;
        height: 30%;
    }

    /* contact me resposonsive */
    #contacts {
        min-height: 100vh;
        height: auto;
        width: 100%;
        background-color: var(--contact-bg);
        padding: 0;
    }

    .contacts-content {
        display: flex;
        min-height: 100vh;
        height: auto;
        flex-direction: column;
        padding: 2vh;
        padding: 0;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .contact-col1 {
        height: 20%;
        width: 100%;
        flex-basis: 50%;
        padding: 0;
        background: #38263b;
        border-radius: 25ox;
    }


    .contact-col2 {
        height: 50%;
        width: 100%;
        flex-basis: 50%;
        padding: 0;
        padding-left: -2vw;
    }

    .contact-col2 form {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;

        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        background: #40535a;
        flex-basis: 50%;
        padding: 2vw;
        border-radius: 10px;
    }

    .footer .copyright a{
        color: #00ccff;
    }
}


@media only screen and (max-width: 480px){
    body{
        overflow-x: hidden;
        width: 100%;
    }

    h1{
        font-size: 1.25rem;
        color: #00ff15;
    }

    #home .home-title{
        color: #e7f1e6;
    }

    .navbar{
        width: 100%;
        height: 7vh;
        padding: 0px;
        padding-top: 2vh;
        padding-bottom: 1vh;
        padding-right: 8vw;
    }

    .navbar .logo{
        width: 50px;
        height: 50px;
    }
    
    #home .social-buttons {
        gap: 1vw;
        align-items: center;
        justify-content: center;
    }

    #home .social-button {
        width: 25px;
        height: 25px;
        margin: 0;
        padding: 0;
    }

    .about-picture-circle {
        max-height: 40vh;
        max-width: 40vh;
    }

    .about-picture img {
        max-height: 40vh;
        max-width: 100vw;
    }

    .about-intro h1 {
        font-size: 1.5rem;
    }

    .about-intro p {
        font-size: 0.8rem;
    }

    .about-intro a {
        font-size: 0.8rem;
    }

    .about-intro a i {
        font-size: 0.8rem;
    }

    .about-content {
        gap: 20px;
    }

    #about {
        height: auto;
    }

    #about .about-content {
        flex-direction: column;
        flex-wrap: wrap;
        padding: 0 2vw;
    }

    #about .about-content .about-intro {
        width: 100%;
        height: auto;
        flex-basis: 100%;
        color: #e7ffe7;
    }

    #about .about-content .about-picture {
        width: 100%;
        height: auto;
        flex-basis: 100%;
    }

    #skills {
        height: auto;
    }

    .skills-content-box div {
        width: 100%;
        height: 30%;
    }

    .skills-content-box div img {
        width: 50px;
        height: 50px;
    }

    .skills-content-box div p {
        font-size: 0.5rem;
        color: aqua;
    }

    #educations {
        padding: 10vh 2vw;
        height: auto;
        min-height: 50vh;
    }

    .educations-content-academy {
        width: 100%;
        height: auto;
        flex-basis: 100%;
    }

    .educations-content-academy h3 {
        color: #a2fa00;
    }

    .educations-content-online {
        width: 100%;
        height: auto;
        flex-basis: 100%;
    }

    .educations-content-online h3 {
        color: #a2fa00;
    }

    #projects {
        height: auto;
    }

    .projects-content-box {
        display: flex;
        flex-direction: column;
    }

    .project-item {
        width: 100%;
        height: 30%;
    }

    #contacts {
        min-height: 50vh;
        height: auto;
        width: 100%;
        background-color: var(--contact-bg);
        padding: 0;
        padding-top: 10vh;
    }

    .contacts-title {
        height: 10vh;
        text-align: center;
        color: var(--title-text-color);
        line-height: 10vh;
    }

    .contacts-content {
        min-height: 80vh;
        height: auto;
        display: flex;
        flex-basis: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
        align-items: center;
    }

    .contact-col1 {
        height: 20%;
        width: 100%;
        flex-basis: 50%;
        padding: 0;
        background: #38263b;
        border-radius: 25ox;
    }


    .contact-col2 {
        height: 50%;
        width: 100%;
        flex-basis: 50%;
        padding: 0;
        padding-left: -2vw;
    }

    .contact-col2 form {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;
    }

    .contact-col2 form input {
        width: 100%;
    }

    .contact-col2 form textarea {
        width: 100%;
    }

    .contact-col2 form button {
        width: 100%;
    }

    #footer {
        height: auto;
    }

    .footer .copyright a {
        color: #00ccff;
    }

    .footer .social-button {
        width: 25px;
        height: 25px;
        margin: 0;
        padding: 0;
    }

    .footer .social-button i {
        font-size: 0.8rem;
    }

}