73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
|
|
.about-section {
|
|
padding: 0 50px;
|
|
}
|
|
|
|
.about-card {
|
|
background: #1f4e79;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
color: white;
|
|
padding: 0;
|
|
}
|
|
|
|
.organisasi-card {
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.tentang-title {
|
|
text-align: center;
|
|
padding: 16px;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
|
|
.about-img {
|
|
width: 100%;
|
|
display: block;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.value-section {
|
|
margin-top: 40px;
|
|
padding-top: 30px;
|
|
border-top: 1px solid #e5e7eb;
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.value-item {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-direction: column;
|
|
padding-bottom: 50px;
|
|
/* align-items: flex-start;*/
|
|
}
|
|
|
|
.value-item i {
|
|
font-size: 20px;
|
|
color: #1f4e79;
|
|
margin-top: 3px;
|
|
background: white;
|
|
padding: 8px;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.value-item h6 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.value-item p {
|
|
font-size: 13px;
|
|
color: #6b7280;
|
|
margin: 2px 0 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.about-card {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|