/*
 * 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);
    }
}

