/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor
Author: Your Name
Template: hello-elementor
Version: 1.0
*/

/* Custom Styles */

.arrow {
	position: absolute;
	bottom: 0;
	display: grid;
	place-items: center;
	background: green;
	border-radius: 0 50x 0 0;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
	z-index: 3;
}

.arrow::after,
.arrow::before {
    content: "";
    position: absolute;
    height: 90px;
    width: 30px;
    background: transparent;
    top: -90px;
    left: 0;
    border-radius: 0 0 0 50px;
    background: transparent;
    box-shadow: 0 60px 0 #ffffff;
    z-index: -1;
    pointer-events: none;
}
.arrow::after {
	top: unset;
	left: 100%;
	bottom: 0;
	width: 90px;
	height: 30px;
	box-shadow: -60px 0 0 #fff;
}
.elementor-counter-title{text-align:center;}


/* service carousel */

.custom-carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-card {
  flex: 0 0 24%!important;
	z-index:666;
}

/* Buttons */
.carousel-btn {
  background: #000;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.carousel-btn:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 100%;
  }
}

.service-arrow {
	position: absolute;
	bottom: 80px;
	display: grid;
	place-items: center;
	border-radius: 0 50x 0 0;
	text-decoration: none;
	color: #010101;
	transition: all 0.3s ease;
	z-index: 3;
}

.service-arrow::after,
.service-arrow::before {
    content: "";
    position: absolute;
    height: 140px;
    width: 21px;
    background: transparent;
    top: -140px;
    left: 0;
    border-radius: 0 0 0 15px;
    background: transparent;
    box-shadow: 0 60px 0 #F3F3F3;
    z-index: -1;
    pointer-events: none;
}

.service-arrow::after {
    top: unset;
    left: 99%;
    bottom: -3px;
    width: 83px;
    height: 18px;
    box-shadow: -60px 0 0 #F3F3F3;
}