/* 
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 */

   

p { margin: 0; }

div#footer {
    overflow: clip;
}

.manta-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}


.manta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  animation: mantaZoomLoop 12s ease-in-out infinite alternate;
  transform-origin: center;
  z-index: -2; 
}


.manta-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(to top, rgba(0,0,0), rgba(21, 102, 204, 0));
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: -1; 
}


.manta-card:hover::after {
  opacity: 1;
}


.manta-card .manta-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  transition: transform 0.6s ease-in-out;
  z-index: 5; 
}


.manta-card:hover .manta-content {
  transform: translateY(-40px);
}


.manta-card .manta-hover-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.6s ease-in-out, max-height 0.6s ease-in-out;
}


.manta-card:hover .manta-hover-text {
  opacity: 1;
  max-height: 500px;
}


.manta-card .manta-content,
.manta-card .manta-hover-text {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.orange-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.orange-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.orange-list li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: rgb(255, 153, 51);
    border-radius: 2px;
}

/* Smooth looping zoom */
@keyframes mantaZoomLoop {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@media(max-width:1024px){
	.height {
		height: unset !important;
	}	
}