/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

.dropdown {
  cursor: pointer;
  line-height: 50px;
  position: relative;
  text-decoration: none;
  z-index: 9;
  color: var(--e-global-color-primary);
  font-size: 15px;
  text-align: left;
text-transform: uppercase;
   font-weight: 500;
}

.dropdown span.btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu {
  background-color: #FFFFFF;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  opacity: 0;
  text-align: left;
  top: 0;
  visibility: hidden;
  z-index: -99999;
}

.dropdown-menu li:first-child {
  cursor: default;
}
.dropdown-menu li{
	padding: 0 15px;
}

.dropdown-menu a {
  color: #000;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  -webkit-transition: all 1s;
  transition: all .3s;
	line-height: 1.3;
}

.dropdown-menu a:hover {
  color: #E56116;
}

.dropdown:hover .dropdown-menu {
  background: #eeeeee;
  opacity: 1;
  visibility: visible;
  top: 100%;
  width: 100%;
  -webkit-transition: all .5s, background, 2s .5s linear;
  transition: all .5s, background 2s .5s linear;
}


.hero-slide-item .hero-slide-img img {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.hero-slide-item .hero-slide-img a {
    width: 100%;
}

.hero-slide-content {
    position: absolute !important;
    width: 100%  !important;
    height: 100% !important;
    left: 0;
    top: 0;
}

.hero-slider .swiper-pagination {
    position: absolute !important;
    bottom: 15px !important;
    top: auto !important;
}

.hero-slider .e-n-carousel {
    padding-bottom: 0 !important;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 29px !important;
    border-radius: 10px;
}
.img-scaled{
	overflow: hidden !important;
}
.img-scaled::before {
    transform: scale(1);
    transition: .6s all ease !important;
}

.img-scaled:hover::before {
    transform: scale(1.05);
}