.container {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;    
    flex-direction: row;
    max-width: 100%;
    box-sizing: border-box;
}
.profile {
    display: flex;
    align-items: center;
    position: relative;
    width: 40%; 
}
.profile img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 1px solid grey;
    padding: 10px;
}
.profile-info {
    margin-left: 50px;
    background-color: #f0f0f0;
    border-radius: 15px;
    position: relative;
    flex-grow: 1;
}
.profile-info::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 50%;
    width: 45px;
    height: 1px;
    background-color: grey;
}
.profile-info h2 {
    margin: 0;
    font-size: 18px;
    
}
.profile-info p {
    margin: 0;
    font-size: 14px;
    
}
.content {
    border-left: 1px solid #ddd;
    padding-left: 20px;
    width: 700px;
}
.content h3 {
    background-color: #2dac6e;
    color: #000000;
    padding: 10px 50px 10px 50px;
    border-radius: 0px 25px 0 25px;
    margin-top: -20px;
    font-size: 20px;
    width: 400px;
}
.content p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}
.social-icons {
    display: flex;
    align-items: center;
    margin-top: 10px;
    
}
.social-icons span {
    margin-right: 40px;
    font-size: 19px;
    color: #2dac6e;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-family: var(--conult-font-sans-serif);
}
.social-icons a {
    color: grey;
    font-size: 16px; 
    margin-right: 30px;
    text-decoration: none;
    border: 1px solid grey;
    border-radius: 50%;
    padding: 5px; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; 
    height: 30px; 
}
.social-icons a:hover {
    color: #f57c00;
    border-color: #f57c00;
}
.circle {
    position: absolute;
    left: 47%;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 13px;
    background-color: #2dac6e;
    border-radius: 50%;
}
.connect {
    align-items: center;
    display: flex;
    
}
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
        width: 100%;
        padding:10px;
        box-sizing: border-box;
        text-align: center;
        align-items: center;
    }
    .circle{
        display: none;
    }
    .content{
        width: auto !important;
    }
    .content p{
        padding-bottom: 20px;
    }
    .content h3{
        margin-top: 0px;
        width: 100%;
        text-align: center;
        justify-self: center;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .profile-info {
        margin-left: 0px;
        margin-top: 10px;
    }
    .profile {
        margin-right: 0;
        flex-direction: column;
        margin-bottom: 20px;
        width: 100%; 
    }
    .profile-info::before {
        display: none;
    }
    .content {
        border-left: none;
        padding-left: 0;
    }
    .connect {
        align-items: center;
        flex-direction: row;
        display: flex;
        margin-top: 10px;
    }
    .social-icons {
        display: flex;
        align-items: center;
        margin-top: 10px;
        justify-content: center;
        flex-direction: column;
    }
}