/********** Template CSS **********/
:root {
    --primario: #0073E6;
    --secundario: #FF8C00;
    --terciario: #FFD700;
    --cuatro: #FFD700;
    --cinco: #88C9A1;
    --seis: #FF7F7F;
    --white: #f0f0f0;
    --light: #FFFDF0;
    --dark: #464646;
    --sales: #f5d894;
    --huincacara: #347132;
    --espuma15: #8CC6DA;
    --fondo: #f3f3f3;
}

body {
    color: var(--dark);
    background-color: var(--fondo);
}

a {
    color: var(--white);
    text-decoration: none;
}

a:hover {
    color: var(--white);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

/* TEXTO PALETA DE COLORES */
.text-primario {
    color: var(--primario) !important;
}

.text-secundario {
    color: var(--secundario) !important;
}

.text-terciario {
    color: var(--terciario) !important;
}

.text-cuatro {
    color: var(--cuatro) !important;
}

.text-cinco {
    color: var(--cinco) !important;
}

.text-seis {
    color: var(--seis) !important;
}

.text-sales {
    color: var(--sales) !important;
}

.text-huincacara {
    color: var(--huincacara) !important;
}

.text-espuma15 {
    color: var(--espuma15) !important;
}

.text-fondo {
    color: var(--fondo) !important;
}

.text-dark {
    color: var(--dark) !important;
}


/* FONDO PALETA DE COLORES */
.bg-primario {
    background-color: var(--primario) !important;
}

.bg-secundario {
    background-color: var(--secundario) !important;
}

.bg-terciario {
    background-color: var(--terciario) !important;
}

.bg-cuatro {
    background-color: var(--cuatro) !important;
}

.bg-cinco {
    background-color: var(--cinco) !important;
}

.bg-seis {
    background-color: var(--seis) !important;
}

.bg-sales {
    background-color: var(--sales) !important;
}

.bg-huincacara {
    background-color: var(--huincacara) !important;
}

.bg-espuma15 {
    background-color: var(--espuma15) !important;
}

.bg-fondo {
    background-color: var(--fondo) !important;
}


/* BOTONES FLOTANTES  */

.float-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 160px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float-wsp {
    margin-top: 14px;
}

.float-wsp:hover {
    color: #fff;
    transition: 0.2s;
}

.float-insta {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 25px;
    background: #EA0C5F;
    background: linear-gradient(0deg, #f6ba00 0%, #c0007a 100%);
    color: #ffffffe2;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float-insta {
    margin-top: 16px;
}

.float-insta:hover {
    color: #fff;
    transition: 0.2s;
}

.float-phone {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 230px;
    right: 25px;
    background-color: var(--primario);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 27px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float-phone {
    margin-top: 18px;
}

.float-phone:hover {
    -webkit-animation: headShake 1s;
    animation: headShake 1s;
}

/* ======================================================= */
/* ========== PAGINAS DE ERRORES Y DESARROLLO ============ */

/* ERROR 404 Y 500 */
.error-404 {
    min-height: 77vh;
}

.a-error {
    color: #4380b4;
}

.icon-404 {
    width: 22px !important;
    height: 22px !important;
    margin-left: 2px;
    margin-bottom: 4px;
}

.img-error {
    width: 100%;
}

/* LANDING PAGE */

.landing {
    height: 100vh;
    background-color: var(--primario);
}


.landing-text {
    color: white;
}

.landing img {
    width: 50%;
}


/* BOTONES DE CONTACTO */
.rrss-btn {
    display: inline-block;
    width: 90px;
    height: 90px;
    background: var(--secundario);
    margin: 10px;
    border-radius: 30%;
    box-shadow: var(--secundario);
    color: var(--primario);
    overflow: hidden;
    position: relative;
}

.rrss-btn i {
    line-height: 90px;
    font-size: 26px;
    transition: 0.2s linear;
}

.rrss-btn:hover i {
    transform: scale(1.3);
    color: var(--secundario);
}

.rrss-btn::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--primario);
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
}

.rrss-btn:hover::before {
    animation: aaa 0.7s 1;
    top: -10%;
    left: -10%;
}

@keyframes aaa {
    0% {
        left: -110%;
        top: 90%;
    }

    50% {
        left: 10%;
        top: -30%;
    }

    100% {
        top: -10%;
        left: -10%;
    }
}

/* ======== FIN PAGINAS DE ERRORES Y DESARROLLO =========== */
/* ======================================================== */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primario);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;

}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(136, 180, 78, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** Tapicería ***/
.tapiceria {
    background: var(--terciario);
    background-size: cover;
}

/*** Enjuncado ***/
.enjuncado-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}

/*** Lacados ***/
.lacados-img img {
    transition: .5s;
}

.lacados-img img:hover {
    background: var(--primario) !important;
}

/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

.pattern-1 {
    background: radial-gradient(circle at bottom, transparent 24%, #ffc885 25%, #ffc885 30%, transparent 31%, transparent 39%, #ffc885 40%, #ffc885 45%, transparent 46%), radial-gradient(circle at top, transparent 24%, #ffc885 25%, #ffc885 30%, transparent 31%, transparent 39%, #ffc885 40%, #ffc885 45%, transparent 46%), radial-gradient(circle at left, transparent 24%, #ffc885 25%, #ffc885 30%, transparent 31%, transparent 39%, #ffc885 40%, #ffc885 45%, transparent 46%), radial-gradient(circle at right, transparent 24%, #ffc885 25%, #ffc885 30%, transparent 31%, transparent 39%, #ffc885 40%, #ffc885 45%, transparent 46%);
    background-size: 1em 1em;
    background-color: var(--terciario);
    opacity: 1
}

.curved {
    position: relative;
    height: auto;
    border-bottom-left-radius: 50% 8%;
    border-bottom-right-radius: 50% 8%;
}

.spikes-amarillo {
    position: relative;
    height: auto;
}

.spikes-amarillo::after {
    content: '';
    position: absolute;
    right: 0;
    left: -0%;
    top: 100%;
    z-index: 10;
    display: block;
    height: 50px;
    background-size: 50px 100%;
    background-image: linear-gradient(135deg, #FFD700 25%, transparent 25%), linear-gradient(225deg, #FFD700 25%, transparent 25%);
    background-position: 0 0;
}

.spikes-fondo {
    position: relative;
    height: auto;
}

.spikes-fondo::after {
    content: '';
    position: absolute;
    right: 0;
    left: -0%;
    top: 100%;
    z-index: 10;
    display: block;
    height: 50px;
    background-size: 50px 100%;
    background-image: linear-gradient(135deg, #f3f3f3 25%, transparent 25%), linear-gradient(225deg, #f3f3f3 25%, transparent 25%);
    background-position: 0 0;
}

.pattern-2 {
    background: radial-gradient(circle, #FFD700 10%, transparent 11%);
    background-size: 3em 3em;
    background-color: #ffe347;
    opacity: 1
}


div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #0073E6;
    color: #fff;
    font-size: 1em;
}