#headerrow-712475 .area-right{
  
    position: relative;
    width: 100%;
}
.calender {
    position: absolute;
    left: 5px;
    top: -15px;
}

.manager_Cards_Wwrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 44px;
    row-gap: 64px;
    justify-content: center;
    margin-block: 80px;
}

.manager_Card {
    background: var(--Gray-G100, #FFF);
    box-shadow: 0 4px 32px 0 rgba(18, 18, 18, 0.10);
    padding: 24px;
    flex: 0 0 calc(33% - 28px);
    position: relative;
    transition: 0.3s;
}

.manager_Card:hover {
    transform: translateY(-6px);
}

.manager_Card::before {
    content: "";
    background: #DA2E29;
    width: 70%;
    height: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    display: flex;
    transition: 0.3s;
}

.manager_Card:hover::before {
    bottom: -6px;
    height: 6px;
}

.manager_Card_Info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 16px;
}

.manager_Title_Bar {
    display: flex;
    flex-direction: column;
    gap: 12px;

    h3 {
        color: #0F3262;
font-size: 18px;
font-weight: 600;
    }
    p {
        color: var(--Gray-G20, #3D3D3D);
font-size: 16px;
font-weight: 400;
    }
}

.manager_Description {
    display: flex;
    flex-direction: column;
    gap: 16px;

    p {
        margin: 0 !important;
    }
}

.manager_Desc_Item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-inline-start: 14px;
}

.manager_Desc_Item::before {
    content: "";
    background: #DA2E29;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.manager_Desc_Name {
   color: var(--Gray-G50, #7A7A7A);
font-size: 14px;
font-weight: 400;
line-height: normal; 
}

.manager_Desc_Value {
    color: var(--Gray-G30, #4F4F4F);
font-size: 14px;
font-weight: 500;
line-height: normal;
}
a.footer-logo {
    max-width: 180px;
    display: flex;
}


