/* #region General
--------------------------------------------------------------*/
:root {
    /*Regenera - Colores principales*/
    --rg-color-gray: rgba(235,235,230,1); /*#ebebe6;*/
    /**/
    /*Regenera - Colores adicionales*/
    --rg-color-light-bg: rgba(231,232,226,1); /*#e7e8e2;*/
    --rg-color-dark-blue: rgba(0,31,91,1); /*#00205b;*/
    --rg-gradient-purple: linear-gradient(180deg, rgba(0,0,47,1) 10%, var(--bs-purple) 100%);
    --rg-color-blue-translucent-low: rgba(1,113,212,0.7);
    --rg-color-blue-translucent-high: rgba(1,113,212,0.3);
    /**/
    font-size: 16px;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--bs-black);
    background-color: var(--bs-indigo);
    overscroll-behavior-y: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

.splash .splash-icon {
    z-index: 1031;
}
/* #endregion */


/* #region Back to top button
--------------------------------------------------------------*/
#back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

    #back-to-top i {
        font-size: 28px;
        line-height: 0;
    }

    #back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
/* #endregion */


/* #region Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    padding: 0.75rem 0;
}

    #header.header-scrolled {
        background: rgba(0, 0, 0, 0.8);
        padding: 0.375rem 0;
    }

    #header .logo img {
        max-height: 64px;
    }

    #header .user {
        padding: 10px;
        white-space: nowrap;
        transition: 0.3s;
        outline: 3px solid transparent;
        font-size: 1rem;
        font-weight: 400;
        text-decoration: none;
    }

        #header .user img {
            border-radius: 50%;
            height: 32px;
            width: 32px;
        }

        #header .user:hover,
        #header .user:focus,
        #header .user.active,
        #header .user.active:focus,
        #header .user:hover > a {
            outline: 3px solid var(--bs-purple);
        }
/* #endregion */


/* #region Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    font-size: 0.938rem;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        list-style: none;
    }

    .navbar .nav-item {
        line-height: var(--bs-body-line-height);
    }

        .navbar .nav-item a.nav-link,
        .navbar .nav-item a.nav-link:focus {
            padding: 10px;
            margin-right: 10px;
            white-space: nowrap;
            transition: 0.3s;
            outline: 3px solid transparent;
            font-size: 1rem;
            font-weight: 400;
        }

            .navbar .nav-item a.nav-link:hover,
            .navbar .nav-item a.nav-link:focus,
            .navbar .nav-item a.active,
            .navbar .nav-item a.active:focus,
            .navbar .nav-item:hover > a {
                outline: 3px solid var(--bs-purple);
            }

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        left: 15px;
        padding: 10px 0;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile .login {
        display: none;
    }

    .navbar-mobile .nav-item {
        padding: 1.5px 0;
    }

        .navbar-mobile .nav-item .nav-link,
        .navbar-mobile .nav-item .nav-link:focus {
            margin: 0 10px;
            padding: 10px 20px;
        }
/* #endregion */


/* #region Footer
--------------------------------------------------------------*/
#footer {
    background: var(--bs-indigo);
    padding: 35px 0;
}

    #footer .logo {
        max-height: 60px;
    }

    #footer ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        #footer ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

        #footer ul a {
            color: var(--rg-color-gray);
            font-size: 1rem;
            transition: 0.3s;
            line-height: 1;
        }

            #footer ul a:hover,
            #footer ul a:focus {
                color: var(--bs-purple);
                text-decoration: none;
            }

    #footer .social-links a {
        font-size: 1.5rem;
        color: var(--rg-color-gray);
        margin-right: 8px;
        transition: 0.3s;
        text-decoration: none;
    }

        #footer .social-links a:hover,
        #footer .social-links a:focus {
            color: var(--bs-purple);
        }

    #footer .credits,
    #footer .copyright {
        font-family: "Myriad Pro Regular";
        font-size: 1rem;
    }

        #footer .credits a {
            color: var(--rg-color-gray);
            transition: 0.3s;
        }

            #footer .credits a:hover,
            #footer .credits a:focus {
                color: var(--bs-purple);
                text-decoration: none;
            }
