/* Medium devices (tablets, less than 992px) 768 - 992 */
@media (max-width: 991.98px) { 
    /* start components */
    .text-info-title {
        font-size: 30px;
        font-weight: 900;
    }
    .sec-top-title {
        font-size: 30px;
        font-weight: 900;
    }
    /* end components */
    /* start nav */
    .mobile-nav-links {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-btns {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    /* end nav */
    /* start header */
    .header-info {
        width: 70%;
    }
    /* end header */

    /* start footer */
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        padding: 50px 0;
        gap: 25px;
        position: relative;
    } 

    .footer-icon-items {
        width: 50%;
    }

    .footer-social-icons {
        flex-wrap: wrap;
    }
    /* end footer */
}

/* Small devices (landscape phones, less than 768px) 576 - 768 */
@media (max-width: 767.98px) { 
    /* start skills */
    .skills {
        /* background: var(--black-07); */
        padding: 50px 0;
    }

    .skills-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .skills-text {
        width: 60%;
        margin-bottom: 50px;
    }

    .move {
        position: sticky;
        top: .5px;
    }

    .skills-items {
        width: 100%;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .skills-items>li {
        width: 28%;
        padding: 15px 5px;
        background-color: #ffffff;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all .5s ease-in;
        cursor: pointer;
    }
    .skills-items>li .svg-size {
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .skills-items>li .svg-size svg {
        width: 100%;
        fill: var(--orange-13);
    }

    .skills-items>li p {
        font-weight: 900;
    }

    .skills-items>li:hover {
        box-shadow: 0px 0px 10px 2px #ffffff80;
    }
    /* end skills */

    /* start projects */
    .projects-item {
        width: 40%;
    }    
    /* end projects */
}

/* X-Small devices (portrait phones, less than 576px) 0 - 575 (412 for A20/57) */
@media (max-width: 575.98px) { 
    /* start nav */
    .mobile-nav-links {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-btns {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .nav-btns .primary-btn {
        display: none;
    }
    /* end nav */

    /* start header */
    .header-info {
        width: 100%;
    }

    .header-btns {
        width: 100%;
    }
    /* end header */

    /* start skills */
    .skills-text {
        width: 100%;
    }
    .skills-items {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .skills-items>li {
        width: 44.5%;
    }
    /* end skills */

    /* start about me */
    .about-me-texts p {
        font-size: 18px;
        font-weight: 600;
        width: 100%;
    }
    /* end about me */

    /* start contact me */
    .contact-me {
        padding: 100px 0;
    }

    .contact-me-content {
        display: flex;
        flex-direction: column;
        align-items: space-between;
        justify-content: center;
    }

    .contact-me-items {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        margin-top: 100px;
    }

    .contact-me-right {
        width: 100%;
    }

    .contact-me-right form {
        padding: 25px;
        background-color: var(--black-08);
        border-radius: 15px;
    }

    .contact-me-form-inputs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .contact-me-form-input-btn {
        margin-top: 15px;
        display: flex;
        justify-content: flex-start;
    }

    .contact-me-left {
        width: 100%;
    }
    /* end contact me */

    /* start footer */
    .footer-brand {
        display: none;
    }

    .footer-content .text-info-title {
        font-size: 20px;
    }

    .footer-icon-items {
        width: 100%;
    }

    .footer-bottom {
        border-top: 1px solid var(--orange-10);
        padding: 10px 0;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .footer-copy>p{
        font-size: 16px;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .footer-mahi>p {
        font-size: 16px;
        font-weight: 900;
    }
    /* end footer */ 
}