.section_contact{
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;

    background-color: rgba(0, 0, 0, 0.8);

    display: flex;
    justify-content: center;
    align-items: center;
    display: none;

}

.contact{
    width: calc(25vw - 8vh);
    padding: 0vh 8vh;
    height: fit-content;

    background-color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5vw;
}


.contact > .contact_inner{
    width: 100%;
    height: fit-content;

    padding: 0vh 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.contact > .contact_inner > .image{
    width: 8vw;
    aspect-ratio: 1/1;
    border-radius: 50%;

    background-image: url(../Images/profilePic.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -4vw;
    border: 2px solid white;
}


.contact > .contact_inner > .name{
    font-size: 2vh;
    font-weight: 500;
    margin-top: 1vh;
    text-align: center;
    font-family: var(--inter);
    color: rgb(73, 73, 73);
}

.contact > .contact_inner > .title{
    font-size: 1.6vh;
    font-weight: 400;
    text-align: center;
    color: rgb(146, 146, 146);
    font-family: var(--inter);
}


.contact > .contact_inner > .subtext{
    font-size: 2.5vh;
    font-weight: 500;
    margin-top: 7vh;
    text-align: center;
    color: rgb(0, 0, 0);
    font-family: var(--inter);
}


.contact > .contact_inner > .email{
    width: 100%;
    height: fit-content;
    margin-top: 3vh;
    background-color: black;
    border-radius: 0.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.contact > .contact_inner > .email > p{
    margin: 0;
    padding: 2.5vh 2vh;
    font-size: 1.8vh;
    color: white;
    font-family: var(--inter);
    font-weight: 400;
}

.contact > .contact_inner > .split{
    width: 50%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
}


.contact > .contact_inner > .split > .div{
    flex: 1;
    height: 1px;
    background-color: rgb(105, 105, 105);
}


.contact > .contact_inner > .split > p{
    color: rgb(109, 109, 109);
    font-size: 2vh;
    margin: 0 2vh;
    font-family: var(--inter);
    font-weight: 300;
}


.contact > .contact_inner > .phone{
    width: 100%;
    height: fit-content;
    margin-top: 1vh;
    background-color: rgb(255, 255, 255);
    border: 1px solid black;
    border-radius: 0.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5vh;
}


.contact > .contact_inner > .phone > p{
    margin: 0;
    padding: 2.5vh 2vh;
    font-size: 1.8vh;
    color: rgb(0, 0, 0);
    font-family: var(--inter);
    font-weight: 400;
}

@media (max-width: 1366px) {
    /* Add styles for screens up to 1366px */

}

@media (max-width: 940px) {
    /* Add styles for screens up to 900px */    


    .contact{
        width: calc(50vw - 8vh);
        padding: 0vh 8vh;
        border-radius: 0.5vw;
    }

    .contact > .contact_inner > .image{
        width: 16vw;
        margin-top: -8vw;
    }


    .contact > .contact_inner > .name{
        font-size: 1.5vh;
    }

    .contact > .contact_inner > .title{
        font-size: 1.2vh;
    }


    .contact > .contact_inner > .subtext{
        font-size: 2vh;
    }


    .contact > .contact_inner > .email{
        margin-top: 3vh;
    }


    .contact > .contact_inner > .email > p{
        font-size: 1.5vh;
    }


    .contact > .contact_inner > .phone > p{
        font-size: 1.5vh;
    }

}

@media (max-width: 480px) {
    /* Add styles for screens up to 900px */   
    /* Add styles for screens up to 900px */    


    .contact{
        width: calc(60vw - 0vh);
        padding: 0vh 4vh;
        border-radius: 0.5vw;
    }

    .contact > .contact_inner > .image{
        width: 22vw;
        margin-top: -11vw;
    }


    .contact > .contact_inner > .name{
        font-size: 1.8vh;
    }

    .contact > .contact_inner > .title{
        font-size: 1.5vh;
    }


    .contact > .contact_inner > .subtext{
        font-size: 2.5vh;
    }


    .contact > .contact_inner > .email{
        margin-top: 4vh;
    }


    .contact > .contact_inner > .email > p{
        font-size: 1.6vh;
    }


    .contact > .contact_inner > .phone > p{
        font-size: 1.6vh;
    } 


}


