/********** Template CSS **********/
:root {
    --primary: #C8A44C;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #1D2848;
}

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

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** 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: #FFFFFF;
}

.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;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

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

.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-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        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 ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

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

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

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

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url("../img/contactanos-1.webp") 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);
}

/*Schedule*/
.schedule-header
{
    background: var(--dark);
    background-size:cover;
}

/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    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: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px 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;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** 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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/*Agregados*/
.tel
{
    text-decoration: none;
    color:white;
}

.tel:hover
{
    color: var(--dark);
    font-weight: bold;
}

/*Colores*/
.colores
{
    background-color: var(--primary);
    color:white;
}

.colores:hover
{
    background-color: var(--dark);
    color:var(--primary);
}

/*Butons-Contacts*/
.contactsInfo
{
    background-color: var(--primary);
    color:white;
    border:none;
    transition: background-color 0.7s ease-in, 0.7s ease-in;
}

.contactsInfo:hover
{
    background-color: var(--dark);
    border: 2px solid white;
    color:white;
    outline: none;
    box-shadow: none;
}
.contactsInfo:focus
{
    outline: none;
    box-shadow: none;
}

/*Apoint*/
.apo
{
    background-color: var(--primary);
    color:white;
}

.apo:hover
{
    background-color: var(--dark);
    color: #fff;
}

.title
{
    color:white;
    font-weight: bold;
}
.text-team
{
    color: var(--primary);
}

.text-serv
{
    color: var(--dark);
    text-align: justify;
}

/*Tabla Servicios*/
.servicios
{
    background-color: var(--dark);
    color:white;
    border-color: var(--dark);
    width: 100%;
}

.servicios:hover
{
    background-color: var(--primary);
    color:var(--dark);
    border-color: var(--dark);
    
}
/*Service active*/
.sact
{
    background-color:lightblue;
    border-color: lightblue;
    color: var(--dark);
    font-weight: bold;
    font-size:1.2rem;
}

/*Pricing Table Start*/
.single-price {
  text-align: center;
  background: #262626;
  transition: .7s;
  margin-top: 20px;
}
.single-price h3 {
  font-size: 25px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-top: -80px;
  font-family: poppins;
  color: #fff;
}
.single-price h4 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
}
.single-price h4 span.sup {
  vertical-align: text-top;
  font-size: 25px;
}
.deal-top {
  position: relative;
  background: var(--primary);
  font-size: 16px;
  text-transform: uppercase;
  padding: 136px 24px 0;
}
.deal-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 0;
  height: 0;
  border-top: 50px solid var(--primary);
  border-left: 175px solid transparent;
  border-right: 183px solid transparent;
}

/*For Phone*/
@media (max-width: 576px)
{
    .deal-top::after
    {
        content: "";
        position: absolute;
        left: 0;
        bottom: -50px;
        width: 0;
        height: 0;
        border-top: 50px solid var(--primary);
        border-left: 125px solid transparent;
        border-right: 125px solid transparent;
    }
    
}
/*For Phone*/
.deal-bottom {
  padding: 56px 16px 0;
}
.deal-bottom ul {
  margin: 0;
  padding: 0;
}
.deal-bottom  ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-top: 16px;
  border-top: 1px solid #E4E4E4;
  padding-top: 16px;
  list-style: none;
}
.btn-area a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: var(--primary);
  padding: 8px 64px;
  margin-top: 32px;
  border-radius: 4px; 
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}


.single-price:hover {
  background: var(--primary);
}
.single-price:hover .deal-top {
  background: #262626;
}
.single-price:hover .deal-top:after {
  border-top: 50px solid #262626;
}
.single-price:hover .btn-area a {
  background: #262626;
}

/* ignore the code below */

.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background: var(--primary);
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}
/*Pricing Table End*/

/*icons colors*/
.ic-sh
{
    color: #fff;
}

.ic-sha
{
    color: lightblue;
}

