*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --brand-color:#56aeff;
    --bg-color:#041c40;
}
img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}
body{
background-color: var(--bg-color);
min-height: 100vh;
 font-family: "Roboto", sans-serif;
}
main{
    width: 100%;
    max-width: 600px;
    margin: auto;
    background-color: #fff;
   min-height: 100vh;
}
.profile__header::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(5, 29, 67,.5);

}
.profile__header > img{
    width: 100%;
    height: auto;
    aspect-ratio: 1/.5;
    object-fit: cover;
    position: relative;
    display: block;
}
.profile__header figure img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.profile__header figure{
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
    left: 50%;
    top:calc(100% - 20px);
    transform: translate(-50%,-50%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.profile__header{
    width: 100%;
position: relative;
}
.profile__body p{
      font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 28px;
    color: #525252;
}
.profile__body h6{
      font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 28px;
    color: #2e2e2e;
}
.profile__body h1{
    font-size: 36px;
    font-size: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--brand-color);
}
.profile__body img{
    border-radius: 10px ;
    overflow: hidden;
    margin-bottom: 15px;
}
.profile__body{
    padding: 90px 15px 30px;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 9;
}
.cta__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    margin: 0 -15px;
    max-width: 400px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 50px;
}
.cta__block a:nth-child(even) {
    border-left: 1px solid #acacac;

}
.cta__block a:not(:last-child):not(:nth-last-child(2)) {
    border-bottom: 1px solid #acacac;
}
.cta__block a {
    padding: 30px 15px;
    width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    /* margin-bottom: 30px; */
    max-width: 50%;
    transition: .2s all ease-in-out;
}

.cta__block a img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.cta__block a span b{
    color: #2e2e2e;
    transition: .2s all ease-in-out;
}
.cta__block a span {
    font-size: 16px;
    font-weight: 400;
    color: #525252;
}
.cta__primary:not(:last-child){
    margin-bottom: 30px;
}
.cta__primary{
    padding: 10px 25px;
    background-color: var(--brand-color);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    display: block;
    /* margin: auto; */
    width: max-content;
    transition: .2s all ease-in-out;
}
.cta__primary.cta__primary--border{
    background-color: transparent;
    border: 2px solid var(--bg-color);
    color: var(--bg-color);
}
@media (min-width:1200px) {
.cta__primary:hover{
background-color: var(--bg-color);
}
.cta__primary.cta__primary--border:hover{
    background-color: var(--bg-color);
    color: #fff;
}
.cta__block a:hover span b{
    /* color: var(--brand-color); */
}
.cta__block a:hover {
    background-color: #f3f3f3;
}
}
.cta__wrap .cta__primary{
    margin: 0 10px;
}
.cta__wrap{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    align-items: center;
}
footer ul li a{
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    padding: 10px;
    display: block;
    background-color: #dbdbdb;
}
footer ul li:not(:last-child){
    margin-right: 20px;
}
footer p{
    font-size: 16px;
    text-align: center;
    color:#525252 ;
    font-weight: 400;
}
footer ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}
footer h5{
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    color: #2e2e2e;
    margin-bottom: 15px;
}
footer{
    width: 100%;
    padding: 20px 15px;
    background-color: #f3f3f3;
}
article p{
    text-align: left !important;
}
article:last-child{
    margin-bottom: 0;
}
article{
    margin: 50px 0;
}
h1,h2,h3,h4,h5,h6{
    margin-bottom: 15px;
}