/* #endregion */


/* #region Section
--------------------------------------------------------------*/
section {
    padding: 70px;
    overflow: hidden;
}

    section.light-section {
        background-color: var(--rg-color-light-bg);
    }

    section.white-section {
        background-color: var(--bs-white);
    }

    section.purple-section {
        background: var(--rg-gradient-purple);
    }

    section.inner-page {
        margin-top: 87px;
    }

    section.cover h1,
    section.cover h2 {
        font-weight: bold;
    }

    section.banner {
        padding-top: 85px;
    }

    section .black-gradient {
        position: relative;
        display: inline-block;
        width: 100%;
    }

        section .black-gradient:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: inline-block;
            background: linear-gradient(to bottom, black 0%, transparent 50%);
        }


@media (max-width: 991px) {
    section {
        padding: 35px 10px;
    }

        section.cover .container {
            width: 100%;
        }
}
/* #endregion */


/* #region Hero
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    #hero video {
        min-width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        object-fit: cover;
        z-index: -999;
    }

    #hero .video-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        background: url(/img/site/points.webp) repeat;
    }

    #hero .rg-recycle {
        width: 30rem;
        padding: 10rem 4rem;
    }

        #hero .rg-recycle h1 {
            font-size: 2.75rem;
            line-height: 3rem;
            margin: 0;
            text-align: justify;
        }

        #hero .rg-recycle strong {
            font-weight: 800;
        }

    #hero .service-container {
        background: linear-gradient(45deg, rgba(2,0,36,0.7) 0%, rgba(91,58,244,0.7) 90%);
        font-size: 1rem;
        height: auto;
        width: 24rem;
        padding: 2rem;
        border: 2px solid var(--rg-color-gray);
        border-radius: 10px;
    }

        #hero .service-container img {
            height: 3rem;
            filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(106deg) brightness(103%) contrast(106%);
        }

        #hero .service-container h2 {
            font-size: 1.5rem;
            font-weight: normal;
        }

.sc-form input {
    background: transparent url(/img/site/icons/map-pin.webp) no-repeat 99% center / 1.5rem;
    color: var(--rg-color-gray);
    border-radius: 10px;
}

    .sc-form input:focus {
        background-color: rgba(0, 0, 0, 0);
        color: var(--rg-color-gray);
        border-color: var(--rg-color-blue-translucent-low);
        outline: 0;
        box-shadow: 0 0 0 0.25rem var(--rg-color-blue-translucent-high);
    }

.sc-form .sc-input::placeholder {
    font-family: "Nunito", sans-serif;
    color: var(--rg-color-gray);
}

@media (max-width: 1195px) {
    #hero .service-container h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    #hero .service-container {
        width: 100%;
    }

        #hero .service-container img {
            height: 2.25rem;
        }
}

@media (max-width: 576px) {
    #hero .recycle-circle {
        width: 100%;
    }

        #hero .recycle-circle h1 {
            font-size: 2.25rem;
            line-height: 2.5rem;
        }
}
/* #endregion */


/* #region Service-Mobile
--------------------------------------------------------------*/
#service-mobile h2 {
    font-size: 1.5rem;
}

#service-mobile img {
    height: 2.25rem;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(106deg) brightness(103%) contrast(106%);
}

#service-mobile .sc-input {
    background: transparent url(/img/site/icons/map-pin.webp) no-repeat 99% center / 6%;
    color: var(--rg-color-gray);
    border-radius: 10px;
}

    #service-mobile .sc-input::placeholder {
        color: var(--rg-color-gray);
    }
/* #endregion */


