.elementor-121 .elementor-element.elementor-element-be0b722{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-c327961 */.marreco-hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.marreco-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.marreco-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.marreco-slide.active {
    opacity: 1;
    z-index: 1;
}

.marreco-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.marreco-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 49, 91, 0.85) 0%, rgba(10, 31, 61, 0.85) 100%);
}

.marreco-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.marreco-slide-heading {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 900px;
    animation: fadeInDown 1s ease-out;
}

.marreco-slide-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    max-width: 700px;
    animation: fadeInDown 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.marreco-slide-button {
    display: inline-block;
    background: linear-gradient(135deg, #d9042c, #e8103a);
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(217, 4, 44, 0.35);
    letter-spacing: 0.5px;
    animation: fadeInDown 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.marreco-slide-button:hover {
    background: linear-gradient(135deg, #b80325, #d9042c);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 4, 44, 0.45);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.marreco-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.marreco-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.marreco-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.marreco-slider-dot.active {
    background: #d9042c;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .marreco-hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .marreco-slide-content {
        padding: 0 24px;
    }
    
    .marreco-slide-heading {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .marreco-slide-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .marreco-slide-button {
        padding: 14px 36px;
        font-size: 16px;
    }
    
    .marreco-slider-dots {
        bottom: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d60191d */.marreco-features {
    background: #ffffff;
    padding: 80px 0;
}

.marreco-features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.marreco-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.marreco-feature-card {
    background: #f8f9fa;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.marreco-feature-card:hover {
    background: #ffffff;
    border-color: #d9042c;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(217, 4, 44, 0.15);
}

.marreco-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d9042c, #e8103a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.marreco-feature-card:hover .marreco-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(217, 4, 44, 0.4);
}

.marreco-feature-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.marreco-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #11315b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.marreco-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

@media (max-width: 968px) {
    .marreco-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .marreco-features {
        padding: 60px 0;
    }
    
    .marreco-features-container {
        padding: 0 24px;
    }
    
    .marreco-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .marreco-feature-card {
        padding: 32px 24px;
    }
    
    .marreco-feature-card h3 {
        font-size: 22px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8a68bfa */.marreco-satisfaction {
    background: #ffffff;
    padding: 80px 0;
}

.marreco-satisfaction-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.marreco-satisfaction h2 {
    font-size: 42px;
    font-weight: 800;
    color: #11315b;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.marreco-satisfaction h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #555555;
    margin: 0 auto;
    max-width: 900px;
}

@media (max-width: 768px) {
    .marreco-satisfaction {
        padding: 60px 0;
    }
    
    .marreco-satisfaction-container {
        padding: 0 24px;
    }
    
    .marreco-satisfaction h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .marreco-satisfaction h5 {
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-84f67b7 */.marreco-about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.marreco-about-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.marreco-about-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.marreco-about-section-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: #d9042c;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.marreco-about-section-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: #11315b;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.marreco-about-section-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 32px 0;
}

.marreco-about-section-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d9042c, #e8103a);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(217, 4, 44, 0.35);
    letter-spacing: 0.5px;
}

.marreco-about-section-btn:hover {
    background: linear-gradient(135deg, #b80325, #d9042c);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 4, 44, 0.45);
}

.marreco-about-section-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.marreco-about-section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.marreco-about-section-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .marreco-about-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .marreco-about-section {
        padding: 60px 0;
    }
    
    .marreco-about-section-container {
        padding: 0 24px;
    }
    
    .marreco-about-section-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .marreco-about-section-text p {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .marreco-about-section-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-22610c0 */.marreco-gallery-section {
    background: #ffffff;
    padding: 80px 0;
}

.marreco-gallery-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.marreco-gallery-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.marreco-gallery-section-title h6 {
    font-size: 14px;
    font-weight: 700;
    color: #d9042c;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.marreco-gallery-section-title h4 {
    font-size: 42px;
    font-weight: 800;
    color: #11315b;
    margin: 0;
    line-height: 1.2;
}

.marreco-gallery-section-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 24px 0;
}

.marreco-gallery-section-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d9042c, #e8103a);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(217, 4, 44, 0.35);
    letter-spacing: 0.5px;
}

.marreco-gallery-section-btn:hover {
    background: linear-gradient(135deg, #b80325, #d9042c);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 4, 44, 0.45);
}

.marreco-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.marreco-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 3 / 2;
    background: #f0f0f0;
}

.marreco-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.marreco-gallery-item:hover img {
    transform: scale(1.1);
}

.marreco-gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 4, 44, 0.6) 0%, rgba(17, 49, 91, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marreco-gallery-item:hover .marreco-gallery-item-overlay {
    opacity: 1;
}

@media (max-width: 968px) {
    .marreco-gallery-section-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .marreco-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .marreco-gallery-section {
        padding: 60px 0;
    }
    
    .marreco-gallery-section-container {
        padding: 0 24px;
    }
    
    .marreco-gallery-section-title h4 {
        font-size: 32px;
    }
    
    .marreco-gallery-section-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .marreco-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .marreco-gallery-section-btn {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-288548b */.marreco-services {
    background: #f8f9fa;
    padding: 80px 0;
}

.marreco-services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.marreco-services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.marreco-services-intro h3 {
    font-size: 38px;
    font-weight: 800;
    color: #11315b;
    margin: 0;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.marreco-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.marreco-services-grid-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.marreco-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.marreco-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.marreco-service-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.marreco-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marreco-service-card:hover .marreco-service-card-image img {
    transform: scale(1.1);
}

.marreco-service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 49, 91, 0.3) 0%, rgba(17, 49, 91, 0.7) 100%);
}

.marreco-service-card-content {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.marreco-service-card-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #11315b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.marreco-service-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

@media (max-width: 968px) {
    .marreco-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marreco-services-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .marreco-services {
        padding: 60px 0;
    }
    
    .marreco-services-container {
        padding: 0 24px;
    }
    
    .marreco-services-intro {
        margin-bottom: 40px;
    }
    
    .marreco-services-intro h3 {
        font-size: 28px;
    }
    
    .marreco-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .marreco-services-grid-row2 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2cf362f */.marreco-cta {
    background: linear-gradient(135deg, #d9042c 0%, #b80325 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.marreco-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.marreco-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.marreco-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.marreco-cta-text {
    flex: 1;
    max-width: 66%;
}

.marreco-cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.marreco-cta-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.marreco-cta-button {
    flex-shrink: 0;
}

.marreco-cta-button a {
    background: #ffffff;
    color: #d9042c;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.marreco-cta-button a:hover {
    background: #11315b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.marreco-cta-button a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.marreco-cta-button a:hover svg {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .marreco-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .marreco-cta-text {
        max-width: 100%;
    }
    
    .marreco-cta-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .marreco-cta {
        padding: 50px 0;
    }
    
    .marreco-cta-container {
        padding: 0 24px;
    }
    
    .marreco-cta-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .marreco-cta-text p {
        font-size: 15px;
    }
    
    .marreco-cta-button a {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}/* End custom CSS */