-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
161 lines (154 loc) · 3.55 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
/* Common Styles */
.btn-sqr{
padding: 10px 20px;
border-radius: 2px;
border: none;
font-size: medium;
font-weight: 600;
cursor: pointer;
}
.btn-sqr:hover{
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.btn-rnd{
padding: 10px 20px;
border-radius: 30px;
border: none;
font-size: medium;
font-weight: 600;
cursor: pointer;
}
.btn-rnd:hover{
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.primary{
color: #f52c2c;
}
.primary-bg{
background-color: #f52c2c;
}
/* Header section */
.nav-bar{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 80px;
background-color: #151515;
}
.nav-menu ul{
display: flex;
justify-content: space-around;
list-style: none;
}
.nav-menu ul li a{
padding: 10px 20px;
margin: 0 5px;
color: white;
text-decoration: none;
transition: all 0.3s ease;
}
.nav-menu ul li a:hover{
color: #f52c2c;
}
/* Banner-section */
.banner-section{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: url("asset/image/background.jpg"), linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.6)) ;
background-size: cover;
background-repeat: no-repeat;
background-blend-mode: overlay;
}
.banner-content{
text-align: center;
max-width: 800px;
color: white;
}
.banner-title{
font-size: 80px;
}
.banner-text{
margin: 10px 0;
font-size: 20px;
margin-bottom: 20px;
}
.banner-btn-1{
color: white;
margin: 10px;
}
/* service section */
.service-section{
display: flex;
justify-content: space-around;
align-items: center;
gap: 40px;
padding: 100px 20px;
background-image: url("asset/image/footer-bg.png"), linear-gradient(rgba(0,0,0,1), rgba(0,0,0,0.9));
background-blend-mode: overlay;
color: white;
}
.service-left{
}
.service-title{
font-size: 45px;
margin: 40px 0;
}
.service-description{
font-size: 20px;
margin: 10px 0;
}
.service-list{
margin: 15px;
}
.author-container{
display: flex;
justify-content: space-evenly;
align-items: center;
margin: 30px 0;
}
.author-details{
display: flex;
justify-content: baseline;
align-items: center;
width: 50%;
border-right: 2px solid #f52c2c;
}
.author-details img{
width: 60px;
border-radius: 30px;
margin-right: 20px;
}
.service-right{
display: flex;
flex-wrap: wrap;
justify-content: end;
}
.service-box{
width: 300px;
height: 300px;
background-color: white;
margin: 10px;
padding: 40px;
border-radius: 5px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
text-align: center;
}
.service-logo img{
width: 120px;
}
.service-caption{
color: black;
}