/* #region Solutions
--------------------------------------------------------------*/
.solutions {
    padding-bottom: 0;
}

    .solutions h2 {
        font-size: 2rem;
        font-weight: normal;
        line-height: 2.5rem;
    }

    .solutions .graphic {
        height: 12rem;
    }

    .solutions .photo {
        height: 24rem;
    }

@media (max-width: 991px) {
    .solutions h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .solutions .photo {
        height: auto;
    }
}
/* #endregion */


/* #region Residue Cover
--------------------------------------------------------------*/
.residue-cover {
    background: url(/img/site/Regenera_Landscape_4.webp) top;
    background-size: cover;
}

    .residue-cover h2 {
        font-size: 2rem;
    }

    .residue-cover img {
        height: 6rem;
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(106deg) brightness(103%) contrast(106%);
    }

@media (max-width: 991px) {
    .residue-cover h2 {
        font-size: 1.5rem;
    }
}

/* #endregion */


/* #region About-Cover
--------------------------------------------------------------*/
.about-cover {
    background: url(/img/site/Regenera_Landscape_2.webp);
    background-size: cover;
}

    .about-cover h1 {
        font-size: 3rem;
        font-weight: 500;
    }

@media (max-width: 991px) {
    .about-cover h1 {
        font-size: 2rem;
    }
}
/* #endregion */


/* #region About
--------------------------------------------------------------*/
.about h2 {
    font-size: 1.5rem;
}

.about h3 {
    font-size: 2.5rem;
    line-height: 3.5rem;
}

.about p {
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .about h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about h2,
    .about p {
        font-size: 1rem;
    }
}

/* #endregion */


/* #region Success-stories
--------------------------------------------------------------*/
.success-stories h2 {
    font-size: 2.5rem;
}

.success-stories p.subtitle {
    font-size: 1.5rem;
}

.success-stories .img {
    border-radius: 8px;
    overflow: hidden;
}

    .success-stories .img img {
        aspect-ratio: 2/1;
        transition: 0.6s;
    }

.success-stories .details {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    padding: 1rem;
    transition: all ease-in-out 0.3s;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.92);
}

    .success-stories .details h3 {
        color: var(--bs-black);
        transition: ease-in-out 0.3s;
    }

.success-stories .stretched-link {
    text-decoration: none;
}

.success-stories .service-item:hover .details h3 {
    color: var(--bs-purple);
}

.success-stories .service-item:hover .img img {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .success-stories h2 {
        font-size: 1.5rem;
    }

    .success-stories p.subtitle {
        font-size: 1rem;
    }

    .success-stories .img img {
        aspect-ratio: 3/2;
    }
}
/* #endregion */


/* #region Service-Cover
--------------------------------------------------------------*/
.service-cover {
    background: url(/img/site/Regenera_Landscape_3.webp);
    background-size: cover;
    background-position: center;
}

    .service-cover .container {
        width: 75%;
    }

    .service-cover h2 {
        font-size: 2.5rem;
    }

@media (max-width: 991px) {
    .service-cover .container {
        width: 100%;
    }

    .service-cover h2 {
        font-size: 1.5rem;
    }
}
/* #endregion */


/* #region Experience-Cover
--------------------------------------------------------------*/
.experience-cover {
    background: url(/img/site/Regenera_Landscape_1.webp);
    background-size: cover;
}

    .experience-cover h1 {
        font-size: 3.5rem;
        font-weight: 500;
    }

@media (max-width: 991px) {
    .experience-cover h1 {
        font-size: 2rem;
    }
}
/* #endregion */


