.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-9e96a65:#DD1313;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.elementor-widget:not(:last-child){margin-bottom:20px;}{}h1.entry-title{display:var(--page-title-display);}@media (max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}}@media (max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}}/*
 * Plugin Name: Master Layer
 * Version: 1.0
 * Description: Master Addons for Elementor
 * Author: MasterLayer
 * Plugin URI: http://ninzio.com/master
 * Author URI: https://themeforest.net/user/ninzio
 * License: Custom license
 * License URI: Licensing/README_License.txt
 * Text Domain: masterlayer
 * Tested up to: 7.4.4
 * Requires PHP: 5.4.2
**/

/* TABLE OF CONTENTS
 * Extra classes
 * Basic Widget
 	* Link
 	* Button
 	* Heading
 	* Icon 
 	* Icon Box
 	* Carousel Box
 	* Progress Bar
 	* Video Icon
 	* Fancy Image
 	* List
 	* Counter
 	* Tabs
 	* Parallax Image
 	* Subscribe Form
 	* Contact Form 7
 	* Demo Box
 	* Gallery
 * Post Widget
 	* Partner
 	* Service
 	* Project
 	* News
 	* Team
 	* Testimonial
 	* Project Widgets
 * Keyframes
-------------------------------------------------------------- */

/* ----------------------------------------
	Extra Classes 
---------------------------------------- */
@media (max-width: 1025px){.align--tabletleft { text-align: left; }
	.align--tabletcenter { text-align: center; }
	.align--tabletright { text-align: right; }}

@media (max-width: 767px){.align--mobileleft { text-align: left; }
	.align--mobilecenter { text-align: center; }
	.align--mobileright { text-align: right; }}