/*Checkbox*/
.chk
{
    border-radius: 25px 25px 0px 0px;
    border-color: var(--primary);
    background-color: fff;
    color: var(--primary);
    width: 130px;
    height: 150px;
}

.chk:hover
{
    background-color: #ffc6c6;
    color: var(--primary);
    font-weight: bold;
    border-radius: 0px 0px 25px 25px;
}

.ic-chk
{
    color: var(--primary);
}

.texta
{
    border-radius: 25px 25px;
    border-color: var(--primary);
    color: var(--primary);
    min-width: 100%;
}
/*DatePicker*/
.calend {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}
.card-al{
    background-color: var(--primary);
}
.card {
    box-shadow: 0px 4px 8px 0px var(--primary);
}
.inp {
    padding: 10px 20px !important;
    border: 1px solid #000 !important;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: var(--primary) !important;
    color: #fff !important;
    font-size: 16px;
    letter-spacing: 1px;
    width: 180px;
}
.inp:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ffc6c6;
    outline-width: 0;
}

::placeholder {
    color: #fff;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #fff;
}

::-ms-input-placeholder {
    color: #fff;
}
.datepicker {
    background-color: var(--dark) !important;
    color: #fff !important;
    border: none;
    font-weight: bold;
    padding: 10px !important;
}

.datepicker-dropdown:after {
  border-bottom: 6px solid #fff;
}
thead tr:nth-child(3) th {
  color: #fff !important;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 10px;
}

.dow, .old-day, .day, .new-day {
  width: 40px !important;
  height: 40px !important;
  border-radius: 0px !important;
}

.old-day:hover, .day:hover, .new-day:hover, .month:hover, .year:hover, .decade:hover, .century:hover {
  border-radius: 6px !important;
  background-color: var(--primary);
  color: #000;
}
.actives {
  border-radius: 6px !important;
  background-image: linear-gradient(#90CAF9, #64B5F6) !important;
  color: #000 !important;
}

.disabled {
  color: #616161 !important;
}

.prev, .next, .datepicker-switch {
  border-radius: 0 !important;
  padding: 20px 10px !important;
  text-transform: uppercase;
  font-size: 20px;
  color: #fff !important;
  opacity: 0.8;
}

.prev:hover, .next:hover, .datepicker-switch:hover {
  background-color: inherit !important;
  opacity: 1;
}

.cell {
  border: 1px solid var(--primary);
  margin: 2px;
  cursor: pointer;
}

.cell:hover {
    border: 1px solid var(--primary);
    background-color: #ffc6c6;
}

.cell.select {
  background-color: var(--primary);
  color: #fff;
}

.fa-calendar {
  color: #fff;
  font-size: 30px;
  padding-top: 8px;
  padding-left: 5px;
  cursor: pointer;
}

.next-form:hover
{
    color: #FFFFFF;
    background-color:  var(--primary);
}

.cell {
  border: 1px solid var(--primary);
  margin: 2px;
  cursor: pointer;
}

.cell:hover {
    border: 1px solid var(--primary);
    background-color: #ffc6c6;
}

.cell.select {
  background-color: var(--primary);
  color: #fff;
}

/*Checkbox*/
.chk
{
    border-radius: 25px 25px 0px 0px;
    border-color: var(--primary);
    background-color: fff;
    color: var(--primary);
    width: 130px;
    height: 150px;
    padding-top: 5%;
}

.chk:hover
{
    background-color: #ffc6c6;
    color: var(--primary);
    font-weight: bold;
    border-radius: 0px 0px 25px 25px;
}

.ic-chk
{
    color: var(--primary);
}

.chk-a
{
    background-color: #ffc6c6;
}

.chk-txt
{
    font-size:16px;
}

.tca
{
    font-size: 1.6rem;
    font-weight: bold;
}

/*centrar icons Circles*/
.cir-cle
{
    margin-top: 10%;
    margin-left: 5%;
}

.links_footer{
    text-decoration: none;
    color: var(--primary);
}

.links_footer:hover{
    color: #0acf83;
}

.filosofia{
    background-color: var(--primary);

}

/*Link de Contactanos*/
.contact-link{
    text-decoration: none;
    color: var(--primary);
}

.contact-link:hover{
    color: var(--dark);
}

/*Link de Enlaces INternos*/
.link-interno{
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
}

.link-interno:hover{
    color: #0acf83;
}

.form-control{
    outline: none;
    border: 1px solid var(--dark);
}
.form-control:focus{
    outline: none;
    border: 1px solid var(--primary);
    box-shadow: none;

}

.cuadro{
    border-style: solid;
    border-width: medium;
    border-color: var(--primary);
}

.iconos{
    color: var(--primary);
}

/*Configuraciones de Galería*/
.galeria-thumb {
    width: 400px;          /* mismo ancho que la imagen */
    margin: 0 auto;        /* centrar el card */
}

.galeria-thumb img {
    width: 100%;           /* ocupa todo el ancho del card */
    height: 300px;         /* altura fija */
    object-fit: cover;     /* recorta proporcionalmente */
    object-position: center;
    display: block;
}

/* Estado normal */
/* Transiciones suaves para columnas (afecta el bloque completo) */
#galeriaContainer .col-lg-4,
#galeriaContainer .col-md-6 {
    transition: opacity 0.3s ease-in, transform 0.3s ease;
}

