/* Custom CSS */

/* Example: Override main section background color. */
/* body .jupiterx-main {
    background-color: gray;
} */


a {
  position: relative;
	z-index:1;
	color:inherit;
}

nav li a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: -2px;
  height: 3px;
  background-color: #DA024C;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
	z-index:-1;
}

nav li a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

p a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: -2px;
  height: 3px;
  background-color: #ffffff;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  z-index:-1;
}

p a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

/* BUTTONS */

.elementor-button {
  z-index: 1;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: white;
  padding: 0.5em 1em;
  outline: none;
  border: none;
  background-color: hsl(236, 32%, 26%);
}

.elementor-button::before, .loadMoreBtn::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  transform-origin: center right;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

.buttondark .elementor-button::before {

  background-color: #243446;
}

.elementor-button:hover, .loadMoreBtn:hover {
  cursor: pointer;
}

.elementor-button:hover::before, .loadMoreBtn:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
}

body .elementor-heading-title {
	line-height:initial;
}

.pink {
	color:#DC054C;
}

body .elementor-1211 .elementor-element.elementor-element-83cd035 .jet-filters-pagination__link {
    padding:10px!important;
    border-radius: 0!important;
}


p a:hover {
	color:inherit!important;
}

p a, .elementor-icon-box-title a {
  position: relative;
}

p a::before, .elementor-icon-box-title a::before {
  content: '';
  position: absolute;
  height: 1px;
  bottom: -3px;
  left: 0;
  right: 0;
  transform-origin: bottom left;
  transform: scaleX(1);
  transition: transform 0.3s ease-in-out;
}

p a:hover::before, .elementor-icon-box-title a:hover::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}

.elementor-icon-box-title a::before {
	background-color:#ffffff;
}

p a::before {
	background-color:#ffffff;
}

#cookiepopup p {
	margin-bottom:0;
}

body .jupiterx-site {
    font-family: 'Barlow', sans-serif!important;
}

.fadeInUp {
    animation-name: newfadeInUp!important;
}

.fadeInDown {
    animation-name: newfadeInDown!important;
}

.fadeInLeft {
    animation-name: newfadeInLeft!important;
}

.fadeInRight {
    animation-name: newfadeInRight!important;
}


@keyframes newfadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -20px, 0)
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes newfadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-20px, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}
@keyframes newfadeInRight {
	from {
		opacity: 0;
		transform: translate3d(20px, 0, 0)
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes newfadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0)
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 768px) {
.display-m-none, .elementor-hidden-phone {
	display:none;
}
}
/* WhatsApp button smaller */

.ht-ctc-chat {
	transform: scale(0.8);
}