*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body
{
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container
{
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 800px;
    background: white;
    margin: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 35px 55px black;

}
.container .left_side
{
    position: relative;
    background: #003147;
    padding: 40px;
}
.profileText
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.profileText .imgBox
{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}
.profileText .imgBox .image
{
    position: relative;
    border-radius: 50%;
    object-fit: cover;
}
.profileText h2
{
    color: white;
    font-size: 1.5em;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    line-height: 1.4em;
}
.profileText h2 span
{
    font-size: 16px;
    font-weight: 300;
}
.contactInfo
{
    padding-top: 40px;
}
.title
{
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contactInfo ul
{
    position: relative;
}
.contactInfo ul li
{
    position: relative;
    list-style: none;
    margin: 10px 0;
    cursor: pointer;
}
.contactInfo ul li .text:hover
{
    color: blueviolet;
}
.contactInfo ul li a
{
    color: white;
}
.contactInfo ul li a:hover
{
    color: blueviolet;
}
.contactInfo ul li .icon
{
    display: inline-block;
    width: 30px;
    font-size: 18px;
    color: lightseagreen;
}
.contactInfo ul li span
{
    color: white;
    font-weight: 300;
}


.container .right_side
{
    position: relative;
    background: white;
    padding: 40px;
}
.about
{
    margin-bottom: 50px;
}
.about:last-child
{
    margin-bottom: 0;
}
.title2
{
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
p
{
    color: black;
}

.about li
{
    margin-bottom: 15px;
}
.about h5
{
    color: #003147;
    font-weight: 700;
}
.about h4:nth-child(2)
{
    color: black;
    font-weight: 500;
}
.about h4
{
    color:black;
    font-weight: 200;
}
.title2.span
{
    color: black;
    font-weight: 500;
}