/* Entrada */
.fade-in {
    opacity: 0;
    transform: scale(0.95);
}

/* Salida */
.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

/*Para Mensaje de galeria*/
#noResults p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}



/************************* Estilos Galería de Imágenes *****************************/
.img-filter-overlay {
    opacity: 1;
}

.libap-main-color-transparent {
    background-color: rgba(44,62,79,.9);
}


/******************Start Gallery************************/
/*Efectos Todo | Fotos | Videos*/
.gallery-filter .portfolioFilter {
    padding: 0;
    text-align: center;
}
.gallery-filter a.current {
    background: transparent;
    border: 0;
    color: #c8a44c;
}
.gallery-filter .portfolioFilter  a {
    margin-right: 0;
    border: 0;
    position: relative;
}
.gallery-filter .portfolioFilter a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    background-color: #BFBFBF;
    width: 1px;
    bottom: 5px;
}
.gallery-filter a:last-child::after {
    display: none;
}
.gallery-filter .portfolioContainer {
    border: 0;
    border-radius: 0;
}

.gallery-filter-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,.2);
    border-radius: 50%;
    font-size: 21px;
    text-align: center;
    line-height: 50px;
    margin: 0 4%;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}
.gallery-filter-icon:after{
    content: "";
    position: absolute;
    right: -14px;
    top: 0;
    background-color: rgba(255, 255, 255, 0.2);
    width: 2px;
    bottom: 0;
}

.img-filter-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    text-align: center;
    opacity: 0;
    -o-transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s;
}
.filter-img-block:hover .img-filter-overlay{
    opacity: 1;
}
.filter-masonry{
    -moz-column-width: 13em;
    -webkit-column-width: 13em;
    column-width: 13em;
    -moz-column-gap: 1em;
    -webkit-column-gap: 1em;
    column-gap: 1em;
}
.filter-masonry .isotope-item {
    display: inline-block;
    width:  25%;/*Define el tamaño de los archivos*/
}
.filter-masonry .filter-img-block {
    margin-bottom: 15px;
}
.filter-masonry .col-md-3 {
    padding-right: 0;
}
.filter-masonry .row , .gallery-filter .row{
    align-items: center;
    justify-content: center;
}

.filter-img-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/******************End Gallery************************/

/******************Aspect Ratio ************************/
.ratio-9x16 {
    --bs-aspect-ratio: calc(16 / 9 * 100%); /* o calc(16 / 9 * 100%); 177.77%*/
}
.videos-9x16{
    max-width: 50%;
    height: auto;
}
