:root {
    --theme-color: #043441;
    --color-1: #FF9800;
    --color-2: #FF2E00;
    --text-color: #000000;
    --text-color-2: #1A1A1A;
    --white-color: #ffffff;
    --vardana-font: 'Verdana';
    --vardana-font-bold: 'Verdana Bold';
    --nunito-font: 'Nunito Sans';
}
*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
}
body {
    font-family: var(--nunito-font);
    font-weight: 300;
    color: var(--text-color);
}
body p {
    font-size: 26px;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
}
a:hover,
a:focus {
    color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--vardana-font-bold);
}
h1 {
    font-size: 64px;
}
h2 {
    font-size: 48px;
}
h2.section_heading {
    font-size: 48px;
    color: var(--theme-color);
}
.container {
    max-width: 1170px;
    margin: 0 auto;
}
.row {
    display: flex;
}
.align-center {
    align-items: center;
}
.w-100 {
    width: 100%;
}
.theme_btn a, .contact-section form input.submit {
    font-size: 28px;
    font-family: var(--vardana-font-bold);
    color: var(--white-color);
    background-color: var(--color-1);
    padding: 4px 28px;
    border-radius: 10px;
    display: inline-block;
    z-index: 1;
    transition: all .5s ease;
    box-shadow: 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    position: relative;
    left: 0;
}

.theme_btn a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 10px;
    background-color: var(--theme-color);
    transition: all .5s ease;
}
.theme_btn a:hover {
    left: 8px;
    transition: all .5s ease;
}
.theme_btn a:hover:after {
    left: 0;
    width: 100%;
    transition: all .5s ease;
}
.text-center {
    text-align: center;
}
.section-border {
    /*border-bottom: 10px solid var(--color-1);*/
}
.after-elem:after {
    content: '';
    position: absolute;
    width: 282px;
    height: 30px;
    background-color: var(--color-2);
    bottom: 0;
    right: 0;
    z-index: 0;
}
.after-elem:before {
    content: '';
    height: 10px;
    width: 100%;
    background: var(--color-1);
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.before-elem:after {
    content: '';
    height: 20px;
    width: 670px;
    background: var(--color-1);
    position: absolute;
    bottom: 0;
}
.before-elem:before {
    content: '';
    height: 38px;
    width: 285px;
    background: var(--color-2);
    position: absolute;
    bottom: 0;
    left: 460px;
}
.position-relative {
    position: relative;
}
/* header style */
header {
    background-color: var(--theme-color);
}
header.on-scroll {
    background: var(--theme-color);
}
header .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 88px;
    margin: 0 auto;
}
header .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
}
header .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 53px;
    margin: 0 auto;
}
header .menu.is-active {
    top: 75px;
    width: 100%;
    height: auto;
    z-index: 2;
    border-top: 2px solid #fff;
}
header .menu-link {
    color: var(--white-color);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--vardana-font-bold);
}
header .menu-link:hover {
    color: var(--white-color);
}
header .burger {
    display: none;
    visibility: hidden;
}
header .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--white-color);
    transition: 0.25s ease-in-out;
}
header .burger-line:nth-child(1) {
    top: 0px;
}
header .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
header .burger-line:nth-child(3) {
    top: 1rem;
}
header .burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
header .burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
header .burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

