├── images
├── doc-1.png
├── doc-2.png
├── doc-3.png
├── doc-4.png
├── logo.png
├── 4-dots.png
├── header.png
├── post-1.jpg
├── post-2.jpg
├── post-3.jpg
├── about-img.png
├── close-icon.png
├── banner-1-img.png
├── banner-2-img.png
├── doc-group-2.png
├── search-icon.png
├── banner-two-bg.png
├── ham-menu-icon.png
├── service-icon-1.png
├── service-icon-2.png
├── service-icon-3.png
├── service-icon-4.png
├── search-icon-dark.png
└── package-service-img.jpg
├── js
└── script.js
├── css
├── normalize.css
└── main.css
└── index.html
/images/doc-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/doc-1.png
--------------------------------------------------------------------------------
/images/doc-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/doc-2.png
--------------------------------------------------------------------------------
/images/doc-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/doc-3.png
--------------------------------------------------------------------------------
/images/doc-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/doc-4.png
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/logo.png
--------------------------------------------------------------------------------
/images/4-dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/4-dots.png
--------------------------------------------------------------------------------
/images/header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/header.png
--------------------------------------------------------------------------------
/images/post-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/post-1.jpg
--------------------------------------------------------------------------------
/images/post-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/post-2.jpg
--------------------------------------------------------------------------------
/images/post-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/post-3.jpg
--------------------------------------------------------------------------------
/images/about-img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/about-img.png
--------------------------------------------------------------------------------
/images/close-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/close-icon.png
--------------------------------------------------------------------------------
/images/banner-1-img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/banner-1-img.png
--------------------------------------------------------------------------------
/images/banner-2-img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/banner-2-img.png
--------------------------------------------------------------------------------
/images/doc-group-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/doc-group-2.png
--------------------------------------------------------------------------------
/images/search-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/search-icon.png
--------------------------------------------------------------------------------
/images/banner-two-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/banner-two-bg.png
--------------------------------------------------------------------------------
/images/ham-menu-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/ham-menu-icon.png
--------------------------------------------------------------------------------
/images/service-icon-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/service-icon-1.png
--------------------------------------------------------------------------------
/images/service-icon-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/service-icon-2.png
--------------------------------------------------------------------------------
/images/service-icon-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/service-icon-3.png
--------------------------------------------------------------------------------
/images/service-icon-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/service-icon-4.png
--------------------------------------------------------------------------------
/images/search-icon-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/search-icon-dark.png
--------------------------------------------------------------------------------
/images/package-service-img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/prabinmagar/revo-hospital-website-html-css-js/HEAD/images/package-service-img.jpg
--------------------------------------------------------------------------------
/js/script.js:
--------------------------------------------------------------------------------
1 | // navbar toggling
2 | const navbarShowBtn = document.querySelector('.navbar-show-btn');
3 | const navbarCollapseDiv = document.querySelector('.navbar-collapse');
4 | const navbarHideBtn = document.querySelector('.navbar-hide-btn');
5 |
6 | navbarShowBtn.addEventListener('click', function(){
7 | navbarCollapseDiv.classList.add('navbar-show');
8 | });
9 | navbarHideBtn.addEventListener('click', function(){
10 | navbarCollapseDiv.classList.remove('navbar-show');
11 | });
12 |
13 | // changing search icon image on window resize
14 | window.addEventListener('resize', changeSearchIcon);
15 | function changeSearchIcon(){
16 | let winSize = window.matchMedia("(min-width: 1200px)");
17 | if(winSize.matches){
18 | document.querySelector('.search-icon img').src = "images/search-icon.png";
19 | } else {
20 | document.querySelector('.search-icon img').src = "images/search-icon-dark.png";
21 | }
22 | }
23 | changeSearchIcon();
24 |
25 | // stopping all animation and transition
26 | let resizeTimer;
27 | window.addEventListener('resize', () =>{
28 | document.body.classList.add('resize-animation-stopper');
29 | clearTimeout(resizeTimer);
30 | resizeTimer = setTimeout(() => {
31 | document.body.classList.remove('resize-animation-stopper');
32 | }, 400);
33 | });
--------------------------------------------------------------------------------
/css/normalize.css:
--------------------------------------------------------------------------------
1 | /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2 |
3 | /* Document
4 | ========================================================================== */
5 |
6 | /**
7 | * 1. Correct the line height in all browsers.
8 | * 2. Prevent adjustments of font size after orientation changes in iOS.
9 | */
10 |
11 | html {
12 | line-height: 1.15; /* 1 */
13 | -webkit-text-size-adjust: 100%; /* 2 */
14 | }
15 |
16 | /* Sections
17 | ========================================================================== */
18 |
19 | /**
20 | * Remove the margin in all browsers.
21 | */
22 |
23 | body {
24 | margin: 0;
25 | }
26 |
27 | /**
28 | * Render the `main` element consistently in IE.
29 | */
30 |
31 | main {
32 | display: block;
33 | }
34 |
35 | /**
36 | * Correct the font size and margin on `h1` elements within `section` and
37 | * `article` contexts in Chrome, Firefox, and Safari.
38 | */
39 |
40 | h1 {
41 | font-size: 2em;
42 | margin: 0.67em 0;
43 | }
44 |
45 | /* Grouping content
46 | ========================================================================== */
47 |
48 | /**
49 | * 1. Add the correct box sizing in Firefox.
50 | * 2. Show the overflow in Edge and IE.
51 | */
52 |
53 | hr {
54 | box-sizing: content-box; /* 1 */
55 | height: 0; /* 1 */
56 | overflow: visible; /* 2 */
57 | }
58 |
59 | /**
60 | * 1. Correct the inheritance and scaling of font size in all browsers.
61 | * 2. Correct the odd `em` font sizing in all browsers.
62 | */
63 |
64 | pre {
65 | font-family: monospace, monospace; /* 1 */
66 | font-size: 1em; /* 2 */
67 | }
68 |
69 | /* Text-level semantics
70 | ========================================================================== */
71 |
72 | /**
73 | * Remove the gray background on active links in IE 10.
74 | */
75 |
76 | a {
77 | background-color: transparent;
78 | }
79 |
80 | /**
81 | * 1. Remove the bottom border in Chrome 57-
82 | * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
83 | */
84 |
85 | abbr[title] {
86 | border-bottom: none; /* 1 */
87 | text-decoration: underline; /* 2 */
88 | text-decoration: underline dotted; /* 2 */
89 | }
90 |
91 | /**
92 | * Add the correct font weight in Chrome, Edge, and Safari.
93 | */
94 |
95 | b,
96 | strong {
97 | font-weight: bolder;
98 | }
99 |
100 | /**
101 | * 1. Correct the inheritance and scaling of font size in all browsers.
102 | * 2. Correct the odd `em` font sizing in all browsers.
103 | */
104 |
105 | code,
106 | kbd,
107 | samp {
108 | font-family: monospace, monospace; /* 1 */
109 | font-size: 1em; /* 2 */
110 | }
111 |
112 | /**
113 | * Add the correct font size in all browsers.
114 | */
115 |
116 | small {
117 | font-size: 80%;
118 | }
119 |
120 | /**
121 | * Prevent `sub` and `sup` elements from affecting the line height in
122 | * all browsers.
123 | */
124 |
125 | sub,
126 | sup {
127 | font-size: 75%;
128 | line-height: 0;
129 | position: relative;
130 | vertical-align: baseline;
131 | }
132 |
133 | sub {
134 | bottom: -0.25em;
135 | }
136 |
137 | sup {
138 | top: -0.5em;
139 | }
140 |
141 | /* Embedded content
142 | ========================================================================== */
143 |
144 | /**
145 | * Remove the border on images inside links in IE 10.
146 | */
147 |
148 | img {
149 | border-style: none;
150 | }
151 |
152 | /* Forms
153 | ========================================================================== */
154 |
155 | /**
156 | * 1. Change the font styles in all browsers.
157 | * 2. Remove the margin in Firefox and Safari.
158 | */
159 |
160 | button,
161 | input,
162 | optgroup,
163 | select,
164 | textarea {
165 | font-family: inherit; /* 1 */
166 | font-size: 100%; /* 1 */
167 | line-height: 1.15; /* 1 */
168 | margin: 0; /* 2 */
169 | }
170 |
171 | /**
172 | * Show the overflow in IE.
173 | * 1. Show the overflow in Edge.
174 | */
175 |
176 | button,
177 | input { /* 1 */
178 | overflow: visible;
179 | }
180 |
181 | /**
182 | * Remove the inheritance of text transform in Edge, Firefox, and IE.
183 | * 1. Remove the inheritance of text transform in Firefox.
184 | */
185 |
186 | button,
187 | select { /* 1 */
188 | text-transform: none;
189 | }
190 |
191 | /**
192 | * Correct the inability to style clickable types in iOS and Safari.
193 | */
194 |
195 | button,
196 | [type="button"],
197 | [type="reset"],
198 | [type="submit"] {
199 | -webkit-appearance: button;
200 | }
201 |
202 | /**
203 | * Remove the inner border and padding in Firefox.
204 | */
205 |
206 | button::-moz-focus-inner,
207 | [type="button"]::-moz-focus-inner,
208 | [type="reset"]::-moz-focus-inner,
209 | [type="submit"]::-moz-focus-inner {
210 | border-style: none;
211 | padding: 0;
212 | }
213 |
214 | /**
215 | * Restore the focus styles unset by the previous rule.
216 | */
217 |
218 | button:-moz-focusring,
219 | [type="button"]:-moz-focusring,
220 | [type="reset"]:-moz-focusring,
221 | [type="submit"]:-moz-focusring {
222 | outline: 1px dotted ButtonText;
223 | }
224 |
225 | /**
226 | * Correct the padding in Firefox.
227 | */
228 |
229 | fieldset {
230 | padding: 0.35em 0.75em 0.625em;
231 | }
232 |
233 | /**
234 | * 1. Correct the text wrapping in Edge and IE.
235 | * 2. Correct the color inheritance from `fieldset` elements in IE.
236 | * 3. Remove the padding so developers are not caught out when they zero out
237 | * `fieldset` elements in all browsers.
238 | */
239 |
240 | legend {
241 | box-sizing: border-box; /* 1 */
242 | color: inherit; /* 2 */
243 | display: table; /* 1 */
244 | max-width: 100%; /* 1 */
245 | padding: 0; /* 3 */
246 | white-space: normal; /* 1 */
247 | }
248 |
249 | /**
250 | * Add the correct vertical alignment in Chrome, Firefox, and Opera.
251 | */
252 |
253 | progress {
254 | vertical-align: baseline;
255 | }
256 |
257 | /**
258 | * Remove the default vertical scrollbar in IE 10+.
259 | */
260 |
261 | textarea {
262 | overflow: auto;
263 | }
264 |
265 | /**
266 | * 1. Add the correct box sizing in IE 10.
267 | * 2. Remove the padding in IE 10.
268 | */
269 |
270 | [type="checkbox"],
271 | [type="radio"] {
272 | box-sizing: border-box; /* 1 */
273 | padding: 0; /* 2 */
274 | }
275 |
276 | /**
277 | * Correct the cursor style of increment and decrement buttons in Chrome.
278 | */
279 |
280 | [type="number"]::-webkit-inner-spin-button,
281 | [type="number"]::-webkit-outer-spin-button {
282 | height: auto;
283 | }
284 |
285 | /**
286 | * 1. Correct the odd appearance in Chrome and Safari.
287 | * 2. Correct the outline style in Safari.
288 | */
289 |
290 | [type="search"] {
291 | -webkit-appearance: textfield; /* 1 */
292 | outline-offset: -2px; /* 2 */
293 | }
294 |
295 | /**
296 | * Remove the inner padding in Chrome and Safari on macOS.
297 | */
298 |
299 | [type="search"]::-webkit-search-decoration {
300 | -webkit-appearance: none;
301 | }
302 |
303 | /**
304 | * 1. Correct the inability to style clickable types in iOS and Safari.
305 | * 2. Change font properties to `inherit` in Safari.
306 | */
307 |
308 | ::-webkit-file-upload-button {
309 | -webkit-appearance: button; /* 1 */
310 | font: inherit; /* 2 */
311 | }
312 |
313 | /* Interactive
314 | ========================================================================== */
315 |
316 | /*
317 | * Add the correct display in Edge, IE 10+, and Firefox.
318 | */
319 |
320 | details {
321 | display: block;
322 | }
323 |
324 | /*
325 | * Add the correct display in all browsers.
326 | */
327 |
328 | summary {
329 | display: list-item;
330 | }
331 |
332 | /* Misc
333 | ========================================================================== */
334 |
335 | /**
336 | * Add the correct display in IE 10+.
337 | */
338 |
339 | template {
340 | display: none;
341 | }
342 |
343 | /**
344 | * Add the correct display in IE 10.
345 | */
346 |
347 | [hidden] {
348 | display: none;
349 | }
350 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Revo
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
99 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Recusandae molestias delectus facilis, temporibus eum consectetur, a debitis exercitationem quae distinctio aliquid ea ipsam vitae esse amet soluta maxime dolorem? Inventore ut maiores illo ipsum nisi, nulla eligendi unde reiciendis quod voluptas velit sit voluptate perferendis cum pariatur molestiae tenetur repellat!
100 |
Learn More
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
When you are young and healthy, it never occurs to you that in a single second your whole life could change.
116 |
- Anonim Nano
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
The Best Doctor gives the least medicines
126 |
A perfect way to show your hospital services
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 | Cardio Monitoring
139 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis possimus doloribus facilis velit, assumenda tempora quas mollitia quos voluptatibus consequatur!
140 |
141 |
142 |
143 |
144 |
145 |
146 | Medical Treatment
147 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis possimus doloribus facilis velit, assumenda tempora quas mollitia quos voluptatibus consequatur!
148 |
149 |
150 |
151 |
152 |
153 |
154 | Emergency Help
155 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis possimus doloribus facilis velit, assumenda tempora quas mollitia quos voluptatibus consequatur!
156 |
157 |
158 |
159 |
160 |
161 |
162 | First Aid
163 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis possimus doloribus facilis velit, assumenda tempora quas mollitia quos voluptatibus consequatur!
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
When you are young and healthy, it never occurs to you that in a single second your whole life could change.
178 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
Our Doctor Panel
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
samuel goe
200 |
Medicine
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
elizabeth ira
210 |
Cardiology
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
tanya collins
220 |
Medicine
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
Package Service
234 |
Best service package for you
235 |
236 |
237 |
238 |
239 |
240 |
241 |
Regular Case
242 |
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, asperiores. Expedita, reiciendis quos beatae at consequatur voluptatibus fuga iste adipisci.
243 |
Read More
244 |
245 |
246 |
247 |
248 |
249 |
250 |
Serious Case
251 |
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, asperiores. Expedita, reiciendis quos beatae at consequatur voluptatibus fuga iste adipisci.
252 |
Read More
253 |
254 |
255 |
256 |
257 |
258 |
259 |
Emergency Case
260 |
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Consequatur, asperiores. Expedita, reiciendis quos beatae at consequatur voluptatibus fuga iste adipisci.
261 |
Read More
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
Latest Post
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
Inspiring stories of person and family centered care during a global pandemic.
281 |
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolor voluptas eius recusandae sunt obcaecati esse facere cumque. Aliquid, cupiditate debitis.
282 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis quia ipsam, quis iure sed nulla.
283 |
284 | October 27, 2021
285 | 5 comments
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
Inspiring stories of person and family centered care during a global pandemic.
296 |
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolor voluptas eius recusandae sunt obcaecati esse facere cumque. Aliquid, cupiditate debitis.
297 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis quia ipsam, quis iure sed nulla.
298 |
299 | October 27, 2021
300 | 5 comments
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
Inspiring stories of person and family centered care during a global pandemic.
311 |
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolor voluptas eius recusandae sunt obcaecati esse facere cumque. Aliquid, cupiditate debitis.
312 |
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis quia ipsam, quis iure sed nulla.
313 |
314 | October 27, 2021
315 | 5 comments
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
352 |
353 |
354 |
355 |
356 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
--------------------------------------------------------------------------------
/css/main.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
2 |
3 | /* variables */
4 | :root{
5 | --fros-blue-color: #0050d5;
6 | --light-blue-color: #16c5ff;
7 | --dark-color: #202020;
8 | --light-gray: #dedede;
9 | --dark-gray: #a1a1a0;
10 | --light-color: #fff;
11 | --poppins-font: 'Poppins', sans-serif;
12 | --transition: all 0.3s ease-in-out;
13 | --box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2)!important;
14 | }
15 |
16 | /* some resets */
17 | *{
18 | padding: 0;
19 | margin: 0;
20 | -webkit-box-sizing: border-box;
21 | box-sizing: border-box;
22 | }
23 | html{
24 | font-size: 10px;
25 | }
26 | body{
27 | font-size: 1.6rem;
28 | line-height: 1.6;
29 | font-family: var(--poppins-font);
30 | }
31 | img{
32 | width: 100%;
33 | display: block;
34 | }
35 | ul{
36 | list-style: none;
37 | }
38 | a{
39 | text-decoration: none;
40 | color: var(--dark-color);
41 | }
42 | .bg-blue{
43 | background-color: var(--fros-blue-color);
44 | }
45 | .bg-white{
46 | background-color: var(--light-color);
47 | }
48 | .text-blue{
49 | color: var(--fros-blue-color);
50 | }
51 | .text-white{
52 | color: var(--light-color);
53 | }
54 |
55 | /* button */
56 | .btn, button{
57 | border: none;
58 | cursor: pointer;
59 | }
60 | .btn{
61 | padding: .9rem 4rem;
62 | border-radius: 3rem;
63 | display: inline-block;
64 | background-color: var(--light-color);
65 | font-weight: 500;
66 | -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
67 | box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
68 | -webkit-transition: var(--transition);
69 | -o-transition: var(--transition);
70 | transition: var(--transition);
71 | }
72 | .btn-white{
73 | color: var(--fros-blue-color);
74 | }
75 | .btn-light-blue{
76 | background-color: var(--light-blue-color);
77 | color: var(--light-color);
78 | }
79 | .btn-blue{
80 | background-color: var(--fros-blue-color);
81 | color: var(--light-color);
82 | }
83 | .btn-group{
84 | display: -webkit-box;
85 | display: -ms-flexbox;
86 | display: flex;
87 | -ms-flex-wrap: wrap;
88 | flex-wrap: wrap;
89 | -webkit-box-align: center;
90 | -ms-flex-align: center;
91 | align-items: center;
92 | }
93 | .btn-group .btn{
94 | width: 100%;
95 | }
96 | .btn-group .btn:first-child{
97 | margin-bottom: 2rem;
98 | }
99 | .btn:hover{
100 | -webkit-box-shadow: var(--box-shadow);
101 | box-shadow: var(--box-shadow);
102 | }
103 |
104 | .container{
105 | max-width: 95vw;
106 | margin: 0 auto;
107 | padding: 0 1rem;
108 | }
109 | .flex{
110 | display: -webkit-box;
111 | display: -ms-flexbox;
112 | display: flex;
113 | -webkit-box-align: center;
114 | -ms-flex-align: center;
115 | align-items: center;
116 | -webkit-box-pack: center;
117 | -ms-flex-pack: center;
118 | justify-content: center;
119 | }
120 | .grid{
121 | display: grid;
122 | }
123 | input{
124 | outline: 0;
125 | }
126 | .lead{
127 | font-size: 25px;
128 | text-transform: capitalize;
129 | }
130 | h1, h2, h3{
131 | text-transform: capitalize;
132 | margin-top: 0;
133 | line-height: 1.3;
134 | }
135 | .text{
136 | opacity: 0.9;
137 | }
138 | .text-md{
139 | font-size: 1.5rem;
140 | }
141 | .text-lg{
142 | font-size: 2rem;
143 | font-weight: 500;
144 | }
145 | .text-sm{
146 | font-size: 1.3rem;
147 | }
148 | .py{
149 | padding: 10.9rem 0;
150 | }
151 | .text-center{
152 | text-align: center;
153 | }
154 |
155 | /* header */
156 | .header{
157 | min-height: 100vh;
158 | }
159 | .navbar{
160 | position: fixed;
161 | top: 0;
162 | left: 0;
163 | width: 100%;
164 | padding: 3.2rem 0;
165 | z-index: 999;
166 | }
167 | .navbar .container{
168 | -webkit-box-pack: justify;
169 | -ms-flex-pack: justify;
170 | justify-content: space-between;
171 | }
172 | .navbar-brand img{
173 | width: 168px;
174 | }
175 | .navbar-show-btn, .navbar-hide-btn{
176 | background-color: transparent;
177 | width: 30px;
178 | -webkit-transition: var(--transition);
179 | -o-transition: var(--transition);
180 | transition: var(--transition);
181 | }
182 | button[class ^= navbar]:hover{
183 | -webkit-transform: scale(1.1);
184 | -ms-transform: scale(1.1);
185 | transform: scale(1.1);
186 | }
187 |
188 |
189 | .navbar-collapse{
190 | position: fixed;
191 | top: 0;
192 | right: 0;
193 | width: 100%;
194 | height: 100%;
195 | padding: 8rem 3rem;
196 | display: -webkit-box;
197 | display: -ms-flexbox;
198 | display: flex;
199 | -webkit-box-orient: vertical;
200 | -webkit-box-direction: normal;
201 | -ms-flex-direction: column;
202 | flex-direction: column;
203 | -webkit-box-pack: justify;
204 | -ms-flex-pack: justify;
205 | justify-content: space-between;
206 | -webkit-box-shadow: -3px 0 10px 4px rgba(0, 0, 0, 0.1);
207 | box-shadow: -3px 0 10px 4px rgba(0, 0, 0, 0.1);
208 | -webkit-transform: translateX(110%);
209 | -ms-transform: translateX(110%);
210 | transform: translateX(110%);
211 | -webkit-transition: var(--transition);
212 | -o-transition: var(--transition);
213 | transition: var(--transition);
214 | z-index: 1000;
215 | }
216 | /* navbar show class */
217 | .navbar-show{
218 | -webkit-transform: translateX(0);
219 | -ms-transform: translateX(0);
220 | transform: translateX(0);
221 | }
222 | .navbar-hide-btn{
223 | position: absolute;
224 | right: 2rem;
225 | top: 4.5rem;
226 | }
227 | .nav-item{
228 | margin: 1.4rem 0;
229 | }
230 | .nav-link{
231 | opacity: 0.8;
232 | font-weight: 600;
233 | -webkit-transition: var(--transition);
234 | -o-transition: var(--transition);
235 | transition: var(--transition);
236 | display: inline-block;
237 | }
238 | .nav-link:hover{
239 | opacity: 1;
240 | color: var(--fros-blue-color);
241 | -webkit-transform: translateX(10px);
242 | -ms-transform: translateX(10px);
243 | transform: translateX(10px);
244 | }
245 | .search-icon{
246 | display: block;
247 | width: 27px;
248 | margin-right: 1rem;
249 | }
250 | .search-control::-webkit-input-placeholder{
251 | color: var(--light-gray);
252 | }
253 | .search-control::-moz-placeholder{
254 | color: var(--light-gray);
255 | }
256 | .search-control:-ms-input-placeholder{
257 | color: var(--light-gray);
258 | }
259 | .search-control::-ms-input-placeholder{
260 | color: var(--light-gray);
261 | }
262 | .search-control::placeholder{
263 | color: var(--light-gray);
264 | }
265 | .search-control{
266 | height: 27px;
267 | width: 100%;
268 | border-radius: 1.9rem;
269 | border: 2px solid var(--light-gray);
270 | padding: 0 1.5rem;
271 | }
272 |
273 | /* header inner */
274 | .header-inner{
275 | padding-top: 16rem;
276 | }
277 | .header-inner-left h1{
278 | font-size: 4rem;
279 | font-weight: 300;
280 | margin-bottom: 0;
281 | }
282 | .header-inner-left h1 span{
283 | font-weight: 600;
284 | text-transform: uppercase;
285 | }
286 | .header-inner-left .lead{
287 | opacity: 0.9;
288 | }
289 | .header-inner-left .text{
290 | margin: 5.8rem 0;
291 | max-width: 500px;
292 | margin-right: auto;
293 | margin-left: auto;
294 | }
295 | .header-inner-left .btn-group{
296 | -webkit-box-pack: center;
297 | -ms-flex-pack: center;
298 | justify-content: center;
299 | }
300 | .header-inner-right{
301 | margin-top: 6rem;
302 | }
303 | .header-inner-right img{
304 | max-width: 520px;
305 | margin: 0 auto;
306 | }
307 |
308 | /* about section */
309 | .section-head h2{
310 | font-size: 4rem;
311 | font-weight: 500;
312 | margin-bottom: 3rem;
313 | text-align: center;
314 | }
315 | .border-line{
316 | height: .4rem;
317 | width: 100%;
318 | margin-right: auto;
319 | margin-left: auto;
320 | background-color: var(--light-gray);
321 | position: relative;
322 | }
323 | .border-line::after{
324 | content: "";
325 | position: absolute;
326 | top: 0;
327 | left: 50%;
328 | -webkit-transform: translateX(-50%);
329 | -ms-transform: translateX(-50%);
330 | transform: translateX(-50%);
331 | height: 100%;
332 | width: 102px;
333 | background-color: var(--light-blue-color);
334 | }
335 | .about-left{
336 | margin-bottom: 6rem;
337 | }
338 | .about-right{
339 | margin-top: 16.8rem;
340 | }
341 | .about-left .text{
342 | margin: 5.6rem 0;
343 | line-height: 2.3;
344 | }
345 | .about .btn-white{
346 | color: var(--dark-gray);
347 | }
348 | .about-right .img{
349 | width: 100%;
350 | background-color: #3983fe;
351 | max-width: 537px;
352 | position: relative;
353 | }
354 | .about-right .img img{
355 | padding-top: 10rem;
356 | -webkit-transform: scaleX(1.03);
357 | -ms-transform: scaleX(1.03);
358 | transform: scaleX(1.03);
359 | }
360 | .about-right .img::after, .about-right .img::before{
361 | content: "";
362 | position: absolute;
363 | width: 100%;
364 | height: 100%;
365 | }
366 | .about-right .img::after{
367 | top: -56px;
368 | left: 0;
369 | background-color: #0060ff;
370 | z-index: -1;
371 | }
372 | .about-right .img::before{
373 | top: -112px;
374 | left: 0;
375 | background-color: var(--fros-blue-color);
376 | z-index: -2;
377 | }
378 |
379 | /* banner one section */
380 | .banner-one{
381 | background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 80, 213, 0.9)), to(rgba(0, 90, 213, 0.85))), url('../images/banner-1-img.png') top/cover no-repeat;
382 | background: -o-linear-gradient(rgba(0, 80, 213, 0.9), rgba(0, 90, 213, 0.85)), url('../images/banner-1-img.png') top/cover no-repeat;
383 | background: linear-gradient(rgba(0, 80, 213, 0.9), rgba(0, 90, 213, 0.85)), url('../images/banner-1-img.png') top/cover no-repeat;
384 | height: 480px;
385 | display: -webkit-box;
386 | display: -ms-flexbox;
387 | display: flex;
388 | -webkit-box-align: center;
389 | -ms-flex-align: center;
390 | align-items: center;
391 | -webkit-box-pack: center;
392 | -ms-flex-pack: center;
393 | justify-content: center;
394 | }
395 | .banner-one .lead{
396 | font-size: 2.8rem;
397 | font-weight: 500;
398 | max-width: 600px;
399 | }
400 | .banner-one .text-sm{
401 | font-weight: 500;
402 | }
403 |
404 | /* services section */
405 | .services .section-head .text-lg{
406 | color: var(--dark-gray);
407 | margin-top: -2rem;
408 | }
409 | .services .section-head img{
410 | margin: 3.7rem auto;
411 | }
412 | .line-art{
413 | max-width: 240px;
414 | margin: auto;
415 | }
416 | .line-art img{
417 | width: 30px;
418 | }
419 | .line-art div{
420 | width: 100px;
421 | height: 2px;
422 | background-color: var(--light-gray);
423 | }
424 | .services-inner{
425 | padding: 6rem 0;
426 | }
427 | .service-item{
428 | padding: 3rem;
429 | margin-bottom: 3rem;
430 | }
431 | .service-item:last-child{
432 | margin-bottom: 0;
433 | }
434 | .service-item .icon img{
435 | width: 80px;
436 | margin: auto;
437 | }
438 | .service-item h3{
439 | margin: 5rem 0;
440 | opacity: 0.7;
441 | }
442 |
443 | /* banner two section */
444 | .banner-two{
445 | background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 80, 213, 0.9)), to(rgba(0, 90, 213, 0.85))), url('../images/banner-two-bg.png') top/cover no-repeat;
446 | background: -o-linear-gradient(rgba(0, 80, 213, 0.9), rgba(0, 90, 213, 0.85)), url('../images/banner-two-bg.png') top/cover no-repeat;
447 | background: linear-gradient(rgba(0, 80, 213, 0.9), rgba(0, 90, 213, 0.85)), url('../images/banner-two-bg.png') top/cover no-repeat;
448 | padding: 13.6rem 0;
449 | }
450 | .banner-two-left img{
451 | max-width: 620px;
452 | margin: auto;
453 | }
454 | .banner-two-right .lead{
455 | font-size: 2.2rem;
456 | margin-top: 6rem;
457 | }
458 | .banner-two-right .btn-group{
459 | margin-top: 6rem;
460 | -webkit-box-pack: center;
461 | -ms-flex-pack: center;
462 | justify-content: center;
463 | }
464 |
465 | /* doctors panel */
466 | .doc-panel-inner{
467 | margin-top: 8rem;
468 | }
469 | .doc-panel-item{
470 | margin-bottom: 6rem;
471 | }
472 | .doc-panel-item:last-child{
473 | margin-bottom: 0;
474 | }
475 | .doc-panel-item .img{
476 | position: relative;
477 | height: 440px;
478 | background-color: var(--light-gray);
479 | overflow: hidden;
480 | -webkit-box-align: end;
481 | -ms-flex-align: end;
482 | align-items: flex-end;
483 | }
484 | .doc-panel-item .img .info{
485 | position: absolute;
486 | bottom: -100%;
487 | left: 0;
488 | width: 100%;
489 | height: 100px;
490 | -webkit-box-orient: vertical;
491 | -webkit-box-direction: normal;
492 | -ms-flex-direction: column;
493 | flex-direction: column;
494 | -webkit-transition: var(--transition);
495 | -o-transition: var(--transition);
496 | transition: var(--transition);
497 | }
498 | .doc-panel-item .img{
499 | max-width: 357px;
500 | margin-left: auto;
501 | margin-right: auto;
502 | }
503 | .doc-panel-item:hover .info{
504 | bottom: 0;
505 | }
506 |
507 | /* package service */
508 | .package-service-inner{
509 | margin-top: 14rem;
510 | }
511 | .package-service{
512 | background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 80, 213, 0.85)), to(rgba(0, 80, 213, 0.95))), url('../images/package-service-img.jpg') center/cover no-repeat;
513 | background: -o-linear-gradient(rgba(0, 80, 213, 0.85), rgba(0, 80, 213, 0.95)), url('../images/package-service-img.jpg') center/cover no-repeat;
514 | background: linear-gradient(rgba(0, 80, 213, 0.85), rgba(0, 80, 213, 0.95)), url('../images/package-service-img.jpg') center/cover no-repeat;
515 | }
516 | .package-service-head{
517 | color: var(--light-color);
518 | }
519 | .package-service-head h2{
520 | font-size: 39px;
521 | }
522 | .package-service-item{
523 | padding: 3rem 5rem;
524 | position: relative;
525 | margin-bottom: 12rem;
526 | }
527 | .package-service-item:last-child{
528 | margin-bottom: 0;
529 | }
530 | .package-service-item .icon{
531 | width: 86px;
532 | height: 86px;
533 | background-color: var(--light-blue-color);
534 | border-radius: 2rem;
535 | border-bottom-right-radius: 0;
536 | color: var(--light-color);
537 | position: absolute;
538 | top: -43px;
539 | left: 50%;
540 | -webkit-transform: translateX(-50%) rotate(45deg);
541 | -ms-transform: translateX(-50%) rotate(45deg);
542 | transform: translateX(-50%) rotate(45deg);
543 | }
544 | .package-service-item .icon i{
545 | -webkit-transform: rotate(-45deg);
546 | -ms-transform: rotate(-45deg);
547 | transform: rotate(-45deg);
548 | }
549 | .package-service-item h3{
550 | opacity: 0.7;
551 | margin: 8rem 0 4rem 0;
552 | }
553 | .package-service-item .text-sm{
554 | color: var(--dark-gray);
555 | }
556 | .package-service-item .btn{
557 | margin: 4rem 0;
558 | }
559 |
560 | /* posts section */
561 | .posts{
562 | background-color: var(--light-gray);
563 | }
564 | .posts-inner{
565 | margin-top: 6rem;
566 | }
567 | .post-item{
568 | padding: 1.2rem;
569 | -webkit-box-shadow: var(--box-shadow);
570 | box-shadow: var(--box-shadow);
571 | margin-bottom: 6rem;
572 | }
573 | .post-item:last-child{
574 | margin-bottom: 0;
575 | }
576 | .post-item .content{
577 | padding: 3rem 2rem 1rem 2rem;
578 | }
579 | .post-item h4{
580 | margin-bottom: 1rem;
581 | }
582 | .post-item .text{
583 | padding: 1rem 0;
584 | }
585 | .post-item .info{
586 | -webkit-box-pack: justify;
587 | -ms-flex-pack: justify;
588 | justify-content: space-between;
589 | color: var(--dark-gray);
590 | }
591 | .post-item .info .text{
592 | padding-bottom: 0;
593 | }
594 |
595 | /* contact section */
596 | .contact-left{
597 | margin-bottom: 6rem;
598 | height: 100%;
599 | }
600 | .contact-left iframe{
601 | width: 100%;
602 | height: 100%;
603 | -o-object-fit: cover;
604 | object-fit: cover;
605 | }
606 | .contact-right{
607 | padding: 5rem 4rem;
608 | }
609 | .contact-right form{
610 | margin-top: 5rem;
611 | }
612 | .form-element .form-control{
613 | width: 100%;
614 | background-color: #3373dd;
615 | border: none;
616 | outline: 0;
617 | padding: 1rem 1.6rem;
618 | margin-bottom: 1.6rem;
619 | color: var(--light-color);
620 | }
621 | .form-element .form-control::-webkit-input-placeholder{
622 | color: var(--light-color);
623 | }
624 | .form-element .form-control::-moz-placeholder{
625 | color: var(--light-color);
626 | }
627 | .form-element .form-control:-ms-input-placeholder{
628 | color: var(--light-color);
629 | }
630 | .form-element .form-control::-ms-input-placeholder{
631 | color: var(--light-color);
632 | }
633 | .form-element .form-control::placeholder{
634 | color: var(--light-color);
635 | }
636 | .btn-submit{
637 | margin-top: 4rem;
638 | }
639 | .btn-submit i{
640 | margin-right: 2rem;
641 | }
642 |
643 | /* footer */
644 | .footer{
645 | background-color: var(--dark-color);
646 | }
647 | .footer-item{
648 | margin-bottom: 6rem;
649 | }
650 | .footer-item:last-child{
651 | margin-bottom: 0;
652 | }
653 | .footer-head{
654 | text-transform: uppercase;
655 | font-weight: 500;
656 | font-size: 2.4rem;
657 | margin-bottom: 4rem;
658 | }
659 | .footer-item .icon{
660 | width: 120px;
661 | margin: auto;
662 | }
663 | .footer-item .text{
664 | padding: 3rem 0;
665 | max-width: 500px;
666 | margin-right: auto;
667 | margin-left: auto;
668 | }
669 | .footer-item address{
670 | font-size: 1.5rem;
671 | font-style: normal;
672 | }
673 | .footer-item .tags-list{
674 | -ms-flex-wrap: wrap;
675 | flex-wrap: wrap;
676 | }
677 | .footer-item .tags-list li{
678 | margin: .5rem 1rem;
679 | padding: .5rem 1rem;
680 | background-color: rgb(58, 58, 58);
681 | border-radius: .4rem;
682 | }
683 | .footer-item a{
684 | margin-bottom: 1rem;
685 | display: inline-block;
686 | -webkit-transition: var(--transition);
687 | -o-transition: var(--transition);
688 | transition: var(--transition);
689 | }
690 | .footer-item a:hover{
691 | color: var(--dark-gray);
692 | }
693 | .footer-item:last-child .text{
694 | padding-top: 0;
695 | }
696 | .footer-item .appointment-info li{
697 | margin: 1rem 0;
698 | }
699 | .footer-item .appointment-info li span{
700 | margin-left: 1rem;
701 | }
702 | .footer-links{
703 | border-top: 2px solid var(--dark-gray);
704 | padding: 4.5rem 0;
705 | }
706 | .footer-links li{
707 | margin: 0 2.4rem;
708 | font-size: 2rem;
709 | }
710 | .footer-links li a{
711 | height: 40px;
712 | width: 40px;
713 | border-radius: 50%;
714 | border: 2px solid var(--light-color);
715 | -webkit-transition: var(--transition);
716 | -o-transition: var(--transition);
717 | transition: var(--transition);
718 | }
719 | .footer-links li a:hover{
720 | background-color: var(--light-color);
721 | color: var(--fros-blue-color);
722 | }
723 |
724 |
725 |
726 |
727 | /* Media Queries */
728 | @media(min-width: 450px){
729 | .navbar-collapse{
730 | width: 320px;
731 | }
732 | .btn-group .btn{
733 | width: auto;
734 | }
735 | .btn-group .btn:first-child{
736 | margin-right: 48px;
737 | margin-bottom: 0;
738 | }
739 | .border-line{
740 | width: 405px;
741 | }
742 |
743 | }
744 |
745 | @media(min-width: 768px){
746 | .header-inner-left h1{
747 | font-size: 5.7rem;
748 | }
749 | .services-inner, .doc-panel-inner{
750 | grid-template-columns: repeat(2, 1fr);
751 | }
752 | .doc-panel-inner{
753 | -webkit-column-gap: 3rem;
754 | -moz-column-gap: 3rem;
755 | column-gap: 3rem;
756 | }
757 | .doc-panel .section-head h2{
758 | text-align: left;
759 | }
760 | .package-service-inner, .posts-inner, .footer-inner{
761 | grid-template-columns: repeat(2, 1fr);
762 | -webkit-column-gap: 6rem;
763 | -moz-column-gap: 6rem;
764 | column-gap: 6rem;
765 | }
766 | .footer-inner{
767 | text-align: left;
768 | }
769 | .footer-item .icon, .footer-item .text{
770 | margin-left: 0;
771 | }
772 | .footer-item .tags-list{
773 | -webkit-box-pack: start;
774 | -ms-flex-pack: start;
775 | justify-content: flex-start;
776 | }
777 | }
778 |
779 | @media(min-width: 992px){
780 | .header-inner{
781 | padding-top: 3.2rem;
782 | }
783 | .header-inner .container{
784 | grid-template-columns: 545px auto;
785 | -webkit-box-align: center;
786 | -ms-flex-align: center;
787 | align-items: center;
788 | height: calc(100vh - 32px);
789 | position: relative;
790 | }
791 | .header-inner-left{
792 | text-align: left;
793 | }
794 | .header-inner-left .text{
795 | margin-left: 0;
796 | }
797 | .header-inner-left .btn-group{
798 | -webkit-box-pack: start;
799 | -ms-flex-pack: start;
800 | justify-content: start;
801 | }
802 | .header-inner-right img{
803 | position: absolute;
804 | bottom: 0;
805 | right: 0;
806 | padding-left: 5rem;
807 | }
808 | .about-inner .container{
809 | grid-template-columns: repeat(2, 1fr);
810 | -webkit-column-gap: 3rem;
811 | -moz-column-gap: 3rem;
812 | column-gap: 3rem;
813 | }
814 | .about-left{
815 | text-align: left;
816 | margin-bottom: 0;
817 | }
818 | .about-left .section-head h2{
819 | text-align: left;
820 | }
821 | .border-line{
822 | margin-left: 0;
823 | }
824 | .border-line::after{
825 | left: 0;
826 | -webkit-transform: translateX(0);
827 | -ms-transform: translateX(0);
828 | transform: translateX(0);
829 | }
830 | .about-right{
831 | margin-left: auto;
832 | margin-top: 11.2rem;
833 | }
834 |
835 | .banner-two .container{
836 | grid-template-columns: repeat(2, 1fr);
837 | -webkit-box-align: center;
838 | -ms-flex-align: center;
839 | align-items: center;
840 | -webkit-column-gap: 6rem;
841 | -moz-column-gap: 6rem;
842 | column-gap: 6rem;
843 | }
844 | .banner-two-right{
845 | text-align: left;
846 | }
847 | .banner-two-right .btn-group{
848 | -webkit-box-pack: start;
849 | -ms-flex-pack: start;
850 | justify-content: flex-start;
851 | }
852 | .banner-two-right .lead{
853 | margin-top: 0;
854 | }
855 | .banner-two-left img{
856 | width: 100%;
857 | max-width: 100%;
858 | }
859 | .doc-panel-inner{
860 | grid-template-columns: repeat(3, 1fr);
861 | }
862 | .doc-panel-item{
863 | margin-bottom: 0;
864 | }
865 | .package-service-inner{
866 | grid-template-columns: repeat(3, 1fr);
867 | }
868 | .package-service-item{
869 | margin-bottom: 0;
870 | }
871 |
872 | .contact .container{
873 | grid-template-columns: repeat(2, 1fr);
874 | -webkit-column-gap: 2.4rem;
875 | -moz-column-gap: 2.4rem;
876 | column-gap: 2.4rem;
877 | }
878 | }
879 |
880 | @media(min-width: 1200px){
881 | .navbar-show-btn, .navbar-hide-btn{
882 | display: none;
883 | }
884 | .navbar-collapse{
885 | -webkit-transform: translateX(0);
886 | -ms-transform: translateX(0);
887 | transform: translateX(0);
888 | position: relative;
889 | -webkit-box-orient: horizontal;
890 | -webkit-box-direction: normal;
891 | -ms-flex-direction: row;
892 | flex-direction: row;
893 | -webkit-box-pack: end;
894 | -ms-flex-pack: end;
895 | justify-content: flex-end;
896 | -webkit-box-align: center;
897 | -ms-flex-align: center;
898 | align-items: center;
899 | width: 100%;
900 | height: auto;
901 | padding: 0;
902 | background-color: transparent;
903 | -webkit-box-shadow: none;
904 | box-shadow: none;
905 | -webkit-transition: none;
906 | -o-transition: none;
907 | transition: none;
908 | }
909 | .navbar-nav{
910 | display: -webkit-box;
911 | display: -ms-flexbox;
912 | display: flex;
913 | }
914 | .nav-item{
915 | margin: 0;
916 | margin-left: 3.5rem;
917 | }
918 | .nav-link{
919 | color: var(--light-color);
920 | opacity: 1;
921 | font-weight: 500;
922 | position: relative;
923 | }
924 | .nav-link::after{
925 | content: "";
926 | position: absolute;
927 | top: 100%;
928 | left: 0;
929 | height: 2px;
930 | width: 0;
931 | background-color: var(--light-color);
932 | opacity: 0;
933 | -webkit-transition: var(--transition);
934 | -o-transition: var(--transition);
935 | transition: var(--transition);
936 | }
937 | .nav-link:hover{
938 | -webkit-transform: none;
939 | -ms-transform: none;
940 | transform: none;
941 | color: var(--light-color);
942 | }
943 | .nav-link:hover::after{
944 | opacity: 1;
945 | width: 100%;
946 | }
947 | .search-bar{
948 | margin-left: 5.5rem;
949 | }
950 | .search-inner-right{
951 | width: 100%;
952 | }
953 | .search-inner-right img{
954 | padding-left: 0;
955 | max-width: 647px;
956 | }
957 | .search-control{
958 | width: 150px;
959 | }
960 | .header-inner-right{
961 | width: 100%;
962 | }
963 | .header-inner-right img{
964 | padding-left: 0;
965 | max-width: 647px;
966 | }
967 |
968 | .services-inner{
969 | grid-template-columns: repeat(4, 1fr);
970 | -webkit-column-gap: 2rem;
971 | -moz-column-gap: 2rem;
972 | column-gap: 2rem;
973 | }
974 | .service-item{
975 | margin-bottom: 0;
976 | }
977 | .doc-panel-inner{
978 | -webkit-column-gap: 9rem;
979 | -moz-column-gap: 9rem;
980 | column-gap: 9rem;
981 | }
982 | .posts-inner{
983 | grid-template-columns: repeat(3, 1fr);
984 | }
985 | .post-item{
986 | margin-bottom: 0;
987 | }
988 |
989 | .contact .container{
990 | grid-template-columns: auto 514px;
991 | }
992 | .footer-inner{
993 | grid-template-columns: repeat(4, 1fr);
994 | -webkit-column-gap: 6rem;
995 | -moz-column-gap: 6rem;
996 | column-gap: 6rem;
997 | }
998 | }
999 |
1000 | @media(min-width: 1480px){
1001 | /* general */
1002 | .container{
1003 | max-width: 81vw;
1004 | }
1005 | }
1006 |
1007 | /* transition and animation stopper */
1008 | .resize-animation-stopper *{
1009 | -webkit-animation: none!important;
1010 | animation: none!important;
1011 | -webkit-transition: none!important;
1012 | -o-transition: none!important;
1013 | transition: none!important;
1014 | }
--------------------------------------------------------------------------------