:root {
    --container-w: 1320px;
    --title: #2C8FEC;
    --text: #212529;
    --icon-bg: #F1F7FE;
    --shadow: 0px 2px 36px 0px #00000014
}

.wrap {
    max-width: var(--container-w);
    margin: 128px auto;
    padding: 0 16px
}

.three-card {
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 16px
}

.card-40 {
    padding: 40px
}

.title {
    color: var(--title);
    font-weight: 900;
    font-size: 24px;
    line-height: 150%;
    margin: 0 0 12px 0
}

.body {
    color: var(--text);
    font-weight: 400;
    font-size: 20px;
    text-align: justify;
    margin: 0
}

.hero {
    width: 100%;
    padding: 32px 40px;
    gap: 48px
}

.hero .media {
    width: 380px;
    height: 243px;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 380px;
    background: #eee
}

.hero .media img {
    object-fit: cover
}

.info {
    margin-top: 24px
}

.stats {
    margin-top: 24px;
    gap: 24px;
    flex-wrap: wrap
}

.stat {
	display:flex !important;
	justify-content:center !important;
	align-items:center !important;
    height: 128px;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: var(--shadow);
    background: #fff;
    gap: 16px;
    flex: 1 1 0%;
    min-width: 320px
}

.stat .stat-icon {
    width: 72px;
    height: 72px;
    background: var(--icon-bg);
    display: grid;
    place-items: center;
    flex: 0 0 72px
}

.stat .stat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.stat .stat-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.stat .stat-num {
   	font-family: var(--bs-font-sans-serif);
    font-weight: 800;
    font-size:1.5rem;
    line-height: 1.1;
    color: #111
}

.stat .stat-label {
    font-size: 16px;
    color: #4b5563;
    font-weight: 600
}

.title::before {
    display: none
}

.topwall {
    width: 100%;
    height: 450px;
    background-color: #3a3a3a;
    background-position: center center;
    background-size: cover
}

.topwall .page-title {
    bottom: 47px;
    right: 229px;
    color: #fff;
    font-size: 30px;
    font-weight: 700
}

@media (max-width:700px) {
    .wrap {
        margin: 24px auto
    }

    .hero {
        flex-direction: column;
        gap: 12px;
        padding: 24px 16px
    }

    .hero .media {
        width: 100%;
        height: 220px;
        flex: 0 0 auto;
        margin: 0
    }

    .card-40 {
        padding: 24px 16px
    }

    .info {
        margin-top: 16px
    }

    .stats {
        gap: 12px
    }

    .stat {
        min-width: 100%;
        height: auto;
        padding: 16px
    }

    .topwall {
        height: 340px
    }

    .topwall .page-title {
        bottom: 32px;
        right: 34px
    }
}

:root {
    --blue: #2C8FEC;
    --dot: #76A9FA;
    --shadow: 0px 2px 36px 0px #00000014;
    --tl-card-w: 362px;
    --tl-card-h: 103px
}

.tl-wrap {
    max-width: 1100px;
    margin: 32px auto 174px;
    padding: 0 16px
}
@media (max-width : 768px){
.tl-wrap {
    margin-bottom:32px;
}
}
.timeline-wrap {
    width: fit-content;
    display: block;
    margin: 0 auto
}

.midline {
    left: 50%;
    height: 100%;
    width: 2px;
    background-color: #e6e6e6;
    transform: translateX(-50%)
}

.tl-title {
    color: var(--blue);
    font-weight: 900;
    font-size: 24px;
    line-height: 150%;
    margin: 0 0 40px 0
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    row-gap: 28px;
    align-items: stretch
}

.midcol {
    grid-column: 2/3;
    grid-row: 1/-1;
    position: relative;
    z-index: 0
}

.midcol::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(#e5e7eb, #e2e8f0)
}

.tl-row {
    display: contents
}

.tl-card {
    width: var(--tl-card-w);
    height: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
    gap: 8px
}

.tl-left {
    grid-column: 3/4;
    justify-self: end;
    transform: translateY(95px);
	align-self:start;
}

.tl-right {
    grid-column: 1/2;
    justify-self: start;
	align-self:start;
}

.tl-mark {
    z-index: 1;
    grid-column: 2 / 3;
    display: grid;
    place-items: center
}