/* banner style */
.hero-banner {
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}
.hero-banner .banner-content {
    height: 590px;
    display: flex;
    align-items: center;
}
.hero-banner .banner-content .content {
    text-align: left;
    width: 680px;
    margin-left: auto;
    /* background-color: var(--theme-color); */
    color: var(--white-color);
    padding: 28px;
    position: relative;
    z-index: 0;
}
.hero-banner .banner-content .content:after {
    content: '';
    background: var(--theme-color);
    width: 150%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.hero-banner .banner-content p {
    font-size: 44px;
    line-height: 44px;
}
.nosotros-banner {
    background: url(../images/nosotros.jpg) no-repeat;
    background-size: cover;
    color: var(--white-color);
    padding: 125px 0;
}
.nosotros-banner .banner-content {
    max-width: 1080px;
    margin: 0 auto;
}
.nosotros-banner .first-row {
    gap: 78px;
    margin-bottom: 50px;
}
.nosotros-banner .first-row h4 {
    font-family: var(--nunito-font);
    width: 100%;
    border-top: 10px solid var(--white-color);
}
.nosotros-banner .second-row {
    gap: 80px;
}
.nosotros-banner .second-row p {
    text-align: justify;
}
.nosotros-banner .second-row p.mb {
    margin-bottom: 45px;
}
.hero-banner.productos-banner {
    background: url(../images/prod_banner.jpg) no-repeat bottom;
    background-size: cover;
    position: relative;
}
.hero-banner.productos-banner .content {
    border-left: 10px solid var(--color-1);
}
.hero-banner.productos-banner:before {
    content: '';
    position: absolute;
    background-color: var(--color-2);
    width: 420px;
    height: 42px;
    bottom: 20px;
    left: 25px;
}
.hero-banner.productos-banner:after {
    content: '';
    position: absolute;
    background-color: var(--color-1);
    width: 514px;
    height: 42px;
    bottom: 0;
}
/* about style */
.about-section {
    padding: 150px 0;
}
.about-section p {
    padding: 20px 0;
}
.about-section .col1 {
    text-align: center;
    width: 49%;
}
.about-section .col1 img {
    margin: 0 auto;
}
.about-section .col2 {
    width: 58%;
    border-left: 13px solid var(--theme-color);
    padding-left: 26px;
}

/* product style */
.products-section {
    padding: 100px 0;
}
.products-section .product-slider {
    margin: 50px 0;
}
.products-section .product-slider .owl-carousel .item, .product-masonary .product {
    border-radius: 20px;
    background-color: #F1F1F1;
    overflow: hidden;
}
.products-section .product-slider .owl-carousel .item img {
    height: 380px;
    object-fit: cover;
}
.products-section .product-slider .owl-carousel .item h4, .product-masonary .product h4 {
    font-size: 21px;
    color: var(--theme-color);
    padding: 10px 40px;
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products-section .product-slider .owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    background-color: var(--color-1);
    margin: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.products-section .product-slider .owl-carousel .owl-nav button.owl-prev {
    left: -80px;
  }
.products-section .product-slider .owl-carousel .owl-nav button.owl-next {
    right: -80px;
  }

/* sector style */
.sectors-section {
    padding: 100px 0;
}
.sectors-section.after-elem:after {
    left: 0
}
.sectors-section .serve_sector {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 90px;
}
.sectors-section .serve_sector h1, .inner-product-banner h1 {
    text-shadow: 0 4px 14px rgb(0 0 0 / 75%);
}
.sectors-section .serve_sector .sector {
    height: 290px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 100px;
}
.sectors-section .serve_sector .sector .content {
    width: 640px;
}
.sectors-section .serve_sector .funrl {
    background: url(../images/funeral.jpg) no-repeat;
    background-size: cover;
}
.sectors-section .serve_sector .amblnc {
    background: url(../images/ambulance.jpg) no-repeat;
    background-size: cover;
}
.sectors-section .serve_sector .funrm {
    background: url(../images/funebres-mascotas.jpg) no-repeat;
    background-size: cover;
}
.sectors-section .serve_sector .hsptl {
    background: url(../images/hospital.jpg) no-repeat;
    background-size: cover;
}

/* client style */
.client-section {
    padding: 65px 0 100px;
    background: url(../images/client_bg.png) no-repeat center bottom;
    /*background-size: cover;*/
}
.client-section.after-elem:after {
    right: 24%;
}
.client-section .clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 65px;
    column-gap: 75px;
    margin-top: 65px;
}
.client-section .clients .client {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 20%;
    background: var(--white-color);
    text-align: center;
    border-radius: 50%;
    height: 215px;
    max-width: 215px;
    padding: 20px;
}

/* contact style */
.contact-section {
    padding: 100px 0;
}
.contact-section form {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 26px;
    column-gap: 23px;
}
.contact-section form input, .contact-section form textarea {
    font-family: var(--nunito-font);
    font-size: 26px;
    font-weight: 300;
    flex: calc(50% - 12px);
    height: 73px;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 15px 30px;
}
.contact-section form input:focus-visible, .contact-section form textarea:focus-visible {
    outline: none;
}
.contact-section form textarea {
    flex: 100%;
    height: 260px;
}
.contact-section form input.submit {
    width: 570px;
    border: 0px;
    flex: none;
    height: auto;
    margin: 48px auto 0;
    cursor: pointer;
}

/* footer style */
footer {
    padding: 80px 0 100px;
    background: var(--theme-color);
    color: var(--white-color);
}
footer .row {
    justify-content: space-between;
}
footer .column h3 {
    font-size: 24px;
    margin-top: 10px;
}
footer .column p {
    font-size: 16px;
}
footer .column h4 {
    font-size: 14px;
    margin-bottom: 14px;
}
footer .column:nth-child(1) {
    width: 38%;
    padding-right: 180px;
}
footer .social {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}
footer .social a, .social-links a {
    background: #fff;
    padding: 10px;
    display: inline-flex;
    border-radius: 50%;
    height: 38px;
    width: 38px;
    justify-content: center;
}
footer .column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
footer .column ul li a {
    font-size: 14px;
    color: var(--white-color);
}

/* nosotros page style */
.mision-vision-section {
    padding: 130px 0;
}
.mision-vision-section .col1 {
    text-align: center;
}
.mision-vision-section .col1 img {
    box-shadow: -25px -25px 0px var(--color-1);
}
.mision-vision-section .col2 {
    width: 60%;
    padding: 0 0 0 25px;
    margin: 0 0 0 35px;
    border-left: 10px solid var(--theme-color);
}
.mision-vision-section.vision .col2 {
    padding: 0 25px 0 0;
    margin: 0 35px 0 0;
    border-left: 0;
    border-right: 10px solid var(--theme-color);
    text-align: right;
}
.mision-vision-section.vision .col1 img {
    box-shadow: 25px -25px 0px var(--color-1);
}
.mision-vision-section.before-elem:after {
    height: 10px;
}
.mision-vision-section.before-elem:before {
    height: 20px;
}

/* product page style */
.products-section.products {
    padding: 140px 0;
    overflow: hidden;
}
.products-section.products h2 {
    background: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
    padding-right: 20px;
    position: relative;
}
.products-section.products h2:after {
    content: '';
    background: var(--theme-color);
    width: 150%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.products-section.products p {
    padding: 30px 0;
}

/* product inner page style */
.inner-product-banner .banner-content {
    height: 290px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.inner-product-banner.funerarios {
    background: url(../images/funeral.jpg) no-repeat;
    background-size: cover;
}
.inner-product-banner.funebres {
    background: url(../images/funebres-mascotas.jpg) no-repeat;
    background-size: cover;
}
.inner-product-banner.sector {
    background: url(../images/sector-salud.jpg) no-repeat;
    background-size: cover;
}
.inner-products-masonary {
    padding: 140px 0;
}
.inner-products-masonary .product-masonary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}
.inner-products-masonary .product-masonary img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/*product detail css*/
.products_detail_section {
    padding: 100px 0;
}
.card-wrapper {
    max-width: 1170px;
    margin: 0 auto;
}
#prod_slider {
    margin-bottom: 10px;
}
#prod_slider img {
    border-radius: 20px;
}
#thumbs img {
    border-radius: 8px;
}
.product-imgs .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	outline: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ddd !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-imgs .owl-nav button svg {	
	width: 22px;
	height: 22px;	
}
.product-imgs .owl-nav button.owl-prev {
	left: -20px;
}
.product-imgs .owl-nav button.owl-next {
	right: -20px;
}
.product-content {
    padding: 2rem 1rem;
}
.product-title {
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 1rem 0;
}
.product-detail p {
    font-size: 18px;
}
.product-detail ul {
    margin: 2rem 0;
}
.product-detail ul li {
    list-style: none;
    background: url(../images/check.svg) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 12px 0;
}
.purchase-info {
    margin: 2rem 0;
    display: flex;
    gap: 20px;
}
.purchase-info .theme_btn a {
    font-size: 18px;
    text-transform: uppercase; 
}
.purchase-info .theme_btn:last-of-type a {
    background: #ff2e00;
}
.product-content .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-content .social-links h4 {
   font-family: 'Nunito Sans';
}
.product-content .social-links a {
    background-color: #e9e9e9;
}

@media screen and (min-width: 992px){
    .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    .card-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-imgs{
        max-width: 450px;
        margin: 0 auto;
    }
    .product-content{
        padding-top: 0;
    }
	.contenedor-columnas {
    display: flex; /* Activa flexbox */
    justify-content: space-between; /* Espacio entre columnas */
	}
	.contenedor-columnas ul {
    flex: 1; /* Cada columna ocupa el mismo espacio */
    margin: 0 10px; /* Margen entre columnas */
    list-style: none; /* Quita los puntos de la lista */
    padding: 0; /* Elimina el padding por defecto */
	}
	.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 500px; /* Ajusta esta altura según necesites */
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el espacio */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.carousel-indicators .indicator.active {
    background-color: white;
}
}





