/*
Theme Name: Artisan Maintenance Services
Version: 1.0.0
Template: astra
*/

/* Astra Header/Footer */

#ast-desktop-header, #ast-mobile-header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
	transition: all ease-out .5s;
}

#ast-desktop-header.active, #ast-mobile-header.active {
	background-color: rgba(51, 51, 51, 0.9);
	box-shadow: 5px 3px 20px 0 rgba(0, 0, 0, .1);
	padding: 0;
}

#ast-desktop-header.active img.custom-logo, #ast-mobile-header.active img.custom-logo {
    width: 90px!important;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
	transition: all ease-out .5s;
}

/* End Astra Header/Footer */

/* Button */

.ast-custom-button, .elementor-button {
	background: linear-gradient(90deg, #fcca6d 0%, #FDD995 25%, #FFEEBF 50%, #FDD995 75%, #fcca6d 100%);
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.ast-custom-button:hover, .elementor-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.ast-custom-button:active, .elementor-button:active {
	transform: translateY(0px);
	box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

/* End Button */

/* Content */

.img-border {
	position: relative;
	display: inline-block;
}

.img-border::before, .img-border::after {
	content: '';
	position: absolute;
	background-color: #fcca6d;
}

.img-border::after {
	bottom: -5px;
	left: 0;
	height: 5px;
	width: 0;
}

.img-border.animate::after {
	animation: expandHorizontal 0.6s ease-out 0.6s forwards;
}

@keyframes expandHorizontal {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* End Content */