
/*------------------------------------------------------------------------
# mod_mx_services Extension
# ------------------------------------------------------------------------
# author    mixwebtemplates
# Copyright (C) 2025 mixwebtemplates.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.mixwebtemplates.com
-------------------------------------------------------------------------*/
:root {  
  --base41-skin: #FE5D14;
  --base41-dark: #222;
  --base41-grey: #F4F6FF;
  --base41-white: #ffffff; 
}

.service41 {
    position: relative;
}

.services-item {
	padding: 50px 45px 50px;
	background-size: cover;
	background-position: center;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-height: 300px;
	object-fit: cover;	
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
}
.services-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--base41-white);
	border-radius: 5px;
	z-index: -1;
	transition: .3s linear;
}
.services-item:hover::before {
	opacity: 0;
}
.services-item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	z-index: -1;
	background: linear-gradient(100.16deg, var(--base41-skin) 1.96%, rgba(28, 28, 28, 0) 198.08%);
	opacity: 0;
	transition: .3s linear;
}
.services-item:hover::after {
	opacity: 0.95;
}
.services-icon {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--base41-skin);
	color: var(--base41-white);
	font-size: 40px;
	border-radius: 50px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
	margin-bottom: 55px;
}
.services-icons {
	position: absolute;
	bottom: -220px;
	right: 20px;
	opacity:0;	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.services-item:hover .services-icons {
	color: var(--base41-grey);
	font-size: 200px;
	position: absolute;
	bottom: -20px;
	right: 20px;
	opacity:0.2;
}
.services-content .title {
	font-weight: 600;
	font-size: 26px;
	margin-bottom: 0;
}
.services-content .number {
	margin-bottom: 0;
	position: absolute;
	right: 8px;
	top: 10px;
	background: linear-gradient(180deg, var(--base41-skin) 0%, rgba(254, 93, 20, 0) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 400;
	font-size: 100px;
	line-height: .8;
}
.services-overlay-content .title {
	font-weight: 600;
	font-size: 26px;
	margin-bottom: 20px;
	color: var(--base41-white);
}
.services-overlay-content .title a:hover {
	color: var(--base41-white);
}
.services-overlay-content p {
	margin-bottom: 20px;
	color: var(--base41-white);
}
.services-overlay-content .read-more {
	font-weight: 400;
	font-size: 16px;
	color: var(--base41-white);
	display: inline-flex;
	align-items: center;
	position: relative;
	z-index: 1;
	padding: 3px 19px;
}
.services-overlay-content .read-more::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: var(--base41-dark);
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 30px;
	z-index: -1;
	transition: .3s linear;
}
.services-overlay-content .read-more:hover::before {
	width: 100%;
}
.services-overlay-content .read-more i {
	margin-left: 5px;
}
.services-overlay-content {
	display: none;
}
   