.img-fluid {
    max-width: 100%;
    height: auto;
}

.clear {
    clear: both;
}

.container01 {
    background: #fff;
    max-width: 920px;
    height: 480px;
    margin: auto;
    transform: translateY(15%);
    box-shadow: 0px 0px 6px 0px #22222273;
    border-radius: 20px;
    border-width: 2px;
    border-color: #96e4e0;
    border-style: solid;
}

.c-1 {
    height: fit-content;
}

.c-2 {
    height: fit-content;
}

.container01 .circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container01 .details-container01 {
    position: relative;
    display: flex;
}

.container01 .details-container01 .avatar {
    margin: 10px auto;
    position: relative;
    float: left;
    padding: 20px;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.container01 .details-container01 .avatar img {
    max-width: 240px;
    margin-top: -70px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 6px 0px #22222273;
}

.container01 .details-container01 .avatar1 {
    margin: 10px auto;
    position: relative;
    float: left;
    padding: 20px;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.container01 .details-container01 .avatar1 img {
    max-width: 240px;
    margin-top: -70px;
    border: 10px solid #fff;
    box-shadow: 0px 0px 6px 0px #22222273;
}

.container01 .details-container01 .about {
    float: right;
    padding: 20px;
    /* margin-top: 50px; */
    animation: 1s ease-out 0s 1 slideUpFromBottom;
}

.container01 .details-container01 .about .name p {
    margin: 0;
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
}

.container01 .details-container01 .about .name h1 {
    color: #96e4e0;
    font-weight: bold;
    margin: 0;
    font-size: 3em;
}

.container01 .details-container01 .about .about-content p {
    line-height: 1.6em;
}

.container01 .details-container01 .about .about-content button {
    border: none;
    color: #222;
    padding: 10px;
    background: #ffe2e0;
    cursor: pointer;
    font-weight: bold;
    width: 250px;
    height: 40px;
    font-family: "Nunito", sans-serif;
    box-shadow: 1px 1px 10px 0px #2222222b;
    transition: 0.2s all;
    margin-top: 1%
}

.container01 .details-container01 .about .about-content button:hover {
    box-shadow: 1px 1px 1px 0px #2222222b;
}

.container01 .details-container01 .about .about-content button:focus,
.container01 .details-container01 .about .about-content button:active {
    outline: 0;
    box-shadow: 1px 1px 10px 0px #22222280;
}

.container01 .skills-container01 {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    z-index: 1;
    animation: 1s ease-in 0s 1 fadeIn;
}

.container01 .skills-container01 button {
    flex: 1;
    padding: 10px;
    margin: 5px;
    border: none;
    color: #222;
    padding: 10px;
    background: #ffe2e0;
    cursor: pointer;
    font-weight: bold;
    width: 250px;
    height: 40px;
    font-family: "Nunito", sans-serif;
    box-shadow: 1px 1px 10px 0px #2222222b;
    transition: 0.2s all;
}

.container01 .skills-container01 button:hover {
    box-shadow: 1px 1px 1px 0px #2222222b;
}

.container01 .skills-container01 button:focus,
.container01 .skills-container01 button:active {
    outline: 0;
    box-shadow: 1px 1px 10px 0px #22222280;
}

@media screen and (max-width: 766px) {
    .cards {
        width: 100%;
        font-size: 0.8em;
    }
    .container01 {
        height: auto;
        width: 90%;
    }
    .container01 .details-container01 .about .name h1 {
        font-size: 2em;
    }
    .container01 .details-container01 {
        flex-direction: column;
    }
    .container01 .details-container01 .avatar img {
        width: 300px;
    }
    .container01 .details-container01 .about {
        margin-top: 10px;
    }
    .container01 .details-container01 .avatar1 img {
        width: 300px;
        margin-top: 0.5%
    }
    .card-1 {
        width: 100%;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(70%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}