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

.hero{
    background: linear-gradient(
        180deg,
        #E2C9B8 0%,
        #D9AC8D 24.52%,
        #D48964 52.03%,
        #A79E80 84.73%,
        #A79E80 100%
    );
}

.hero-bottom{
    background-color: linear-gradient(
        0deg,
        #E2C9B8 0%,
        #D9AC8D 24.52%,
        #D48964 52.03%,
        #A79E80 84.73%,
        #A79E80 100%
    );
}

.marosi-btn .elementor-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border: 2px solid #000;
    background: #000 !important;
    color: #D9AC8D !important;

    text-decoration: none;
    overflow: hidden;

    transition: color .35s ease;
    z-index: 1;
    cursor: pointer;
}

.marosi-btn .elementor-button::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #E2C9B8;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;

    z-index: -1;
}

.marosi-btn .elementor-button:hover::before {
    transform: scaleX(1);
}

.marosi-btn .elementor-button:hover {
    color: #000 !important;
}

a{
    color: inherit;
}

#site-footer {
    background-color: var(--e-global-color-primary);
}

#site-footer .footer-inner {
    max-width: 100%;
    padding-inline: 2rem;
}

a:hover{
    color: inherit;
}

.title-tab{
    position: absolute;
    right: 7.5%;
    font-size: 1.687rem;
}

.elementor-icon {
    transition: transform 0.3s ease;
}

.elementor-widget-n-accordion .e-n-accordion-item{
    padding-top: .5rem;
}

.move:hover .elementor-icon {
    transform: translateX(25px);
    cursor: pointer;
}

.elementor-widget-n-accordion .e-n-accordion-item-title-icon {
    width: 3rem !important;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

html,body{
    scroll-behavior: smooth;
}

.moveUpDown {
    animation: moveUpDown 2s ease-in-out infinite;
}

@media (min-width: 1200px) {
    #site-footer *{
        font-size: 0.875rem;
    }
}

@media (max-width: 1024px) {
    #site-footer {
        text-align: center;
        padding-top: 2rem;
    }
    #site-footer ul{
        justify-content: center;
        margin-top: 1rem;
        padding: 0;
        flex-direction: column;
    }
    #site-footer .footer-inner {
        display: block;
    }
}

@media (max-width: 768px) {
    .title-tab{
        position: absolute;
        right: 15%;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .e-n-accordion-item-title-text{
        font-size: 1.65rem !important;
    }
    .e-con > .e-con:first-child .title-tab{
        display: inline;
    }
    .title-tab{
        display: none;
    }
}