-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct_3.html
510 lines (501 loc) · 27 KB
/
product_3.html
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> ADVAIT SOLUTION </title>
<!-- ----swiper css----- -->
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<!-- css -->
<link rel="stylesheet" href="css/style.css">
<!-- product 2 css -->
<link rel="stylesheet" href="css/product_3.css">
<!-- <link rel="stylesheet" href="css/product_2.css"> -->
<!-- mechanical accordion js -->
<script src="js/mech-accordion.js" defer></script>
<!-- responsive css -->
<link rel="stylesheet" href="css/responsive.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com"
crossorigin><link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;900&family=Poppins:wght@100;300;400;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"/>
</head>
<body>
<!-- Main Home Page -->
<section class="header">
<!-- Nav Bar Section -->
<nav>
<a href="index.html"><img src="images/logo.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa-solid fa-xmark" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">Home</a></li>
<!-- <li><a href="">About Us</a></li> -->
<li>
<a href="">Products <i class="fas fa-caret-down"></i> </a>
<div class="dropdown-1">
<ul>
<li><a href="product_1.html">Product 1</a></li>
<li><a href="product_2.html">Product 2</a></li>
<li><a href="product_3.html">Product 3</a></li>
</ul>
</div>
</li>
<li>
<a href="">Services <i class="fas fa-caret-down"></i> </a>
<div class="dropdown-1">
<ul>
<li><a href="service_1.html">Services 1</a></li>
<!-- <li><a href="#">Services 2</a></li> -->
<!-- <li><a href="#">Services 3</a></li> -->
</ul>
</div>
</li>
<li><a href="bomcreator.html">BOM Creator</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<i class="bar fa-solid fa-bars" onclick="showMenu()"></i>
</nav>
<!-- Dashboard of Mechanical Page-->
<div class="mechanical-dashboard">
<div class="mechanical-wrap">
<div class="mechanical-content">
<h1>Advanced Mechanical
Design tools</h1>
<div class="btn-wrap">
<div class="mechanical-btn">
<button >Download Now</button>
</div>
<div class="feature-button">
<button class="features">See BricsCAD Pro Features</button>
</div>
</div>
<p>* Free 30 day trial, no credit card required.</p>
</div>
<div class="mechanical-dash-img">
<img src="images/product4_1.png">
</div>
</div>
</div>
<div class="sections">
<a href="#intelligent">Intelligent Mechanical Design</a>
<a href="#efficient">Efficient 2D Detailing </a>
<a href="#seamless">Seamless Data Reuse</a>
</div>
</section>
<!-- Intelligent Mechanical Design -->
<section class="product3-intelligent" id="intelligent">
<div class="product3-intelligent-heading">
<h1>Intelligent Mechanical Design</h1>
<p>BricsCAD makes advanced mechanical design accessible. It is intelligent, flexible,
affordable and, above all, enables greater design freedom.</p>
</div>
<div class="intelligent-full-img">
<img src="images/product4_2.png">
</div>
</section>
<!-- Mechanical Accordion -->
<section class="mechanical-accordion">
<div class="mech-acc-container">
<ul class="mech-accord">
<li data-tab-target="#part" class="tab">Part Design</li>
<li data-tab-target="#sheet" class="tab">Sheet Metal Design </li>
<li data-tab-target="#assembly" class="tab">Assembly Design</li>
</ul>
<div class="mech-accord-content">
<div id="part" data-tab-content class="active">
<!-- ------------------------PART DESIGN---------------------------------- -->
<div class="part-container">
<div class="part-start">
<p>BricsCAD’s unique variational 3D modelling approach gives you the freedom to design how you want to, from concept
to detail, with whatever level of parametric control you need.<br>
Quickly develop complex components on their own, or directly within an assembly.</p>
</div>
<div class="part-middle">
<div class="part-middle-img">
<img src="images/product4_3.png">
</div>
<div class="part-middle-content">
<h3>Design parts and components</h3><br>
<p>With BricsCAD Mechanical, the design process is
simple. Start your design with a 2D sketch, then
extrude, revolve or sweep it to create a 3D solid. You
can also use built in 3D primitives to specify the initial
shape of your part. Move on to the details using
extrusions, fillets, chamfers, Boolean operations, and
edit using dynamic direct modeling. You control as
much or as little of the form as you like with
parameters. You can also import 3D solids and edit
them as native components.</p>
</div>
</div>
<div class="part-end">
<div class="part-end-block">
<img src="images/product4_4.png">
<h3>Flexible 3D modeling</h3>
<p>Our unique 3D design approach
combines dynamic and interactive
direct modelling with the ability to
add parameters only where they’re
needed, and without the complexity
of a history based approach.
</p>
</div>
<div class="part-end-block">
<img src="images/product4_5.png">
<h3>3D parametrize and constraints</h3>
<p>The PARAMETRIZE A.I. workflow turns
parts into smart, parameter driven
components in seconds. Build
constraint systems, drive parts
formulatically, build table driven
components and change component
parameters in the BricsCAD
Properties Panel.
</p>
</div>
<div class="part-end-block">
<img src="images/product4_6.png">
<h3>Copy features</h3>
<p>Model features once and use them
many times with powerful tools that
copy existing features in 3D solids
such as holes, ribs, pockets.
</p>
</div>
</div>
</div>
</div>
<div id="sheet" data-tab-content>
<!-- --------------------------Sheet Metal Design------------------------------------- -->
<div class="sheet-container">
<div class="sheet-start">
<p>Create sheet metal part designs that are resilient and deeply editable</p>
</div>
<div class="sheet-middle">
<div class="sheet-middle-img">
<img src="images/product4_7.png">
</div>
<div class="sheet-middle-content">
<ul class="sheet-demo-accordion">
<li>
<label for="first">Import or create from scratch <i class="fa-solid fa-angle-down"></i></label>
<input type="radio" name="demo-accordion" id="first">
<div class="demo-icon"></div>
<div class="demo-content">
<p>Not only does BricsCAD Mechanical let you create
sheet metal components from scratch, but you
can also convert solid parts to sheet metal,
automatically, with just one click. This robust
approach lets you spend more time evolving your
design and less time worrying about redefining
sheet metal features.</p>
</div>
<div class="divider"></div>
</li>
<li>
<label for="second">Rework at any time <i class="fa-solid fa-angle-down"></i> </label>
<input type="radio" name="demo-accordion" id="second">
<div class="demo-icon"></div>
<div class="demo-content">
<p>Not only does BricsCAD Mechanical let you create
sheet metal components from scratch, but you
can also convert solid parts to sheet metal,
automatically, with just one click. This robust
approach lets you spend more time evolving your
design and less time worrying about redefining
sheet metal features.</p>
</div>
<div class="divider"></div>
</li>
<li>
<label for="third">Automatically unfold <i class="fa-solid fa-angle-down"></i></label>
<input type="radio" name="demo-accordion" id="third">
<div class="demo-icon"></div>
<div class="demo-content">
<p>Not only does BricsCAD Mechanical let you create
sheet metal components from scratch, but you
can also convert solid parts to sheet metal,
automatically, with just one click. This robust
approach lets you spend more time evolving your
design and less time worrying about redefining
sheet metal features.</p>
</div>
<div class="divider"></div>
</li>
</ul>
</div>
</div>
<div class="part-end">
<div class="part-end-block">
<img src="images/product4_4.png">
<h3>Flexible 3D modeling</h3>
<p>Our unique 3D design approach
combines dynamic and interactive
direct modelling with the ability to
add parameters only where they’re
needed, and without the complexity
of a history based approach.
</p>
</div>
<div class="part-end-block">
<img src="images/product4_5.png">
<h3>3D parametrize and constraints</h3>
<p>The PARAMETRIZE A.I. workflow turns
parts into smart, parameter driven
components in seconds. Build
constraint systems, drive parts
formulatically, build table driven
components and change component
parameters in the BricsCAD
Properties Panel.
</p>
</div>
<div class="part-end-block">
<img src="images/product4_6.png">
<h3>Copy features</h3>
<p>Model features once and use them
many times with powerful tools that
copy existing features in 3D solids
such as holes, ribs, pockets.
</p>
</div>
</div>
</div>
</div>
<div id="assembly" data-tab-content>
<!-- --------------Assembly Design---------------- -->
<div class="assembly-container">
<div class="assembly-start">
<p>Build potentially complex assemblies and subassemblies using components designed in house or by others.</p>
</div>
<div class="assembly-middle">
<div class="assembly-middle-img">
<img src="images/product4_8.png">
</div>
<div class="assembly-middle-content">
<h3>Bottom up and top down Assembly Design</h3><br>
<p>BricsCAD Mechanical users can create complex
hierarchies of parts and sub assemblies using bottom
up or top down design methods. You can import
assemblies from different CAD systems using
Communicator for BricsCAD, including Parametric
geometry defined in those assemblies.</p>
</div>
</div>
<div class="part-end">
<div class="part-end-block">
<img src="images/product4_9.png">
<h3>Powerful Assembly Design
Tools</h3>
<p>Quickly build assemblies from
existing components, or design new
parts within the assembly itself.
Apply constraints between parts for a
robust representaton of your product
design.
</p>
</div>
<div class="part-end-block" id="bill">
<img src="images/product4_10.png">
<h3>Bill of Materials
</h3>
<p>Interactively and automatically create
a top level BOM, a parts list, or a
hierarchical table from your
assemblies. Customize the BOM as
you want, define properties for your
parts, and link it to your assembly
using automatically created balloon
tags.
</p>
</div>
<div class="part-end-block">
<img src="images/product4_11.png">
<h3>Assembly Joints, Kinematic
Analysis and Animation</h3>
<p>Use 3D constraints to assemble joints
in an assembly. Remaining degrees of
freedom can be used to analyze the
kinematics of the mechanism. You can
create complex 3D animations
controlled by these parametric
relationships.
<br>
Show more Assembly Design tools
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ------------------------------ Efficient 2D Detailing ---------------------------------------- -->
<section class="efficient" id="efficient">
<div class="efficient-container">
<div class="product3-efficient-heading">
<h1>Efficient 2D Detailing</h1>
<p>BricsCAD offers the best, and most familiar, workflow for turning your mechanical
designs into production drawings.</p>
</div>
<div class="efficient-middle">
<div class="efficient-middle-img">
<img src="images/product4_12.png">
</div>
<div class="efficient-middle-content">
<div class="eff-content-top">
<h3>Drawing views</h3>
<p>Automatically create drawing views of your 3D parts
and assemblies, and detail views easily with dimensions
and annotations. If your 3D model changes, generated
drawing views are updated automatically.</p>
</div>
<div class="eff-content-bottom">
<div class="drawing-check">
<img src="images/green-check.png" >
<p>Base views</p>
</div>
<div class="drawing-check">
<img src="images/green-check.png" >
<p>Projected views</p>
</div>
<div class="drawing-check">
<img src="images/green-check.png" >
<p>Section views</p>
</div>
<div class="drawing-check">
<img src="images/green-check.png" >
<p>BOM table</p>
</div>
<div class="drawing-check">
<img src="images/green-check.png" >
<p>Detail views</p>
</div>
<div class="drawing-check">
<img src="images/green-check.png" >
<p>Balloons</p>
</div>
</div>
</div>
</div>
<div class="part-end">
<div class="part-end-block">
<img src="images/product4_13.png">
<h3>Fast generation of draft
quality drawings</h3>
<p>Speed up drawing layout using fast,
draft quality views. Then, using
multi core CPUs to create precise
views in record time. BricsCAD
Mechanical is responsive to your
inputs during background drawing
generation.
</p>
</div>
<div class="part-end-block">
<img src="images/product4_14.png">
<h3>Automatic Drawing Update</h3>
<p>Drawing views remain associated
with the 3D model. Change a single
part, subassembly, or the whole
assembly, and all 2D drawing views
are automatically updated, allowing
fast design iterations and changes.</p>
</div>
<div class="part-end-block" id="section-views">
<img src="images/product4_15.png">
<h3>Section views</h3>
<p>You can create section views of 3D
parts and assemblies. Section planes
can be defined by a line drawn on a
base view, or you can create more
complex sections: half sections, offset
sections and aligned section views
</p>
</div>
</div>
<button>Show More</button>
</div>
</section>
<!-- ---------------------------Multi CAD Connectivity------------------------------------- -->
<section class="multi-cad" id="seamless">
<div class="multi-cad-container">
<div class="product3-multi-heading">
<h1>Multi CAD Connectivity</h1>
<p>Bring CAD data from many other formats seamlessly into BricsCAD with Communicator for BricsCAD.
Easily and quickly build it into your assemblies, modify it via direct modelling, or make it intelligent
by applying parameters.</p>
</div>
<div class="multi-full-img">
<img src="images/product4_16.png">
</div>
</div>
</section>
<!-- --------------------------FOOTER---------------------------- -->
<section class="footer">
<!-- --------NEWSLETTER--- -->
<div class="col-1">
<h1>ADVAIT SOLUTION</h1>
<div class="newsletter">
<p>Subscribe to our newsletter</p>
<form>
<div class="news-row">
<div class="input-news">
<input type="text" placeholder="Name" required>
</div>
<div class="input-news">
<input type="text" placeholder="Contact" required>
</div>
</div>
<div class="news-mail">
<input type="mail" placeholder="Email ID" required>
</div>
<div class="news-btn">
<button type="submit">Subscribe</button>
</div>
</form>
</div>
</div>
<!-- ----------------Products of footer------------------- -->
<div class="col-2">
<h2>Products</h2>
<p>BricsCAD Lite</p>
<p>BricsCAD Lite</p>
<p>BricsCAD Lite</p>
<p>BricsCAD Lite</p>
</div>
<!-- -------------Services of footer----------------- -->
<div class="col-3">
<h2>Services</h2>
<p>Design CAD</p>
<p>Design CAD</p>
<p>Design CAD</p>
<p>Design CAD</p>
</div>
<!-- ------------Map of footer------------- -->
<div class="col-4">
<div class="location">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3765.7014939378414!2d72.85719081482543!3d19.
295343186962484!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7b15b28651e0d%3A0xb0ebd8d748665ff9!2sNakshatra%20
Tower!5e0!3m2!1sen!2sin!4v1673173792842!5m2!1sen!2sin"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
<ul class="social">
<li><a href="#"><i class="fa-brands fa-square-facebook"></i></a></li>
<li><a href="#"><i class="fa-brands fa-square-instagram"></i></a></li>
<!-- <li><a href="#"><i class="fa-brands fa-instagram"></i></a></li> -->
<li><a href="https://www.linkedin.com/jobs/"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa-brands fa-square-youtube"></i></a></li>
</ul>
</div>
</section>
<!-- ---------------JavaScrip for Toggle Menu------------------------ -->
<script src="js/toggle.js"></script>
<!-- ------ Swiper JS---------->
<script src="js/swiper-bundle.min.js"></script>
</body>
</html>