/* #region Experience Design
--------------------------------------------------------------*/
.experience-design {
    font-size: 1.125rem;
    overflow: visible;
}

    .experience-design .triangle-down {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 50px solid var(--bs-blue);
        position: relative;
        top: -78px;
    }

    .experience-design p.h2,
    .experience-design h2 {
        font-size: 2.5rem;
    }

    .experience-design p,
    .experience-design ul li {
        color: var(--rg-color-dark-blue);
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .experience-design h3 {
        font-size: 1.5rem;
    }

    .experience-design img.solution-img {
        border-radius: 2.5rem 0rem 2.5rem 0rem;
    }

    .experience-design .solution-gradient {
        content: '';
        height: 2.5rem;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0rem 0rem 2.5rem 0rem;
        background: linear-gradient(270deg, var(--bs-green) 0%, var(--bs-purple) 100%);
    }
/* #endregion */


/* #region Experience
--------------------------------------------------------------*/
.experience {
    overflow: visible;
}

    .experience .triangle-down {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 50px solid var(--bs-blue);
        position: relative;
        top: -78px;
    }

    .experience h2 {
        font-size: 2.5rem;
        font-weight: normal;
    }

    .experience h3 {
        font-size: 2.5rem;
        font-weight: normal;
    }

    .experience h4 {
        font-size: 1.5rem;
    }

    .experience p,
    .experience ul li {
        color: var(--rg-color-dark-blue);
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.8rem;
    }

    .experience ul.right-bullets {
        direction: rtl;
    }

    .experience .img-graph {
        height: 8.5rem;
    }

    .experience .btn-tertiary,
    .experience a {
        font-family: "Nunito", sans-serif;
    }

@media (max-width: 991px) {
    .experience .triangle-down {
        top: -45px;
    }

    .experience .title {
        width: 100%;
    }

    .experience h2 {
        font-size: 2rem;
    }

    .experience h3 {
        font-size: 2rem;
    }

    .experience h4 {
        font-size: 1rem;
    }

    .experience p,
    .experience ul li {
        font-size: 1rem;
        line-height: 1.3rem;
    }

    .experience ul.right-bullets {
        direction: ltr;
    }
}
/* #endregion */


/* #region Residue-Steps
--------------------------------------------------------------*/
.residue-steps {
    background: var(--rg-gradient-purple);
    font-size: 2rem;
}

    .residue-steps .container {
        width: 90%;
    }

    .residue-steps h2 {
        font-size: 2rem;
        font-weight: normal;
    }

    .residue-steps .step {
        font-size: 2.5rem;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        border: 1px solid var(--bs-white);
        text-align: center;
        line-height: 3rem;
        position: relative;
        margin-right: 28px;
    }

        .residue-steps .step::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            width: 30px;
            height: 1px;
            background-color: var(--bs-white);
            transform: translateY(-50%);
        }

    .residue-steps img {
        height: 3.5rem;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
    }

    .residue-steps button {
        font-size: 1rem;
        padding: 10px 25px;
    }

@media (max-width: 991px) {
    .residue-steps .container {
        width: 100%;
    }

    .residue-steps h2,
    .residue-steps p {
        font-size: 1.5rem;
    }

    .residue-steps .step {
        font-size: 1.5rem;
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        flex: 0 0 2rem;
    }

    .residue-steps img {
        width: 3.5rem;
    }
}
/* #endregion */


/* #region Marketplace-Cover
--------------------------------------------------------------*/
.marketplace-cover {
    background: url(/img/site/Regenera_Landscape_3.webp);
    background-size: cover;
    background-position: top;
}

    .marketplace-cover h1 {
        font-size: 3.5rem;
        font-weight: 500;
    }

@media (max-width: 991px) {
    .marketplace-cover h1 {
        font-size: 1.5rem;
    }
}
/* #endregion */


/* #region Residue
--------------------------------------------------------------*/
.residue h2 {
    color: var(--bs-indigo);
    font-size: 2rem;
    font-weight: normal;
    padding: 0 10rem;
}

.residue .step {
    font-size: 2.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    text-align: center;
    line-height: 3rem;
    position: relative;
    margin-right: 1.5rem;
    flex: 0 0 3rem;
}

/*.residue .step::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        width: 30px;
        height: 3px;
        background-color: var(--rg-color-dark-blue);
        transform: translateY(-50%);
    }*/