/* ----------------------------------------
	Link 
---------------------------------------- */
.master-link { display: inline-block; font-size: 16px; color: #1e2228; font-weight: 600; transition: 0.3s; }
.master-link .icon { color: inherit; display: inline-block; }

.master-link.icon-right .icon { margin-left: 15px; }
.master-link.icon-left .icon { margin-right: 15px; }

.master-link:hover { color: #f27507; }

.master-link:hover .icon { animation: 0.3s link-icon linear; }
@keyframes link-icon {
	0% {
		transform: translateX(0); opacity: 1;
	}
	49% { 
		transform: translateX(20px); opacity: 0;
	}
	50% { 
		transform: translateX(-20px); opacity: 0;
	}
	100% {
		transform: translateX(0); opacity: 1;
	}
}

/* ----------------------------------------
	Button 
---------------------------------------- */
.master-button { display: inline-block; color: #fff; font-weight: 600; transition: 0.3s; background-color: #f27507;
	font-size: 16px; padding: 13px 50px; border-radius: 3px; }
.master-button .icon { display: inline-block; }

.master-button.icon-right .icon { margin-left: 16px; }
.master-button.icon-left .icon { margin-right: 16px; }

.master-button.big { font-size: 18px; padding: 16px 70px; }
.master-button.big.icon-right .icon { margin-left: 30px; }
.master-button.big.icon-left .icon { margin-right: 30px; }

.master-button.small { font-size: 14px; padding: 12px 40px; }
.master-button.small.icon-right .icon { margin-left: 30px; }
.master-button.small.icon-left .icon { margin-right: 30px; }

.master-button.btn-white { color: #f27507; background-color: #fff; }
.master-button.btn-dark { color: #ffffff; background-color: #1e2228; }
.master-button.btn-light { color: #f27507; background-color: #f2e1c2; }

.master-button.btn-outline { color: #f27507; background-color: transparent; border: 1px solid #f27507; }

.master-button:hover { color: #fff; background-color: #1e2228; }
.master-button.btn-dark:hover { opacity: 0.85; }
.master-button.btn-outline:hover { border-color: #1e2228; }

/* ----------------------------------------
	Headings 
---------------------------------------- */
.master-heading { display: flex; justify-content: center; flex-direction: column; }
.master-heading > * { max-width: 100%; }
.align-left .master-heading { align-items: flex-start; }
.align-center .master-heading { align-items: center; }
.align-right .master-heading{ align-items: flex-end; }
.master-heading .pre-heading { font-size: 15px; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 18px;
	color: #f27507; }
.master-heading .main-heading { margin-bottom: 0; margin-bottom: 44px;}
.master-heading .sub-heading { font-size: 18px; line-height: 34px; }
.master-heading .divider { width: 50px; height: 5px; background-color: #f27507; margin-bottom: 43px;}
.align-center .master-heading .divider { margin-left: auto; margin-right: auto; }
.align-right .master-heading .divider { margin-left: auto; margin-right: 0; }

@media (max-width: 1025px){.align--tabletleft .master-heading { align-items: flex-start; }
	.align--tabletcenter .master-heading { align-items: center; }
	.align--tabletright .master-heading{ align-items: flex-end; }

	.align--tabletleft .master-heading .divider { margin-right: auto; margin-left: 0; }
	.align--tabletcenter .master-heading .divider { margin-left: auto; margin-right: auto; }
	.align--tabletright .master-heading .divider { margin-left: auto; margin-right: 0; }}

@media (max-width: 767px){.align--mobileleft .master-heading { align-items: flex-start; }
	.align--mobilecenter .master-heading { align-items: center; }
	.align--mobileright .master-heading{ align-items: flex-end; }

	.align--mobileleft .master-heading .divider { margin-right: auto; margin-left: 0; }
	.align--mobilecenter .master-heading .divider { margin-left: auto; margin-right: auto; }
	.align--mobileright .master-heading .divider { margin-left: auto; margin-right: 0; }}

@media (max-width: 576px){.master-heading .main-heading { font-size: 28px; }
	.master-heading .sub-heading { font-size: 16px; }}

/* ----------------------------------------
	Headline 
---------------------------------------- */
.headline-2 { font-size: 24px; margin-bottom: 28px; }

/* ----------------------------------------
	Image 
---------------------------------------- */
.master-image { transition: 0.3s; }
.master-image img { width: 100%; height: auto; transition: 0.3s; }
.align-center .master-image { margin: 0 auto; }
.align-right .master-image { margin: 0 0 0 auto; }

@media (max-width: 1025px){.align--tabletcenter .master-image { margin: 0 auto; }
	.align--tabletright .master-image { margin: 0 0 0 auto; }}

@media (max-width: 767px){.align--mobilecenter .master-image { margin: 0 auto; }
	.align--mobileright .master-image { margin: 0 0 0 auto; }}

/* ----------------------------------------
	Icon 
---------------------------------------- */
.master-icon { display: inline-block; transition: 0.3s; font-size: 70px; line-height: 1; color: #f27507; }
.master-icon svg { width: 70px; height: 70px; }
.icon-has-bg .master-icon { line-height: 70px; width: 70px; height: 70px; color: #fff; background-color: #f27507; 
	border-radius: 50%; text-align: center; }

.master-icon.icon-font h1 { line-height: inherit; margin-bottom: 0; font-size: inherit; color: inherit; }


/* ----------------------------------------
	Icon Box
---------------------------------------- */
.master-icon-box { position: relative; display: flex; border-color: #e7e7e7; transition: 0.5s; }
.master-icon-box .headline-2,
.master-icon-box .sep,
.master-icon-box .desc { transition: 0.5s; }
.master-icon-box .sep { height: 1px; width: 100%; background-color: #e1e6ee; }
.master-icon-box .icon-wrap .headline-2 { display: none; }

.master-icon-box .icon-wrap2 { display: none; }

/* Icon Top */
.icon-position-top .master-icon-box { flex-direction: column; }
.icon-position-top .master-icon-box .master-icon { margin-bottom: 35px; }

/* Icon Left - Right */
.icon-position-left .master-icon-box { flex-direction: row; }
.icon-position-right .master-icon-box { flex-direction: row-reverse; }
.icon-position-left .master-icon-box .master-icon,
.icon-position-right .master-icon-box .master-icon { font-size: 70px; }
.icon-position-left .master-icon-box .headline-2,
.icon-position-right .master-icon-box .headline-2 { font-size: 22px; margin-bottom: 20px; }

.icon-position-left2 .master-icon-box .icon-wrap .headline-2 { display: block; }
.icon-position-left2 .master-icon-box .text-wrap .headline-2 { display: none; }
.icon-position-left2 .master-icon-box { flex-direction: column; }
.icon-position-left2 .master-icon-box .icon-wrap { display: flex; flex-direction: row; }

/* Icon Left (Right)- Middle */
.icon-position-left.icon-middle .master-icon-box,
.icon-position-right.icon-middle .master-icon-box { align-items: center !important; }

.icon-position-left.icon-middle .master-icon-box .master-icon,
.icon-position-right.icon-middle .master-icon-box .master-icon { display: flex; justify-content: center; }

/* Hover effect */
.hover-effect-style-1 .master-icon-box { overflow: hidden; }
.hover-effect-style-1 .master-icon-box .icon-wrap,
.hover-effect-style-1 .master-icon-box .text-wrap { transform: translateY(60px); transition: 0.3s; }
.hover-effect-style-1 .master-icon-box .url-wrap { opacity: 0; transition: 0.3s; }
.hover-effect-style-1:hover .master-icon-box .icon-wrap,
.hover-effect-style-1:hover .master-icon-box .text-wrap { transform: translateY(0); }
.hover-effect-style-1:hover .master-icon-box .url-wrap { opacity: 1; }

.hover-effect-style-2.elementor-widget-mae-icon-box { overflow: hidden; }
.hover-effect-style-2 .master-icon-box { overflow: visible; }
.hover-effect-style-2 .master-icon-box .icon-wrap,
.hover-effect-style-2 .master-icon-box .text-wrap { transform: translateY(60px); transition: 0.3s; }
.hover-effect-style-2 .master-icon-box .url-wrap { opacity: 0; transition: 0.3s; }
.hover-effect-style-2 .master-icon-box .master-icon-box { transition: 0s; }
.hover-effect-style-2:hover .master-icon-box .icon-wrap,
.hover-effect-style-2:hover .master-icon-box .text-wrap { transform: translateY(0); }
.hover-effect-style-2:hover .master-icon-box .url-wrap { opacity: 1; }
.hover-effect-style-2:hover .master-icon-box .icon-wrap { opacity: 0; }
.hover-effect-style-2 .master-icon-box .icon-wrap2 { display: block; opacity: 0; transition-delay: 0s; transition: 0s;
	position: absolute; top: -100px; left: 0; }
.hover-effect-style-2:hover .master-icon-box .icon-wrap2 { opacity: 1;  transition: 0.3s; transition-delay: 0.2s; }
.hover-effect-style-2 .master-icon-box .icon-wrap2 .master-icon { font-size: 150px !important; color: #f9943c; }

.fix-icon-offset.hover-effect-style-2 .master-icon-box .icon-wrap2 { left: -25px; }
.fix-icon-offset-2.hover-effect-style-2 .master-icon-box .icon-wrap2 { left: -35px; }

@media (max-width: 991px){.icon-position-left2 .master-icon-box .icon-wrap { flex-direction: column; }}

.master-icon-box .bg-hover { display: none; }
.hover-effect-style-3 .bg-hover { display: block; opacity: 0; position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; opacity: 0; transition: 0.5s; }
.hover-effect-style-3:hover .bg-hover { opacity: 1; }

/* ----------------------------------------
	Carousel Box 
---------------------------------------- */
.item-carousel { width: 100%; transition: 0s; }

.column-1-gap-10px .item-carousel { width: 100%; margin-right: 10px; }
.column-1-gap-20px .item-carousel { width: 100%; margin-right: 20px; }
.column-1-gap-30px .item-carousel { width: 100%; margin-right: 30px; }
.column-1-gap-40px .item-carousel { width: 100%; margin-right: 40px; }

.column-2-gap-10px .item-carousel { width: calc( (100% - 10px) / 2 ); margin-right: 10px; }
@media (max-width: 1024px){.column-2-gap-10px .item-carousel { width: calc( (100% - 10px) / 2 ); margin-right: 10px; }}
@media (max-width: 767px){.column-2-gap-10px .item-carousel { width: 100%; margin-right: 0; }}
.column-3-gap-10px .item-carousel { width: calc( (100% - 20px) / 3 ); margin-right: 10px; }
@media (max-width: 1024px){.column-3-gap-10px .item-carousel { width: calc( (100% - 10px) / 2 ); margin-right: 10px; }}
@media (max-width: 767px){.column-3-gap-10px .item-carousel { width: 100%; margin-right: 0; }}
.column-4-gap-10px .item-carousel { width: calc( (100% - 30px) / 4 ); margin-right: 10px; }
@media (max-width: 1024px){.column-4-gap-10px .item-carousel { width: calc( (100% - 10px) / 2 ); margin-right: 10px; }}
@media (max-width: 767px){.column-4-gap-10px .item-carousel { width: 100%; margin-right: 0; }}
.column-5-gap-10px .item-carousel { width: calc( (100% - 40px) / 5 ); margin-right: 10px; }
@media (max-width: 1024px){.column-5-gap-10px .item-carousel { width: calc( (100% - 20px) / 3 ); margin-right: 10px; }}
@media (max-width: 767px){.column-5-gap-10px .item-carousel { width: 100%; margin-right: 0; }}

.column-2-gap-20px .item-carousel { width: calc( (100% - 20px) / 2 ); margin-right: 20px; }
@media (max-width: 1024px){.column-2-gap-20px .item-carousel { width: calc( (100% - 20px) / 2 ); margin-right: 20px; }}
@media (max-width: 767px){.column-2-gap-20px .item-carousel { width: 100%; margin-right: 0; }}
.column-3-gap-20px .item-carousel { width: calc( (100% - 40px) / 3 ); margin-right: 20px; }
@media (max-width: 1024px){.column-3-gap-20px .item-carousel { width: calc( (100% - 20px) / 2 ); margin-right: 20px; }}
@media (max-width: 767px){.column-3-gap-20px .item-carousel { width: 100%; margin-right: 0; }}
.column-4-gap-20px .item-carousel { width: calc( (100% - 60px) / 4 ); margin-right: 20px; }
@media (max-width: 1024px){.column-4-gap-20px .item-carousel { width: calc( (100% - 20px) / 2 ); margin-right: 20px; }}
@media (max-width: 767px){.column-4-gap-20px .item-carousel { width: 100%; margin-right: 0; }}
.column-5-gap-20px .item-carousel { width: calc( (100% - 80px) / 5 ); margin-right: 20px; }
@media (max-width: 1024px){.column-5-gap-20px .item-carousel { width: calc( (100% - 40px) / 3 ); margin-right: 20px; }}
@media (max-width: 767px){.column-5-gap-20px .item-carousel { width: 100%; margin-right: 0; }}

.column-2-gap-30px .item-carousel { width: calc( (100% - 30px) / 2 ); margin-right: 30px; }
@media (max-width: 1024px){.column-2-gap-30px .item-carousel { width: calc( (100% - 30px) / 2 ); margin-right: 30px; }}
@media (max-width: 767px){.column-2-gap-30px .item-carousel { width: 100%; margin-right: 30px; }}
.column-3-gap-30px .item-carousel { width: calc( (100% - 60px) / 3 ); margin-right: 30px; }
@media (max-width: 1024px){.column-3-gap-30px .item-carousel { width: calc( (100% - 30px) / 2 ); margin-right: 30px; }}
@media (max-width: 767px){.column-3-gap-30px .item-carousel { width: 100%; margin-right: 30px; }}
.column-4-gap-30px .item-carousel { width: calc( (100% - 90px) / 4 ); margin-right: 30px; }
@media (max-width: 1024px){.column-4-gap-30px .item-carousel { width: calc( (100% - 30px) / 2 ); margin-right: 30px; }}
@media (max-width: 767px){.column-4-gap-30px .item-carousel { width: 100%; margin-right: 30px; }}
.column-5-gap-30px .item-carousel { width: calc( (100% - 120px) / 5 ); margin-right: 30px; }
@media (max-width: 1024px){.column-5-gap-30px .item-carousel { width: calc( (100% - 60px) / 3 ); margin-right: 30px; }}
@media (max-width: 767px){.column-5-gap-30px .item-carousel { width: 100%; margin-right: 30px; }}

.column-2-gap-40px .item-carousel { width: calc( (100% - 40px) / 2 ); margin-right: 40px; }
@media (max-width: 1024px){.column-2-gap-40px .item-carousel { width: calc( (100% - 40px) / 2 ); margin-right: 40px; }}
@media (max-width: 767px){.column-2-gap-40px .item-carousel { width: 100%; margin-right: 0; }}
.column-3-gap-40px .item-carousel { width: calc( (100% - 80px) / 3 ); margin-right: 40px; }
@media (max-width: 1024px){.column-3-gap-40px .item-carousel { width: calc( (100% - 40px) / 2 ); margin-right: 40px; }}
@media (max-width: 767px){.column-3-gap-40px .item-carousel { width: 100%; margin-right: 0; }}
.column-4-gap-40px .item-carousel { width: calc( (100% - 120px) / 4 ); margin-right: 40px; }
@media (max-width: 1024px){.column-4-gap-40px .item-carousel { width: calc( (100% - 40px) / 2 ); margin-right: 40px; }}
@media (max-width: 767px){.column-4-gap-40px .item-carousel { width: 100%; margin-right: 0; }}
.column-5-gap-40px .item-carousel { width: calc( (100% - 160px) / 5 ); margin-right: 40px; }
@media (max-width: 1024px){.column-5-gap-40px .item-carousel { width: calc( (100% - 80px) / 3 ); margin-right: 40px; }}
@media (max-width: 767px){.column-5-gap-40px .item-carousel { width: 100%; margin-right: 0; }}

.column-2-gap-100px .item-carousel { width: calc( (100% - 100px) / 2 ); margin-right: 100px; }
@media (max-width: 1024px){.column-2-gap-100px .item-carousel { width: calc( (100% - 60px) / 2 ); margin-right: 60px; }}
@media (max-width: 767px){.column-2-gap-100px .item-carousel { width: 100%; margin-right: 30px; }}
.column-3-gap-100px .item-carousel { width: calc( (100% - 200px) / 3 ); margin-right: 200px; }
@media (max-width: 1024px){.column-3-gap-100px .item-carousel { width: calc( (100% - 120px) / 2 ); margin-right: 120px; }}
@media (max-width: 767px){.column-3-gap-100px .item-carousel { width: 100%; margin-right: 30px; }}
.column-4-gap-100px .item-carousel { width: calc( (100% - 300px) / 4 ); margin-right: 300px; }
@media (max-width: 1024px){.column-4-gap-10px .item-carousel { width: calc( (100% - 180px) / 2 ); margin-right: 180px; }}
@media (max-width: 767px){.column-4-gap-100px .item-carousel { width: 100%; margin-right: 30px; }}
.column-5-gap-100px .item-carousel { width: calc( (100% - 400px) / 5 ); margin-right: 100px; }
@media (max-width: 1024px){.column-5-gap-100px .item-carousel { width: calc( (100% - 240px) / 3 ); margin-right: 240px; }}
@media (max-width: 767px){.column-5-gap-100px .item-carousel { width: 100%; margin-right: 30px; }}

.column-custom-gap-10px .item-carousel { margin: 0 5px; }
.column-custom-gap-20px .item-carousel { margin: 0 10px; }
.column-custom-gap-30px .item-carousel { margin: 0 15px; }
.column-custom-gap-40px .item-carousel { margin: 0 20px; }

/* Bullets */

.master-carousel-box .flickity-page-dots { bottom: 0; height: 25px; line-height: 25px;
	z-index: 999; transform: translateY(25px); }
.master-carousel-box .flickity-page-dots .dot { position: relative; width: 16px; height: 16px; box-shadow: inset 0 0 0 1px transparent; 
	background-color: transparent; opacity: 1; transition: all 0.3s ease; border-radius: 0; margin: 0 3px;
	border-radius: 50%; }
.master-carousel-box .flickity-page-dots .dot:after { position: absolute; top: 4px; left: 4px; content: '';
	border-radius: 50%;
	width: 8px; height: 8px; transition: 0.5s; background-color: #ecdcbd; }
.master-carousel-box .flickity-page-dots .dot.is-selected { box-shadow: inset 0 0 0 1px #ecdcbd; }
.master-carousel-box .flickity-page-dots .dot.is-selected:after { background-color: #f27507; }

.bullets-bottom-left .master-carousel-box .flickity-page-dots { text-align: left; }
.bullets-bottom-right .master-carousel-box .flickity-page-dots { text-align: right; }

.master-carousel-box.bullets-0px { margin-bottom: 25px; }
.master-carousel-box.bullets-10px { padding-bottom: 10px; margin-bottom: 25px; }
.master-carousel-box.bullets-20px { padding-bottom: 20px; margin-bottom: 25px; }
.master-carousel-box.bullets-30px { padding-bottom: 30px; margin-bottom: 25px; }
.master-carousel-box.bullets-40px { padding-bottom: 40px; margin-bottom: 25px; }
.master-carousel-box.bullets-50px { padding-bottom: 50px; margin-bottom: 25px; }
.master-carousel-box.bullets-60px { padding-bottom: 60px; margin-bottom: 25px; }
.master-carousel-box.bullets-70px { padding-bottom: 70px; margin-bottom: 25px; }
.master-carousel-box.bullets-80px { padding-bottom: 80px; margin-bottom: 25px; }
.master-carousel-box.bullets-90px { padding-bottom: 90px; margin-bottom: 25px; }
.master-carousel-box.bullets-100px { padding-bottom: 100px; margin-bottom: 25px; }



/* Arrows */

.master-carousel-box .flickity-button { position: absolute; top: 50%; padding: 0; margin: 0; background-color: transparent; 
	width: 60px; height: 60px; border-radius: 50%; border: none; transform: translateY(-50%); z-index: 9999;
	background-color: #f27507; }
.master-carousel-box .flickity-button svg { display: none; }
.master-carousel-box .flickity-button.previous { left: -30px; }
.master-carousel-box .flickity-button.next { right: -30px; }
.master-carousel-box .flickity-button .flickity-button-icon { width: 100%; height: 100%; position: absolute; left: 0; top: 0; right: 0; 
	bottom: 0;  margin: auto; fill: #666; transition: all 0.3s ease; padding: 5%; }
.master-carousel-box .flickity-button:after { position: absolute; top: 0; left: 0;
	width: 100%; height: 100%; line-height: 60px; font-size: 18px; font-family: 'Font Awesome 5 Free';
	content: "\f0d9"; color: #fff; text-align: center; transition: 0.3s; }
.master-carousel-box .flickity-button.next:after { content: "\f0da"; padding-left: 2px; }
.master-carousel-box .flickity-button.previous:after { padding-right: 2px; }

.master-carousel-box .flickity-button:hover { opacity: 0.8; background-color: #f27507; }
.master-carousel-box .flickity-button:hover:after { color: #fff; }
.master-carousel-box .flickity-button:focus { box-shadow: none; }
.master-carousel-box .flickity-button:disabled { background-color: #f2e1c2; opacity: 1; }
.master-carousel-box .flickity-button:disabled:after { color: #f27507; }
.master-carousel-box .flickity-button:disabled:hover { opacity: 0.8; }

.arrow-position-top .flickity-button { top: 0; margin-top: -40px; transform: translateY(-100%); }
.arrow-position-top .flickity-button.next { right: 0; top: 0px; }
.arrow-position-top .flickity-button.previous { left: auto; right: 70px; top: 0px; }

.arrow-position-bottom-right .flickity-button { bottom: 70px; top: unset; left: unset; }
.arrow-position-bottom-right .flickity-button.next { right: 70px; }
.arrow-position-bottom-right .flickity-button.previous { right: 145px; left: unset; }

.arrow-position-middle-right .flickity-button.previous { left: unset; right: 45px; }

@media screen and (max-width: 767px){.flickity-button { position: static !important; margin-top: 20px !important; transform: translateY(0) !important; }
    .flickity-button.next { margin-left: 6px; }

    .master-carousel-box.bullets-40px { padding-bottom: 30px; margin-bottom: 25px; }
	.master-carousel-box.bullets-50px { padding-bottom: 30px; margin-bottom: 25px; }
	.master-carousel-box.bullets-60px { padding-bottom: 30px; margin-bottom: 25px; }
	.master-carousel-box.bullets-70px { padding-bottom: 30px; margin-bottom: 25px; }
	.master-carousel-box.bullets-80px { padding-bottom: 30px; margin-bottom: 25px; }
	.master-carousel-box.bullets-90px { padding-bottom: 30px; margin-bottom: 25px; }
	.master-carousel-box.bullets-100px { padding-bottom: 30px; margin-bottom: 25px; }}

/* custom width carousel */
/* custom 1 */
.carousel-custom-width-1 .master-carousel-box .item-carousel { width: 57.265% !important; }
@media screen and (max-width: 1024px){.carousel-custom-width-1 .master-carousel-box .item-carousel { width: 80% !important; }}
@media screen and (max-width: 575px){.carousel-custom-width-1 .master-carousel-box .item-carousel { width: 100% !important; }}

/* custom 2 */
.carousel-custom-width-2 .item-carousel { width: 50% !important; margin: 0 50px !important; }

/* custom 3 */
.carousel-custom-width-3 .item-carousel { height: 600px; }

.carousel-custom-width-3 .item-carousel:nth-child(3n + 1) { width: 65.812%; }
.carousel-custom-width-3 .item-carousel:nth-child(3n + 2) { width: 31.624%; }
.carousel-custom-width-3 .item-carousel:nth-child(3n + 0) { width: 31.624%; }

@media screen and (max-width: 1025px){.carousel-custom-width-3 .item-carousel:nth-child(3n + 1) { width: 60%; }
	.carousel-custom-width-3 .item-carousel:nth-child(3n + 2) { width: 40%; }
	.carousel-custom-width-3 .item-carousel:nth-child(3n + 0) { width: 40%; }}

@media screen and (max-width: 575px){.carousel-custom-width-2 .item-carousel { width: 100% !important; }
	.carousel-custom-width-3 .item-carousel { height: 450px; }
	.carousel-custom-width-3 .item-carousel:nth-child(3n + 1),
	.carousel-custom-width-3 .item-carousel:nth-child(3n + 2),
	.carousel-custom-width-3 .item-carousel:nth-child(3n + 0) { width: 100%; }}

/* custom 4 */
.carousel-custom-width-4 .item-carousel { height: 600px; }
.carousel-custom-width-4 .item-carousel:nth-child(5n),
.carousel-custom-width-4 .item-carousel:nth-child(5n + 1),
.carousel-custom-width-4 .item-carousel:nth-child(5n + 2),
.carousel-custom-width-4 .item-carousel:nth-child(5n + 4) { width: 24.48%; }
.carousel-custom-width-4 .item-carousel:nth-child(5n + 3) { width: 40.104%; }

@media screen and (max-width: 1025px){.carousel-custom-width-4 .item-carousel { width: 50% !important; }}

@media screen and (max-width: 767px){.carousel-custom-width-4 .item-carousel { width: 100% !important; }}

/* custom 5 */
.carousel-custom-width-5 .item-carousel { width: 82.906%; }

@media screen and (max-width: 767px){.carousel-custom-width-5 .item-carousel { width: 100% !important; margin-right: 30px; }}

/* custom 6 */
.carousel-custom-width-6 .item-carousel { width: 29.687%; }

@media screen and (max-width: 1025px){.carousel-custom-width-6 .item-carousel { width: 50% !important; }}

@media screen and (max-width: 767px){.carousel-custom-width-6 .item-carousel { width: 100% !important; }}

/* ----------------------------------------
	Progress Bar 
---------------------------------------- */
.master-progress-bar { font-size: 16px; font-weight: 600; }
.master-progress-bar .texts { margin-bottom: 10px; }
.master-progress-bar .title { color: #1e2228; }
.master-progress-bar .percent { color: #7e8288; float: right; font-size: 14px; line-height: 1; font-weight: 500; }
.master-progress-bar .progress-bar { height: 5px; background-color: #ebe5e5; }
.master-progress-bar .progress { height: 100%; width: 0; background-color: #f27507;
	 transition: all 0.6s linear; }

/* ----------------------------------------
	Video Icon
---------------------------------------- */
.master-video-icon a { position: relative; width: 104px; height: 104px; line-height: 104px; display: inline-block; background-color: #fff; border-radius: 50%; text-align: center; font-size: 20px; z-index: 0; }
.master-video-icon a i { margin-left: 7%; }
.master-video-icon a { background-color: #f27507; color: #fff; }
.master-video-icon a span { border-color: #f27507; }
.master-video-icon a span { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
	border: 8px solid rgba(242, 117, 7, 0.3); z-index: -1; animation: circle-fade-before 2s infinite ease-in-out; border-radius: 50%; }
.master-video-icon a .circle-2 { animation: circle-fade-after 2s infinite ease-in-out; }
.master-video-icon > span { display: block; margin-top: 45px; font-size: 18px; }
.master-video-icon .btn-inner { display: inline-block; border-radius: 50%; }

@keyframes circle-fade-before {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes circle-fade-after {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ----------------------------------------
	Fancy Image
---------------------------------------- */

.align-center.master-fancy-image { margin-left: auto; margin-right: auto; }
.align-right .master-fancy-image { margin-left: auto; margin-right: 0; }

.master-fancy-image .master-video-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    margin-left: -50px;
    transition: all ease 1.3s;
}

.master-fancy-image.is-in-view .master-video-icon {
	opacity: 1; margin-left: 0; 
}

.video-left .master-fancy-image .master-video-icon {
	left: 0;
}

.video-right .master-fancy-image .master-video-icon {
	right: 0; left: unset;
	transform: translate(50%, -50%);
}

.master-fancy-image-holder,
.master-fancy-image-bg {
    -webkit-transition: opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 1s 0s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
}

.master-fancy-image-bg {
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 0;
    background-color: #f5ad0d;
    width: 100%;
    height: 100%;
}

.master-fancy-image-holder {
    opacity: 0;
}

.master-fancy-image-holder img {
    width: 100%;
}

.master-fancy-image-holder,
.master-fancy-image {
    position: relative;
}

.master-fancy-image.is-in-view .master-fancy-image-bg,
.master-fancy-image.is-in-view .master-fancy-image-holder {
    opacity: 1;
}

.master-fancy-image.bg-top { margin: 0 20px 20px 0; }
.master-fancy-image.is-in-view.bg-top .master-fancy-image-bg {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
}

.master-fancy-image.is-in-view.bg-top .master-fancy-image-holder {
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
}

.master-fancy-image.bg-right { margin: 0 0 20px 20px; }
.master-fancy-image.is-in-view.bg-right .master-fancy-image-bg {
    -webkit-transform: translate(20px, -20px);
    transform: translate(20px, -20px);
}

.master-fancy-image.is-in-view.bg-right .master-fancy-image-holder {
    -webkit-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
}

.master-fancy-image.bg-bottom { margin: 20px 0 0 20px; }
.master-fancy-image.is-in-view.bg-bottom .master-fancy-image-bg {
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
}

.master-fancy-image.is-in-view.bg-bottom .master-fancy-image-holder {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
}

.master-fancy-image.bg-left { margin: 20px 20px 0 0; }
.master-fancy-image.is-in-view.bg-left .master-fancy-image-bg {
    -webkit-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
}

.master-fancy-image.is-in-view.bg-left .master-fancy-image-holder {
    -webkit-transform: translate(20px, -20px);
    transform: translate(20px, -20px);
}
/* Simple Image */
.master-fancy-image img { width: 100%; }
.master-fancy-image.reveal {
    display: inline-block;
}

.master-fancy-image.reveal > * {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.master-fancy-image.reveal.is-in-view {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.master-fancy-image.reveal> figure {
    opacity: 0;
}

.master-fancy-image.reveal.is-in-view > figure {
    -webkit-animation-name: hide-show;
    animation-name: hide-show;
}

.master-fancy-image.reveal:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ddd;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.master-fancy-image.reveal.lr.is-in-view:after {
    -webkit-animation-name: reveal-from-left;
    animation-name: reveal-from-left;
}

.master-fancy-image.reveal.rl.is-in-view:after {
    -webkit-animation-name: reveal-from-right;
    animation-name: reveal-from-right;
}

.master-fancy-image.reveal .master-video-icon { 
	opacity: 0;
}
.master-fancy-image.reveal.is-in-view .master-video-icon {
	animation: 1.5s hide-show forwards;
}

@media screen and (max-width: 575px){.video-left .master-fancy-image .master-video-icon,
	.video-right .master-fancy-image .master-video-icon {
		left: 50%; transform: translate(-50%,-50%);
		width: fit-content;
	}}


/* ----------------------------------------
	List
---------------------------------------- */
.master-list .icon-wrap { position: absolute; left: 0; top: 0; z-index: 9999; font-size: 18px; line-height: normal; color: #f27507; }
.master-list .content-wrap { font-size: 17px; font-weight: 500; color: #373737; }


/* ----------------------------------------
	Counter
---------------------------------------- */
.master-counter { transition: 0.5s; }
.master-counter .inner { display: inline-block; position: relative; }
.master-counter .icon-wrap { font-size: 18px; line-height: normal; color: #f27507; }
.master-counter.icon-inline-yes .icon-wrap { position: absolute; left: 0; top: 0; z-index: 9999; }
.master-counter.icon-inline-yes .number-wrap { padding-left: 62px; }
.master-counter .number-wrap { font-size: 60px; line-height: 1; font-weight: 600; color: #f27507;
	margin-bottom: 21px; }
.master-counter .title { font-size: 18px; font-weight: 500; margin-bottom: 0; }

/* ----------------------------------------
	Accordions
---------------------------------------- */
.master-accordions .item { padding: 40px; border-radius: 2px; box-shadow: 0 40px 150px 0 rgba(30,34,40,0.1); 
	margin-bottom: 30px; }
.master-accordions .item:last-child { margin-bottom: 0 !important; }
.master-accordions .title { position: relative; font-size: 18px; line-height: 28px; font-weight: 700; color: #1e2228;
	cursor: pointer; }
.master-accordions .title .arrow { display: inline-block; font-size: 16px; line-height: 50px; text-align: center; 
	transition: 0.3s; width: 50px; height: 50px; border-radius: 50%; color: #f27507; background-color: #f2e1c2; }
.master-accordions .title .arrow i { margin-left: 2px; }
.master-accordions .item .title:hover .arrow,
.master-accordions .item.active .title .arrow { color: #fff; background-color: #f27507; }
.master-accordions .title h3 { transition: 0.3s; margin-bottom: 0; display: inline-block; float: left;
	font-size: inherit; line-height: inherit; color: inherit; font-weight: inherit;
	display: flex; min-height: 50px; justify-content: center; flex-direction: column; }
.arrow-none .master-accordions .title .arrow { display: none; }
.arrow-right .master-accordions .title .arrow { float: right; margin-left: 40px; }
.arrow-left .master-accordions .title .arrow { float: left; margin-right: 40px; }

.master-accordions .content { display: none; padding: 12px 0 6px; }
.arrow-left .master-accordions .content { padding-left: 90px; }
.master-accordions p { margin-bottom: 0; }

@media screen and (max-width: 767px){.arrow-left .master-accordions .content { padding-left: 0; }}
/* ----------------------------------------
	Tabs
---------------------------------------- */
.master-tabs { position: relative; }
.master-tabs .tab-link-wrap { list-style: none; margin: 0; overflow: hidden; width: 100%;
 	display: flex; position: relative; }
.master-tabs .tab-link { font-size: 16px; line-height: 24px; font-weight: 600; line-height: 1; display: inline-block; white-space: nowrap; 
	vertical-align: middle; text-align: center; cursor: pointer; color: #7e8288; 
	padding: 22px 25px; transition: color 0.3s ease; position: relative; border-bottom-color: transparent; }
.master-tabs .tab-link.active:after,
.master-tabs .tab-link.active:before { position: absolute; top: 100%; left: 100%; content: ''; width: 1000px; }
.master-tabs .tab-link.active:before { right: 100%; left: unset; }

.master-tabs .tab-link .hover-effect { position: absolute; bottom: 0; right: 0; width: 0; background-color: #f27507; 
	transition: 0.5s; }
.master-tabs .tab-link:hover .hover-effect { width: 100%; left: 0; }

.tabs-hover-enable .master-tabs .tab-link .hover-effect { height: 3px; }
.tabs-hover-enable .master-tabs .tab-link.active .hover-effect { width: 100%; }

.master-tabs .tab-link:last-child { margin-right: 0 !important; }
.master-tabs .tab-content { display: none; padding: 30px 0 0; }
.master-tabs .tab-content.active { display: block; }
.master-tabs .tab-content p:last-child { margin-bottom: 0; }

.tab-nav-left .master-tabs .tab-link-wrap { justify-content: flex-start; }
.tab-nav-right .master-tabs .tab-link-wrap { justify-content: flex-end; }
.tab-nav-center .master-tabs .tab-link-wrap { justify-content: center; }
.tab-nav-justify .master-tabs .tab-link-wrap { justify-content: space-evenly; }
.tab-nav-justify .master-tabs .tab-link-wrap .tab-link { width: 100%; display: flex; align-items: center;
	flex-direction: column; justify-content: center; }

.master-tabs .tab-link-wrap .tab-link .icon-image { margin-right: auto; margin-left: auto; }

/* extra class */
.sep-full-screen .master-tabs .tab-link-wrap { position: relative; overflow: visible; }
.sep-full-screen .master-tabs .tab-link-wrap:after { position: absolute; width: 100vw; height: 100%; content: '';
	background-color: #fff; box-shadow: 0 5px 40px 0 rgba(0,0,0,0.05); bottom: 0; left: calc((-100vw + 100%)/2); z-index: -1; }
.sep-full-screen.dark .master-tabs .tab-link-wrap:after { background-color: #1e2228; }

@media screen and (max-width: 575px){.master-tabs .tab-link-wrap { display: block; }
	.master-tabs .tab-link { display: block; max-width: 100% !important; border: 1px solid rgba(130,130,130,0.15);
		padding: 20px !important; }
	.master-tabs .icon-wrap.icon-image { display: none; }}

/* ----------------------------------------
	Parallax Images
---------------------------------------- */
.master-parallax-box { position: relative; width: 100%; }
.master-parallax-item { position: absolute; display: inline-block; overflow: hidden; }
.master-parallax-item img { width: 100%; height: auto; }

/* ----------------------------------------
	Subscribe Form
---------------------------------------- */
.master-subscribe-form .input-wrap { margin-right: 5px; flex-grow: 1; }
.master-subscribe-form input { background-color: rgba(255,255,255,0.3); border-color: rgba(168,170,173,0.3); width: 100%; max-width: 100%; margin-bottom: 0; height: 56px; }
.master-subscribe-form button { background-color: #f27507; color: #fff; border-radius: 3px; }
.master-subscribe-form button:hover { background-color: #fff; color: #f27507; border-color: #fff; }
.master-subscribe-form input::placeholder { color: #aaa; opacity: 1; }
.master-subscribe-form input:-ms-input-placeholder { color: #aaa; }
.master-subscribe-form input::-ms-input-placeholder { color: #aaa; }
.master-subscribe-form .mc4wp-form-fields { display: flex; }

.align-center .master-subscribe-form .mc4wp-form-fields { margin: 0 auto; }
.align-right .master-subscribe-form .mc4wp-form-fields { margin-right: 0; margin-left: auto; }

.master-subscribe-form.style-2 input { background-color: transparent; border-color: rgba(168,170,173,0.3); color: #fff; text-shadow: 2px 2px rgba(0,0,0,0.1); }
.master-subscribe-form.style-2 input:focus {  border-color: rgba(255,255,255,0.5); }
.master-subscribe-form.style-2 input::placeholder { color: #fff; opacity: 1; }
.master-subscribe-form.style-2 input:-ms-input-placeholder { color: #fff; }
.master-subscribe-form.style-2 input::-ms-input-placeholder { color: #fff; }

.master-subscribe-form.style-3 input { background-color: transparent; border-color: #fff; color: #fff; text-shadow: 2px 2px rgba(0,0,0,0.1); }
.master-subscribe-form.style-3 input:focus {  border-color: #fff; }
.master-subscribe-form.style-3 input::placeholder { color: #fff; opacity: 1; }
.master-subscribe-form.style-3 input:-ms-input-placeholder { color: #fff; }
.master-subscribe-form.style-3 input::-ms-input-placeholder { color: #fff; }
.master-subscribe-form.style-3 button { color: #f27507; background-color: #f2e1c2; }
.master-subscribe-form.style-3 button:hover { color: #fff; background-color: #1e2228; }

@media (max-width: 1024px){.align--tabletleft .master-subscribe-form .mc4wp-form-fields { margin-left: 0; margin-right: auto; }
	.align--tabletcenter .master-subscribe-form .mc4wp-form-fields{ margin: 0 auto; }
	.align--tabletright .master-subscribe-form .mc4wp-form-fields { margin-right: 0; margin-left: auto; }}

@media (max-width: 767px){.master-subscribe-form .mc4wp-form-fields { display: block; }
	.master-subscribe-form .input-wrap { margin-right: 0px; margin-bottom: 30px; }}

/* ----------------------------------------
	Contact Form 
---------------------------------------- */
.master-cf7-0 .wpcf7 p { margin: 0; }
.master-cf7-0 .wpcf7 input,
.master-cf7-0 .wpcf7 textarea { width: 100%; font-size: 15px; line-height: 26px; }
.master-cf7-0 .wpcf7 textarea { height: 100px; }
.master-cf7-0 .wpcf7 .input-wrap { display: flex; width: 100%; }
.master-cf7-0 .wpcf7 .input-wrap > span { width: calc((100% - 30px)/ 2); }
.master-cf7-0 .wpcf7 .input-wrap > span:first-child { margin-right: 30px; }
.master-cf7-0 .wpcf7 .wpcf7-submit { padding: 0 50px; height: 64px; line-height: 64px;
	font-size: 18px; font-weight: 700; color: #fff; background-color: #f27507; }
.master-cf7-0 .wpcf7 .wpcf7-submit:hover { background-color: #1e2228; }

.align-right .master-cf7-0 .wpcf7 .ajax-loader { display: none; }
.align-justify .master-cf7-0 .wpcf7 .wpcf7-submit { width: 100%; }

.cf7-style-1 .master-cf7-0 .wpcf7 input,
.cf7-style-1 .master-cf7-0 .wpcf7 textarea { background-color: transparent; color: #fff; 
	border-color: rgba(255,255,255,0.3); }
.cf7-style-1 .master-cf7-0 .wpcf7 input::placeholder { color: #aaa; opacity: 1; }
.cf7-style-1 .master-cf7-0 .wpcf7 input:-ms-input-placeholder { color: #aaa; }
.cf7-style-1 .master-cf7-0 .wpcf7 input::-ms-input-placeholder { color: #aaa; }
.cf7-style-1 .master-cf7-0 .wpcf7 textarea::placeholder { color: #aaa; opacity: 1; }
.cf7-style-1 .master-cf7-0 .wpcf7 textarea:-ms-input-placeholder { color: #aaa; }
.cf7-style-1 .master-cf7-0 .wpcf7 textarea::-ms-input-placeholder { color: #aaa; }
.cf7-style-1 .master-cf7-0 .wpcf7 input:focus,
.cf7-style-1 .master-cf7-0 .wpcf7 textarea:focus { border-color: #fff; }

.cf7-style-2 .master-cf7-0 .wpcf7 input,
.cf7-style-2 .master-cf7-0 .wpcf7 textarea { background-color: transparent; border: 2px solid #e5e5e6; color: #7e8288; }
.cf7-style-2 .master-cf7-0 .wpcf7 input::placeholder { color: #7e8288; opacity: 1; }
.cf7-style-2 .master-cf7-0 .wpcf7 input:-ms-input-placeholder { color: #7e8288; }
.cf7-style-2 .master-cf7-0 .wpcf7 input::-ms-input-placeholder { color: #7e8288; }

@media screen and (max-width: 767px){.master-cf7-0 .wpcf7 .input-wrap { display: block; }
	.master-cf7-0 .wpcf7 .input-wrap > span { width: 100%; margin-bottom: 30px; }
	.master-cf7-0 .wpcf7 .input-wrap > span:first-child { margin-right: 0; }}

/* ----------------------------------------
	Demo Box 
---------------------------------------- */
.master-demo-box .image-wrap { position: relative; overflow: hidden; width: 100%; height: 600px; margin-bottom: 50px;
	border-radius: 10px; box-shadow: 0 45px 150px 0 rgba(30,34,40,0.2); }
.master-demo-box .image-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: auto; transition: 4s; }
.master-demo-box:hover .image-wrap img { transform: translateY( calc(-100% + 600px) ); }
.master-demo-box .headline-2 { font-size: 20px; line-height: 26px; margin-bottom: 0; }
.master-demo-box .image-wrap .headline-2 { position: absolute; top: 50%; left: 50%; 
	transform: translate(-50%, -50%); color: #fff !important; opacity: 0; }

.coming-soon .master-demo-box .image-wrap { background-color: #f27507; }
.coming-soon .master-demo-box .image-wrap img { opacity: 0; }
.coming-soon .master-demo-box > .headline-2 { opacity: 0; }
.coming-soon .master-demo-box .image-wrap .headline-2 { opacity: 1; }


/* ----------------------------------------
	Gallery 
---------------------------------------- */
.master-gallery img { width: 100%; height: auto; }

/* ----------------------------------------
	Partner
---------------------------------------- */
.master-partner { transition: 0s; }
.master-partner img { transition: 0.5s; filter: grayscale(100%); opacity: 0.3; }
.master-partner:hover img { filter: grayscale(0%); opacity: 1; }
@media screen and (max-width: 1024px){/* Partner carousel */
    .column-4-gap-30px .item-carousel.master-partner { width: calc( (100% - 60px) / 3 ); margin-right: 30px; }}

@media screen and (max-width: 767px){/* Partner carousel */
    .master-partner img { transition: 0s; }
    .column-4-gap-30px .item-carousel.master-partner { width: calc( (100% - 30px) / 2 ); margin-right: 30px; }
    .column-5-gap-30px .item-carousel.master-partner { width: calc( (100% - 30px) / 2 ); margin-right: 30px; }}

/* ----------------------------------------
	Image Box 
---------------------------------------- */
.master-image-box { position: relative; transition: box-shadow 0.3s, transform 0.3s !important; }
.master-image-box p { margin-bottom: 0; }
.master-image-box .content-wrap { transition: 0.5s; padding-top: 40px; }
.master-image-box .master-icon { margin-bottom: 30px; }
.master-image-box .headline-2 { transition: 0.3s; margin-bottom: 34px; }
.master-image-box .desc { position: relative; margin-bottom: 33px; transition: 0.3s; }
.master-image-box .thumb { overflow: hidden; }
.master-image-box .thumb img { width: 100%; height: auto; transition: 0.5s; }

/* ----------------------------------------
	Project 
---------------------------------------- */
.master-project { position: relative; transition: box-shadow 0.3s, transform 0.3s; border-radius: 2px; overflow: hidden; }
.master-project .thumb img { width: 100%; height: auto; }
.master-project .content-wrap { display: flex; flex-direction: column; justify-content: flex-end;
	padding: 45px 30px 45px 35px; transition: 0.5s; }
.master-project .headline-2 { margin-bottom: 46px; max-width: 370px; transition: 0.3s; }
.master-project .desc { transition: 0.5s; }
.master-project .project-cat { display: inline-block; font-size: 14px; line-height: 20px; font-weight: 600; 
	text-transform: uppercase; margin-bottom: 26px; letter-spacing: 0.15em; transition: 0.3s; }

.master-project .project-cat a,
.master-project .headline-2 a { color: inherit; }
.master-project .url-wrap { transition: 0.3s; }

/* Style 1 */
.project-style-1 .master-project { background-size: cover; background-position: center center; overflow: hidden; }
.project-style-1 .master-project .thumb { min-height: 320px; border-radius: 2px; 
	background-size: cover; background-position: center center; overflow: hidden;  }
.project-style-1 .master-project .thumb img { opacity: 0; }
.project-style-1 .master-project .content-wrap { width: 100%; height: 100%;
	position: absolute; bottom: 0; left: 0; padding: 35px 50px; transform: translateY(83px);
}
.project-style-1 .master-project .headline-2,
.project-style-1 .master-project .project-cat,
.project-style-1 .master-project .master-link {
	color: #fff; text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.project-style-1 .master-project .headline-2:hover,
.project-style-1 .master-project .project-cat:hover { color: rgba(255,255,255,0.7); }
.project-style-1 .master-project .content-wrap .url-wrap { opacity: 0; }
.project-style-1 .master-project:hover .content-wrap .url-wrap { opacity: 1; }


.project-style-1 .master-carousel-box[class^="column-1-"] .master-project .content-wrap,
.project-style-1 .master-carousel-box[class*=" column-1-"] .master-project .content-wrap {
	padding: 54px 70px;
}

.project-style-1 .master-project:hover .content-wrap {
	transform: translateY(0);
}

/* Style 2 */
.project-style-2 .master-project { background-size: cover; background-position: center center; overflow: hidden; }
.project-style-2 .master-project .thumb { min-height: 320px; border-radius: 2px; 
	background-size: cover; background-position: center center; overflow: hidden;  }
.project-style-2 .master-project .thumb img { opacity: 0; }
.project-style-2 .master-project .content-wrap { width: 100%; position: absolute; bottom: 0; left: 0; padding: 35px 50px;
	background-image: linear-gradient(0deg,rgba(30,34,40,0.5) 50%,rgba(30,34,40,0) 100%);
	transform: translateY(100%);
}
.project-style-2 .master-project .headline-2,
.project-style-2 .master-project .project-cat,
.project-style-2 .master-project .master-link {
	color: #fff; text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.project-style-2 .master-project .headline-2 {
	margin-bottom: 0; overflow: hidden;
}
.project-style-2 .master-project .project-cat { margin-bottom: 26px; }
.project-style-2 .master-project .headline-2:hover,
.project-style-2 .master-project .project-cat:hover { color: rgba(255,255,255,0.7); }
.project-style-2 .master-project .content-wrap .url-wrap { opacity: 0; }
.project-style-2 .master-project.center .content-wrap .url-wrap,
.project-style-2 .master-project:hover .content-wrap .url-wrap { opacity: 1; }
.project-style-2 .master-project.center .content-wrap,
.project-style-2 .master-project:hover .content-wrap { transform: translateY(0); }

/* Style 3 */
.project-style-3 .master-project { display: flex; flex-direction: row-reverse; justify-content: space-between;
	align-items: center; background-image: none !important; }
.project-style-3 .master-project .content-wrap { padding: 0 30px 0 0; }
.project-style-3 .master-project .headline-2 { font-size: 36px; line-height: 56px; }

/* Style 4 */
.project-style-4 .master-project { background-image: none !important; }
.project-style-4 .master-project .thumb { margin: 0 10.31%; }
.project-style-4 .master-project .content-wrap { position: absolute; top: 0; left: 0; height: 100%;
	display: flex; flex-direction: column; justify-content: flex-end; text-align: left; padding: 0 0 40px; }
.project-style-4 .master-project .headline-2 { font-size: 36px; line-height: 56px; margin-bottom: 86px; }


/* Style 5 */
.project-style-5 .master-project { background-size: cover; background-position: center center; overflow: hidden; }
.project-style-5 .master-project:after { position: absolute; bottom: 0; left: 0; content: ''; width: 100%; height: 0;
	background-color: #f27507; transition: 0.5s; z-index: 0; opacity: 0.9; }
.project-style-5 .master-project > * { z-index: 1; }
.project-style-5 .master-project:hover:after { height: 100%; top: 0; }
.project-style-5 .master-project .thumb { min-height: 320px; border-radius: 2px; 
	background-size: cover; background-position: center center; overflow: hidden;  }
.project-style-5 .master-project .thumb img { opacity: 0; }
.project-style-5 .master-project .content-wrap { width: 100%; height: 100%;
	position: absolute; bottom: 0; left: 0; padding: 35px 50px; transform: translateY(83px);
}
.project-style-5 .master-project .headline-2,
.project-style-5 .master-project .project-cat,
.project-style-5 .master-project .master-link {
	color: #fff; text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.project-style-5 .master-project .headline-2:hover,
.project-style-5 .master-project .project-cat:hover { color: rgba(255,255,255,0.7); }
.project-style-5 .master-project .content-wrap .url-wrap { opacity: 0; }
.project-style-5 .master-project:hover .content-wrap .url-wrap { opacity: 1; }


.project-style-5 .master-carousel-box[class^="column-1-"] .master-project .content-wrap,
.project-style-5 .master-carousel-box[class*=" column-1-"] .master-project .content-wrap {
	padding: 54px 70px;
}

.project-style-5 .master-project:hover .content-wrap {
	transform: translateY(0);
}

@media screen and (max-width: 1025px){.project-style-3 .master-project .thumb { flex-basis: 75%; }}

@media screen and (max-width: 575px){.master-project .headline-2 { margin-bottom: 20px; }

	.project-style-1 .master-project:after { position: absolute; top: 0; left: 0;
		width: 100%; height: 100%; content: ''; z-index: 0; background-color: #1e2228; opacity: 0.2; transition: 0.3s; }
	
	.project-style-1 .master-project .content-wrap {
		transform: translateY(20px); z-index: 1;
	}
    .project-style-1 .master-carousel-box[class^="column-1-"] .master-project .content-wrap,
	.project-style-1 .master-carousel-box[class*=" column-1-"] .master-project .content-wrap {
		padding: 20px; 
	}

	.project-style-3 .master-project { flex-direction: column; align-items: flex-start; }
	.project-style-3 .master-project .thumb { margin-bottom: 30px; }
	.project-style-3 .master-project .headline-2 { font-size: 20px; line-height: 26px; }
	.project-style-3 .master-project .content-wrap { padding: 0; }

	.project-style-4 .master-project .thumb { margin: 0 0 30px; }
	.project-style-4 .master-project .content-wrap { position: relative; }
	.project-style-4 .master-project .headline-2 { font-size: 20px; line-height: 26px; margin-bottom: 30px; }

	.project-style-5 .master-project:after { position: absolute; top: 0; left: 0;
		width: 100%; height: 100%; content: ''; z-index: 0; background-color: #1e2228; opacity: 0.2; transition: 0.3s; }
	
	.project-style-5 .master-project .content-wrap {
		transform: translateY(20px); z-index: 1;
	}
    .project-style-5 .master-carousel-box[class^="column-1-"] .master-project .content-wrap,
	.project-style-5 .master-carousel-box[class*=" column-1-"] .master-project .content-wrap {
		padding: 20px; 
	}}


/* ----------------------------------------
	Cube Portfolio 
---------------------------------------- */
.projects-filter .cbp-filter-item { display: inline-block; font-weight: 600; font-size: 16px; margin-right: 55px;
	color: #7e8288; cursor: pointer; transition: 0.3s; }
.projects-filter .cbp-filter-item:hover,
.projects-filter .cbp-filter-item.cbp-filter-item-active { color: #f27507; }
.projects-filter .cbp-filter-counter { display: none; }

@media screen and (max-width: 575px){.projects-filter .cbp-filter-item { margin-right: 20px; }}

/* ----------------------------------------
	News 
---------------------------------------- */
.master-news { position: relative; }
.master-news .content-wrap { display: flex; flex-direction: column; justify-content: flex-end; transition: 0.3s; }
.master-news .thumb { border-radius: 2px; overflow: hidden; }
.master-news .thumb img { width: 100%; height: auto; }
.master-news .post-date { display: inline-block; font-size: 14px; font-weight: 600; text-transform: uppercase; 
	color: #7e8288; margin-bottom: 24px; letter-spacing: 0.15em; }
.master-news .headline-2 { margin-bottom: 0; }
.master-news .headline-2:hover { color: #f27507; }
.master-news .desc { transition: 0.3s; }
.master-news .headline-2 a { color: inherit; }
.master-news .sep { height: 1px; width: calc(100% + 35px); background-color: #e1e6ee; }
.master-news.sep-before .sep { margin-bottom: 28px; }
.master-news.sep-before .desc { margin-bottom: 39px; }
.master-news.sep-after .sep { margin-bottom: 45px; }

/* Style 1 */
.news-style-1 .master-news .content-wrap { padding-top: 26px; padding-right: 40%; }

@media screen and (max-width: 575px){.news-style-1 .master-news .content-wrap { padding-top: 26px; padding-right: 0; }}


/* ----------------------------------------
	News List
---------------------------------------- */
.master-news-list .master-news { display: flex; align-items: center; margin-bottom: 50px; }
.master-news-list .master-news:last-child { margin-bottom: 0; }
.master-news-list .master-news .thumb { max-width: 370px; margin-right: 50px;
	box-shadow: 0 45px 150px 0 rgba(30,34,40,0.2); }
.master-news-list .master-news .content-wrap { flex-direction: row; justify-content: space-between;
	align-items: center; }
.master-news-list .master-news .url-wrap { min-width: 250px; text-align: right; }
.master-news-list .master-news .headline-2 { font-size: 18px; line-height: 28px; margin-bottom: 22px; }

.master-news-list .master-news .box-date { width: 200px; height: 200px; background-color: #f2e1c2;
	border-radius: 2px; color: #f27507; text-align: center; display: flex; justify-content: center;
	flex-direction: column; margin-right: 50px; }
.master-news-list .master-news .box-date .day { display: inline-block; font-size: 60px; line-height: 1;
	margin-bottom: 8px; }
.master-news-list .master-news .box-date .month { display: inline-block; font-size: 18px; line-height: 1; }

/* Style 1 */
.news-list-style-1 .master-news .box-date { display: none; }

/* Style 2 */
.news-list-style-2 .master-news:nth-child(2n) .box-date { display: none; }
.news-list-style-2 .master-news:nth-child(2n + 1) .box-date { display: flex; }
.news-list-style-2 .master-news:nth-child(2n + 1) .thumb { display: none; }
.news-list-style-2 .master-news .content-wrap { width: calc(100% - 250px); }
.news-list-style-2 .master-news .text-wrap { max-width: 470px; }

@media screen and (max-width: 991px){.master-news-list .master-news { flex-direction: column; align-items: flex-start; }
	.master-news-list .master-news .thumb { max-width: 100%; margin-bottom: 30px; margin-right: 0; }
	.master-news-list .master-news .content-wrap { flex-direction: column; align-items: flex-start; }
	.master-news-list .master-news .url-wrap { text-align: left; margin-top: 30px; }

	.news-list-style-2 .master-news .box-date { display: none !important; }
	.news-list-style-2 .master-news .thumb { display: block !important; }
	.news-list-style-2 .master-news .content-wrap { width: 100%; }}

/* ----------------------------------------
	Price
---------------------------------------- */
.master-price-box { text-align: center; }
.master-price-box .price { font-size: 60px; line-height: 60px; color: #f27507; font-weight: 600;
	margin-bottom: 10px; }
.master-price-box .price sup,
.master-price-box .price sub { font-size: 18px; line-height: 60px; padding: 0 5px; }
.master-price-box .price sup { vertical-align: super; padding-right: 10px; }
.master-price-box .plan { margin-bottom: 40px; }
.master-price-box .desc { margin-bottom: 60px; }

.elementor-widget-mae-price-box .elementor-widget-container { padding: 65px 30px 70px; }

/* ----------------------------------------
	Team 
---------------------------------------- */
.master-team { position: relative; transition: box-shadow 0.3s, transform 0.3s !important; }
.master-team .avatar { overflow: hidden; }
.master-team .avatar img { width: 100%; height: auto; transition: 0.3s; }
.master-team .avatar:hover img { transform: scale(1.2); }
.master-team .content-wrap { display: flex; flex-direction: column-reverse; justify-content: center;
	transition: 0.5s;  }
.master-team .team-info { margin-bottom: 33px; }
.master-team .team-role { font-size: 12px; font-weight: 600; line-height: normal; letter-spacing: 0.05em;
	margin: 38px 0 10px; }
.master-team .team-name { font-size: 18px; line-height: 28px; margin-bottom: 33px; }
.master-team .team-name a { color: inherit; }
.master-team .team-name:hover { color: #f27507; }

.master-team .socials-wrap a { display: inline-block; font-size: 14px; line-height: 40px; width: 40px; height: 40px;
	text-align: center; border-radius: 50%; margin: 0 10px; color: #f27507; border: 1px solid #f27507; }
.master-team .socials-wrap a:hover { background-color: #f27507; color: #fff; }

/* Team in carousel */
.master-team-carousel .master-team .content-wrap { padding: 33px 35px 26px; background-color: #f27507; position: absolute;
	top: 0; left: 0; width: 100%; height: 100%; flex-direction: column; opacity: 0; transform: scale(0.8); }
.master-team-carousel .master-team:hover .content-wrap { opacity: 1; transform: scale(1); }
.master-team-carousel .master-team .team-role,
.master-team-carousel .master-team .team-name,
.master-team-carousel .master-team .desc { color: #fff; }
.master-team-carousel .master-team .team-name:hover { color: rgba(255,255,255,0.7); }
.master-team-carousel .master-team .socials-wrap a { color: #fff; background-color: rgba(255,255,255,0.3); }
.master-team-carousel .master-team .socials-wrap a:hover { background-color: #1e2228; }
.master-team-carousel .master-team .desc { margin-bottom: 30px; }
.master-team-carousel .master-team .socials-wrap { margin-bottom: 55px; }
.master-team-carousel .master-team .team-name { margin-bottom: 20px; }
.master-team-carousel .master-team .team-role { margin: 0; }

/* ----------------------------------------
	Testimonial 
---------------------------------------- */
.master-testimonial { position: relative; border-color: #f7f5f9;
	transition: box-shadow 0.3s, transform 0.3s !important; }
.master-testimonial .name { font-size: 20px; margin-bottom: 0px; color: #7e8288; }
.master-testimonial .role { font-size: 14px; margin-bottom: 0px; color: #999; }
.master-testimonial .content-wrap { position: relative; }
.master-testimonial .comment { font-size: 30px; line-height: 56px; color: #1e2228; margin-bottom: 47px; }
.master-testimonial .comment p { margin-bottom: 0px; }
.master-testimonial .avatar { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; background-color: #cacaca; }
.master-testimonial .avatar img { width: 100%; height: auto; }

/* style 1 */
.testimonials-style-1 .master-testimonial { margin-top: 40px; margin-bottom: 40px; }
.testimonials-style-1 .master-testimonial:after { position: absolute; top: -30px; left: 100px;
	width: 60px; height: 60px; line-height: 60px; content: '\f10d'; font-family: "Font Awesome 5 Free"; color: #fff;
	background-color: #f27507; text-align: center; border-radius: 50%; font-size: 16px; }
.testimonials-style-1 .master-testimonial:before { position: absolute; top: -40px; left: 90px;
	width: 80px; height: 80px; border-radius: 50%; border: 1px solid #f27507; content: ''; z-index: 1; }
.testimonials-style-1 .master-testimonial .content-wrap { box-shadow: 0 5px 40px 0 rgba(30,34,40,0.1), inset 0 0 1px 0 rgba(30,34,40,0.5);  
	border-radius: 2px; padding: 85px 100px 73px; }
.testimonials-style-1 .master-testimonial .avatar { float: left; margin-right: 25px; }
.testimonials-style-1 .master-testimonial .info-wrap { float: left; display: flex; min-height: 70px; justify-content: center; 
	flex-direction: column; text-align: left; border-radius: 2px; }

/* style 2 */
.testimonials-style-2 .master-testimonial { padding-top: 115px; }
.testimonials-style-2 .master-testimonial:after { position: absolute; top: 0; left: 0;
	width: 60px; height: 60px; line-height: 60px; content: '\f10d'; font-family: "Font Awesome 5 Free"; color: #f27507;
	border: 1px solid #f27507; text-align: center; border-radius: 50%; font-size: 16px; }
.testimonials-style-2 .master-testimonial .avatar { float: left; margin-right: 30px;
	width: 80px; height: 80px; }
.testimonials-style-2 .master-testimonial .info-wrap { float: left; display: flex; min-height: 80px; justify-content: center; 
	flex-direction: column; text-align: left; }


/* style 3 */
.testimonials-style-3 .master-testimonial { margin-top: 40px; margin-bottom: 40px; }
.testimonials-style-3 .master-testimonial:after { position: absolute; top: -30px; left: 100px;
	width: 60px; height: 60px; line-height: 60px; content: '\f10d'; font-family: "Font Awesome 5 Free"; color: #f27507;
	background-color: #f2e1c2; text-align: center; border-radius: 50%; font-size: 16px; }
.testimonials-style-3 .master-testimonial:before { position: absolute; top: -40px; left: 90px;
	width: 80px; height: 80px; border-radius: 50%; border: 1px solid #f2e1c2; content: ''; z-index: 1; }
.testimonials-style-3 .master-testimonial .content-wrap { box-shadow: 0 5px 40px 0 rgba(30,34,40,0.1), inset 0 0 1px 0 rgba(30,34,40,0.5); 
	border-radius: 2px; padding: 85px 100px 73px; }
.testimonials-style-3 .master-testimonial .avatar { float: left; margin-right: 25px; }
.testimonials-style-3 .master-testimonial .info-wrap { float: left; display: flex; min-height: 70px; justify-content: center; 
	flex-direction: column; text-align: left; border-radius: 2px; }

/* style 4 */
.testimonials-style-4 .master-testimonial { padding-top: 115px; }
.testimonials-style-4 .master-testimonial:after { position: absolute; top: 0; left: 0;
	width: 60px; height: 60px; line-height: 60px; content: '\f10d'; font-family: "Font Awesome 5 Free"; color: #f27507;
	text-align: center; border-radius: 50%; font-size: 16px; background-color: #fafafa; }
.testimonials-style-4 .master-testimonial .avatar { float: left; margin-right: 30px;
	width: 80px; height: 80px; }
.testimonials-style-4 .master-testimonial .info-wrap { float: left; display: flex; min-height: 80px; justify-content: center; 
	flex-direction: column; text-align: left; }

@media screen and (max-width: 575px){.master-testimonial .comment { font-size: 18px; line-height: 30px; margin-bottom: 30px; }
	.testimonials-style-1 .master-testimonial:after { left: 40px; }
	.testimonials-style-1 .master-testimonial:before { left: 30px; }
	.testimonials-style-1 .master-testimonial .content-wrap {
		padding: 60px 30px 30px;
	}

	.testimonials-style-3 .master-testimonial:after { left: 40px; }
	.testimonials-style-3 .master-testimonial:before { left: 30px; }
	.testimonials-style-3 .master-testimonial .content-wrap {
		padding: 60px 30px 30px;
	}}
/* ----------------------------------------
	Testimonial Slider
---------------------------------------- */
.master-testimonial-slider .author-wrap { position: relative; }
.master-testimonial-slider .avatar { width: 80px; height: 80px; border-radius: 50%; background-color: #e7e7e7;
	overflow: hidden; position: absolute; top: 0; left: 0; }
.master-testimonial-slider .avatar img { width: 100%; height: auto; }
.master-testimonial-slider .info-wrap { padding-left: 100px; text-align: left; min-height: 80px;
	display: flex; align-items: center; flex-direction: column; justify-content: center; }
.master-testimonial-slider .name { font-size: 18px; line-height: 28px; margin-bottom: 2px; color: #7e8288; font-weight: 700; }
.master-testimonial-slider .role { font-size: 14px; margin-bottom: 18px; color: #999; }
.master-testimonial-slider .comment { font-size: 30px; color: #1e2228; }

.align-center .master-testimonial-slider .author-wrap { width: fit-content; margin: 0 auto; }
.align-right  .master-testimonial-slider .author-wrap { width: fit-content; margin: 0 0 0 auto; }

.master-testimonial-slider .slick-content { margin-bottom: 60px; }

/* Style 2 */
.testimonials-style-2 .master-testimonial-slider .author-wrap { padding-bottom: 80px; }
.testimonials-style-2 .master-testimonial-slider .avatar { position: relative; }
.testimonials-style-2 .master-testimonial-slider .info-wrap { padding: 0; position: absolute; top: 90px; left: 50%;
	transform: translateX(-50%); }
.testimonials-style-2.align-center .master-testimonial-slider .avatar { margin: 0 auto; }
.testimonials-style-2.align-right .master-testimonial-slider .avatar { margin: 0 0 0 auto; }
.testimonials-style-2 .master-testimonial-slider .slick-slider-nav  { max-width: 270px; margin: 0 auto; }
.testimonials-style-2 .master-testimonial-slider .slick-slider-nav .slick-slide { padding: 0 10px; opacity: 0.4; }
.testimonials-style-2 .master-testimonial-slider .slick-slider-nav .slick-slide .info-wrap { opacity: 0; transition: 0.3s; 
	width: max-content; }
.testimonials-style-2 .master-testimonial-slider .slick-slider-nav .slick-slide.slick-center { opacity: 1; }
.testimonials-style-2 .master-testimonial-slider .slick-slider-nav .slick-slide.slick-center .info-wrap { opacity: 1; }

@media screen and (max-width: 575px){.master-testimonial-slider .comment { font-size: 18px; line-height: 30px; }}

/* ----------------------------------------
	Team Slider
---------------------------------------- */
.master-team-slider { display: flex; flex-direction: row; }
.master-team-slider .slick-content { width: 60%; }
.master-team-slider .slick-nav { width: 900px; }

.master-team-slider .slick-content .inner { display: flex; flex-direction: row; text-align: left;
	align-items: center; }
.master-team-slider .slick-content .content-wrap { max-width: 45%; padding-right: 50px; }
.master-team-slider .slick-content .avatar { max-width: 370px; }
.master-team-slider .slick-content .position { font-size: 14px; line-height: 19px; font-weight: 600; letter-spacing: 0.15em;
	text-transform: uppercase; color: #f27507; margin-bottom: 22px; }
.master-team-slider .slick-content .name { font-size: 36px; line-height: 56px; font-weight: 700; margin-bottom: 46px; }
.master-team-slider .slick-content .desc p { margin-bottom: 0; }

.master-team-slider .slick-nav .slick-nav-item { opacity: 0.1; }
.master-team-slider .slick-nav .slick-nav-item.slick-current { opacity: 0.5; }


.master-team-slider .slick-nav { margin-left: 130px; }
.master-team-slider .slick-nav .slick-nav-item .thumb { margin-right: 30px; }


.master-team-slider.master-slick-slider .slick-arrow { top: unset; bottom: -120px; left: 0; }
.master-team-slider.master-slick-slider .slick-arrow.slick-next { left: 75px; }

@media screen and (max-width: 1024px){.master-team-slider .slick-content { width: 100%; }
	.master-slick-slider .slick-dots { max-width: 100% !important; margin: 40px 0 0 !important; }}

@media screen and (max-width: 769px){.master-team-slider .slick-content .inner { margin-left: 15px; margin-right: 15px; }}

@media screen and (max-width: 575px){.master-team-slider .slick-content .inner { flex-direction: column-reverse; }
	.master-team-slider .slick-content .content-wrap { max-width: 100%; padding-right: 0; }
	.master-team-slider .slick-content .avatar { margin-bottom: 30px; }
	.master-team-slider .slick-content .name { font-size: 20px; line-height: 26px; margin-bottom: 20px; }}

/* ----------------------------------------
	Slick Slider
---------------------------------------- */
.master-slick-slider .slick-arrow { width: 80px; height: 80px; line-height: 80px; font-size: 16px;
	border-radius: 50%; padding: 0; text-indent: -9999px;
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 999; }
.master-slick-slider .slick-arrow:after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
	line-height: inherit; font-size: inherit; font-family: 'Font Awesome 5 Free'; text-indent: 0px;
	content: "\f0d9"; color: #fff; text-align: center; transition: 0.3s; } 
.master-slick-slider .slick-arrow.slick-next:after { content: '\f0da'; padding-left: 2px; }
.master-slick-slider .slick-arrow.slick-prev:after { padding-right: 2px; }
.master-slick-slider .slick-arrow.slick-prev { left: 0px; }
.master-slick-slider .slick-arrow.slick-next { right: 0px; }

.arrow-small .master-slick-slider .slick-arrow { width: 60px; height: 60px; line-height: 60px; font-size: 16px; }

.arrow-style-2 .master-slick-slider .slick-arrow:after { content: '\f060'; }
.arrow-style-2 .master-slick-slider .slick-arrow.slick-next:after { content: '\f061'; }

.master-slick-slider .slick-dots { width: 100vw; max-width: 1170px; text-align: center; margin-top: 70px; }
.master-slick-slider .slick-dots > li { list-style: none; display: inline-block; margin: 0 5px; }
.master-slick-slider .slick-dots > li > button { display: inline-block; width: 16px; height: 16px; 
	border-radius: 50%; border: 1px solid transparent; position: relative; padding: 0; background-color: transparent;
	text-indent: -9999px; transition: 0.3s; }
.master-slick-slider .slick-dots > li > button:after { position: absolute; top: 3px; left: 3px; width: 8px; height: 8px;
	content: ''; border-radius: 50%; background-color: #f2e1c2; transition: 0.3s; }
.master-slick-slider .slick-dots > li.slick-active > button { border: 1px solid #f2e1c2; }
.master-slick-slider .slick-dots > li.slick-active > button:after { background-color: #f27507; }

@media screen and (max-width: 575px){.master-slick-slider .slick-arrow { width: 60px; height: 60px; line-height: 60px; font-size: 16px; }}

/* ----------------------------------------
	Timeline
---------------------------------------- */
.master-timeline { position: relative; }
.master-timeline:after { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%;
	background-color: #f2e1c2; z-index: -1; content: ''; }
.master-timeline .timeline-item { position: relative; margin-bottom: 200px; }
.master-timeline .timeline-item:last-child { margin-bottom: 0; }
.master-timeline .timeline-number { position: absolute; top: 0; left: 50%; transform: translateX(-50%);
	height: 100%; }
.master-timeline .timeline-number .number { position: absolute; top: 100px; left: 50%; transform: translateX(-50%);
	width: 85px; height: 85px; border-radius: 50%; font-size: 16px; line-height: 85px; font-weight: 600;
	text-align: center; background-color: rgba(54,61,72,0.2); color: #f27507; z-index: 1; }
.master-timeline .timeline-number .number:after,
.master-timeline .timeline-number .number:before { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	content: ''; background-color: #363d48; border-radius: 50%; z-index: -1; }
.master-timeline .timeline-number .number:after { width: 64px; height: 65px; opacity: 0.4; }
.master-timeline .timeline-number .number:before { width: 50px; height: 50px; }

.master-timeline .inner { display: flex; flex-direction: row-reverse; justify-content: space-between; }
.master-timeline .inner .timeline-image,
.master-timeline .inner .timeline-content { width: 50%; }
.master-timeline .inner .timeline-image .image { overflow: hidden; }
.master-timeline .timeline-item.image-left .inner { flex-direction: row; }
.master-timeline .timeline-item.image-left .inner .timeline-image { margin-right: 115px; }
.master-timeline .timeline-item.image-left .inner .timeline-content { margin-left: 115px; }
.master-timeline .timeline-item.image-right .inner { flex-direction: row-reverse; }
.master-timeline .timeline-item.image-right .inner .timeline-image { margin-left: 115px; }
.master-timeline .timeline-item.image-right .inner .timeline-content { margin-right: 115px; }

@media screen and (max-width: 991px){.master-timeline .timeline-number,
	.master-timeline:after { left: 42px; transform: translateX(0); }
	.master-timeline .timeline-item { margin-bottom: 100px; padding-left: 150px; }
	.master-timeline .timeline-item:last-child { margin-bottom: 0; }
	.master-timeline .timeline-item .inner { flex-direction: column !important; align-items: flex-start;
		justify-content: flex-start; }
	.master-timeline .inner .timeline-image, 
	.master-timeline .inner .timeline-image img,
	.master-timeline .inner .timeline-content { width: 100%; }
	.master-timeline .timeline-item .inner .timeline-image { margin: 0 0 60px !important; }
	.master-timeline .inner .timeline-content { margin: 0 !important; }}

@media screen and (max-width: 575px){.master-timeline .timeline-number,
	.master-timeline:after { left: 15px; transform: translateX(0); }
	.master-timeline .timeline-number .number { width: 30px; height: 30px; line-height: 30px; }
	.master-timeline .timeline-item { margin-bottom: 60px; padding-left: 70px; }}


/* ----------------------------------------
	Project Widget 
---------------------------------------- */
.master-project-widget .widget-title { font-size: 20px; line-height: 1.3; margin-bottom: 29px; }
.master-project-widget .project-widget { border-bottom: 1px solid #e7e7e7; padding-bottom: 22px; margin-top: 45px; }
.master-project-widget .project-widget:first-child { margin-top: 0 !important; }
.master-project-widget .project-widget:last-child { border-bottom: none; padding-bottom: 0; }

/* widget information */
.master-project-widget .widget-info .info-wrap { display: flex; justify-content: space-between;
	font-size: 18px; margin-bottom: 18px; }
.master-project-widget .widget-info .info-wrap .text1 { font-weight: 500; }
.master-project-widget .widget-info .info-wrap:last-child { margin-bottom: 0 !important; }

/* widget related project */
.master-project-widget .widget-project-related .project-related { position: relative; margin-bottom: 35px; }
.master-project-widget .widget-project-related .project-related:last-child { margin-bottom: 0 !important; }
.master-project-widget .widget-project-related .thumb { position: absolute; top: 0; left: 0; width: 70px;
 	border-radius: 5px; overflow: hidden; }
.master-project-widget .widget-project-related .thumb img { width: 100%; height: auto; } 
.master-project-widget .widget-project-related .text-wrap { padding-left: 85px; min-height: 70px; }
.master-project-widget .widget-project-related .project-title { font-size: 16px; line-height: 1.3; margin-bottom: 11px; }
.master-project-widget .widget-project-related .project-title a { color: inherit; }
.master-project-widget .widget-project-related .project-title:hover { color: #f27507; }
.master-project-widget .widget-project-related .project-cat { font-size: 15px; color: #777; }
.master-project-widget .widget-project-related .project-cat a { color: inherit; }
.master-project-widget .widget-project-related .project-cat:hover { color: #f27507; }

/* widget socials */
.master-project-widget .widget-socials a { width: 50px; height: 50px; text-align: center; line-height: 50px;
	color: #959595; border-radius: 50%; border: 1px solid #959595; transition: 0.3s; display: inline-block; margin-right: 15px; }
.master-project-widget .widget-socials a:hover { color: #fff; background-color: #f27507; border-color: #f27507; }

/* ----------------------------------------
	Keyframes 
---------------------------------------- */
@keyframes hide-show {
    0% {
        opacity: 0;
    }
    66.6% {
        opacity: 0;
    }
    66.7% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes reveal-from-left {
    0% {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
    66.6% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    66.7% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
}

@keyframes reveal-from-right {
    0% {
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }

    66.6% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    66.7% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
}.elementor-widget-heading .elementor-heading-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-button .elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-widget-image-box .elementor-image-box-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-image-box .elementor-image-box-description{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-box.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon-box.elementor-view-framed .elementor-icon, .elementor-widget-icon-box.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon-box .elementor-icon-box-title{color:var( --e-global-color-primary );}.elementor-widget-icon-box .elementor-icon-box-title, .elementor-widget-icon-box .elementor-icon-box-title a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-icon-box .elementor-icon-box-description{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-star-rating .elementor-star-rating__title{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-image-gallery .gallery-item .gallery-caption{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-counter .elementor-counter-number-wrapper{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-counter .elementor-counter-title{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-progress .elementor-progress-wrapper .elementor-progress-bar{background-color:var( --e-global-color-primary );}.elementor-widget-progress .elementor-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-testimonial .elementor-testimonial-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-testimonial .elementor-testimonial-name{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-testimonial .elementor-testimonial-job{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-tabs .elementor-tab-title, .elementor-widget-tabs .elementor-tab-title a{color:var( --e-global-color-primary );}.elementor-widget-tabs .elementor-tab-title.elementor-active,
					 .elementor-widget-tabs .elementor-tab-title.elementor-active a{color:var( --e-global-color-accent );}.elementor-widget-tabs .elementor-tab-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-tabs .elementor-tab-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-accordion .elementor-accordion-icon, .elementor-widget-accordion .elementor-accordion-title{color:var( --e-global-color-primary );}.elementor-widget-accordion .elementor-accordion-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-accordion .elementor-active .elementor-accordion-icon, .elementor-widget-accordion .elementor-active .elementor-accordion-title{color:var( --e-global-color-accent );}.elementor-widget-accordion .elementor-active .elementor-accordion-icon svg{fill:var( --e-global-color-accent );}.elementor-widget-accordion .elementor-accordion-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-accordion .elementor-tab-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-toggle .elementor-toggle-title, .elementor-widget-toggle .elementor-toggle-icon{color:var( --e-global-color-primary );}.elementor-widget-toggle .elementor-toggle-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-toggle .elementor-tab-title.elementor-active a, .elementor-widget-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon{color:var( --e-global-color-accent );}.elementor-widget-toggle .elementor-toggle-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-toggle .elementor-tab-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-alert .elementor-alert-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-alert .elementor-alert-description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-path{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-3262 .elementor-element.elementor-element-282d5a8 .elementor-spacer-inner{height:200px;}.elementor-3262 .elementor-element.elementor-element-229bfc2 .master-heading .main-heading{color:#F7F5F9;margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-229bfc2 .master-heading h2{font-size:150px;font-weight:700;line-height:130px;}.elementor-3262 .elementor-element.elementor-element-229bfc2{z-index:1;top:100px;}body:not(.rtl) .elementor-3262 .elementor-element.elementor-element-229bfc2{left:39%;}body.rtl .elementor-3262 .elementor-element.elementor-element-229bfc2{right:39%;}.elementor-3262 .elementor-element.elementor-element-9fd3e64 .master-timeline .timeline-image .image{border-radius:2px 2px 2px 2px;box-shadow:0px 45px 150px 0px rgba(30, 34.00000000000001, 40, 0.2);}.elementor-3262 .elementor-element.elementor-element-9fd3e64{z-index:2;}.elementor-3262 .elementor-element.elementor-element-1124d16 .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-bb80977 .master-heading .pre-heading{margin-bottom:18px;}.elementor-3262 .elementor-element.elementor-element-bb80977 .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-0603d15 .elementor-spacer-inner{height:90px;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .flickity-button.previous{left:17.709%;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .flickity-button.next{right:17.709%;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .master-project{border-radius:2px 2px 2px 2px;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .master-link .icon {font-size:16px;}.elementor-3262 .elementor-element.elementor-element-4f3bcb9 > .elementor-container{max-width:1400px;}.elementor-3262 .elementor-element.elementor-element-502bc2b .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-d80e42b .master-heading .pre-heading{margin-bottom:18px;}.elementor-3262 .elementor-element.elementor-element-d80e42b .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-0073cfa .elementor-spacer-inner{height:90px;}.elementor-3262 .elementor-element.elementor-element-ed8ae22 > .elementor-container{max-width:1400px;}.elementor-3262 .elementor-element.elementor-element-bc07266 .master-icon{font-size:80px;}.elementor-3262 .elementor-element.elementor-element-bc07266 .master-icon svg{width:80px;height:80px;}.elementor-3262 .elementor-element.elementor-element-bc07266 .headline-2{margin-bottom:0px;font-size:24px;line-height:38px;}.elementor-3262 .elementor-element.elementor-element-bc07266 > .elementor-widget-container{padding:0100px 65px 92px 65px;background-color:#FAFAFA;border-radius:2px 2px 2px 2px;}.elementor-3262 .elementor-element.elementor-element-fd75e25 .master-icon{font-size:80px;}.elementor-3262 .elementor-element.elementor-element-fd75e25 .master-icon svg{width:80px;height:80px;}.elementor-3262 .elementor-element.elementor-element-fd75e25 .headline-2{margin-bottom:0px;font-size:24px;line-height:38px;}.elementor-3262 .elementor-element.elementor-element-fd75e25 > .elementor-widget-container{padding:0100px 65px 92px 65px;background-color:#FAFAFA;border-radius:2px 2px 2px 2px;}.elementor-3262 .elementor-element.elementor-element-af6a42a .master-icon{font-size:80px;}.elementor-3262 .elementor-element.elementor-element-af6a42a .master-icon svg{width:80px;height:80px;}.elementor-3262 .elementor-element.elementor-element-af6a42a .headline-2{margin-bottom:0px;font-size:24px;line-height:38px;}.elementor-3262 .elementor-element.elementor-element-af6a42a > .elementor-widget-container{padding:0100px 65px 92px 65px;background-color:#FAFAFA;border-radius:2px 2px 2px 2px;}.elementor-3262 .elementor-element.elementor-element-dd4ccff .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-f957a07 .master-heading .pre-heading{margin-bottom:14px;}.elementor-3262 .elementor-element.elementor-element-f957a07 .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-6547ef8 .elementor-spacer-inner{height:90px;}.elementor-3262 .elementor-element.elementor-element-415367b .master-team .content-wrap{text-align:center;}.elementor-3262 .elementor-element.elementor-element-415367b .master-link .icon {font-size:16px;}.elementor-3262 .elementor-element.elementor-element-dd069d6 .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-9eba21d > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}.elementor-3262 .elementor-element.elementor-element-e048034 > .elementor-element-populated{padding:0% 016.667% 0% 0%;}.elementor-3262 .elementor-element.elementor-element-b09cb79 .master-heading .pre-heading{margin-bottom:17px;}.elementor-3262 .elementor-element.elementor-element-b09cb79 .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-bf9b31f .elementor-spacer-inner{height:90px;}.elementor-3262 .elementor-element.elementor-element-ec47124 .progress{background-color:transparent;background-image:linear-gradient(90deg, #F27507 0%, #F2AD07 100%);}.elementor-3262 .elementor-element.elementor-element-ec47124 > .elementor-widget-container{margin:0px 0px 060px 0px;}.elementor-3262 .elementor-element.elementor-element-12b681a .progress{background-color:transparent;background-image:linear-gradient(90deg, #F27507 0%, #F2AD07 100%);}.elementor-3262 .elementor-element.elementor-element-12b681a > .elementor-widget-container{margin:0px 0px 060px 0px;}.elementor-3262 .elementor-element.elementor-element-2a41e3b .progress{background-color:transparent;background-image:linear-gradient(90deg, #F27507 0%, #F2AD07 100%);}.elementor-3262 .elementor-element.elementor-element-2a41e3b > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-3262 .elementor-element.elementor-element-5146002 .master-fancy-image img{border-radius:2px 2px 2px 2px;box-shadow:0px 45px 150px 0px rgba(30, 34.00000000000001, 40, 0.1);}.elementor-3262 .elementor-element.elementor-element-731c79b{padding:0% 016.667% 0% 16.667%;}.elementor-3262 .elementor-element.elementor-element-1178186 .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-edc5775 .master-heading .pre-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-cf60d66 .elementor-spacer-inner{height:90px;}.elementor-3262 .elementor-element.elementor-element-38070c3 .master-testimonial-slider .content-wrap{padding:0px 15px 0px 15px;}.elementor-3262 .elementor-element.elementor-element-8c1d80f .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-0294248:not(.elementor-motion-effects-element-type-background), .elementor-3262 .elementor-element.elementor-element-0294248 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(https://ninzio.com/quper/wp-content/uploads/2020/10/bg-09.jpg);background-repeat:no-repeat;background-size:cover;}.elementor-3262 .elementor-element.elementor-element-0294248, .elementor-3262 .elementor-element.elementor-element-0294248 > .elementor-background-overlay{border-radius:3px 3px 3px 3px;}.elementor-3262 .elementor-element.elementor-element-0294248{box-shadow:0px 45px 150px 0px rgba(30, 34.00000000000001, 40, 0.2);transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:10% 26% 11% 26%;}.elementor-3262 .elementor-element.elementor-element-0294248 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-3262 .elementor-element.elementor-element-68d066f .master-heading .main-heading{color:#FFFFFF;margin-bottom:25px;}.elementor-3262 .elementor-element.elementor-element-68d066f .master-heading .sub-heading{color:#FFFFFF;margin-bottom:90px;}.elementor-3262 .elementor-element.elementor-element-3e24708 .mc4wp-form-fields{max-width:560px;}.elementor-3262 .elementor-element.elementor-element-c69b878 .elementor-spacer-inner{height:150px;}.elementor-3262 .elementor-element.elementor-element-c1cae24 .elementor-spacer-inner{height:150px;}body.elementor-page-3262 #featured-title{display:none;}body.elementor-page-3262 #page #main-content{padding-top:0px;padding-bottom:0px;}body.elementor-page-3262 #footer{display:block;}body.elementor-page-3262 #bottom{display:block;border-style:solid;border-width:1px 0px 0px 0px;}@media (max-width:1024px){.elementor-3262 .elementor-element.elementor-element-282d5a8 .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-1124d16 .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .flickity-button.previous{left:3%;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .flickity-button.next{right:3%;}.elementor-3262 .elementor-element.elementor-element-502bc2b .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-dd4ccff .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-dd069d6 .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-731c79b{padding:0px 0px 0px 0px;}.elementor-3262 .elementor-element.elementor-element-1178186 .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-cf60d66 .elementor-spacer-inner{height:40px;}.elementor-3262 .elementor-element.elementor-element-8c1d80f .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-0294248{padding:10% 5% 10% 5%;}.elementor-3262 .elementor-element.elementor-element-c69b878 .elementor-spacer-inner{height:100px;}.elementor-3262 .elementor-element.elementor-element-c1cae24 .elementor-spacer-inner{height:100px;}}@media (max-width:767px){.elementor-3262 .elementor-element.elementor-element-282d5a8 .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-229bfc2 .master-heading .main-heading{margin-bottom:20px;}.elementor-3262 .elementor-element.elementor-element-1124d16 .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-bb80977 .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-0603d15 .elementor-spacer-inner{height:40px;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .flickity-button.previous{left:0px;}.elementor-3262 .elementor-element.elementor-element-5fc2ea3 .flickity-button.next{right:0px;}.elementor-3262 .elementor-element.elementor-element-502bc2b .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-d80e42b .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-0073cfa .elementor-spacer-inner{height:40px;}.elementor-3262 .elementor-element.elementor-element-bc07266 > .elementor-widget-container{margin:0px 0px 030px 0px;}.elementor-3262 .elementor-element.elementor-element-fd75e25 > .elementor-widget-container{margin:0px 0px 030px 0px;}.elementor-3262 .elementor-element.elementor-element-dd4ccff .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-f957a07 .master-heading .main-heading{margin-bottom:0px;}.elementor-3262 .elementor-element.elementor-element-6547ef8 .elementor-spacer-inner{height:40px;}.elementor-3262 .elementor-element.elementor-element-dd069d6 .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-e048034 > .elementor-element-populated{padding:0px 015px 0px 015px;}.elementor-3262 .elementor-element.elementor-element-b09cb79 .master-heading .main-heading{margin-bottom:20px;}.elementor-3262 .elementor-element.elementor-element-2a41e3b > .elementor-widget-container{margin:0px 0px 060px 0px;}.elementor-3262 .elementor-element.elementor-element-1178186 .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-8c1d80f .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-68d066f .master-heading .main-heading{margin-bottom:20px;}.elementor-3262 .elementor-element.elementor-element-68d066f .master-heading .sub-heading{margin-bottom:40px;}.elementor-3262 .elementor-element.elementor-element-c69b878 .elementor-spacer-inner{height:50px;}.elementor-3262 .elementor-element.elementor-element-c1cae24 .elementor-spacer-inner{height:50px;}}@font-face {
  font-family: 'quper-icons';
  src:  url(/wp-content/plugins/masterlayer-addons-for-elementor/assets/fonts/quper-icons/quper-icons.eot);
  src:  url(/wp-content/plugins/masterlayer-addons-for-elementor/assets/fonts/quper-icons/quper-icons.eot#iefix) format('embedded-opentype'),
    url(/wp-content/plugins/masterlayer-addons-for-elementor/assets/fonts/quper-icons/quper-icons.ttf) format('truetype'),
    url(/wp-content/plugins/masterlayer-addons-for-elementor/assets/fonts/quper-icons/quper-icons.woff) format('woff'),
    url(/s/img/wp-content/plugins/masterlayer-addons-for-elementor/assets/fonts/quper-icons/quper-icons.svg#quper-icons) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="qico-"], [class*=" qico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'quper-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.qico-vacuum-cleaner:before {
  content: "\e900";
}
.qico-helmet:before {
  content: "\e901";
}
.qico-safety-glasses:before {
  content: "\e902";
}
.qico-barbecue:before {
  content: "\e903";
}
.qico-labor-day:before {
  content: "\e904";
}
.qico-cleaning:before {
  content: "\e905";
}
.qico-shovel:before {
  content: "\e906";
}
.qico-pipe:before {
  content: "\e907";
}
.qico-traffic-cone:before {
  content: "\e908";
}
.qico-crane:before {
  content: "\e909";
}
.qico-paint-roller:before {
  content: "\e90a";
}
.qico-spade:before {
  content: "\e90b";
}
.qico-labor-day1:before {
  content: "\e90c";
}
.qico-toolbox:before {
  content: "\e90d";
}
.qico-drill:before {
  content: "\e90e";
}
.qico-ladder:before {
  content: "\e90f";
}
.qico-barrier:before {
  content: "\e910";
}
.qico-labor-day2:before {
  content: "\e911";
}
.qico-settings:before {
  content: "\e912";
}
.qico-screwdriver:before {
  content: "\e913";
}
.qico-nut:before {
  content: "\e914";
}
.qico-wrench:before {
  content: "\e915";
}
.qico-labor-day3:before {
  content: "\e916";
}
.qico-plunger:before {
  content: "\e917";
}
.qico-rulers:before {
  content: "\e918";
}
.qico-tape:before {
  content: "\e919";
}
.qico-brick-wall:before {
  content: "\e91a";
}
.qico-axe:before {
  content: "\e91b";
}
.qico-working-hours:before {
  content: "\e91c";
}
.qico-labor-day4:before {
  content: "\e91d";
}
.qico-wheelbarrow:before {
  content: "\e91e";
}
.qico-labor-day5:before {
  content: "\e91f";
}
.qico-helmet1:before {
  content: "\e920";
}
.qico-balloons:before {
  content: "\e921";
}
.qico-circular-saw:before {
  content: "\e922";
}
.qico-hammer:before {
  content: "\e923";
}
.qico-screw:before {
  content: "\e924";
}
.qico-cutter:before {
  content: "\e925";
}
.qico-high-visibility-vest:before {
  content: "\e926";
}
.qico-tool:before {
  content: "\e927";
}
.qico-nails:before {
  content: "\e928";
}
.qico-brush:before {
  content: "\e929";
}
.qico-jackhammer:before {
  content: "\e92a";
}
.qico-saw-machine:before {
  content: "\e92b";
}
.qico-glove:before {
  content: "\e92c";
}
.qico-labor-day6:before {
  content: "\e92d";
}
.qico-basket:before {
  content: "\e92e";
}
.qico-saw:before {
  content: "\e92f";
}
.qico-labor-day7:before {
  content: "\e930";
}
.qico-pencil:before {
  content: "\e931";
}
.qico-paypal:before {
  content: "\e932";
}
.qico-cloud-computing:before {
  content: "\e933";
}
.qico-worldwide:before {
  content: "\e934";
}
.qico-rss:before {
  content: "\e935";
}
.qico-twitter:before {
  content: "\e936";
}
.qico-hashtag:before {
  content: "\e937";
}
.qico-pin:before {
  content: "\e938";
}
.qico-heart:before {
  content: "\e939";
}
.qico-xing:before {
  content: "\e93a";
}
.qico-star:before {
  content: "\e93b";
}
.qico-windows:before {
  content: "\e93c";
}
.qico-network:before {
  content: "\e93d";
}
.qico-facebook:before {
  content: "\e93e";
}
.qico-instagram:before {
  content: "\e93f";
}
.qico-linkedin:before {
  content: "\e940";
}
.qico-like:before {
  content: "\e941";
}
.qico-dislike:before {
  content: "\e942";
}
.qico-youtube:before {
  content: "\e943";
}
.qico-messenger:before {
  content: "\e944";
}
.qico-telegram:before {
  content: "\e945";
}
.qico-chat:before {
  content: "\e946";
}
.qico-happy:before {
  content: "\e947";
}
.qico-sad:before {
  content: "\e948";
}
.qico-file:before {
  content: "\e949";
}
.qico-file-1:before {
  content: "\e94a";
}
.qico-playstore:before {
  content: "\e94b";
}
.qico-whatsapp:before {
  content: "\e94c";
}
.qico-skype:before {
  content: "\e94d";
}
.qico-retweet:before {
  content: "\e94e";
}
.qico-chat-1:before {
  content: "\e94f";
}
.qico-photo-camera:before {
  content: "\e950";
}
.qico-network-1:before {
  content: "\e951";
}
.qico-image:before {
  content: "\e952";
}
.qico-myspace:before {
  content: "\e953";
}
.qico-user:before {
  content: "\e954";
}
.qico-network-2:before {
  content: "\e955";
}
.qico-information:before {
  content: "\e956";
}
.qico-like-1:before {
  content: "\e957";
}
.qico-happy-1:before {
  content: "\e958";
}
.qico-deviantart:before {
  content: "\e959";
}
.qico-vimeo:before {
  content: "\e95a";
}
.qico-behance:before {
  content: "\e95b";
}
.qico-email:before {
  content: "\e95c";
}
.qico-flickr:before {
  content: "\e95d";
}
.qico-suitcase:before {
  content: "\e95e";
}
.qico-network-3:before {
  content: "\e95f";
}
.qico-chat-2:before {
  content: "\e960";
}
.qico-notification:before {
  content: "\e961";
}
.qico-agenda:before {
  content: "\e962";
}
.qico-megaphone:before {
  content: "\e963";
}
.qico-percentage:before {
  content: "\e964";
}
.qico-oil:before {
  content: "\e965";
}
.qico-bar-chart-1:before {
  content: "\e966";
}
.qico-abacus:before {
  content: "\e967";
}
.qico-book:before {
  content: "\e968";
}
.qico-archives:before {
  content: "\e969";
}
.qico-pie-chart:before {
  content: "\e96a";
}
.qico-analytics-2:before {
  content: "\e96b";
}
.qico-fluctuation:before {
  content: "\e96c";
}
.qico-calculator:before {
  content: "\e96d";
}
.qico-contract:before {
  content: "\e96e";
}
.qico-buy:before {
  content: "\e96f";
}
.qico-auction:before {
  content: "\e970";
}
.qico-point-of-service:before {
  content: "\e971";
}
.qico-analytics-1:before {
  content: "\e972";
}
.qico-sell:before {
  content: "\e973";
}
.qico-target:before {
  content: "\e974";
}
.qico-newspaper:before {
  content: "\e975";
}
.qico-donation:before {
  content: "\e976";
}
.qico-loss-1:before {
  content: "\e977";
}
.qico-bank:before {
  content: "\e978";
}
.qico-cheque:before {
  content: "\e979";
}
.qico-safebox:before {
  content: "\e97a";
}
.qico-money-2:before {
  content: "\e97b";
}
.qico-payment-method:before {
  content: "\e97c";
}
.qico-id-card:before {
  content: "\e97d";
}
.qico-purse:before {
  content: "\e97e";
}
.qico-bar-chart:before {
  content: "\e97f";
}
.qico-chat1:before {
  content: "\e980";
}
.qico-businessman-1:before {
  content: "\e981";
}
.qico-businessman:before {
  content: "\e982";
}
.qico-presentation:before {
  content: "\e983";
}
.qico-gold-ingot:before {
  content: "\e984";
}
.qico-profits:before {
  content: "\e985";
}
.qico-balance:before {
  content: "\e986";
}
.qico-money-bag:before {
  content: "\e987";
}
.qico-wallet:before {
  content: "\e988";
}
.qico-loss:before {
  content: "\e989";
}
.qico-shield:before {
  content: "\e98a";
}
.qico-atm:before {
  content: "\e98b";
}
.qico-money-1:before {
  content: "\e98c";
}
.qico-analytics:before {
  content: "\e98d";
}
.qico-briefcase:before {
  content: "\e98e";
}
.qico-search:before {
  content: "\e98f";
}
.qico-levels:before {
  content: "\e990";
}
.qico-pin-code:before {
  content: "\e991";
}
.qico-time-is-money:before {
  content: "\e992";
}
.qico-withdraw:before {
  content: "\e993";
}
.qico-money:before {
  content: "\e994";
}
.qico-exchange:before {
  content: "\e995";
}
.qico-picture:before {
  content: "\e996";
}
.qico-art:before {
  content: "\e997";
}
.qico-paint:before {
  content: "\e998";
}
.qico-piano:before {
  content: "\e999";
}
.qico-roll:before {
  content: "\e99a";
}
.qico-easel:before {
  content: "\e99b";
}
.qico-ceramics:before {
  content: "\e99c";
}
.qico-magician:before {
  content: "\e99d";
}
.qico-ink:before {
  content: "\e99e";
}
.qico-turntable:before {
  content: "\e99f";
}
.qico-graffiti:before {
  content: "\e9a0";
}
.qico-camera:before {
  content: "\e9a1";
}
.qico-palette:before {
  content: "\e9a2";
}
.qico-artist:before {
  content: "\e9a3";
}
.qico-crayons:before {
  content: "\e9a4";
}
.qico-column:before {
  content: "\e9a5";
}
.qico-rules:before {
  content: "\e9a6";
}
.qico-graphic-design:before {
  content: "\e9a7";
}
.qico-pen-tool:before {
  content: "\e9a8";
}
.qico-idea:before {
  content: "\e9a9";
}
.qico-theater:before {
  content: "\e9aa";
}
.qico-paper-cut:before {
  content: "\e9ab";
}
.qico-book1:before {
  content: "\e9ac";
}
.qico-singer:before {
  content: "\e9ad";
}
.qico-circus:before {
  content: "\e9ae";
}
.qico-pantone:before {
  content: "\e9af";
}
.qico-vector:before {
  content: "\e9b0";
}
.qico-color-wheel:before {
  content: "\e9b1";
}
.qico-gallery:before {
  content: "\e9b2";
}
.qico-Watercolor:before {
  content: "\e9b3";
}
.qico-origami:before {
  content: "\e9b4";
}
.qico-technical:before {
  content: "\e9b5";
}
.qico-make-up:before {
  content: "\e9b6";
}
.qico-cinema:before {
  content: "\e9b7";
}
.qico-modern-architecture:before {
  content: "\e9b8";
}
.qico-ice-skating:before {
  content: "\e9b9";
}
.qico-guitar-music:before {
  content: "\e9ba";
}
.qico-graphic-tablet:before {
  content: "\e9bb";
}
.qico-typewriter:before {
  content: "\e9bc";
}
.qico-clapperboard:before {
  content: "\e9bd";
}
.qico-art1:before {
  content: "\e9be";
}
.qico-blueprint:before {
  content: "\e9bf";
}
.qico-cooking:before {
  content: "\e9c0";
}
.qico-sketchbook:before {
  content: "\e9c1";
}
.qico-draw:before {
  content: "\e9c2";
}
.qico-artist1:before {
  content: "\e9c3";
}
.qico-bohemian:before {
  content: "\e9c4";
}
.qico-mortarboard:before {
  content: "\e9c5";
}
.qico-Jazz:before {
  content: "\e9c6";
}
.qico-ink1:before {
  content: "\e9c7";
}
.qico-ring:before {
  content: "\e9c8";
}
.qico-bust:before {
  content: "\e9c9";
}
.qico-desk:before {
  content: "\e9ca";
}
.qico-write:before {
  content: "\e9cb";
}
.qico-tickets:before {
  content: "\e9cc";
}
.qico-airbrush:before {
  content: "\e9cd";
}
.qico-oil-paint:before {
  content: "\e9ce";
}
.qico-camera1:before {
  content: "\e9cf";
}
.qico-theater1:before {
  content: "\e9d0";
}
.qico-scraper-1:before {
  content: "\e9d1";
}
.qico-wrench-1:before {
  content: "\e9d2";
}
.qico-wrench1:before {
  content: "\e9d3";
}
.qico-wood-cutter:before {
  content: "\e9d4";
}
.qico-axe1:before {
  content: "\e9d5";
}
.qico-wall:before {
  content: "\e9d6";
}
.qico-level-1:before {
  content: "\e9d7";
}
.qico-wheelbarrow-1:before {
  content: "\e9d8";
}
.qico-wheelbarrow1:before {
  content: "\e9d9";
}
.qico-tiles-1:before {
  content: "\e9da";
}
.qico-tiles:before {
  content: "\e9db";
}
.qico-measuring-tape:before {
  content: "\e9dc";
}
.qico-level:before {
  content: "\e9dd";
}
.qico-shovel-3:before {
  content: "\e9de";
}
.qico-shovel-2:before {
  content: "\e9df";
}
.qico-shovel-1:before {
  content: "\e9e0";
}
.qico-shovel1:before {
  content: "\e9e1";
}
.qico-screwdriver-1:before {
  content: "\e9e2";
}
.qico-screwdriver1:before {
  content: "\e9e3";
}
.qico-screw1:before {
  content: "\e9e4";
}
.qico-trowel-1:before {
  content: "\e9e5";
}
.qico-trowel:before {
  content: "\e9e6";
}
.qico-scraper:before {
  content: "\e9e7";
}
.qico-saw-1:before {
  content: "\e9e8";
}
.qico-set-square:before {
  content: "\e9e9";
}
.qico-jackhammer1:before {
  content: "\e9ea";
}
.qico-gas-mask:before {
  content: "\e9eb";
}
.qico-vest:before {
  content: "\e9ec";
}
.qico-safety-glasses-1:before {
  content: "\e9ed";
}
.qico-safety-glasses1:before {
  content: "\e9ee";
}
.qico-saw1:before {
  content: "\e9ef";
}
.qico-paint-roller-1:before {
  content: "\e9f0";
}
.qico-paint-roller1:before {
  content: "\e9f1";
}
.qico-paint-bucket:before {
  content: "\e9f2";
}
.qico-paint-brush:before {
  content: "\e9f3";
}
.qico-oil-pump:before {
  content: "\e9f4";
}
.qico-tools:before {
  content: "\e9f5";
}
.qico-metre:before {
  content: "\e9f6";
}
.qico-material:before {
  content: "\e9f7";
}
.qico-helmet-1:before {
  content: "\e9f8";
}
.qico-helmet2:before {
  content: "\e9f9";
}
.qico-hammer-1:before {
  content: "\e9fa";
}
.qico-hammer1:before {
  content: "\e9fb";
}
.qico-rake:before {
  content: "\e9fc";
}
.qico-bulldozer:before {
  content: "\e9fd";
}
.qico-driller:before {
  content: "\e9fe";
}
.qico-cutter1:before {
  content: "\e9ff";
}
.qico-crane-3:before {
  content: "\ea00";
}
.qico-crane-2:before {
  content: "\ea01";
}
.qico-crane-1:before {
  content: "\ea02";
}
.qico-crane1:before {
  content: "\ea03";
}
.qico-dumper:before {
  content: "\ea04";
}
.qico-concrete-mixer:before {
  content: "\ea05";
}
.qico-toolbox1:before {
  content: "\ea06";
}
.qico-maze:before {
  content: "\ea07";
}
.qico-cone:before {
  content: "\ea08";
}
.qico-chisel:before {
  content: "\ea09";
}
.qico-caliper:before {
  content: "\ea0a";
}
.qico-compass:before {
  content: "\ea0b";
}
.qico-barrier-2:before {
  content: "\ea0c";
}
.qico-barrier-1:before {
  content: "\ea0d";
}
.qico-barrier1:before {
  content: "\ea0e";
}
.qico-warning:before {
  content: "\ea0f";
}
.qico-circular-saw1:before {
  content: "\ea10";
}
.qico-floor-1:before {
  content: "\ea11";
}
.qico-barrier2:before {
  content: "\ea12";
}
.qico-blueprint1:before {
  content: "\ea13";
}
.qico-brickwall:before {
  content: "\ea14";
}
.qico-budget:before {
  content: "\ea15";
}
.qico-caution:before {
  content: "\ea16";
}
.qico-compass1:before {
  content: "\ea17";
}
.qico-concrete-mixer-1:before {
  content: "\ea18";
}
.qico-concrete-mixer1:before {
  content: "\ea19";
}
.qico-cone1:before {
  content: "\ea1a";
}
.qico-crane-11:before {
  content: "\ea1b";
}
.qico-crane-21:before {
  content: "\ea1c";
}
.qico-crane2:before {
  content: "\ea1d";
}
.qico-drill1:before {
  content: "\ea1e";
}
.qico-dumper1:before {
  content: "\ea1f";
}
.qico-engineer:before {
  content: "\ea20";
}
.qico-floor:before {
  content: "\ea21";
}
.qico-gloves:before {
  content: "\ea22";
}
.qico-hammer2:before {
  content: "\ea23";
}
.qico-helmet3:before {
  content: "\ea24";
}
.qico-high-noise:before {
  content: "\ea25";
}
.qico-jackhammer2:before {
  content: "\ea26";
}
.qico-light-bulb:before {
  content: "\ea27";
}
.qico-loader:before {
  content: "\ea28";
}
.qico-log:before {
  content: "\ea29";
}
.qico-measuring-tape1:before {
  content: "\ea2a";
}
.qico-no-entry:before {
  content: "\ea2b";
}
.qico-nut1:before {
  content: "\ea2c";
}
.qico-paint-brush1:before {
  content: "\ea2d";
}
.qico-paint-roller2:before {
  content: "\ea2e";
}
.qico-plug-1:before {
  content: "\ea2f";
}
.qico-plug:before {
  content: "\ea30";
}
.qico-plumbing:before {
  content: "\ea31";
}
.qico-roof:before {
  content: "\ea32";
}
.qico-ruler:before {
  content: "\ea33";
}
.qico-saw-11:before {
  content: "\ea34";
}
.qico-saw2:before {
  content: "\ea35";
}
.qico-schedule:before {
  content: "\ea36";
}
.qico-screwdriver2:before {
  content: "\ea37";
}
.qico-shovel2:before {
  content: "\ea38";
}
.qico-spray:before {
  content: "\ea39";
}
.qico-tap:before {
  content: "\ea3a";
}
.qico-toolbox2:before {
  content: "\ea3b";
}
.qico-vest1:before {
  content: "\ea3c";
}
.qico-vise:before {
  content: "\ea3d";
}
.qico-voltmeter:before {
  content: "\ea3e";
}
.qico-warning1:before {
  content: "\ea3f";
}
.qico-wheelbarrow2:before {
  content: "\ea40";
}
.qico-window:before {
  content: "\ea41";
}
.qico-worker:before {
  content: "\ea42";
}.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}