@charset "UTF-8";
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//www.arpanadies.com/wp-content/themes/auntri/assets/libs/carousel/assets/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
 :root {
--animate-duration: 1.5s;
--animate-delay: 1s;
--animate-repeat: 1;
}
.animate__animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-duration: var(--animate-duration);
animation-duration: var(--animate-duration);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animate__animated.animate__infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-iteration-count: var(--animate-repeat);
animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
-webkit-animation-iteration-count: calc(1 * 2);
animation-iteration-count: calc(1 * 2);
-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
-webkit-animation-iteration-count: calc(1 * 3);
animation-iteration-count: calc(1 * 3);
-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-half {
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-delay: calc(var(--animate-delay) / 2);
animation-delay:calc(var(--animate-delay) / 2);
}
.animate__animated.animate__delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s;
-webkit-animation-delay: var(--animate-delay);
animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
-webkit-animation-delay: calc(1s * 2);
animation-delay: calc(1s * 2);
-webkit-animation-delay: calc(var(--animate-delay) * 2);
animation-delay: calc(var(--animate-delay) * 2);
}
@-webkit-keyframes fadeInTopLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, -100%, 0);
transform: translate3d(-100%, -100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInTopLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, -100%, 0);
transform: translate3d(-100%, -100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.animate__fadeInTopLeft {
-webkit-animation-name: fadeInTopLeft;
animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
from {
opacity: 0;
-webkit-transform: translate3d(250%, -100%, 0);
transform: translate3d(250%, -100%, 0);
}
}
@keyframes fadeInTopRight {
from {
opacity: 0;
-webkit-transform: translate3d(250%, -100%, 0);
transform: translate3d(250%, -100%, 0);
}
}
.animate__fadeInTopRight {
-webkit-animation-name: fadeInTopRight;
animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-300%, 100%, 0);
transform: translate3d(-300%, 100%, 0);
}
}
@keyframes fadeInBottomLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-300%, 100%, 0);
transform: translate3d(-300%, 100%, 0);
}
}
.animate__fadeInBottomLeft {
-webkit-animation-name: fadeInBottomLeft;
animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 100%, 0);
transform: translate3d(100%, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInBottomRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 100%, 0);
transform: translate3d(100%, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.animate__fadeInBottomRight {
-webkit-animation-name: fadeInBottomRight;
animation-name: fadeInBottomRight;
}@font-face {
font-family: "ovaicon";
src: url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/ovaicon/font/ovaicon.ttf?6ca22e33a1539df94eb08a25c1c3a8e3) format("truetype"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/ovaicon/font/ovaicon.woff?6ca22e33a1539df94eb08a25c1c3a8e3) format("woff"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/ovaicon/font/ovaicon.woff2?6ca22e33a1539df94eb08a25c1c3a8e3) format("woff2"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/ovaicon/font/ovaicon.eot?6ca22e33a1539df94eb08a25c1c3a8e3#iefix) format("embedded-opentype"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/ovaicon/font/ovaicon.svg?6ca22e33a1539df94eb08a25c1c3a8e3#ovaicon) format("svg");
}
[class^="ovaicon-"]:before, [class*=" ovaicon-"]:before {
font-family: ovaicon !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ovaicon-back:before {
content: "\f101";
}
.ovaicon-next:before {
content: "\f102";
}
.ovaicon-menu:before {
content: "\f103";
}
.ovaicon-download:before {
content: "\f104";
}
.ovaicon-checked:before {
content: "\f105";
}
.ovaicon-menu-1:before {
content: "\f106";
}
.ovaicon-checked-1:before {
content: "\f107";
}
.ovaicon-cancel:before {
content: "\f108";
}
.ovaicon-download-1:before {
content: "\f109";
}
.ovaicon-fast-forward:before {
content: "\f10a";
}
.ovaicon-download-2:before {
content: "\f10b";
}
.ovaicon-upload:before {
content: "\f10c";
}
.ovaicon-login:before {
content: "\f10d";
}
.ovaicon-logout:before {
content: "\f10e";
}
.ovaicon-previous:before {
content: "\f10f";
}
.ovaicon-cancel-1:before {
content: "\f110";
}
.ovaicon-fullscreen:before {
content: "\f111";
}
.ovaicon-next-1:before {
content: "\f112";
}
.ovaicon-more:before {
content: "\f113";
}
.ovaicon-checked-2:before {
content: "\f114";
}
.ovaicon-cancel-2:before {
content: "\f115";
}
.ovaicon-menu-2:before {
content: "\f116";
}
.ovaicon-upload-1:before {
content: "\f117";
}
.ovaicon-list:before {
content: "\f118";
}
.ovaicon-next-2:before {
content: "\f119";
}
.ovaicon-upload-2:before {
content: "\f11a";
}
.ovaicon-back-1:before {
content: "\f11b";
}
.ovaicon-export:before {
content: "\f11c";
}
.ovaicon-shuffle:before {
content: "\f11d";
}
.ovaicon-up-arrow:before {
content: "\f11e";
}
.ovaicon-fullscreen-1:before {
content: "\f11f";
}
.ovaicon-back-2:before {
content: "\f120";
}
.ovaicon-rewind:before {
content: "\f121";
}
.ovaicon-double-chevron:before {
content: "\f122";
}
.ovaicon-next-3:before {
content: "\f123";
}
.ovaicon-next-4:before {
content: "\f124";
}
.ovaicon-fullscreen-2:before {
content: "\f125";
}
.ovaicon-next-5:before {
content: "\f126";
}
.ovaicon-download-3:before {
content: "\f127";
}
.ovaicon-repeat:before {
content: "\f128";
}
.ovaicon-diagonal-arrow:before {
content: "\f129";
}
.ovaicon-resize:before {
content: "\f12a";
}
.ovaicon-upload-3:before {
content: "\f12b";
}
.ovaicon-upload-4:before {
content: "\f12c";
}
.ovaicon-menu-3:before {
content: "\f12d";
}
.ovaicon-back-3:before {
content: "\f12e";
}
.ovaicon-download-4:before {
content: "\f12f";
}
.ovaicon-resize-1:before {
content: "\f130";
}
.ovaicon-download-5:before {
content: "\f131";
}
.ovaicon-next-6:before {
content: "\f132";
}
.ovaicon-fast-forward-1:before {
content: "\f133";
}
.ovaicon-download-6:before {
content: "\f134";
}
.ovaicon-back-4:before {
content: "\f135";
}
.ovaicon-download-7:before {
content: "\f136";
}
.ovaicon-next-7:before {
content: "\f137";
}
.ovaicon-back-5:before {
content: "\f138";
}
.ovaicon-upload-5:before {
content: "\f139";
}
.ovaicon-diagonal-arrow-1:before {
content: "\f13a";
}
.ovaicon-back-6:before {
content: "\f13b";
}
.ovaicon-next-8:before {
content: "\f13c";
}
.ovaicon-diagonal-arrow-2:before {
content: "\f13d";
}
.ovaicon-rewind-1:before {
content: "\f13e";
}
.ovaicon-upload-6:before {
content: "\f13f";
}
.ovaicon-upload-7:before {
content: "\f140";
}
.ovaicon-previous-1:before {
content: "\f141";
}
.ovaicon-download-8:before {
content: "\f142";
}
.ovaicon-diagonal-arrow-3:before {
content: "\f143";
}
.ovaicon-next-9:before {
content: "\f144";
}
.ovaicon-calendar:before {
content: "\f145";
}
.ovaicon-calendar-1:before {
content: "\f146";
}
.ovaicon-alarm-clock:before {
content: "\f147";
}
.ovaicon-stopwatch:before {
content: "\f148";
}
.ovaicon-calendar-2:before {
content: "\f149";
}
.ovaicon-calendar-3:before {
content: "\f14a";
}
.ovaicon-calendar-4:before {
content: "\f14b";
}
.ovaicon-calendar-5:before {
content: "\f14c";
}
.ovaicon-alarm-clock-1:before {
content: "\f14d";
}
.ovaicon-wall-clock:before {
content: "\f14e";
}
.ovaicon-loupe:before {
content: "\f14f";
}
.ovaicon-search:before {
content: "\f150";
}
.ovaicon-speech-bubble:before {
content: "\f151";
}
.ovaicon-comment:before {
content: "\f152";
}
.ovaicon-comment-1:before {
content: "\f153";
}
.ovaicon-chat-comment-oval-speech-bubble-with-text-lines:before {
content: "\f154";
}
.ovaicon-message:before {
content: "\f155";
}
.ovaicon-chat:before {
content: "\f156";
}
.ovaicon-conversation:before {
content: "\f157";
}
.ovaicon-speech-bubble-1:before {
content: "\f158";
}
.ovaicon-chat-1:before {
content: "\f159";
}
.ovaicon-oval-black-speech-bubble:before {
content: "\f15a";
}
.ovaicon-user:before {
content: "\f15b";
}
.ovaicon-user-1:before {
content: "\f15c";
}
.ovaicon-group:before {
content: "\f15d";
}
.ovaicon-group-1:before {
content: "\f15e";
}
.ovaicon-customer:before {
content: "\f15f";
}
.ovaicon-user-2:before {
content: "\f160";
}
.ovaicon-folder:before {
content: "\f161";
}
.ovaicon-folder-1:before {
content: "\f162";
}
.ovaicon-page:before {
content: "\f163";
}
.ovaicon-document:before {
content: "\f164";
}
.ovaicon-page-blank:before {
content: "\f165";
}
.ovaicon-file:before {
content: "\f166";
}
.ovaicon-edit:before {
content: "\f167";
}
.ovaicon-edit-1:before {
content: "\f168";
}
.ovaicon-tag:before {
content: "\f169";
}
.ovaicon-price-tag:before {
content: "\f16a";
}
.ovaicon-bookmark:before {
content: "\f16b";
}
.ovaicon-tag-1:before {
content: "\f16c";
}
.ovaicon-wishlist:before {
content: "\f16d";
}
.ovaicon-shopping-cart:before {
content: "\f16e";
}
.ovaicon-shopping-cart-1:before {
content: "\f16f";
}
.ovaicon-shopping-cart-empty-side-view:before {
content: "\f170";
}
.ovaicon-shopping-cart-2:before {
content: "\f171";
}
.ovaicon-facebook-logo:before {
content: "\f172";
}
.ovaicon-facebook-logo-1:before {
content: "\f173";
}
.ovaicon-facebook:before {
content: "\f174";
}
.ovaicon-twitter:before {
content: "\f175";
}
.ovaicon-twitter-1:before {
content: "\f176";
}
.ovaicon-instagram:before {
content: "\f177";
}
.ovaicon-instagram-1:before {
content: "\f178";
}
.ovaicon-instagram-2:before {
content: "\f179";
}
.ovaicon-youtube-logotype:before {
content: "\f17a";
}
.ovaicon-tiktok:before {
content: "\f17b";
}
.ovaicon-tik-tok:before {
content: "\f17c";
}
.ovaicon-tik-tok-1:before {
content: "\f17d";
}
.ovaicon-quote:before {
content: "\f17e";
}
.ovaicon-left-quote:before {
content: "\f17f";
}
.ovaicon-left-quotes-sign:before {
content: "\f180";
}
.ovaicon-left-quote-1:before {
content: "\f181";
}
.ovaicon-close:before {
content: "\f182";
}
.ovaicon-right-arrow:before {
content: "\f183";
}
.ovaicon-pin:before {
content: "\f184";
}
.ovaicon-placeholder:before {
content: "\f185";
}
.ovaicon-cursor:before {
content: "\f186";
}
.ovaicon-mail:before {
content: "\f187";
}
.ovaicon-mail-1:before {
content: "\f188";
}
.ovaicon-email:before {
content: "\f189";
}
.ovaicon-letter:before {
content: "\f18a";
}
.ovaicon-telephone:before {
content: "\f18b";
}
.ovaicon-phone-call:before {
content: "\f18c";
}
.ovaicon-telephone-1:before {
content: "\f18d";
}
.ovaicon-smartphone-call:before {
content: "\f18e";
}
.ovaicon-smartphone:before {
content: "\f18f";
}
.ovaicon-phone-receiver:before {
content: "\f190";
}
.ovaicon-phone:before {
content: "\f191";
}
.ovaicon-right-quote:before {
content: "\f192";
}
.ovaicon-quotation:before {
content: "\f193";
}
.ovaicon-rss-feed-symbol:before {
content: "\f194";
}
.ovaicon-rss:before {
content: "\f195";
}
.ovaicon-rss-feeds-symbol-in-a-rounded-square:before {
content: "\f196";
}
.ovaicon-rss-1:before {
content: "\f197";
}
.ovaicon-add:before {
content: "\f198";
}
.ovaicon-plus:before {
content: "\f199";
}
.ovaicon-plus-1:before {
content: "\f19a";
}
.ovaicon-minus:before {
content: "\f19b";
}
.ovaicon-minus-1:before {
content: "\f19c";
}@font-face {
font-family: "flaticon";
src: url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/flaticon/font/flaticon.ttf?ce6486cc176232d54dd649dc31e92b08) format("truetype"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/flaticon/font/flaticon.woff?ce6486cc176232d54dd649dc31e92b08) format("woff"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/flaticon/font/flaticon.woff2?ce6486cc176232d54dd649dc31e92b08) format("woff2"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/flaticon/font/flaticon.eot?ce6486cc176232d54dd649dc31e92b08#iefix) format("embedded-opentype"),
url(https://www.arpanadies.com/wp-content/themes/auntri/assets/libs/flaticon/font/flaticon.svg?ce6486cc176232d54dd649dc31e92b08#flaticon) format("svg");
}
i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
font-family: flaticon !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.flaticon-email:before {
content: "\f101";
}
.flaticon-time:before {
content: "\f102";
}
.flaticon-call:before {
content: "\f103";
}
.flaticon-right-arrow:before {
content: "\f104";
}
.flaticon-left-arrow:before {
content: "\f105";
}
.flaticon-planet-earth:before {
content: "\f106";
}
.flaticon-quality:before {
content: "\f107";
}
.flaticon-factory:before {
content: "\f108";
}
.flaticon-workers:before {
content: "\f109";
}
.flaticon-engineering:before {
content: "\f10a";
}
.flaticon-office:before {
content: "\f10b";
}
.flaticon-address:before {
content: "\f10c";
}
.flaticon-office-building:before {
content: "\f10d";
}
.flaticon-play-button:before {
content: "\f10e";
}
.flaticon-next:before {
content: "\f10f";
}
.flaticon-left:before {
content: "\f110";
}
.flaticon-right:before {
content: "\f111";
}
.flaticon-back:before {
content: "\f112";
}
.flaticon-user:before {
content: "\f113";
}
.flaticon-profile:before {
content: "\f114";
}
.flaticon-telephone:before {
content: "\f115";
}
.flaticon-send:before {
content: "\f116";
}
.flaticon-send-1:before {
content: "\f117";
}
.flaticon-location:before {
content: "\f118";
}
.flaticon-black-placeholder-variant:before {
content: "\f119";
}
.flaticon-phone-call:before {
content: "\f11a";
}
.flaticon-green-city:before {
content: "\f11b";
}
.flaticon-kennyatta-international-conference-centre:before {
content: "\f11c";
}
.flaticon-solar-energy:before {
content: "\f11d";
}
.flaticon-solar-house:before {
content: "\f11e";
}
.flaticon-solar-panel:before {
content: "\f11f";
}
.flaticon-sun-energy:before {
content: "\f120";
}
.flaticon-solar-energy-1:before {
content: "\f121";
}
.flaticon-factory-1:before {
content: "\f122";
}
.flaticon-solar-energy-2:before {
content: "\f123";
}
.flaticon-electric-generator:before {
content: "\f124";
}
.flaticon-power-cable:before {
content: "\f125";
}
.flaticon-save-energy:before {
content: "\f126";
}
.flaticon-chat:before {
content: "\f127";
}
.flaticon-bolt:before {
content: "\f128";
}
.flaticon-atomic-energy:before {
content: "\f129";
}
.flaticon-ecology:before {
content: "\f12a";
}
.flaticon-house:before {
content: "\f12b";
}
.flaticon-smart-plug:before {
content: "\f12c";
}
.flaticon-plug:before {
content: "\f12d";
}
.flaticon-trophy:before {
content: "\f12e";
}
.flaticon-man:before {
content: "\f12f";
}
.flaticon-success:before {
content: "\f130";
}
.flaticon-rating:before {
content: "\f131";
}
.flaticon-setting:before {
content: "\f132";
}
.flaticon-bending:before {
content: "\f133";
}
.flaticon-welding-mask:before {
content: "\f134";
}
.flaticon-gear:before {
content: "\f135";
}
.flaticon-gear-1:before {
content: "\f136";
}
.flaticon-file:before {
content: "\f137";
}
.flaticon-write:before {
content: "\f138";
}
.flaticon-sketch:before {
content: "\f139";
}
.flaticon-helmet:before {
content: "\f13a";
}
.flaticon-prototype:before {
content: "\f13b";
}
.flaticon-conveyor:before {
content: "\f13c";
}
.flaticon-refinery:before {
content: "\f13d";
}
.flaticon-architecture:before {
content: "\f13e";
}
.flaticon-oil-rig:before {
content: "\f13f";
}
.flaticon-eco-factory:before {
content: "\f140";
}
.flaticon-power:before {
content: "\f141";
}
.flaticon-petrochemical:before {
content: "\f142";
}
.flaticon-rating-stars:before {
content: "\f143";
}
.flaticon-oil:before {
content: "\f144";
}
.flaticon-checked:before {
content: "\f145";
}
.flaticon-quote:before {
content: "\f146";
}
.flaticon-quote-1:before {
content: "\f147";
}
.flaticon-welder:before {
content: "\f148";
}
.flaticon-oil-rig-1:before {
content: "\f149";
}
.flaticon-open-email:before {
content: "\f14a";
}
.flaticon-manufacturing:before {
content: "\f14b";
}
.flaticon-vaccine:before {
content: "\f14c";
}
.flaticon-assembly:before {
content: "\f14d";
}
.flaticon-factory-2:before {
content: "\f14e";
}
.flaticon-engineer:before {
content: "\f14f";
}
.flaticon-certified:before {
content: "\f150";
}
.flaticon-report:before {
content: "\f151";
}
.flaticon-email-1:before {
content: "\f152";
}
.flaticon-clock:before {
content: "\f153";
}
.flaticon-magnifying-glass:before {
content: "\f154";
}
.flaticon-settings:before {
content: "\f155";
}
.flaticon-car-check:before {
content: "\f156";
}
.flaticon-factory-3:before {
content: "\f157";
}
.flaticon-renovation:before {
content: "\f158";
}
.flaticon-file-1:before {
content: "\f159";
}
.flaticon-rating-1:before {
content: "\f15a";
}
.flaticon-industrial:before {
content: "\f15b";
}
.flaticon-industrial-robot:before {
content: "\f15c";
}
.flaticon-quote-2:before {
content: "\f15d";
}
.flaticon-phone-call-1:before {
content: "\f15e";
}
.flaticon-helpline:before {
content: "\f15f";
}
.flaticon-call-1:before {
content: "\f160";
}
.flaticon-phone-ringing:before {
content: "\f161";
}
.flaticon-renewable-energy:before {
content: "\f162";
}
.flaticon-ecosystem:before {
content: "\f163";
}
.flaticon-solar-energy-3:before {
content: "\f164";
}
.flaticon-maintenance:before {
content: "\f165";
}
.flaticon-power-plant:before {
content: "\f166";
}
.flaticon-gas:before {
content: "\f167";
}
.flaticon-pin:before {
content: "\f168";
}
.flaticon-charge:before {
content: "\f169";
}
.flaticon-green-energy:before {
content: "\f16a";
}
.flaticon-sun-energy-1:before {
content: "\f16b";
}
.flaticon-solar-cell:before {
content: "\f16c";
}
.flaticon-maintenance-1:before {
content: "\f16d";
}
.flaticon-welding-mask-1:before {
content: "\f16e";
}
.flaticon-bending-1:before {
content: "\f16f";
}
.flaticon-heavy-machinery:before {
content: "\f170";
}
.flaticon-checklist:before {
content: "\f171";
}
.flaticon-welding-machine:before {
content: "\f172";
}
.flaticon-petroleum:before {
content: "\f173";
}
.flaticon-pipe:before {
content: "\f174";
}
.flaticon-oil-refinery:before {
content: "\f175";
}
.flaticon-biotechnology:before {
content: "\f176";
}
.flaticon-respiratory:before {
content: "\f177";
}
.flaticon-research:before {
content: "\f178";
}
.flaticon-production:before {
content: "\f179";
}
.flaticon-construction:before {
content: "\f17a";
}
.flaticon-industry:before {
content: "\f17b";
}
.flaticon-oil-refinery-1:before {
content: "\f17c";
}
.flaticon-address-1:before {
content: "\f17d";
}
.flaticon-phone:before {
content: "\f17e";
}
.flaticon-call-2:before {
content: "\f17f";
}
.flaticon-contact:before {
content: "\f180";
}
.flaticon-scenario:before {
content: "\f181";
}
.flaticon-quotation:before {
content: "\f182";
}
.flaticon-architect:before {
content: "\f183";
}
.flaticon-construction-1:before {
content: "\f184";
}
.flaticon-home:before {
content: "\f185";
}
.flaticon-brickwall:before {
content: "\f186";
}
.flaticon-appartments:before {
content: "\f187";
}
.flaticon-building:before {
content: "\f188";
}
.flaticon-milling-machine:before {
content: "\f189";
}
.flaticon-check-list:before {
content: "\f18a";
}
.flaticon-engineer-1:before {
content: "\f18b";
}
.flaticon-laser:before {
content: "\f18c";
}
.flaticon-milling-machine-1:before {
content: "\f18d";
}
.flaticon-maintenance-2:before {
content: "\f18e";
}
.flaticon-location-1:before {
content: "\f18f";
}
.flaticon-business:before {
content: "\f190";
}