.residue img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(83%) saturate(3484%) hue-rotate(216deg) brightness(94%) contrast(101%);
    max-height: 64px;
    max-width: 100%;
}

.residue p {
    color: #353535;
    font-family: "Nunito", sans-serif;
    font-size: 1.375rem;
    margin: 0;
}

@media (max-width: 991px) {
    .residue h2 {
        font-size: 1.5rem;
        padding: 0;
    }

    .residue .step {
        font-size: 1.5rem;
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        flex: 0 0 2rem;
    }

    .residue p {
        font-size: 1rem;
        line-height: 1.2rem;
    }
}
/* #endregion */


/* #region Marketplace
--------------------------------------------------------------*/
.marketplace .payment-methods {
    background-color: var(--rg-color-light-bg);
}

    .marketplace .payment-methods img {
        height: 1rem;
    }

.marketplace .openpay-img {
    height: 2.5rem;
}

.marketplace .btn.btn-success {
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-bg);
}

.marketplace .marketplace-link:hover {
    color: var(--bs-indigo);
    cursor: pointer;
}

.marketplace .modal h5,
.marketplace .modal h6 {
    color: var(--bs-black);
}

.sw.sw-loading::after {
    z-index: 5;
}

@media screen and (max-width: 1058px) {
    .marketplace .sw > .nav {
        flex-direction: column !important;
        flex: 1 auto;
    }

    .marketplace .sw-theme-arrows > .nav .nav-link {
        overflow: hidden;
        margin-right: unset;
        text-align: left !important
    }
}
/* #endregion */


/* #region Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: whitesmoke;
    min-height: 40px;
    margin-top: 87px;
}

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .breadcrumbs ol li {
            display: inline-flex;
        }

            .breadcrumbs ol li + li {
                padding-left: 10px;
            }

                .breadcrumbs ol li + li::before {
                    padding-right: 10px;
                    color: var(--bs-purple);
                    content: "/";
                }

            .breadcrumbs ol li:last-child {
                padding-right: 12px;
            }

@media (max-width: 900px) {
    .breadcrumbs {
        overflow-x: scroll;
    }

        .breadcrumbs ol {
            flex-wrap: nowrap;
        }

        .breadcrumbs li {
            white-space: nowrap;
        }
}
/* #endregion */


