/* connection start */
.connection-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.single-connection {
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    height: 17rem;
}

.single-connection img {
    border-radius: 5px 5px 0px 0px;
}

.connection-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: space-around;
    height: 45%;
    padding-bottom: 10px;
}

.connection-content p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.connection-content span {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;

}

.connection-content button {
    border: 1.5px solid #0a66c2;
    color: #0a66c2;
    background-color: white;
    border-radius: 30px;
    padding: 5px 16px;
    font-size: 14px;
    cursor: pointer;
}

.connection-content button:hover {
    background-color: #0a66c2;
    color: white;
    transition: .5s ease;
}

.resume-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resume-row .skill-name {
    width: 83%;
}

.resume-row .language-name {
    width: 80%;
}

.resume-row .skill-percentage {
    width: 17%;
}

.resume-row .language-level {
    width: 17%;
}

@media(max-width:768px) {

    .resume-row .skill-name,
    .resume-row .language-name {
        width: 100%;
    }

    .resume-row .skill-percentage,
    .resume-row .language-level {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .connection-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1023px) {
    .connection-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .connection-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* create-resume */
    .resume-row {
        display: flex;
        flex-direction: column;
    }
}

/* connection end */




@media(max-width:991.5px) {
    .who-know-you {
        display: none !important;
    }
}