/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

a {
	text-decoration: none !important;
}

.counter_home {
	height: 50px;
	width: 50px;
	background-color: #4bb6ff;
}

.new_style a {
    position: relative;
    z-index: 0;
    background-color: #00004f !important;
    fill: #fff !important;
    color: #fff !important;
    margin-right: 50px;
    border-radius: 100px 100px 100px 100px !important;
    padding: 15px 20px 15px 20px !important;
    border: 0 !important;
	
}

.new_style a::after {
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    width: 0;
    height: 100%;
    border-radius: 100px;
    opacity: 0;
    background:  #000;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.new_style a:hover::after {
	width: 100%;
    left: 0;
    right: 0;
    opacity: 1;
}

.new_style .elementor-button .elementor-button-icon {
    position: absolute;
    top: 0;
    left: auto;
    right: -46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:  #00004f !important;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
	fill: #fff !important;
	transform: rotate(-45deg);
}

.new_style .elementor-button:hover .elementor-button-icon {
    transform: rotate(0deg);
    background:  #000 !important;
	
}







.postion_reletive {
	position: relative;
}

.position_absolut {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.roted_box {
	display: flex;
	justify-content: center;
	align-items: center;
	transform-origin: center;
	animation: rotateBox 10s linear infinite; /* slow kar diya */
}

/* Text Path ka SVG fix */
.roted_box svg {
	display: block;
	transform-origin: center;
}

/* Image ko center me rakhna */
.roted_box .position_absolut {
	position: absolute; /* sirf iske liye use hoga internally */
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* Animation */
@keyframes rotateBox {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.roted_box:hover {
	animation-play-state: paused;
}



.custom-ticker {
  overflow: hidden;
  background: var(--e-global-color-primary);
  padding: 30px 0;
  position: relative;
}

/* Gradient fade edges 🔥 */
.custom-ticker::before,
.custom-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.custom-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--e-global-color-primary), transparent);
}

.custom-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--e-global-color-primary), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 30s linear infinite; /* slow smooth */
}

.ticker-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  font-family: "boldonse", Sans-serif;  text-transform: uppercase;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Stylish * separator */
.ticker-item span {
	margin: 10px 20px 0 20px;
	justify-items: end;
	font-size: 30px;
}

/* Animation */
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hover pe stop */
.custom-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.img_style {
	overflow: hidden;
}

.img_style::after {
	content: '';
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.img_style:hover::after {
		height: 250%;
	transition: all 600ms linear !important;
	background-color: transparent;
}


