-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
173 lines (140 loc) · 2.24 KB
/
about.css
File metadata and controls
173 lines (140 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* Hero Section */
.hero {
background-color: #ff6600;
color: #ffffff;
text-align: center;
}
.hero h1 {
margin-bottom: 1.5rem;
}
.hero p {
margin-bottom: 2rem;
font-size: 1.125rem;
}
/* Story Section */
.story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.story-content p {
margin-bottom: 1.5rem;
}
.team-image {
width: 100%;
height: 400px;
background-color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
color: #888888;
font-weight: 500;
border-radius: 1rem;
}
/* Values Section */
.values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
/* Team Section */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.card-image {
height: 200px;
overflow: hidden;
background-color: #f5f5f5;
border-radius: 8px;
}
.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.card:hover .card-image img {
transform: scale(1.05);
}
/* CTA Section */
.cta-section {
text-align: center;
}
.cta-section p {
margin-bottom: 2rem;
font-size: 1.125rem;
}
.cta-button {
padding: 1rem 3rem;
font-size: 1.125rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.story-grid {
grid-template-columns: 1fr;
}
.team-image {
height: 200px;
}
.values-grid {
grid-template-columns: 1fr;
}
.team-grid {
grid-template-columns: 1fr;
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.25rem;
}
.nav-links {
display: none;
}
.container {
padding: 0 0.5rem;
}
.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
section {
padding: 2rem 0;
}
.footer-grid {
grid-template-columns: 1fr;
}
.hero {
padding: 2rem 0;
}
.cta-button {
padding: 0.75rem 2rem;
font-size: 1rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 1.25rem;
}
.btn {
padding: 0.5rem 1rem;
font-size: 0.75rem;
}
.card-image {
height: 150px;
}
.hero h1 {
font-size: 1.25rem;
}
.hero p {
font-size: 1rem;
}
.value-item h3 {
font-size: 1rem;
}
.team-image {
height: 150px;
}
}