.dot {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px var(--dot) inset
}

.dot::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dot)
}

.year {
    font-weight: 800;
    font-size: 28px;
    line-height: 150%;
    text-align: center
}

.desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #4b5563;
    text-align: right;
}
@media (max-width: 768px){
    .desc{
       direction:rtl;
    }
}

.desc::before {
    content: "";
   
    margin-left: 8px;
	   display: inline-block;
    width: 8px;
    height: 8px;
    background: #4b5563;
    border-radius: 50%;
}
@media (max-width: 768px){
    .tl-card{
        text-align: right !important;
    }
}
@media (max-width:768px) {
    .timeline {
        grid-template-columns: 1fr 32px;
        direction: ltr;
        row-gap: 16px
    }

    .midcol {
        grid-column: 2/3
    }

    .tl-left,
    .tl-right {
        grid-column: 1/2;
        justify-self: stretch;
        width: 100%;
        align-items: flex-end !important
    }

    .tl-left {
        transform: translateY(0)
    }

    .midline {
        right: 13px
    }

    .tl-card {
        width: 97%;
        height: auto
    }

    .timeline-wrap {
        width: 100%
    }
}

:root {
    --brand: #2C8FEC;
    --card-w: 154px;
    --card-h: 194px;
    --row-w: 1305px;
    --row-h: 258px;
    --gap: 32px;
    --shadow: 0px 2px 36px 0px #00000014;
    --muted: #6b7280;
    --surface: #fff;
    --bg: #F1F7FE;
    --radius: 16px
}

.unit-container {
    max-width: var(--row-w);
    margin: 24px auto 170px;
    padding: 16px
}
@media (max-width:768px) {
	.unit-container {
    display:flex;
		flex-direction:column;
}
}

.unit-section-title {
    margin: 12px 0 20px;
    color: var(--brand);
    font-weight: 900;
    font-size: 24px;
    line-height: 150%
}

.unit-row {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    min-height: var(--row-h);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--gap);
    margin: 24px auto
}

.cards {
    flex-wrap: wrap;
    align-content: flex-start;
	padding-bottom:40px;
}
@media (max-width:768px) {
	.cards{
		display:flex !important;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		gap:5rem !important;
	}
}

.card {
	display:flex;
	flex-direction:column;
    width: var(--card-w);
    height: var(--card-h);
    gap: 16px;
    cursor: pointer
}
@media (max-width:768px) {
		.card {
   				 width: 100% !important;
				}
}
.avatar {
    width: 96px;
    height: 96px;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: 0 2px 12px rgb(0 0 0 / .06)
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.name {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    min-height: 20px
}

.role {
    margin-top: -6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
min-height:42px;
	color: var(--muted);
}

.icon-btn {
    aspect-ratio: 1;
    height: 24px;
/*     display: grid; */
    place-items: center;
	margin-top:auto !important;
}


.icon-btn svg {
    width: 24px;
    height: 24px;
    display: block
}

.unit-aside {
    padding-right: 28px
}

.unit-aside::before {
    content: "";
    position: absolute;
    left: 0;
    right: unset;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, #e5e7eb, #eef2f7)
}

.aside-circle {
    position: absolute;
    width: 72px;
    height: 72px;
    background: var(--bg);
    filter: drop-shadow(0 1px 8px rgb(0 0 0 / .04))
}

.unit-title {
    color: var(--brand);
    font-weight: 900;
    font-size: 18px;
    line-height: 150%;
    padding: 18px 8px
}

@media (max-width:1100px) {
    .unit-row {
        grid-template-columns: 180px 1fr
    }
}

@media (max-width:768px) {
    .unit-row {
		display:flex;
		flex-direction:column;
        padding: 20px;
		padding-bottom:40px;
        gap: 20px;
       
    }

    .unit-row::-webkit-scrollbar {
        display: none
    }

    .cards {
        gap: 1rem;
        flex-wrap: nowrap
    }

    .card {
        width: calc((100% - 20px)/2)
    }

    .unit-aside {
        padding-right: 20px
    }

    .unit-title {
        font-size: 18px
    }

    .role {
        min-height: 30px
    }
}

@media (max-width:380px) {
    .card {
        width: 100%
    }
}