@media (max-width: 1025px) and (min-width: 1023px) {
	.elementor-inner-section.elementor-section-boxed {
		max-width: 90% !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}
}

.master-link {
	display: inline-block;
	color: #777;
	font-weight: 500;
	transition: .3s;
}

.master-link .icon {
	color: #f5ad0d;
	display: inline-block;
}

.master-link.icon-right .icon {
	margin-left: 15px;
}

.master-link:hover {
	color: #f5ad0d;
}

.master-link:hover .icon {
	animation: .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;
	}
}

.headline-2 {
	font-size: 24px;
	margin-bottom: 28px;
}

.item-carousel {
	width: 100%;
	transition: 0s !important;
}

@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;
	}
}

.master-partner {
	transition: transform .3s !important;
}

.master-partner:hover {
	transform: scale(1.04);
}

.master-service {
	position: relative;
	transition: box-shadow .3s, transform .3s !important;
	border-color: #e7e7e7;
}

.master-service .content-wrap {
	padding: 33px 35px 57px;
	transition: .5s;
	border-color: #e7e7e7;
}

.master-service .headline-2 {
	transition: .3s;
	margin-bottom: 34px;
}

.master-service .desc {
	position: relative;
	margin-bottom: 32px;
	transition: .3s;
}

.master-testimonial .quotes svg {
	width: 30px;
	fill: #f5ad0d;
}

@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);
	}
}