/********** Template CSS **********/
:root {
    --primary: #008fe0;
    --secondary: #7fc424;
    --terciary: #fef800;
    --cuarto:#dc2b19;
    --light: #f1f1f1;
    --dark: #0e0f0f;
    overflow-x: hidden; 
}

.rojo{
    color: var(--cuarto) !important;
}
.azul{
    color: var(--primary) !important;
}
.verde{
    color: var(--secondary) !important;
}
.amarillo{
    color: var(--terciary) !important;
}

.bg-rojo{
    background-color: var(--cuarto) !important;
}
.bg-azul{
    background-color: var(--primary) !important;
}
.bg-verde{
    background-color: var(--secondary) !important;
}
.bg-amarillo{
    background-color: var(--terciary) !important;
}
.btn:hover{
    background-color: var(--light) !important;
    transition: all ease .3s;
}
.rounded-pill{
    border: none;
}
.mt-25{
    margin-top: 25px;
}
.mt-50{
    margin-top: 50px;
}
.mt-75{
    margin-top: 75px;
}
.mt-100{
    margin-top: 100px;
}
.mt-150{
    margin-top: 100px;
}

.mb-25{
    margin-bottom: 25px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-75{
    margin-bottom: 75px;
}
.mb-100{
    margin-bottom: 100px;
}


.pt-25{
    padding-top: 25px;
}
.pt-50{
    padding-top: 50px;
}
.pt-75{
    padding-top: 75px;
}
.pt-100{
    padding-top: 100px;
}

.pb-25{
    padding-bottom: 25px;
}
.pb-50{
    padding-bottom: 50px;
}
.pb-75{
    padding-bottom: 75px;
}
.pb-100{
    padding-bottom: 100px;
}

.pd-4{
    padding: 25px 50px;
}

.pl-25{
    padding-left: 25px;
}

.pd-20{
    padding: 30px;
}

.border-50{
    border-radius: 50px !important;
}

.bg-acento{
    background-color: var(--terciary);
}
.bg-celeste{
    background-color: var(--secondary);
}
.bg-azul{
    background-color: var(--primary);
}
.bg-dark{
    background-color: var(--dark) !important;   
}

.lobster{
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.text-acento{
    color: var(--terciary);
}
.text-celeste{
    color: var(--secondary);
}
.text-azul{
    color: var(--primary);
}
.text-left{
    text-align: left !important;
}
body{
    font-family: "Nunito", sans-serif;
    font-size:1rem;
    font-weight:400;
    line-height:1.5;
    color:#252c30;
    background-color:#fff;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
h1,h2,h3,h4,h5,h6{
    font-family: "Roboto Slab", serif;
}
.oswald{
    font-family: "Roboto Slab", serif;
}

.wg-200{
    font-weight: 200 !important;
}
.wg-300{
    font-weight: 300 !important;
}
.wg-400{
    font-weight: 400 !important;
}
.wg-500{
    font-weight: 500 !important;
}
.wg-600{
    font-weight: 600 !important;
}
.wg-700{
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 90px;
    z-index: 99;
}

.whats-float {
    position: fixed;
    transform:translate(120px,0px);
    bottom:20px;
    right:0;
    width:165px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** 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: 68px;
    height: 68px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    background: white;
    top: -150px;
    transition: .5s;
    background-image: url(../img/line.png);
    background-repeat: repeat-x;
    background-position: left bottom;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 200px;
    height: auto;
    top: 0;
    left: 0;
    margin:0;
    align-self: anchor-center;
    z-index: 1;
}

.navbar .navbar-nav .nav-link {
    font-family: "Roboto Slab", serif;
    font-size: 1.1rem;
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link.uno:hover,
.navbar .navbar-nav .nav-link.uno.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link.dos:hover,
.navbar .navbar-nav .nav-link.dos.active {
    color: var(--secondary);
}

.navbar .navbar-nav .nav-link.tres:hover,
.navbar .navbar-nav .nav-link.tres.active {
    color: var(--terciary);
}

.navbar .navbar-nav .nav-link.cuatro:hover,
.navbar .navbar-nav .nav-link.cuatro.active {
    color: var(--cuarto);
}

.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: 20px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: flex;
        border: none;
        margin-top: 0;
        top: 100px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        position: fixed; /* Cambiado a fixed para posicionar respecto al viewport */
        width: 100vw; /* Hace que ocupe todo el ancho del viewport */
        left: 50%; /* Centra el dropdown */
        transform: translateX(-50%); /* Ajuste para centrar el dropdown */
        padding: 20px 30px;
        z-index: -1;
        flex-direction:row;
        background: var(--light);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 78px;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.dropdown-item.hover-1:hover, .dropdown-item.hover-1:focus {
    color: #1e2125;
    background-color: var(--light);
    border-radius: 0px;
    filter: contrast(95%);
}
.dropdown-item.hover-2:hover, .dropdown-item.hover-2:focus {
    color: #1e2125;
    background-color: var(--light);
    border-radius: 0px;
    filter: contrast(95%);
}
.dropdown-item.hover-3:hover, .dropdown-item.hover-3:focus {
    color: #1e2125;
    background-color: var(--light);
    border-radius: 0px;
    filter: contrast(95%);
}
.dropdown-item.hover-4:hover, .dropdown-item.hover-4:focus {
    color: #1e2125;
    background-color: var(--light);
    border-radius: 0px;
    filter: contrast(95%);
}
.dropdown-item{
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
}
.dropdown-item.active{
    border-radius: 50px;
}

.dropdown-item::before{
    display: inline-block;
    border: none;
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    font-size: 1.1em;
    margin-right: 10px;
    transition: margin-right ease .3s, color ease 0s;
}
.dropdown-item.hover-1::before{
    color: var(--secondary);
}
.dropdown-item.hover-2::before{
    color: var(--terciary);
}
.dropdown-item.hover-3::before{
    color: var(--cuarto);
}
.dropdown-item.hover-4::before{
    color: var(--primary);
}
.dropdown-item:hover::before {
    margin-right: 5px;
    transition: margin-right ease .3s, color ease 0s;
}

.logo{
    padding: 10px;
}

/*** Header ***/

.carousel-inner{
    height: calc(100vh - 75px);
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content:center;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
    height: calc(100vh - 75px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: calc(65vh - 75px);
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {    
    background: linear-gradient(45deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 100%), url(../img/banner-bg.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    content: ' | ';
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}
.page-header .breadcrumb-item a:hover {
    font-size: 18px;
    color: var(--terciary);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}
/*
.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}
*/

/*** Products ***/
.product {
    background: url(../img/product-bg.png) center center 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);
}

.owl-item a:hover img{
    transform:scale(1.05);
    transition: all ease-out .3s;
    box-shadow: 0px 10px 15px -4px rgba(0,0,0,0.3);
}


/*** About ***/

.btn-primary:hover {
    color: #fff;
    background-color: #2A93D5 !important;
    border-color: #2A93D5 !important;
    filter:drop-shadow(0 5px 5px rgba(0,0,0,0.25));
    transform: translateY(-5px);
}

.video {
    background-color: var(--dark);
}

.video-2 {
    background: url(../img/tienda.webp) center left no-repeat;
    background-size: contain;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 38px 30px 20px 38px;;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** 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 {
    color: #B0B9AE;
}

.copyright {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.5);
    /*
    background: var(--primary);
    */
}

.copyright a:hover {
    color: #FFFFFF !important;
}


/* Marqueee */

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Element styles */

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 40s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee img {
  display: grid;
  place-items: center;
  width: 150px;
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: 9px 16px;
  border-radius: 0.5rem;
}

.marquee--vertical img {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: fade 400ms 4s ease-out forwards;
  user-select: none;
}

.toggle img {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical img {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


/* EXTRAS CLASICOS DEL 70 */

.border-left{
    border-left: 1px solid rgba(0,0,0,0.2);
}

.form-control:focus {
    color: #252c30;
    background-color: #fff;
    border-color: var(--terciary);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(42, 147, 213, .25);
}

.footer a, .footer p {
    color: #fff;
    text-decoration: none;
    transition:all ease .3s;
}

.footer a:hover {
    color: var(--terciary);
    text-decoration: none;
    transition:all ease .3s;
}
.footer a:hover i{
    color: var(--terciary) !important;
    text-decoration: none;
    transition:all ease .3s;
}

.grecaptcha-badge{
  display: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: url(../img/menu.svg) !important);
}

.no-display{
    display: none !important;
}

.classics{
    width: 170px;
    height: fit-content;
    padding: 10px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}

/* MEDIA QUERYS */
@media (min-width: 340px) and (max-width: 768px) {

.logo{
    width: 150px;
}
.navbar .navbar-brand {
    width: 150px;
    height: 100px;
}
.py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0);
    border-color: transparent;
}

.dropdown-menu.show {
    display: block;
    background: var(--light);
}

.carousel-inner {
    height: calc(65vh - 75px);
}

.carousel-caption {
    height: calc(65vh - 75px);
}

.carousel-caption .container{
    display: flex;
    justify-content:center;
    align-self: flex-end;
}

.carousel-caption .container .row{
    width: 90%;
}

#header-carousel .carousel-item img.logo-garage {
    position: relative;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 20px !important;
}
.local-2{
    margin-top: 50px;
}
.classics {
    width: 110px;
    height: fit-content;
    padding: 10px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}
}

.text-primary.oswald{
    text-transform: uppercase;
}

li.breadcrumb-item, span.text-dark.display-1{
    text-transform: capitalize;
}

div.container-fluid.page-header{
    background-size: cover !important;
    position: relative;
}

div.container-fluid.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
}

div.container.text-center.py-5{
    z-index: 2;
    position: relative;
}


@media (min-width: 1200px) {
.display-1 {
    font-size: 4.5rem;
}
}

div.toast{
    margin-top: 20px;
    width: 100%;
}
.toast-header {
    justify-content: space-between;
}

.mt-n5{
    border-radius: 50px;
}

.product-item img{
    border-radius: 20px !important;
}

.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.display-desktop{
    display: block;
}

.display-mobile{
    display: none;
}

@media (min-width: 768px) and (max-width: 1023px){
        .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }
}

@media (min-width: 100px) and (max-width: 767px){
    .display-desktop{
        display: none;
    }

    .display-mobile{
        display: block;
    }

    .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }
    .navbar .navbar-brand {
        position: absolute;
        padding: 0;
        width: 200px;
        height: auto;
        top: 15px;
        left: 0;
        margin:0;
        align-self: center;
        z-index: 1;
    }
    .dropdown-item {
        font-family: "Nunito", sans-serif;
        font-size: .9rem;
        color: var(--dark);
        display: flex;
        align-items: center;
    }
    .carousel-caption div.text-left{
        text-align: center !important;
    }
    div.container-fluid.page-header {
        background-size: cover !important;
        background-position-x: -650px !important;
        height: 540px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    div.container-fluid.page-header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.3);
        width: 100%;
        height: 100%;
    }

    div.container.text-center.py-5{
        z-index: 1;
    }
}

.datos-footer{
    border-top:1px solid white;
    border-bottom:1px solid white;
    height: 250px;
}

a.politicas:hover{
    color: var(--primary) !important;
}