/* #region Blog - Design 1
--------------------------------------------------------------*/
.blog-design {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

    .blog-design img.logo {
        width: 200px;
    }

    .blog-design .categories a {
        color: var(--bs-black);
        transition: 0.3s;
    }

        .blog-design .categories a:hover {
            color: var(--bs-purple);
            text-decoration: none;
        }

    .blog-design .box {
        background-color: white;
        overflow: hidden;
    }

        .blog-design .box img {
            object-fit: cover;
            object-position: center;
            aspect-ratio: 16/9;
            transition: 0.3s;
        }

        .blog-design .box .post-title a {
            color: var(--bs-black);
            font-size: 1.2rem;
            transition: 0.3s;
        }

            .blog-design .box .post-title a:hover {
                color: var(--bs-purple);
                text-decoration: none;
            }

        .blog-design .box .badge {
            font-size: 1rem;
            background-color: var(--bs-indigo);
            top: 7%;
            left: 0;
            border-radius: revert;
        }

    .blog-design h1,
    .blog-design h2,
    .blog-design h3,
    .blog-design h4 {
        color: var(--bs-black);
    }

    .blog-design.author {
        padding: 0;
    }

    .blog-design a.hidden-link {
        color: var(--bs-black);
        transition: 0.3s;
    }

        .blog-design a.hidden-link:hover {
            color: var(--bs-purple);
            text-decoration: none;
        }
/* #endregion */


/* #region Blog
--------------------------------------------------------------*/
.blog {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

    .blog h1,
    .blog h2,
    .blog h3,
    .blog h4,
    .blog h5,
    .blog h6 {
        color: var(--bs-black);
    }

    .blog .blog-title:hover {
        text-decoration: underline;
    }

    .blog .blog-credits span:last-child::before {
        content: "| ";
        margin: 0 8px;
        color: inherit;
    }

    .blog .blog-tags {
        line-height: 2;
    }

    .blog .blog-categories {
        position: absolute;
        margin: 1rem 0 0 1rem;
        z-index: 1;
    }

    .blog .splide .splide-text {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .blog .splide .blog-title,
    .blog .splide .blog-credits {
        color: var(--bs-white);
    }

    .blog .splide .blog-title {
        font-size: 3rem;
    }

    .blog .splide-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        background: linear-gradient(270deg, rgba(0,0,0,0) 5%, var(--bs-indigo) 100%);
    }

    .blog .splide-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

@media (max-width: 991px) {
    .blog .splide .blog-title {
        font-size: 1.5rem;
    }
}
/* #endregion */


/* #region Contact-Cover
--------------------------------------------------------------*/
.contact-cover {
    background: url(/img/site/Regenera_Contacto.webp);
    background-size: cover;
}

    .contact-cover .container {
        width: 60%;
    }

    .contact-cover h1 {
        font-size: 3.5rem;
        font-weight: 500;
    }

@media (max-width: 991px) {
    .contact-cover .container {
        width: 100%;
    }

    .contact-cover h1 {
        font-size: 2rem;
    }
}
/* #endregion */


/* #region Certificate-Cover
--------------------------------------------------------------*/
.certificate-cover {
    background: url(/img/site/Regenera_Rio.webp);
    background-size: cover;
    background-position: center;
}

    .certificate-cover #form-validate-certificate:after {
        content: '';
        height: 5px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0px 0px 0.1rem 0.1rem;
        background: linear-gradient(270deg, var(--bs-blue) 0%, var(--bs-indigo) 33.33%, var(--bs-green) 66.66%, var(--bs-purple) 100%);
    }
/* #endregion */


/* #region Account
--------------------------------------------------------------*/
.account .container {
    min-height: 65vh;
}
/* #endregion */


/* #region Error
--------------------------------------------------------------*/
.error .container {
    min-height: 65vh;
}
/* #endregion */


/* #region Buttons
--------------------------------------------------------------*/
.btn-rg-white,
.btn-rg-gray {
    padding: 10px 25px;
    border-radius: 50rem;
    transition: 0.3s;
    border: none;
}

.btn-rg-white {
    background-color: var(--rg-color-gray);
    color: var(--bs-indigo);
}

.btn-rg-gray {
    background: radial-gradient(circle, rgba(136,136,136,0.8) 70%, rgba(235,235,230,0.8) 100%);
    color: var(--bs-white);
    font-family: "Nunito", sans-serif;
    padding: 5px 25px;
    border-radius: 5px;
}

.btn-rg-white:hover,
.btn-rg-white:active {
    background-color: var(--bs-purple);
    color: var(--bs-white);
    text-decoration: none;
}

.btn-rg-gray:hover,
.btn-rg-gray:active {
    background-color: var(--bs-white);
    color: var(--bs-white);
    text-decoration: none;
}
/* #endregion */


/* #region Utils
--------------------------------------------------------------*/
.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-arrows[type=number] {
    -moz-appearance: textfield;
}
/* #endregion */


/* #region Regenera Recycle Symbol
--------------------------------------------------------------*/
.rg-recycle {
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
}

    .rg-recycle.bold-circle-color {
        background: url("/img/site/Regenera_Recycle_Circle.svg");
    }

    .rg-recycle.fine-circle-color {
        background-image: url(/img/site/Regenera-Recycle-Fine-circular-color.svg);
    }

    .rg-recycle img {
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 1/1;
        padding: 1.5rem;
    }
/* #endregion */
