71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
.kontak-section {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
|
|
.kontak-text {
|
|
font-size: 18px;
|
|
color: #121B2B;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.map-wrapper {
|
|
width: 100%;
|
|
height: 350px;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
border: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.map-wrapper iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
|
|
.kontak-card {
|
|
background: #ffffff;
|
|
border-radius: 16px;
|
|
padding: 25px;
|
|
border: 1px solid #e5e7eb;
|
|
transition: 0.25s;
|
|
}
|
|
|
|
.kontak-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 24px rgba(0,0,0,0.06);
|
|
}
|
|
|
|
.icon-circle {
|
|
width: 55px;
|
|
height: 55px;
|
|
background: #2563eb;
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
.icon-circle i {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.kontak-card h6 {
|
|
margin-bottom: 6px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.kontak-card p {
|
|
font-size: 13px;
|
|
color: #6b7280;
|
|
margin: 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.map-wrapper iframe {
|
|
height: 250px;
|
|
}
|
|
}
|