Induyst Introduction
This documentation will give you an understanding of how Induyst template is structured and guide you in performing common functions.
If you want to customize, please contact us here: [email protected]
Author: PBM InfotechInstallation
Follow the steps below to get started with your Site Template:
- Open the ... /Template Folder to find all the Templates Files
- You will need to Upload these files to your Web Server using FTP in order to use it on your Website.
- Make sure you upload the required files/folders listed below:
- html/css - Stylesheets Folder
- html/fonts - Fonts Folder
- html/images - Images Folder
- html/js - Javacripts Folder
- html/index.html - (and All HTML files)
- You're now good to go..! Start adding your Content and show off your Brand New Beautiful Website in style.
Basic template Structure
The template has a responsive layout and is based on the Bootstrap V5 Framework. Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. Click Here to know more about Bootstrap.
HTML Structure
The general HTML structure is the same throughout the template. Here is thegeneral HTML structure of the template:
<!DOCTYPE html> <html lang="en"> <head> [Page meta, page css, page title etc...] </head> <body> <!-- page wrapper --> <div class="page-wrapper"> <!--header --> <header id="site-header" class="header"> <div id="header-wrap"> [MENU CONTENT] </div> </header> <!--header --> <!-- page content --> <div class="page-content"> <!--Section 1 --> <section> [SECTION 1 CONTENT] </section> <!--Section 1 --> <!--Section 2 --> <section> [SECTION 2 CONTENT] </section> <!--Section 2 --> </div> <!-- page content --> <!--footer --> <footer class="footer"> [FOOTER_CONTENT] </footer> <!--footer --> </div> <!-- page wrapper --> [PAGE JAVASCRIPTS HERE] </body> </html>
CSS Structure
The general CSS structure is the same throughout the template. Here is the general CSS structure of the template:
<!-- Bootstrap CSS --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- Fontawesome --> <link rel="stylesheet" href="css/fontawesome.css"> <!-- Flaticon --> <link rel="stylesheet" href="css/flaticon.css"> <!-- Doctery Icons --> <link rel="stylesheet" href="css/pbminfotech-base-icons.css"> <!-- Themify Icons --> <link rel="stylesheet" href="css/themify-icons.css"> <!-- Slick --> <link rel="stylesheet" href="css/swiper.min.css"> <!-- Magnific --> <link rel="stylesheet" href="css/magnific-popup.css"> <!-- AOS --> <link rel="stylesheet" href="css/aos.css"> <!-- Shortcode CSS --> <link rel="stylesheet" href="css/shortcode.css"> <!-- Base CSS --> <link rel="stylesheet" href="css/base.css"> <!-- Style CSS --> <link rel="stylesheet" href="css/style.css"> <!-- Responsive CSS --> <link rel="stylesheet" href="css/responsive.css">
Javascript Structure
The general Javascript structure is the same throughout the template. Here is the general Javascript structure of the template:
<!-- jQuery JS --> <script src="js/jquery.min.js"></script> <!-- Popper JS --> <script src="js/popper.min.js"></script> <!-- Bootstrap JS --> <script src="js/bootstrap.min.js"></script> <!-- jquery Waypoints JS --> <script src="js/jquery.waypoints.min.js"></script> <!-- jquery Appear JS --> <script src="js/jquery.appear.js"></script> <!-- Numinate JS --> <script src="js/numinate.min.js"></script> <!-- Slick JS --> <script src="js/swiper.min.js"></script> <!-- Magnific JS --> <script src="js/jquery.magnific-popup.min.js"></script> <!-- Circle Progress JS --> <script src="js/circle-progress.js"></script> <!-- AOS --> <script src="js/aos.js"></script> <!-- Scripts JS --> <script src="js/scripts.js"></script>
Favicon icon
Favicon is an icon associated with the URL that is displayed at various places, such as in a browser’s address bar or next to the site name in a bookmark list.
You can add a Favicon to your Website using the following code:
<link rel="shortcut icon" href="images/favicon.ico"/>
Logo Settings
The Logo Container can be found in the Header Container - Replace "logo-white.png" with your own logo image URL.
<a href="index.html"><img src="images/logo-dark.png" alt="logo"></a>
Note Default height of logo is 60px. you can set height according to your logo type and yourrequirement.
Changing Fonts style
You can add/change the site font, from all fonts used from Google Web Font Services, with the one that suits you the best. You can find the font link in css folder base.css file. See example below:
<!-- "'Roboto', sans-serif -->
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet');
<!-- "Archivo", sans-serif -->
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');
In order to change the fonts, you will need to edit the above links with your custom font, You can easily use Google Web Font Services if you plan to use a Google Font or remove it completely. If you plan to use a self hosted font, here is an Example of using Self Hosted Fonts
Helper Classes
We have created some really useful helper classes for you. These classes help you to quick position elements without writing new CSS rules. These classes are generic helper classes predefined in the CSS pages, here is quick view what they can do
Section title
You can use this code for your page section title to maintain title style.
<div class="pbmit-headingg">
<h2 class="pbmit-title">Your Title</h2>
</div>
Background color
You can use color in the background. simply add .pbmit-bg-color-global (or any color you want) class where you want to use. See example below:
<div class="pbmit-bg-color-global">
[YOUR CONTENT]
</div>
Note We include 4 background color helper class in our template pbmit-bg-color-global, pbmit-bg-color-secondary, pbmit-bg-color-light and pbmit-bg-color-blackish You can add unlimited background color class according to your needs
Background Image
You can use an image in the background simply add InlineStyle in div tag and by use of this you can create your own bg. See example below:
<div style="background:url(Path); ">
[YOUR CONTENT]
</div>
Sliders
- Swiper Slider
Swiper Slider
This excellent carousel slider can be controlled using HTML5 data attributes.
Find the full online Swiper Slider documentation.
Shortcode
- Accordion
- Buttons
- Blog Post
- Counter
- Icon Box
- Service Box
- Progress Bar
- Team
- Testimonials
Accordion
Use the below code to display accordion:
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Accordion Item #1
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the first item's accordion body.</strong> It is shown by default, until the collapse plugin adds the appropriate classes
</div>
</div>
</div>
</div>
Button
Use the below to display Default Buttons:
Counter
Use the below code to display Counter style:
Counter Style 2
<div class="pbminfotech-ele-fid pbminfotech-ele-fid-style-2">
<div class="pbmit-fld-contents">
<div class="pbmit-fld-wrap">
<div class="pbmit-fid-inner">
<span class="pbmit-fid-before"></span>
<span class="pbmit-number-rotate numinate" data-appear-animation="animateDigits" data-from="0" data-to="92" data-interval="5" data-before="" data-before-style="" data-after="" data-after-style="">92</span>
<span class="pbmit-fid"><span>%</span></span>
</div>
<h2 class="pbmit-fid-title"></h2>
<div class="pbmit-heading-desc">
They are in a job related to their field of study
</div>
</div>
</div>
<div class="pbmit-progressbar">
<div class="pbmit-progress-wrapper">
<div class="pbmit-progress-bar" data-max="92">1</div>
</div>
</div>
</div>
Counter Style 3
<div class="pbminfotech-ele-fid-style-3">
<div class="pbmit-fld-contents">
<div class="pbmit-fid-icon">
<div class="pbmit-fid-icon-wrapper pbmit-icon-type-icon">
<svg id="Layer_1" enable-background="new 0 0 55 55" viewBox="0 0 55 55" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="m29.1335468 10.5195313c-8.7938538-.9580631-15.9299316 5.9284649-15.9299316 14.2200317 0 4.25 1.869873 8.2600098 5.1398926 10.9899902 2.0400391 1.6900024 3.2800293 4.0200195 3.4899902 6.4799805-.9099121.0900269-1.6199951.8699951-1.6199951 1.8000488v2.4599609c0 1 .8199463 1.8200073 1.8199463 1.8200073h.880127l.8898926 1.75c.4699707.9000244 1.3900146 1.460022 2.4000244 1.460022h2.5899658c1.0200195 0 1.9400635-.5599976 2.4000244-1.460022l.9000225-1.75h.8699951c1 0 1.8199463-.8200073 1.8199463-1.8200073v-2.4599609c0-.9300537-.6999512-1.7000122-1.5998535-1.8000488.2099609-2.4599609 1.4399414-4.7799683 3.4699707-6.4699707 3.8199463-3.1900024 5.6899414-8.0400391 5.0200195-13-.8701172-6.3699951-6.1501465-11.5100098-12.5400372-12.2200317zm.7199707 38.830017c-.1999512.4000244-.6099854.6500244-1.0600586.6500244h-2.5899658c-.4499512 0-.8599854-.25-1.0599365-.6500244l-.5500488-1.0599976h5.8100586zm5.8399639-14.7700195c-2.3699951 1.9800415-3.7999249 4.7200317-4.0198956 7.6100464h-8.3400878c-.2099609-2.9000244-1.6499023-5.6400146-4.0200195-7.6199951-2.9299316-2.4400024-4.6098633-6.0200195-4.6098633-9.8300171 0-7.4488621 6.4384766-13.6078138 14.2598877-12.7200317 5.7200909.6300049 10.4400616 5.2200317 11.2200909 10.9200439.6098632 4.4400024-1.0700684 8.789978-4.4901124 11.6399536z"></path>
<path d="m27.5035419 16.9095459c-4.3399658 0-7.8599854 3.5200195-7.8599854 7.8599854 0 4.3400269 3.5200195 7.8600464 7.8599854 7.8600464s7.8499737-3.5200195 7.8499737-7.8600464c0-4.3399659-3.5100078-7.8599854-7.8499737-7.8599854zm3.0499268 6.5700073-3.6398926 3.6400146c-.275486.2948036-.7858067.2937374-1.0600586 0l-1.4100342-1.4100342c-.289917-.289978-.289917-.7699585 0-1.0599976.2900391-.289978.7700195-.289978 1.0600586 0l.8800049.8800049 3.1099854-3.1099854c.289917-.289978.7698975-.289978 1.0599365 0 .3000488.2899782.3000488.7700197 0 1.0599977z"></path>
<path d="m27.5000019 7.4515991c.4140625 0 .75-.3359375.75-.75v-2.4511719c0-.4140625-.3359375-.75-.75-.75s-.75.3359375-.75.75v2.4511719c0 .4140625.3359375.75.75.75z"></path>
<path d="m16.2714863 10.593689c.2445164.3354998.713129.4087811 1.0478516.1660156.3349609-.2436523.4091797-.7124023.1660156-1.0478516l-1.440918-1.9833984c-.2436523-.3334961-.7114258-.4086914-1.0478516-.1660156-.3349609.2436523-.4091797.7124023-.1660156 1.0478516z"></path>
<path d="m10.5459003 18.4745483-2.331543-.7573242c-.3945313-.1274414-.8173828.0878906-.9453125.4814453-.1279297.394043.0878906.8173828.4814453.9453125 2.4485273.7817211 2.3529682.7939453 2.5634766.7939453.850441 0 1.0403567-1.200592.2319336-1.4633789z"></path>
<path d="m10.0820332 29.6430054-2.331543.7573242c-.8078146.2625904-.6189566 1.4633789.2319336 1.4633789.2201662 0 .1981926-.0388012 2.5634766-.7939453.3935547-.1279297.609375-.5512695.4814453-.9453125-.128418-.3935547-.5493164-.6088867-.9453125-.4814453z"></path>
<path d="m47.2490234 30.4003296-2.3320313-.7573242c-.3916016-.1259766-.8168945.0878906-.9448242.4819336-.1279297.3935547.0878906.8168945.4819336.9448242l2.3320313.7573242c.3898964.1266537.8157921-.0844307.9448242-.4819336.1279297-.3935547-.0878906-.8168945-.4819336-.9448242z"></path>
<path d="m44.9169922 19.9013062 2.3320313-.7573242c.394043-.1279297.6098633-.5512695.4819336-.9448242-.128418-.3945313-.5527344-.6108398-.9448242-.4819336l-2.3320313.7573242c-.394043.1279297-.6098633.5512695-.4819336.9448242.1290779.3976268.5550575.6085472.9448242.4819336z"></path>
<path d="m38.7280273 10.593689 1.4414063-1.9833984c.2431641-.3349609.1689453-.8041992-.1660156-1.0478516-.3364258-.2441406-.8041992-.1699219-1.0478516.1660156l-1.4414062 1.9833984c-.2431641.3349609-.1689453.8041992.1660156 1.0478516.334629.2426977.8038101.1696463 1.0478515-.1660156z"></path>
</g>
</svg>
</div>
</div>
<div class="pbmit-fld-wrap">
<div class="pbmit-fid-inner">
<span class="pbmit-fid-before"></span>
<span class="pbmit-number-rotate numinate" data-appear-animation="animateDigits" data-from="0" data-to="2500" data-interval="100" data-before="" data-before-style="" data-after="" data-after-style="">2500</span>
<span class="pbmit-fid"><sup>+</sup></span>
</div>
<h2 class="pbmit-fid-title"></h2>
<div class="pbmit-heading-desc">Trusted customers around the world</div>
</div>
</div>
</div>
Counter Style 4
<div class="pbminfotech-ele-fid-style-4">
<div class="pbmit-fld-contents">
<div class="pbmit-fld-wrap">
<div class="pbmit-fid-inner">
<span class="pbmit-fid-before"></span>
<span class="pbmit-number-rotate numinate" data-appear-animation="animateDigits" data-from="0" data-to="350" data-interval="50" data-before="" data-before-style="" data-after="" data-after-style="">350</span>
<span class="pbmit-fid"><span>M</span></span>
</div>
<div class="pbmit-heading-desc">our company value</div>
</div>
</div>
</div>
Icon box
Use the below code to display Icon box style:
Icon box Style 1
<article class="pbmit-miconheading-style-1">
<div class="pbmit-ihbox-style-1">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 512 512">
<path d="M96.81,372.885a46.429,46.429,0,0,0-46.38,46.37A45.537,45.537,0,0,0,51,426.5a46.372,46.372,0,0,0,91.61,0,45.537,45.537,0,0,0,.57-7.24A46.421,46.421,0,0,0,96.81,372.885Zm0,57.49a11.115,11.115,0,1,1,11.11-11.12A11.135,11.135,0,0,1,96.81,430.375Zm142.01-27.61a31.435,31.435,0,1,0,31.44,31.43A31.466,31.466,0,0,0,238.82,402.765Zm0,37.47a6.035,6.035,0,1,1,6.04-6.04A6.047,6.047,0,0,1,238.82,440.235ZM505,412.205H491.616V326.311a16.289,16.289,0,0,0-16.271-16.271H386.2a16.289,16.289,0,0,0-16.271,16.271v85.894H356.09V194.7a7,7,0,0,0-7-7H328.82V53.365a7,7,0,0,0-7-7h-27.3a7,7,0,0,0-7,7v152.57q-8.13-14.085-16.26-28.18l-10.95-18.96c-15.37-26.61-41.82-41.88-72.57-41.88H63.9a7,7,0,0,0-7,7v27.27a7,7,0,0,0,7,7H76.17v142.33H58.65a41.277,41.277,0,0,0-37.52,23.13L4.49,356.675A40.6,40.6,0,0,0,0,375.575v52.33a7,7,0,0,0,7.01,7H38.49a59.819,59.819,0,0,1-2.04-14c-.01-.55-.02-1.1-.02-1.65a60.375,60.375,0,0,1,120.75,0c0,.55-.01,1.1-.02,1.65a59.819,59.819,0,0,1-2.04,14h38.27c-.01-.24-.01-.47-.01-.71a45.44,45.44,0,0,1,90.88,0c0,.24,0,.47-.01.71h3.27v7.82a7.01,7.01,0,0,0,7,7.01h27.3a5.374,5.374,0,0,0,.7-.04h.02a5.374,5.374,0,0,0,.7.04H505a7.01,7.01,0,0,0,7-7.01v-23.52A7,7,0,0,0,505,412.205Zm-78.1-88.161h7.739V337.2H426.9Zm-42.973,2.267a2.3,2.3,0,0,1,2.268-2.267h26.7V344.2a7,7,0,0,0,7,7h21.742a7,7,0,0,0,7-7V324.044h26.7a2.3,2.3,0,0,1,2.268,2.267v85.894H383.928Zm-280.488-25.8v-5.07h96.8v34.92H190.66A26.768,26.768,0,0,1,170.68,322l-8.76-8.9a40.634,40.634,0,0,0-29.96-12.58H103.44Zm184.08-15.71-4.48-4.08-55.83-50.87h0l4.578-4.584a7,7,0,0,0-9.91-9.895l-19.5,19.531a7,7,0,1,0,9.909,9.895l5.023-5.03,0,0,70.21,63.97v26.62H214.246v-34.92h.021c4.617,0,8.373-3.14,8.373-7v-13.5c0-11.31-11-20.52-24.521-20.52H103.44V151.185a7,7,0,0,1,7-7h61.54c30.74,0,57.2,15.26,72.59,41.88l42.95,74.42Zm-184.08-16.38h94.679c4.282,0,7.763,2.93,7.763,6.52v6.49H103.44Zm211.38,167.3h-13.3V60.365h13.3Zm183.17,0H328.82V201.705h13.27v217.5a7,7,0,0,0,7,7h148.9Z"></path>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">
We are certified company
</h2>
</div>
</div>
</div>
</article>
Icon box Style 2
<article class="pbmit-miconheading-style-2">
<div class="pbmit-ihbox-style-2">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-text">1<span>st</span></div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">
Safety Compliance Certification
</h2>
</div>
</div>
</div>
</article>
Icon box Style 3
<div class="pbmit-ihbox-style-3">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg id="Layer_1" enable-background="new 0 0 55 55" viewBox="0 0 55 55" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="m21.5697021 34.1262817h-10.8833007c-.4140625 0-.75.3359375-.75.75s.3359375.75.75.75h10.8833008c.4140625 0 .75-.3359375.75-.75s-.3359376-.75-.7500001-.75z"></path>
<path d="m35.8450928 5.949584c-7.5899658 0-13.9299316 4.5800171-15.3999023 10.6500254v.0003052h-13.2402344c-2.0678711 0-3.75 1.6826172-3.75 3.75v18.5996094c0 2.0673828 1.6821289 3.75 3.75 3.75h1.8500977v4.5898438c0 1.5756874 1.9022541 2.3462677 2.9897461 1.2412109l5.840332-5.8310547h16.9897461c2.0678711 0 3.75-1.6826172 3.75-3.75v-6.5498657c.1015434-.0175934.7044411-.071701 1.880249-.3800659.5100098-.1300049 1.0699463-.0100098 1.4899902.3200073l3.1700439 2.4799805c1.1029778.8540573 2.7600098.1029053 2.7600098-1.3499756v-4.9899902c0-.4300537.1499023-.8300171.4099121-1.1200562 2.1000977-2.3299561 3.2099609-5.1199951 3.2099609-8.0799561 0-7.3500376-7.0499267-13.3300181-15.6999511-13.3300181zm-.75 20.0100107v-.289978c0-.4100342.3300781-.75.75-.75.4100342 0 .75.3399658.75.75v.289978c0 .4099731-.3399658.75-.75.75-.4199219 0-.75-.3400268-.75-.75zm1.5-5.4600219v2.2999878c0 .4200439-.3399658.75-.75.75-.4199219 0-.75-.3299561-.75-.75v-2.9899902c0-.4099731.3300781-.75.75-.75 1.5700684 0 2.8500977-1.2799683 2.8500977-2.8499756s-1.2800293-2.8500376-2.8500977-2.8500376-2.8499756 1.2800293-2.8499756 2.8500376c0 .4099731-.3399658.75-.75.75-.4200439 0-.75-.3400269-.75-.75 0-2.4000254 1.9500732-4.3500376 4.3499756-4.3500376 2.4000244 0 4.3500977 1.9500122 4.3500977 4.3500376-.0000001 2.1400146-1.5600587 3.9299926-3.6000977 4.289978zm-1.7202149 20.6999511h-17.2998047c-.1987305 0-.3891602.0791016-.5297852.21875l-6.0649414 6.0556641c-.1568232.1576195-.425293.0514565-.425293-.1845703v-5.3398438c0-.4140625-.3359375-.75-.75-.75h-2.6000975c-1.2407227 0-2.25-1.0097656-2.25-2.25v-18.5996093c0-1.2402344 1.0092773-2.25 2.25-2.25h12.9802246c-.1881084 1.8314857.0571899 3.7361622.8199463 5.5697021h-10.3199463c-.4101563 0-.75.3399658-.75.75 0 .4099731.3398438.75.75.75h11.0599365c.8099365 1.3999634 1.9100342 2.6699829 3.2299805 3.7299805.0001221.000061.0001221.000061.0001221.0001221h-14.2902833c-.4140625 0-.75.3359375-.75.75s.3359375.75.75.75h16.4904785c3.1530914 1.7924309 6.9823875 2.4523354 9.9494629 2.1698608v6.3799438c0 1.2402344-1.0092773 2.25-2.25 2.25z"></path>
</g>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<div class="pbmit-heading-desc">Ask Questions</div>
<h2 class="pbmit-element-title">
<a class="pbmit-button-inner" href="tel:+97 155 596 1659">
<span class="pbmit-button-content-wrapper">
<span class="pbmit-button-text">+97 155 596 1659</span>
</span>
</a>
</h2>
<h4 class="pbmit-element-subtitle">
<a class="pbmit-button-inner" href="mailto:[email protected]">
<span class="pbmit-button-content-wrapper">
<span class="pbmit-button-text">
[email protected]
</span>
</span>
</a>
</h4>
</div>
</div>
</div>
Icon box Style 4
<div class="pbmit-ihbox-style-4">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg xmlns="http://www.w3.org/2000/svg" id="pbmit_45" data-name="Layer 1" viewBox="0 0 512 512">
<path d="M96.81,372.885a46.429,46.429,0,0,0-46.38,46.37A45.537,45.537,0,0,0,51,426.5a46.372,46.372,0,0,0,91.61,0,45.537,45.537,0,0,0,.57-7.24A46.421,46.421,0,0,0,96.81,372.885Zm0,57.49a11.115,11.115,0,1,1,11.11-11.12A11.135,11.135,0,0,1,96.81,430.375Zm142.01-27.61a31.435,31.435,0,1,0,31.44,31.43A31.466,31.466,0,0,0,238.82,402.765Zm0,37.47a6.035,6.035,0,1,1,6.04-6.04A6.047,6.047,0,0,1,238.82,440.235ZM505,412.205H491.616V326.311a16.289,16.289,0,0,0-16.271-16.271H386.2a16.289,16.289,0,0,0-16.271,16.271v85.894H356.09V194.7a7,7,0,0,0-7-7H328.82V53.365a7,7,0,0,0-7-7h-27.3a7,7,0,0,0-7,7v152.57q-8.13-14.085-16.26-28.18l-10.95-18.96c-15.37-26.61-41.82-41.88-72.57-41.88H63.9a7,7,0,0,0-7,7v27.27a7,7,0,0,0,7,7H76.17v142.33H58.65a41.277,41.277,0,0,0-37.52,23.13L4.49,356.675A40.6,40.6,0,0,0,0,375.575v52.33a7,7,0,0,0,7.01,7H38.49a59.819,59.819,0,0,1-2.04-14c-.01-.55-.02-1.1-.02-1.65a60.375,60.375,0,0,1,120.75,0c0,.55-.01,1.1-.02,1.65a59.819,59.819,0,0,1-2.04,14h38.27c-.01-.24-.01-.47-.01-.71a45.44,45.44,0,0,1,90.88,0c0,.24,0,.47-.01.71h3.27v7.82a7.01,7.01,0,0,0,7,7.01h27.3a5.374,5.374,0,0,0,.7-.04h.02a5.374,5.374,0,0,0,.7.04H505a7.01,7.01,0,0,0,7-7.01v-23.52A7,7,0,0,0,505,412.205Zm-78.1-88.161h7.739V337.2H426.9Zm-42.973,2.267a2.3,2.3,0,0,1,2.268-2.267h26.7V344.2a7,7,0,0,0,7,7h21.742a7,7,0,0,0,7-7V324.044h26.7a2.3,2.3,0,0,1,2.268,2.267v85.894H383.928Zm-280.488-25.8v-5.07h96.8v34.92H190.66A26.768,26.768,0,0,1,170.68,322l-8.76-8.9a40.634,40.634,0,0,0-29.96-12.58H103.44Zm184.08-15.71-4.48-4.08-55.83-50.87h0l4.578-4.584a7,7,0,0,0-9.91-9.895l-19.5,19.531a7,7,0,1,0,9.909,9.895l5.023-5.03,0,0,70.21,63.97v26.62H214.246v-34.92h.021c4.617,0,8.373-3.14,8.373-7v-13.5c0-11.31-11-20.52-24.521-20.52H103.44V151.185a7,7,0,0,1,7-7h61.54c30.74,0,57.2,15.26,72.59,41.88l42.95,74.42Zm-184.08-16.38h94.679c4.282,0,7.763,2.93,7.763,6.52v6.49H103.44Zm211.38,167.3h-13.3V60.365h13.3Zm183.17,0H328.82V201.705h13.27v217.5a7,7,0,0,0,7,7h148.9Z"></path>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">Personalized Solutions</h2>
<div class="pbmit-heading-desc">We tailor smart strategies to your specific needs with minimal risk.</div>
</div>
</div>
</div>
Icon box Style 5
<article class="pbmit-miconheading-style-5">
<div class="pbmit-ihbox-style-5">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg id="pbmit_46" enable-background="new 0 0 55 55" viewBox="0 0 55 55" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="m29.1335468 10.5195313c-8.7938538-.9580631-15.9299316 5.9284649-15.9299316 14.2200317 0 4.25 1.869873 8.2600098 5.1398926 10.9899902 2.0400391 1.6900024 3.2800293 4.0200195 3.4899902 6.4799805-.9099121.0900269-1.6199951.8699951-1.6199951 1.8000488v2.4599609c0 1 .8199463 1.8200073 1.8199463 1.8200073h.880127l.8898926 1.75c.4699707.9000244 1.3900146 1.460022 2.4000244 1.460022h2.5899658c1.0200195 0 1.9400635-.5599976 2.4000244-1.460022l.9000225-1.75h.8699951c1 0 1.8199463-.8200073 1.8199463-1.8200073v-2.4599609c0-.9300537-.6999512-1.7000122-1.5998535-1.8000488.2099609-2.4599609 1.4399414-4.7799683 3.4699707-6.4699707 3.8199463-3.1900024 5.6899414-8.0400391 5.0200195-13-.8701172-6.3699951-6.1501465-11.5100098-12.5400372-12.2200317zm.7199707 38.830017c-.1999512.4000244-.6099854.6500244-1.0600586.6500244h-2.5899658c-.4499512 0-.8599854-.25-1.0599365-.6500244l-.5500488-1.0599976h5.8100586zm5.8399639-14.7700195c-2.3699951 1.9800415-3.7999249 4.7200317-4.0198956 7.6100464h-8.3400878c-.2099609-2.9000244-1.6499023-5.6400146-4.0200195-7.6199951-2.9299316-2.4400024-4.6098633-6.0200195-4.6098633-9.8300171 0-7.4488621 6.4384766-13.6078138 14.2598877-12.7200317 5.7200909.6300049 10.4400616 5.2200317 11.2200909 10.9200439.6098632 4.4400024-1.0700684 8.789978-4.4901124 11.6399536z"/>
<path d="m27.5035419 16.9095459c-4.3399658 0-7.8599854 3.5200195-7.8599854 7.8599854 0 4.3400269 3.5200195 7.8600464 7.8599854 7.8600464s7.8499737-3.5200195 7.8499737-7.8600464c0-4.3399659-3.5100078-7.8599854-7.8499737-7.8599854zm3.0499268 6.5700073-3.6398926 3.6400146c-.275486.2948036-.7858067.2937374-1.0600586 0l-1.4100342-1.4100342c-.289917-.289978-.289917-.7699585 0-1.0599976.2900391-.289978.7700195-.289978 1.0600586 0l.8800049.8800049 3.1099854-3.1099854c.289917-.289978.7698975-.289978 1.0599365 0 .3000488.2899782.3000488.7700197 0 1.0599977z"/>
<path d="m27.5000019 7.4515991c.4140625 0 .75-.3359375.75-.75v-2.4511719c0-.4140625-.3359375-.75-.75-.75s-.75.3359375-.75.75v2.4511719c0 .4140625.3359375.75.75.75z"/>
<path d="m16.2714863 10.593689c.2445164.3354998.713129.4087811 1.0478516.1660156.3349609-.2436523.4091797-.7124023.1660156-1.0478516l-1.440918-1.9833984c-.2436523-.3334961-.7114258-.4086914-1.0478516-.1660156-.3349609.2436523-.4091797.7124023-.1660156 1.0478516z"/>
<path d="m10.5459003 18.4745483-2.331543-.7573242c-.3945313-.1274414-.8173828.0878906-.9453125.4814453-.1279297.394043.0878906.8173828.4814453.9453125 2.4485273.7817211 2.3529682.7939453 2.5634766.7939453.850441 0 1.0403567-1.200592.2319336-1.4633789z"/>
<path d="m10.0820332 29.6430054-2.331543.7573242c-.8078146.2625904-.6189566 1.4633789.2319336 1.4633789.2201662 0 .1981926-.0388012 2.5634766-.7939453.3935547-.1279297.609375-.5512695.4814453-.9453125-.128418-.3935547-.5493164-.6088867-.9453125-.4814453z"/>
<path d="m47.2490234 30.4003296-2.3320313-.7573242c-.3916016-.1259766-.8168945.0878906-.9448242.4819336-.1279297.3935547.0878906.8168945.4819336.9448242l2.3320313.7573242c.3898964.1266537.8157921-.0844307.9448242-.4819336.1279297-.3935547-.0878906-.8168945-.4819336-.9448242z"/>
<path d="m44.9169922 19.9013062 2.3320313-.7573242c.394043-.1279297.6098633-.5512695.4819336-.9448242-.128418-.3945313-.5527344-.6108398-.9448242-.4819336l-2.3320313.7573242c-.394043.1279297-.6098633.5512695-.4819336.9448242.1290779.3976268.5550575.6085472.9448242.4819336z"/>
<path d="m38.7280273 10.593689 1.4414063-1.9833984c.2431641-.3349609.1689453-.8041992-.1660156-1.0478516-.3364258-.2441406-.8041992-.1699219-1.0478516.1660156l-1.4414062 1.9833984c-.2431641.3349609-.1689453.8041992.1660156 1.0478516.334629.2426977.8038101.1696463 1.0478515-.1660156z"/>
</g>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">
Our Vision
</h2>
<div class="pbmit-heading-desc">Building long-term partnerships through responsiveness and reliability.</div>
</div>
</div>
</div>
</article>
Icon box Style 6
<div class="pbmit-ihbox-style-6">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg version="1.1" id="pbmit_003" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<g>
<g id="right_x5F_quote_x5F_alt">
<g>
<polygon style="fill:#030104;" points="0,4 0,28 12,16 12,4"></polygon>
<polygon style="fill:#030104;" points="20,4 20,28 32,16 32,4"></polygon>
</g>
</g>
</g>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<div class="pbmit-heading-desc">“ I do not despise genius-indeed, I wish I had a basketful of it. But yet, after a great deal of experience and observation,
I have become convinced that industry is a better horse to ride than genius. Carry any man as far as genius.”
</div>
<h2 class="pbmit-element-title">Ronald Benson</h2>
</div>
</div>
</div>
Icon box Style 7
<article class="pbmit-miconheading-style-7">
<div class="pbmit-ihbox-style-7">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-wrap">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg id="pbmit_06" enable-background="new 0 0 100 100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path d="m10.5916214 14.8561211c-1.8151474 0-3.4553409.6123381-4.8112335 1.6183224l40.6111831 38.9053859c1.902626 1.8151512 4.854969 1.8151512 6.7575951 0l40.8298836-39.1240768c-1.2902832-.8747683-2.8430023-1.3996325-4.5269318-1.3996325z"></path>
<path d="m97.5 77.095993v-54.1919899c0-1.3777599-.3717728-2.668047-1.0059814-3.8052483l-32.2571488 30.9012414 32.2352753 30.9012489c.6342087-1.137207 1.0278549-2.4274902 1.0278549-3.8052521z"></path>
<path d="m55.7734795 58.1134834c-1.6839333 1.6183281-3.8489876 2.4274902-5.9921722 2.4274902s-4.3301125-.8091621-5.9921722-2.4274902l-5.7297401-5.4891815-32.2790071 30.9012489c1.3558927 1.0059891 2.9960861 1.6183319 4.8112335 1.6183319h78.8604965c1.6839294 0 3.2366486-.5248642 4.5269318-1.3996353l-32.4758339-31.1199379z"></path>
<path d="m2.5000014 22.9040031v54.1701241c0 1.2684174.3280377 2.4493484.8310313 3.4990768l31.9509659-30.5732079-31.9290959-30.5950717c-.5248614 1.0715923-.8529013 2.252533-.8529013 3.4990787z"></path>
</svg>
</div>
</div>
<h2 class="pbmit-element-title">
Mail us 24/7
</h2>
</div>
<div class="pbmit-ihbox-contents">
<div class="pbmit-heading-desc">[email protected] <br>
[email protected]
</div>
</div>
</div>
</div>
</article>
Icon box Style 8
<div class="pbmit-ihbox-style-8">
<div class="pbmit-ihbox-box">
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-ihbox-icon-type-image">
<img src="images/ratting.png" alt="">
</div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">4.9</h2>
<div class="pbmit-heading-desc">Star Customer Review</div>
</div>
</div>
</div>
Icon box Style 9
<article class="pbmit-miconheading-style-9">
<div class="pbmit-ihbox-style-9">
<div class="pbmit-ihbox-box">
<span class="pbmit-box-number">01</span>
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg id="pbmit_44" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1">
<path d="m490.9 465.985h-52.67a11.985 11.985 0 0 0 11.34-11.87v-33.57h-178.67v33.57a11.886 11.886 0 0 0 11.88 11.87h-201.025a5.025 5.025 0 0 0 -.54-.08 20.92 20.92 0 0 1 -18.81-20.64v-52.55h194.495v-14.01h-194.495v-168.94h268.87v12.7h14v-79.26a34.752 34.752 0 0 0 -34.72-34.72h-49.607v-20.894a7 7 0 0 0 -7-7h-114.21a7 7 0 0 0 -7 7v20.894h-49.6a34.761 34.761 0 0 0 -34.73 34.72v302.06a34.514 34.514 0 0 0 6.98 20.72h-34.283a7.008 7.008 0 0 0 -7 7v25.015a7.008 7.008 0 0 0 7 7h469.795a7 7 0 0 0 7-7v-25.01a7 7 0 0 0 -7-7.005zm-344.16-371.392h100.2v13.892h-100.2zm-63.6 27.892h227.42a20.75 20.75 0 0 1 20.72 20.72v52.56h-268.875v-52.56a20.752 20.752 0 0 1 20.73-20.72zm400.76 368.5h-455.795v-10.985h455.795zm-286.95-262.26a6.984 6.984 0 0 0 -5.2 2.31c-23.21 25.73-37.08 49.35-41.23 70.19-3.65 18.34.56 34.45 11.84 45.35 9.16 8.84 21.76 13.26 34.38 13.26 12.66 0 25.33-4.45 34.53-13.34 11.31-10.93 15.55-27.04 11.95-45.36-4.1-20.84-17.92-44.43-41.08-70.1a6.978 6.978 0 0 0 -5.195-2.31zm24.59 107.7c-12.73 12.3-36.76 12.34-49.45.08-7.85-7.59-10.56-18.84-7.83-32.54 3.29-16.55 14.55-36.37 32.69-57.62 18.07 21.19 29.28 40.96 32.53 57.49 2.685 13.7-.055 24.97-7.945 32.59zm201.33-136.95a7 7 0 0 1 7 7v15.99h-70.24v-15.99a7 7 0 0 1 7-7zm-140.09 36.99h154.91a11.894 11.894 0 0 1 11.88 11.88v33.555h-178.67v-33.56a11.894 11.894 0 0 1 11.875-11.875zm-11.88 170.08h178.67v-110.63h-178.67zm55.59-51c2.91-14.6 12.54-31.05 28.62-48.88a7.008 7.008 0 0 1 10.4 0c16.04 17.79 25.64 34.22 28.51 48.82 2.6 13.26-.52 24.95-8.78 32.94a37.217 37.217 0 0 1 -50.04.05c-8.255-7.97-11.355-19.67-8.715-32.93zm18.44 22.86c-8.63-8.34-8.68-27.35 15.38-56.35 23.97 28.92 23.86 47.93 15.2 56.3-7.885 7.61-22.745 7.63-30.585.05zm-188.945-314.43a7 7 0 0 1 7-7h25.17v-35.46a14.515 14.515 0 0 1 14.48-14.51h200.81v167.21h14.74a7.005 7.005 0 0 1 0 14.01h-46.88a7.005 7.005 0 1 1 0-14.01h14.74v-142.81a7.01 7.01 0 0 0 -7.01-7h-163.235a10.245 10.245 0 0 0 -10.24 10.23v22.34h25.15a7.005 7.005 0 0 1 0 14.01h-67.72a7 7 0 0 1 -7.005-7.01z"/>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">
Preparation Of Materials
</h2>
<div class="pbmit-heading-desc">By automating repetitive tasks, you free your workforce to focus on more complex operations.</div>
</div>
</div>
</div>
</article>
Icon box Style 10
<article class="pbmit-miconheading-style-10">
<div class="pbmit-ihbox-style-10">
<div class="pbmit-ihbox-box">
<span class="pbmit-box-number">01</span>
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg id="Layer_1" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1">
<path d="m490.9 465.985h-52.67a11.985 11.985 0 0 0 11.34-11.87v-33.57h-178.67v33.57a11.886 11.886 0 0 0 11.88 11.87h-201.025a5.025 5.025 0 0 0 -.54-.08 20.92 20.92 0 0 1 -18.81-20.64v-52.55h194.495v-14.01h-194.495v-168.94h268.87v12.7h14v-79.26a34.752 34.752 0 0 0 -34.72-34.72h-49.607v-20.894a7 7 0 0 0 -7-7h-114.21a7 7 0 0 0 -7 7v20.894h-49.6a34.761 34.761 0 0 0 -34.73 34.72v302.06a34.514 34.514 0 0 0 6.98 20.72h-34.283a7.008 7.008 0 0 0 -7 7v25.015a7.008 7.008 0 0 0 7 7h469.795a7 7 0 0 0 7-7v-25.01a7 7 0 0 0 -7-7.005zm-344.16-371.392h100.2v13.892h-100.2zm-63.6 27.892h227.42a20.75 20.75 0 0 1 20.72 20.72v52.56h-268.875v-52.56a20.752 20.752 0 0 1 20.73-20.72zm400.76 368.5h-455.795v-10.985h455.795zm-286.95-262.26a6.984 6.984 0 0 0 -5.2 2.31c-23.21 25.73-37.08 49.35-41.23 70.19-3.65 18.34.56 34.45 11.84 45.35 9.16 8.84 21.76 13.26 34.38 13.26 12.66 0 25.33-4.45 34.53-13.34 11.31-10.93 15.55-27.04 11.95-45.36-4.1-20.84-17.92-44.43-41.08-70.1a6.978 6.978 0 0 0 -5.195-2.31zm24.59 107.7c-12.73 12.3-36.76 12.34-49.45.08-7.85-7.59-10.56-18.84-7.83-32.54 3.29-16.55 14.55-36.37 32.69-57.62 18.07 21.19 29.28 40.96 32.53 57.49 2.685 13.7-.055 24.97-7.945 32.59zm201.33-136.95a7 7 0 0 1 7 7v15.99h-70.24v-15.99a7 7 0 0 1 7-7zm-140.09 36.99h154.91a11.894 11.894 0 0 1 11.88 11.88v33.555h-178.67v-33.56a11.894 11.894 0 0 1 11.875-11.875zm-11.88 170.08h178.67v-110.63h-178.67zm55.59-51c2.91-14.6 12.54-31.05 28.62-48.88a7.008 7.008 0 0 1 10.4 0c16.04 17.79 25.64 34.22 28.51 48.82 2.6 13.26-.52 24.95-8.78 32.94a37.217 37.217 0 0 1 -50.04.05c-8.255-7.97-11.355-19.67-8.715-32.93zm18.44 22.86c-8.63-8.34-8.68-27.35 15.38-56.35 23.97 28.92 23.86 47.93 15.2 56.3-7.885 7.61-22.745 7.63-30.585.05zm-188.945-314.43a7 7 0 0 1 7-7h25.17v-35.46a14.515 14.515 0 0 1 14.48-14.51h200.81v167.21h14.74a7.005 7.005 0 0 1 0 14.01h-46.88a7.005 7.005 0 1 1 0-14.01h14.74v-142.81a7.01 7.01 0 0 0 -7.01-7h-163.235a10.245 10.245 0 0 0 -10.24 10.23v22.34h25.15a7.005 7.005 0 0 1 0 14.01h-67.72a7 7 0 0 1 -7.005-7.01z"/>
</svg>
</div>
</div>
<h2 class="pbmit-element-title">
Preparation Of Materials
</h2>
<div class="pbmit-heading-desc">Moreover by automating repetitive tasks, you can free up your workforce.</div>
</div>
</div>
</article>
Icon box Style 11
<article class="pbmit-miconheading-style-11">
<div class="pbmit-ihbox-style-11">
<div class="pbmit-ihbox-box">
<span class="pbmit-box-number">01</span>
<div class="pbmit-ihbox-icon">
<div class="pbmit-ihbox-icon-wrapper pbmit-icon-type-icon">
<svg id="pbmit_44" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1">
<path d="m490.9 465.985h-52.67a11.985 11.985 0 0 0 11.34-11.87v-33.57h-178.67v33.57a11.886 11.886 0 0 0 11.88 11.87h-201.025a5.025 5.025 0 0 0 -.54-.08 20.92 20.92 0 0 1 -18.81-20.64v-52.55h194.495v-14.01h-194.495v-168.94h268.87v12.7h14v-79.26a34.752 34.752 0 0 0 -34.72-34.72h-49.607v-20.894a7 7 0 0 0 -7-7h-114.21a7 7 0 0 0 -7 7v20.894h-49.6a34.761 34.761 0 0 0 -34.73 34.72v302.06a34.514 34.514 0 0 0 6.98 20.72h-34.283a7.008 7.008 0 0 0 -7 7v25.015a7.008 7.008 0 0 0 7 7h469.795a7 7 0 0 0 7-7v-25.01a7 7 0 0 0 -7-7.005zm-344.16-371.392h100.2v13.892h-100.2zm-63.6 27.892h227.42a20.75 20.75 0 0 1 20.72 20.72v52.56h-268.875v-52.56a20.752 20.752 0 0 1 20.73-20.72zm400.76 368.5h-455.795v-10.985h455.795zm-286.95-262.26a6.984 6.984 0 0 0 -5.2 2.31c-23.21 25.73-37.08 49.35-41.23 70.19-3.65 18.34.56 34.45 11.84 45.35 9.16 8.84 21.76 13.26 34.38 13.26 12.66 0 25.33-4.45 34.53-13.34 11.31-10.93 15.55-27.04 11.95-45.36-4.1-20.84-17.92-44.43-41.08-70.1a6.978 6.978 0 0 0 -5.195-2.31zm24.59 107.7c-12.73 12.3-36.76 12.34-49.45.08-7.85-7.59-10.56-18.84-7.83-32.54 3.29-16.55 14.55-36.37 32.69-57.62 18.07 21.19 29.28 40.96 32.53 57.49 2.685 13.7-.055 24.97-7.945 32.59zm201.33-136.95a7 7 0 0 1 7 7v15.99h-70.24v-15.99a7 7 0 0 1 7-7zm-140.09 36.99h154.91a11.894 11.894 0 0 1 11.88 11.88v33.555h-178.67v-33.56a11.894 11.894 0 0 1 11.875-11.875zm-11.88 170.08h178.67v-110.63h-178.67zm55.59-51c2.91-14.6 12.54-31.05 28.62-48.88a7.008 7.008 0 0 1 10.4 0c16.04 17.79 25.64 34.22 28.51 48.82 2.6 13.26-.52 24.95-8.78 32.94a37.217 37.217 0 0 1 -50.04.05c-8.255-7.97-11.355-19.67-8.715-32.93zm18.44 22.86c-8.63-8.34-8.68-27.35 15.38-56.35 23.97 28.92 23.86 47.93 15.2 56.3-7.885 7.61-22.745 7.63-30.585.05zm-188.945-314.43a7 7 0 0 1 7-7h25.17v-35.46a14.515 14.515 0 0 1 14.48-14.51h200.81v167.21h14.74a7.005 7.005 0 0 1 0 14.01h-46.88a7.005 7.005 0 1 1 0-14.01h14.74v-142.81a7.01 7.01 0 0 0 -7.01-7h-163.235a10.245 10.245 0 0 0 -10.24 10.23v22.34h25.15a7.005 7.005 0 0 1 0 14.01h-67.72a7 7 0 0 1 -7.005-7.01z"></path>
</svg>
</div>
</div>
<div class="pbmit-ihbox-contents">
<h2 class="pbmit-element-title">
Preparation Of Materials
</h2>
<div class="pbmit-heading-desc">Automating repetitive tasks effectively frees the workforce to focus on more complex operations.</div>
</div>
</div>
</div>
</article>
Service Box
Use the below code to display Service Box style:
Service Box Style 1
<article class="pbmit-service-style-1">
<div class="pbminfotech-post-item">
<div class="pbmit-box-content-wrap">
<div class="pbmit-image-wrap">
<div class="pbmit-featured-img-wrapper">
<div class="pbmit-featured-wrapper">
<img src="images/homepage-1/service/service-img-01.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="pbmit-service-icon-wrapper">
<div class="pbmit-service-icon">
<svg id="Layer_1" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1">
<path d="m490.9 465.985h-52.67a11.985 11.985 0 0 0 11.34-11.87v-33.57h-178.67v33.57a11.886 11.886 0 0 0 11.88 11.87h-201.025a5.025 5.025 0 0 0 -.54-.08 20.92 20.92 0 0 1 -18.81-20.64v-52.55h194.495v-14.01h-194.495v-168.94h268.87v12.7h14v-79.26a34.752 34.752 0 0 0 -34.72-34.72h-49.607v-20.894a7 7 0 0 0 -7-7h-114.21a7 7 0 0 0 -7 7v20.894h-49.6a34.761 34.761 0 0 0 -34.73 34.72v302.06a34.514 34.514 0 0 0 6.98 20.72h-34.283a7.008 7.008 0 0 0 -7 7v25.015a7.008 7.008 0 0 0 7 7h469.795a7 7 0 0 0 7-7v-25.01a7 7 0 0 0 -7-7.005zm-344.16-371.392h100.2v13.892h-100.2zm-63.6 27.892h227.42a20.75 20.75 0 0 1 20.72 20.72v52.56h-268.875v-52.56a20.752 20.752 0 0 1 20.73-20.72zm400.76 368.5h-455.795v-10.985h455.795zm-286.95-262.26a6.984 6.984 0 0 0 -5.2 2.31c-23.21 25.73-37.08 49.35-41.23 70.19-3.65 18.34.56 34.45 11.84 45.35 9.16 8.84 21.76 13.26 34.38 13.26 12.66 0 25.33-4.45 34.53-13.34 11.31-10.93 15.55-27.04 11.95-45.36-4.1-20.84-17.92-44.43-41.08-70.1a6.978 6.978 0 0 0 -5.195-2.31zm24.59 107.7c-12.73 12.3-36.76 12.34-49.45.08-7.85-7.59-10.56-18.84-7.83-32.54 3.29-16.55 14.55-36.37 32.69-57.62 18.07 21.19 29.28 40.96 32.53 57.49 2.685 13.7-.055 24.97-7.945 32.59zm201.33-136.95a7 7 0 0 1 7 7v15.99h-70.24v-15.99a7 7 0 0 1 7-7zm-140.09 36.99h154.91a11.894 11.894 0 0 1 11.88 11.88v33.555h-178.67v-33.56a11.894 11.894 0 0 1 11.875-11.875zm-11.88 170.08h178.67v-110.63h-178.67zm55.59-51c2.91-14.6 12.54-31.05 28.62-48.88a7.008 7.008 0 0 1 10.4 0c16.04 17.79 25.64 34.22 28.51 48.82 2.6 13.26-.52 24.95-8.78 32.94a37.217 37.217 0 0 1 -50.04.05c-8.255-7.97-11.355-19.67-8.715-32.93zm18.44 22.86c-8.63-8.34-8.68-27.35 15.38-56.35 23.97 28.92 23.86 47.93 15.2 56.3-7.885 7.61-22.745 7.63-30.585.05zm-188.945-314.43a7 7 0 0 1 7-7h25.17v-35.46a14.515 14.515 0 0 1 14.48-14.51h200.81v167.21h14.74a7.005 7.005 0 0 1 0 14.01h-46.88a7.005 7.005 0 1 1 0-14.01h14.74v-142.81a7.01 7.01 0 0 0 -7.01-7h-163.235a10.245 10.245 0 0 0 -10.24 10.23v22.34h25.15a7.005 7.005 0 0 1 0 14.01h-67.72a7 7 0 0 1 -7.005-7.01z"/>
</svg>
</div>
</div>
<a class="pbmit-link" href="#"></a>
</div>
<div class="pbmit-service-content-wrap">
<h3 class="pbmit-service-title">
<a href="#">Machine Analysis</a>
</h3>
<div class="pbmit-service-description">
<p>Data analysis technique that automates the creation of analytical models is machine</p>
</div>
<div class="pbmit-service-btn-wrapper">
<div class="pbmit-service-btn">
<a class="pbmit-button-inner" href="#">
<span class="pbmit-button-text">Read More</span>
<i class="pbmit-base-icon-right-arrow"></i>
</a>
</div>
</div>
<a class="pbmit-link" href="#"></a>
</div>
</div>
</div>
</article>
Service Box Style 2
<article class="pbmit-service-style-2">
<div class="pbminfotech-post-item">
<div class="pbmit-box-content-wrap">
<div class="pbmit-image-wrap">
<div class="pbmit-featured-img-wrapper">
<div class="pbmit-featured-wrapper">
<img src="images/homepage-2/service/service-img-01.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="pbmit-service-icon">
<svg id="pbmit_44" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1">
<path d="m490.9 465.985h-52.67a11.985 11.985 0 0 0 11.34-11.87v-33.57h-178.67v33.57a11.886 11.886 0 0 0 11.88 11.87h-201.025a5.025 5.025 0 0 0 -.54-.08 20.92 20.92 0 0 1 -18.81-20.64v-52.55h194.495v-14.01h-194.495v-168.94h268.87v12.7h14v-79.26a34.752 34.752 0 0 0 -34.72-34.72h-49.607v-20.894a7 7 0 0 0 -7-7h-114.21a7 7 0 0 0 -7 7v20.894h-49.6a34.761 34.761 0 0 0 -34.73 34.72v302.06a34.514 34.514 0 0 0 6.98 20.72h-34.283a7.008 7.008 0 0 0 -7 7v25.015a7.008 7.008 0 0 0 7 7h469.795a7 7 0 0 0 7-7v-25.01a7 7 0 0 0 -7-7.005zm-344.16-371.392h100.2v13.892h-100.2zm-63.6 27.892h227.42a20.75 20.75 0 0 1 20.72 20.72v52.56h-268.875v-52.56a20.752 20.752 0 0 1 20.73-20.72zm400.76 368.5h-455.795v-10.985h455.795zm-286.95-262.26a6.984 6.984 0 0 0 -5.2 2.31c-23.21 25.73-37.08 49.35-41.23 70.19-3.65 18.34.56 34.45 11.84 45.35 9.16 8.84 21.76 13.26 34.38 13.26 12.66 0 25.33-4.45 34.53-13.34 11.31-10.93 15.55-27.04 11.95-45.36-4.1-20.84-17.92-44.43-41.08-70.1a6.978 6.978 0 0 0 -5.195-2.31zm24.59 107.7c-12.73 12.3-36.76 12.34-49.45.08-7.85-7.59-10.56-18.84-7.83-32.54 3.29-16.55 14.55-36.37 32.69-57.62 18.07 21.19 29.28 40.96 32.53 57.49 2.685 13.7-.055 24.97-7.945 32.59zm201.33-136.95a7 7 0 0 1 7 7v15.99h-70.24v-15.99a7 7 0 0 1 7-7zm-140.09 36.99h154.91a11.894 11.894 0 0 1 11.88 11.88v33.555h-178.67v-33.56a11.894 11.894 0 0 1 11.875-11.875zm-11.88 170.08h178.67v-110.63h-178.67zm55.59-51c2.91-14.6 12.54-31.05 28.62-48.88a7.008 7.008 0 0 1 10.4 0c16.04 17.79 25.64 34.22 28.51 48.82 2.6 13.26-.52 24.95-8.78 32.94a37.217 37.217 0 0 1 -50.04.05c-8.255-7.97-11.355-19.67-8.715-32.93zm18.44 22.86c-8.63-8.34-8.68-27.35 15.38-56.35 23.97 28.92 23.86 47.93 15.2 56.3-7.885 7.61-22.745 7.63-30.585.05zm-188.945-314.43a7 7 0 0 1 7-7h25.17v-35.46a14.515 14.515 0 0 1 14.48-14.51h200.81v167.21h14.74a7.005 7.005 0 0 1 0 14.01h-46.88a7.005 7.005 0 1 1 0-14.01h14.74v-142.81a7.01 7.01 0 0 0 -7.01-7h-163.235a10.245 10.245 0 0 0 -10.24 10.23v22.34h25.15a7.005 7.005 0 0 1 0 14.01h-67.72a7 7 0 0 1 -7.005-7.01z"/>
</svg>
</div>
</div>
<div class="pbmit-service-content-wrap">
<h3 class="pbmit-service-title">
<a href="#">Machine Analysis</a>
</h3>
<div class="pbmit-service-btn">
<a class="pbmit-button-inner" href="#">
<i class="pbmit-base-icon-right-arrow"></i>
</a>
</div>
</div>
</div>
<a class="pbmit-link" href="#"></a>
</div>
</article>
Progress Bar
Use the below code to display Progress Bar style:
<div class="progressbar">
<span class="progress-label">Biotechnology</span>
<div class="progress progress-lg progress-percent-bg">
<div class="progress-bar aos aos-init aos-animate" data-aos="slide-right" data-aos-delay="200" data-aos-duration="1000"
data-aos-easing="ease-in-out" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
<span class="progress-percent">80%</span>
</div>
</div>
</div>
Team
Use the below code to display Team:
Team Style 1
<article class="pbmit-team-style-1">
<div class="pbminfotech-post-item">
<div class="pbmit-featured-wrap">
<div class="pbmit-team-btn">
<a class="pbmit-team-text" href="#">
<i class="pbmit-base-icon-share"></i>
</a>
<div class="pbminfotech-box-social-links">
<ul class="pbmit-social-links pbmit-team-social-links">
<li class="pbmit-social-li pbmit-social-facebook">
<a href="#" title="Facebook" target="_blank">
<span><i class="pbmit-base-icon-facebook-f"></i></span>
</a>
</li>
<li class="pbmit-social-li pbmit-social-twitter">
<a href="#" title="Twitter" target="_blank">
<span><i class="pbmit-base-icon-twitter-2"></i></span>
</a>
</li>
<li class="pbmit-social-li pbmit-social-youtube">
<a href="#" title="Youtube" target="_blank">
<span><i class="pbmit-base-icon-youtube-play"></i></span>
</a>
</li>
<li class="pbmit-social-li pbmit-social-instagram">
<a href="#" title="Instagram" target="_blank">
<span><i class="pbmit-base-icon-instagram"></i></span>
</a>
</li>
</ul>
</div>
</div>
<div class="pbmit-featured-inner">
<div class="pbmit-featured-img-wrapper">
<div class="pbmit-featured-wrapper">
<img src="images/homepage-1/team/team-img-01.jpg" class="img-fluid" alt=""></div>
</div>
<a class="pbmit-link" href="#"></a>
</div>
</div>
<div class="pbminfotech-box-content">
<h3 class="pbmit-team-title">
<a href="#">Roman Amata</a>
</h3>
<div class="pbminfotech-box-team-position">Technical Lead</div>
</div>
</div>
</article>
Team Style 2
<article class="pbmit-team-style-2">
<div class="pbminfotech-post-item">
<div class="pbminfotech-box-content">
<div class="pbminfotech-box-content-inner">
<div class="pbmit-featured-wrapper pbmit-hover-img">
<div class="pbmit-featured-img-wrapper">
<div class="pbmit-featured-wrapper">
<img src="images/homepage-2/team/team-img-01.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
<h3 class="pbmit-team-title">
<a href="#">Roman Amata</a>
</h3>
<div class="pbminfotech-box-team-position">Technical Lead</div>
</div>
</div>
</div>
</article>
Testimonial
Use the below code to display Testimonial:
Testimonial Style 1
<article class="pbmit-testimonial-style-1">
<div class="pbminfotech-post-item">
<blockquote class="pbminfotech-testimonial-text">
<p>They are the best of the best, and expertly trained team members who take the extra step and go the extra mile, all to fulfill our dedicated promise to deliver innovative and dynamic solutions to our customers to fit the needs of a rapidly our needs!!</p>
</blockquote>
<div class="pbminfotech-box-star-ratings">
<i class="pbmit-base-icon-star pbmit-active"></i>
<i class="pbmit-base-icon-star pbmit-active"></i>
<i class="pbmit-base-icon-star pbmit-active"></i>
<i class="pbmit-base-icon-star pbmit-active"></i>
<i class="pbmit-base-icon-star pbmit-active"></i>
</div>
<div class="pbminfotech-box-author">
<div class="pbmit-featured-img-wrapper">
<div class="pbmit-featured-wrapper">
<img src="images/homepage-2/testimonial/testimonial-img-01.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="pbmit-auther-content">
<h3 class="pbminfotech-box-title">Stephen Welch</h3>
<div class="pbminfotech-testimonial-detail">Industrial Engineer</div>
</div>
</div>
</div>
</article>
Testimonial Style 2
<article class="pbmit-testimonial-style-2">
<div class="pbminfotech-post-item">
<blockquote class="pbminfotech-testimonial-text">
<p>They are the best of the best, and expertly trained team members who take the extra step and go the extra mile, all to fulfill our dedicated promise to deliver innovative and dynamic solutions to our customers to fit the needs of a rapidly our needs!!</p>
</blockquote>
<div class="pbminfotech-box-author">
<div class="pbmit-featured-img-wrapper">
<div class="pbmit-featured-wrapper">
<img src="images/homepage-1/testimonial/testimonial-img-01.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="pbmit-auther-content">
<h3 class="pbminfotech-box-title">Stephen Welch</h3>
<div class="pbminfotech-testimonial-detail">Industrial Engineer</div>
</div>
</div>
</div>
</article>
Contact Form Setup
You can make the contact form working easily. You should know some basics for PHP coding and SMTP basic knowledge. Follow the steps given below to send email from the PHP script:
Prerequisites
You need SMTP details to set the script. There are two ways to get SMTP
- Get SMTP from your hosting service provider
- Get SMTP from your Gmail account
1. Get SMTP from your hosting service provider
If you have server with email server and want to use your domain email address then you can get SMTP login details from your hosting directly. Please contact your hosting service provider and they will send you SMTP login details.
2. Get SMTP from your Gmail account
There are some settings need to be done in your Gmail account to get SMTP details and make it working. Please follow steps given on this page
netcorecloud.com/tutorials/send-an-email-via-gmail-smtp-server-using-php
Setting SMTP details in send.php script file
Open send.php file and edit as described below:
- Set SMTP details in the file in the SMTP Email Settings section (line number 7 to 18).
- If you added more fields in the Contact form, then you need to edit Form fields you want to receive in email section (line number 25 to 50).
That's all you need to setup. This will send email with all form data.
If you have any quesiton or confusion, then please create a ticket on our support site so our team will guide you properly on this.
Browser Support
Hectolab supports all major Browsers like Google Chrome, Mozilla Firefox, Safari, Opera, Internet Explorer 10 and above.
How to rate this item
If you like our theme and support, Please do not forget to rate it with 5 stars in your Downloads section and write a review in Comments as it will add more value to our services!
Kindly visit here:
https://themeforest.net/downloads
and find "Rate this item" below the download button and rate out the theme.
Advance Thanks in Anticipation!
Source & Credits
All images and videos are for preview purposes only and are not included in the download files. Images are of copyrights under Creative Commons CC0.
Images
Scripts
- Jquery
- Popper
- Jquery appear
- Jquery Waypoints
- Jquery Numinate
- Magnific Popup
- Swiper Js
- Jquery Circle Progress
CSS & Fonts
Note For questions on basic HTML, Javascript or CSS editing - please give your question a quick Google or visit W3Schools as template issues get top priority. You will need some knowledge of HTML/CSS to edit the template.