/*
Theme Name: Hello Elementor Child
Theme URI:
Description: Child theme for Hello Elementor with early-loading CSS
Author: YP
Author URI:
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Your custom CSS starts here */

body {
    margin: 0;
}
.footer-form button {
    background: #f9ae18;
    border: 0;
    height: 50px;
    border-radius: 30px;
    padding: 0 30px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    transition: 0.3s;
    bottom: 2px;
}
.category-section .infobox-icon img {
    border-radius: 10px;
}

.category-section .infobox-content {
    justify-content: space-between;
    position: absolute;
    margin-top: 0px;
    bottom: 35px;
    display: inline-flex;
    width: 100%;
    padding: 0 20px;
    align-items: flex-end;
}
.category-section .title {
    width: 50%;
    text-align: left;
}
.category-section .infobox-icon:hover img {
    transform: scale(1.1);
    transition: 0.25s all;
}

.category-section .infobox-icon {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.category-section .eael-infobox {
    line-height: 0;
}
.testimonial .elementor-swiper-button {
    bottom: -20px!important;
    top: auto!important;
    left: 10px !important;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    padding: 10px;
    border-radius: 30px;
    transition: 0.25s all;
    font-size: 14px!important;
}
.testimonial .elementor-swiper-button.elementor-swiper-button-next {
    left: 60px!important;
    right: auto!important;
}
.testimonial .elementor-swiper-button:hover {
    background: #f9ae18!important;
}
ul.content-list {
    padding-left: 25px;
}

ul.content-list li:not(:last-child) {
    margin-bottom: 10px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-content {
    display: flex;
    /* padding-left: 100%; */
    animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-content li::before {
    content: '*';
    position: absolute;
    left: -70px;
    top: 29%;
    transform: translateY(0%);
    font-size: 80px;
}

.marquee-content li {
    margin-right: 7rem;
    position: relative;
}
.marquee-content ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.quick-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}