/* 6. services */

.services-area {
	background-size: cover;
	background-position: center center;
}
.services-padding {
	margin-top: -518px;
	margin-bottom: -98px;
}
.services-img{
    overflow: hidden;
    &::before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        content: "";
        background: #111111;
        opacity: .7;
        transition: .3s;
        z-index: 1;
    }
    & img{
        width: 100%;
        transition: .3s;
    }
}
.services-wrapper:hover .services-img img{transform:scale(1.1) ;}

.services-text{
    position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    padding: 20px 30px 40px 30px;
    z-index: 99;
    & h1{
        font-size: 80px;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: $white;
        text-align: center;
        margin-bottom: 15px;
        color: $white;
    }
    & h2{
        font-size: 30px;
        letter-spacing: -0.3px;
        color:$white;
    }
    & p{
        color:$white;
        line-height: 25px;
    }
}
.services-content{
    background: $black;
    padding: 19px 15px 22px 15px;
    transition: .3s;
   & h3 {
        font-size: 24px;
        margin-bottom: 0;
        color:$white;
    }
}
.services-wrapper:hover .services-content{background: $theme-color;}
// services-02
.services-02-wrapper{
    background-color: $white;
    padding: 60px;
}
.services-02-text{
    & h3{
        font-size: 24px;
        margin-top: 26px;
        margin-bottom: 34px;
    }
    & p{
        margin-bottom: 35px;
    }
}
.arrow-style .slick-arrow {
	width: 70px;
	height: 70px;
	line-height: 70px;
	background: $white;
	padding: 0;
	border-radius: 5px;
	color: $theme-color;
	font-size: 22px;
	margin: 0;
	position: absolute;
	top: 50%;
	left: -180px;
	z-index: 99;
	transform: translateY(-50%);
	border:0;
	cursor: pointer;
	transition: .3s;
}
.arrow-style .slick-next {
	right: -180px;
	left: auto;
}
.arrow-style .slick-arrow:hover{
    background-image: -moz-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(255,94,20) 99%);
    background-image: -webkit-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(255,94,20) 99%);
    background-image: -ms-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(255,94,20) 99%);
    color:$white;
}
.arrow-style .slick-dots {
	text-align: center;
	bottom: -100px;
	z-index: 99;
	position: absolute;
	left: 0;
	right: 0;
}
.arrow-style .slick-dots li {
	display: inline-block;
	margin: 0 4px; 
}
 .arrow-style .slick-dots li button {
	height: 15px;
	width: 15px;
	text-indent: -9999px;
	transition: .3s;
	padding: 0;
	border:2px solid $theme-color;
	border-radius: 50%; 
	background: none;
	cursor: pointer;
}
.arrow-style .slick-dots li.slick-active button {
	background: $theme-color;
}
// services-03
.our-services-wrapper{
	overflow: hidden;
}
.inner-our-services {
	background-color: $white;
	overflow: hidden;
	position: relative;
	padding: 30px 43px 35px;
	transition: .3s;
}
.our-services-wrapper:hover .inner-our-services{
    background-image: -moz-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(255,94,20) 99%);
    background-image: -webkit-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(255,94,20) 99%);
    background-image: -ms-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(255,94,20) 99%);
}
.our-services-img{
    overflow: hidden;
    & img{
        width: 100%;
        transition: .3s;
    }
}
.our-services-wrapper:hover .our-services-img img {
	transform: scale(1.1);
}
.our-services-text{
    & h3{
        margin-bottom: 0;
        font-size: 24px;
        margin-right: 68px;
        line-height: 1.2;
        position: relative;
        transition: .3s;
        &::before{
            position: absolute;
            height: 55px;
            width: 5px;
            background: $theme-color;
            content: "";
            left: -43px;
            top: 7px;
            transition: .3s;
        }
    }
}
.our-services-wrapper:hover .our-services-text h3{color:$white;}
.our-services-wrapper:hover .our-services-text h3::before{background:$white;}
.our-services-button {
	position: absolute;
	top: 34px;
	right: 35px;
    & > a{
        height: 55px;
        width: 55px;
        border: 2px solid #ececec;
        line-height: 55px;
        font-size: 18px;
        color:$body-text-color;
        display: inline-block;
        transition: .3s;
        border-radius: 50%;
        text-align: center;

    }
}
.our-services-wrapper:hover .our-services-button > a{border-color:$white;color:$black;background: $white;}