@font-face {
    font-family: 'Poppins-Regular';
    /*a name to be used later*/
    src: url('../fonts/Poppins-Regular.ttf');
    /*URL to font*/
}

@font-face {
    font-family: 'Minion-Regular';
    /*a name to be used later*/
    src: url('../fonts/Minion-Regular.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'Minion-Bold';
    /*a name to be used later*/
    src: url('../fonts/Minion-Bold.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'Photograph-Signature';
    /*a name to be used later*/
    src: url('../fonts/Photograph-Signature.ttf');
    /*URL to font*/
}

:root {
    --black: #251a1a;
    --white: #FFFFFF;
    --gray: #aaa;
    --animation-curve: cubic-bezier(0.05, 0.07, 0.052, 0.052);
    --linear-grafient: linear-gradient(90deg, rgba(233,79,29,1) 0%, rgba(244,117,42,1) 22%, rgb(253, 134, 54) 47%, rgb(239, 111, 37) 68%, rgba(234,90,31,1) 100%);
    --palet-1: #4F1212;
    --palet-2: #e94f1d;
    --palet-3: #fdf236;
}

* {
    font-family: 'Minion-Regular';
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none !important;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    word-wrap: break-word;
}

html {
    overflow-x: hidden;
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body {
    background: linear-gradient(rgb(14 10 7 / 83%), rgb(61 29 14 / 80%)), url(../images/background-body.jpeg);
    background-size: 110% !important;
}

section {
    padding: 9rem 9% !important;
}

.heading {
    text-align: center;
    margin-bottom: 3rem;
}

.heading .title-menu {
    text-align: center;
    font-family: 'Minion-Bold';
    font-size: 5.8rem;
    text-transform: uppercase;
    margin-top: -2rem;
    color: var(--palet-2);
}

.heading .text-menu {
    text-align: center;
    font-family: 'Minion-Bold';
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--white);
}

.heading .sub-menu {
    text-align: center;
    font-family: 'Minion-Bold';
    font-size: 5.8rem;
    text-transform: uppercase;
    font-size: 8rem;
    color: var(--white);
}

p {
    font-family: 'Minion-Regular';
    font-style: normal;
}

.m-cart {
    font-size: 2rem !important;
}

img {
    width: 100%;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    cursor: pointer;
    color: var(--palet-1);
    background: no-repeat;
    font-size: 2rem;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.btn:hover {
    color: var(--white);
    background: var(--palet-1);
}

.btn-contact {
    display: inline-block !important;
    margin-top: 1rem !important;
    cursor: pointer !important;
    color: var(--white) !important;
    background: var(--linear-grafient) !important;
    font-weight: bolder;
    font-size: 1.7rem !important;
    border-radius: 1rem !important;
    padding: 1rem 3rem !important;
}

.text-to-right {
    text-align: right !important;
    display: flex !important;
    align-content: flex-end !important;
    align-items: flex-end !important;
}

.btn-contact:hover {
    color: var(--white) !important;
    background: var(--palet-1) !important;
    border: 0.2rem solid var(--palet-1) !important;
}

.btn-link-f {
    display: inline-block !important;
    margin-top: 1rem !important;
    cursor: pointer !important;
    color: var(--white) !important;
    background: #3b5998 !important;
    font-size: 3rem !important;
    border-radius: 1rem !important;
    padding: 1rem 3rem !important;
    border: none !important;
}

.btn-link-f:hover {
    color: var(--white) !important;
    background: var(--black) !important;
}

.btn-link-i {
    display: inline-block !important;
    margin-top: 1rem !important;
    cursor: pointer !important;
    color: var(--white) !important;
    background: #f09433;
    border: none !important;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    font-size: 3rem !important;
    border-radius: 1rem !important;
    padding: 1rem 3rem !important;
}

.btn-link-i:hover {
    color: var(--white) !important;
    background: var(--black) !important;
}

.header {
    z-index: 1000;
    padding: 1.5rem 1rem;
}

.header.active {
    background: var(--white);
    padding: 1.8rem 0;
}

.header.active .logo {
    color: var(--palet-1);
}

.header.active .nav a {
    color: var(--palet-1);
}

.header.active #menu-btn {
    color: var(--palet-1);
}

.header .logo {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bolder;
}

.logo-desing {
    width: 10%;
    height: auto;
}

.header .logo span {
    color: var(--palet-2);
}

.header .nav a {
    font-size: 2rem;
    text-transform: uppercase;
    font-family: 'Poppins-Regular';
    margin-left: 2rem;
    color: var(--black);
}

.header .nav a:hover {
    color: var(--black);
}

.header #menu-btn {
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--white);
}

.shop {
    font-size: 7px;
    cursor: pointer;
    color: var(--black);
}

.shop:hover {
    color: var(--black);
}

.phone {
    z-index: 2;
    margin-right: 4rem;
    color: white;
    background-color: var(--grey);
    animation: phone 1s var(--animation-curve) infinite alternate-reverse;
    display: grid;
    justify-content: center;
    align-items: center;
    border: 0px white solid;
}

@keyframes phone {
    0% {
        transform: scale(3);
    }
    100% {
        transform: scale(3.5);
    }
}


/* HERO */

.home-1 {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 1.5rem;
    margin-top: 10rem;
    min-height: 100vh;
    align-items: center;
    z-index: 2;
    background-size: cover;
    background-position: center;
}

.home-1 .content {
    flex: 1 1 40rem;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* padding-top: 9.5rem; */
}

.home-1 .image {
    flex: 1 1 40rem;
    visibility: hidden;
}

.home-1 .image-2 {
    flex: 1 1 20rem;
    visibility: hidden;
}

.home-1 .content img {
    width: 80%;
    /* animation: float 3s linear infinite; */
}

.float {
    animation: float 3s linear infinite;
}

.home-1 .image {
    flex: 1 1 25rem;
    /* animation: float 3s linear infinite; */
}

.home-2 .image {
    flex: 1 1 25rem;
    /* animation: float 3s linear infinite; */
}

.home-2 {
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 1.5rem;
    align-content: flex-start;
    margin-top: 10rem;
    min-height: 100vh;
    align-items: center;
    z-index: 2;
    background-size: cover;
    background-position: center;
}

.home-2 .content {
    flex: 1 1 40rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* padding-top: 9.5rem; */
}

.home-2 .image {
    flex: 1 1 25rem;
    /* animation: float 3s linear infinite; */
}

.home-2 .image-2 {
    flex: 1 1 25rem;
    /* animation: float 3s linear infinite; */
}

.home-2 .content img {
    width: 100%;
    /* animation: float 3s linear infinite; */
}

.home-2 .image {
    display: none;
}

.home-2 .image-2 {
    visibility: hidden;
}

.content .redir-2 {
    cursor: pointer;
    width: 500px !important;
    display: flex;
    height: auto !important;
    animation: none !important;
    margin-top: 2.5rem;
    float: left;
}

.content .redir-1 {
    cursor: pointer;
    width: 400px !important;
    display: flex;
    height: auto !important;
    animation: none !important;
    margin-top: 2.5rem;
    float: left;
}

#home .content a {
    display: flex;
    justify-content: center;
}

.home-2 .image img {
    width: 80%;
}

.home-1 .image img {
    width: 80%;
}

.home-2 .image img {
    width: 80%;
}

.home-3 {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    width: 85%;
    gap: 1.5rem;
    margin-top: 10rem;
    min-height: 100vh;
    align-items: center;
    z-index: 2;
    background-size: cover;
    background-position: center;
}

.home-3 .content {
    flex: 1 1 40rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* padding-top: 9.5rem; */
}

.home-3 .image {
    flex: 1 1 40rem;
    animation: float 3s linear infinite;
}

.home-3 .content img {
    width: 80%;
    padding: 1rem;
    /* animation: float 3s linear infinite; */
}

.home-3 .image img {
    width: 80%;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0rem);
    }
    50% {
        transform: translateY(-3rem);
    }
}

.home .content h3 {
    font-size: 5rem;
    color: #333;
}

.home .content p {
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}

.logo-desing {
    /* background-image: url('../img/logotipo-blanco.png'); */
    width: 10%;
    height: auto;
}

.img-1-slideshow {
    background-image: url('../images/banner/banner-1/b1-image.png');
    height: 100vh;
    background-size: contain;
    background-position-x: center;
    background-position-y: bottom;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    justify-content: center;
}


/* .img-1-slideshow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/banner/banner-1/sombra.png');
  height: 100vh;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  z-index: -1;
} */


/* .slideshow__slide-image::before, .slideshow__slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.35;
} */


/* .slideshow__slide-image::before {
  background-color: #1e1e22;
} */


/* .slideshow__slide-image::after {
  background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
} */

.img-2-slideshow {
    background-image: url('../images/banner/banner-2/b2-image.png');
    height: 100vh;
    background-size: cover;
    background-position: left !important;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    justify-content: center;
}


/* .img-2-slideshow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/svg/line-effect.svg'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
  height: 100vh;
  background-size: 20%, cover;
  background-position-y: bottom, center;
  background-position-x: right, center;
  background-repeat: no-repeat, no-repeat;
  z-index: -1;
} */

.img-3-slideshow {
    background-image: url('../images/banner/banner-3/b3-image.png');
    height: 100vh;
    background-size: cover;
    background-position-x: left !important;
    background-position-y: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    justify-content: center;
}


/* .img-2-slideshow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/svg/line-effect.svg'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
  height: 100vh;
  background-size: 20%, cover;
  background-position-y: bottom, center;
  background-position-x: right, center;
  background-repeat: no-repeat, no-repeat;
  z-index: -1;
} */

.text-header {
    width: 70%;
    height: auto;
}

.text-header-2 {
    width: 60%;
    height: auto;
}

.text-header-3 {
    width: 60%;
    height: auto;
}

.redir-2 {
    width: 60%;
    text-align: left;
}

.text-down {
    color: var(--white);
}


/*** Membership ***/

.membership-item {
    padding: 45px 30px;
    margin-bottom: 3rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.568);
    height: auto;
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .more {
    color: var(--palet-3) !important;
}

.membership-item .less {
    color: var(--palet-3) !important;
}

.title-myv {
    font-size: 4rem;
    font-family: 'Minion-Bold';
}

.membership-item p {
    font-size: 2rem;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--palet-1);
}

.icon-mv {
    color: var(--palet-3) !important;
}


/* FINAL HERO */

.service {
    background: linear-gradient(rgb(14 10 7 / 83%), rgba(17, 8, 4, 0.8)), url(../images/background-info-about.jpg);
    background-size: cover, cover;
    background-position: center;
    padding: 2rem 9% !important;
}

.service-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
    gap: 2rem;
    backdrop-filter: blur(1px);
    border-radius: 8rem;
}

.service-box .box {
    text-align: center;
    padding: 2rem;
}

.service-box .box i {
    height: 7rem;
    width: 7rem;
    line-height: 7rem;
    font-size: 2.5rem;
    color: var(--white);
    background: var(--palet-2);
    margin-bottom: 1rem;
    border-radius: 50%;
}

.service-box .box .title-services {
    padding: 1rem 0;
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--white);
    font-family: 'Minion-Bold';
}

.service-box .box .sub-services {
    padding: 1rem 0;
    margin-top: -3rem;
    font-size: 6rem;
    font-family: 'Photograph-Signature';
    color: var(--palet-2);
}

.service-box .box p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--white);
}


/*========== MENU ==========*/


/*========== MENU ==========*/

/* .menu {
    background: url(../images/vectores/patron-1.svg), url(../images/back-menu.png) repeat;
    background-size: contain, contain;
    background-position: center;
    padding: 2rem 4% !important;
} */
 
.menu {
    background: linear-gradient(rgba(19, 18, 17, 0.363), rgba(15, 15, 15, 0.356)), url(../images/back-menu.png) repeat;
    background-size: 100%, contain;
    background-position: center; 
    padding: 2rem 4% !important;
}

.menu__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}

.buttons a {
    margin-left: 1rem;
    margin-right: 1rem;
}

.menu__content {
    /* position: relative; */
    display: flex;
    opacity: 1 !important;
    flex-direction: column;
    background: url(../images/vectores/back-footer.svg) no-repeat, linear-gradient(346deg, rgba(206, 5, 5, 1) 0%, rgba(206, 22, 5, 1) 100%) !important;
    background-size: cover !important;
    background-position-y: center !important;
    background-position-x: center !important;
    border-radius: 2rem;
    -webkit-box-shadow: 0px 16px 34px -3px rgba(48, 48, 48, 0.9);
    -moz-box-shadow: 0px 16px 34px -3px rgba(48, 48, 48, 0.9);
    box-shadow: 0px 16px 34px -3px rgba(48, 48, 48, 0.9);
    /* padding: .75rem; */
}


/* NEW PRODUCTS */

.glassBox {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 2rem;
    /* background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1); */
    padding: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.glassBox__imgBox {
    width: 100%;
}

.glassBox,
.glassBox * {
    box-sizing: border-box;
    transition: 400ms;
}

.glassBox__imgBox img {
    display: block;
    width: 100%;
    height: auto;
}

.glassBox__title {
    text-align: center;
    margin-top: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: "Lato";
}

.glassBox__imgBox h4 {
    font-size: 2rem !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    margin-top: -0.5rem !important;
}

.glassBox__content {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: "Lato";
    letter-spacing: 0.1em;
    opacity: 0;
}

.glassBox:hover .glassBox__imgBox {
    transform: translateY(-35px);
}

.glassBox:hover .glassBox__imgBox img {
    transform: translate(-5px, -25px) rotate(-15deg) scale(1.15);
}

.glassBox .glassBox__imgBox {
    transform: translateY(2px);
}

.glassBox .glassBox__imgBox img {
    transform: translate(0px, 0px) rotate(1deg) scale(1.11);
    margin-bottom: 5rem !important;
}


/* END NEW DESIGN PRODUCTS */

.add-to-cart {
    display: flex !important;
    align-items: center !important;
}

.menu__img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover;
    align-self: center;
    margin-bottom: 1rem;
    border-radius: 2rem;
}

.no-cover {
    object-fit: contain !important;
}

.menu__name b {
    font-size: 3rem !important;
    text-transform: uppercase;
    color: var(--white) !important;
    font-family: 'Minion-Bold';
    margin-top: 1rem !important;
}

.details {
    justify-content: center;
    margin: 1rem;
}

.text-price {
    background-color: var(--white);
    color: var(--black) !important;
    font-weight: bolder;
    border-radius: 2rem;
}

.menu__ofert {
    font-size: 1.5rem;
    margin: 1rem !important;
    background-color: var(--black);
    color: var(--white) !important;
    border-radius: 2rem;
    text-align: center;
}

.menu__preci {
    font-size: 2rem;
    margin: 1rem !important;
    background-color: var(--palet-2);
    color: var(--white) !important;
    border-radius: 2rem;
    text-align: center;
}

.menu__detail {
    font-size: 2rem !important;
    color: var(--white) !important;
    margin: 1rem !important;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu__button {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    padding: .625rem .813rem;
    border-radius: .5rem 0 .5rem 0;
}

.img-group {
    justify-content: center;
}

.owl-filter .btn-menu {
    display: inline-block;
    margin-top: 1rem;
    cursor: pointer;
    color: var(--black);
    background: var(--palet-1);
    font-size: 1.7rem;
    border-radius: 1rem;
    padding: 1rem 3rem;
}

.owl-filter .btn-menu:hover {
    color: var(--white);
    background: var(--black);
}

.filter {
    text-align: center;
    padding-bottom: 2rem;
}

#customers-testimonials .item,

/* use */

#customers-testimonials-mini .item,

/* use */

#customers-testimonials-acom .item,

/* use */

#customers-testimonials-fast .item,

/* use */

#customers-testimonials-beb .item,

/* use */

#customers-testimonials-pll .item,

/* use */

#customers-testimonials-pai .item,

/* use */

#customers-testimonials-bro .item,

/* use */

#customers-testimonials-chi .item,
#customers-testimonials-emp .item
/* use */

{
    text-align: center;
    padding: 1.5rem;
    padding-top: 2rem;
    margin-bottom: 80px;
    opacity: 1;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item,

/* use */

#customers-testimonials-mini .owl-item.active.center .item,

/* use */

#customers-testimonials-acom .owl-item.active.center .item,

/* use */

#customers-testimonials-fast .owl-item.active.center .item,

/* use */

#customers-testimonials-beb .owl-item.active.center .item,

/* use */

#customers-testimonials-pll .owl-item.active.center .item,

/* use */

#customers-testimonials-pai .owl-item.active.center .item,

/* use */

#customers-testimonials-bro .owl-item.active.center .item,

/* use */

#customers-testimonials-chi .owl-item.active.center .item,
#customers-testimonials-emp .owl-item.active.center .item
/* use */

{
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 100%;
    margin: 1rem auto 1rem;
}

.owl-carousel .nav-button {
    height: 50px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    top: 18rem !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.owl-carousel .owl-prev {
    left: -20px;
}

.owl-carousel .owl-next {
    right: -20px;
}

.owl-theme .owl-nav [class*=owl-] {
    color: var(--white);
    background-color: rgba(209, 196, 8, 0.49);
    font-size: 30px;
    border-radius: 3px;
}

.owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}

.owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
}

.about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
}

.about .content .red {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.own-script {
    font-size: 8rem;
    font-family: 'Photograph-Signature';
    color: var(--white);
}

.about .image {
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.about .image img {
    width: 100%;
    border-radius: 2rem;
}

.about .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.about .content .title {
    font-size: 6rem;
    margin-top: -2rem;
    font-family: 'Minion-Bold';
    text-transform: uppercase;
    color: var(--white);
}

.about .content p {
    font-size: 2rem;
    line-height: 2;
    color: var(--white);
    padding: 2rem 0;
}

.about .content .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    flex-direction: column;
}

.bottom-right {
    margin-top: 23px;
}

.about .content .icons h3 {
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--white);
}


/* end own about */

.background-section {
    background: linear-gradient(rgba(19, 18, 17, 0.83), rgba(15, 15, 15, 0.8)), url(../images/background-final.png);
    background-size: cover;
    background-position: center;
    padding: 2rem 9% !important;
}

.heading .reviews-title {
    font-family: 'Minion-Bold';
    font-size: 6rem;
    margin-top: -2rem;
    color: var(--white);
}

.reviews .box-container {
    border-radius: 14rem;
}

.heading .script-review {
    font-family: 'Minion-Bold';
    font-size: 6rem;
    text-transform: uppercase;
    color: var(--white);
}

.heading .contact-title {
    font-family: 'Minion-Bold';
    font-size: 6rem;
    margin-top: -3.5rem;
    color: var(--white);
}

.heading .script-contact {
    font-family: 'Minion-Bold';
    font-size: 6rem;
    text-transform: uppercase;
    margin-top: -2rem;
    color: var(--palet-2);
}

.reviews .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(22rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.reviews .box-container .box {
    text-align: center;
    padding: 2rem;
}

.reviews .box-container .box img {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.reviews .box-container .box h3 {
    font-size: 3rem;
    text-transform: uppercase;
    font-family: 'Minion-Bold';
    color: var(--white);
}

.reviews .box-container .box p {
    font-size: 1.8rem;
    line-height: 2;
    color: var(--white);
    padding: 1rem 0;
}

.reviews .box-container .box .stars {
    padding-top: .5rem;
}

.reviews .box-container .box .stars i {
    font-size: 1.7rem;
    color: var(--palet-2);
}

.contact .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact .row .map {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    width: 100%;
}

.contact .row .form .icons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact .row .form .icons-container .icons {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 17rem;
    flex: 1 1 17rem;
    text-align: center;
}

.contact .row .form .icons-container .icons i {
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--palet-2);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact .row .form .icons-container .icons h3 {
    padding: 1rem 0;
    font-size: 2.5rem;
    font-family: 'Minion-Bold';
    text-transform: uppercase;
    color: var(--white);
}

.contact .row .form .icons-container .icons p {
    font-size: 1.8rem;
    line-height: 2;
    color: var(--white);
}


/* photos */

.image-content {
    background: url(../images/vectores/background-blue.svg) no-repeat, rgba(0, 0, 0, .8);
    background-size: cover;
    padding-right: 5rem;
}

.photo-item {
    position: relative;
    display: block;
}

.photo-item .photo-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.heading .script-photo {
    font-family: 'Minion-Bold';
    font-size: 6rem;
    padding-bottom: 4rem;
    margin-top: -4rem;
    color: var(--palet-1);
}

.heading .photo-title {
    font-family: 'Minion-Bold';
    font-size: 9rem;
    margin-top: -6.5rem;
    color: var(--black);
}

.photo-item:hover .photo-text {
    opacity: 1;
    padding-bottom: 20px !important;
}

.img-render {
    margin: 3rem;
}

.img-fluid-p {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.heading .blog-title {
    text-align: center;
    font-family: 'Minion-Regular';
    font-size: 6rem;
    color: var(--black);
}

.thumbnails:hover img {
    opacity: 0.6;
    transform: scale(0.92);
}

.thumbnails:hover img:hover {
    opacity: 1;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

.blogs .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.blogs .box-container .box {
    position: relative;
}

.blogs .box-container .box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blogs .box-container .box:hover .image .icons {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.blogs .box-container .box .image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.blogs .box-container .box .image .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2rem;
    background: var(--black);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    -webkit-transform: translateY(10rem);
    transform: translateY(10rem);
}

.blogs .box-container .box .image .icons a {
    font-size: 1.5rem;
    color: var(--white);
}

.blogs .box-container .box .image .icons a i {
    padding-right: 1rem;
    color: var(--palet-1);
}

.blogs .box-container .box .image .icons a:hover {
    color: var(--palet-2);
}

.blogs .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blogs .box-container .box .content {
    text-align: center;
    padding: 2rem;
}

.blogs .box-container .box .content h3 {
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--white);
}

.blogs .box-container .box .content p {
    font-size: 2rem;
    line-height: 2;
    color: var(--gray);
    padding: 1.5rem 0;
}

.dom-content {
    display: flex;
    align-items: center;
}

.domicilio .dom-content .img-domicile {
    width: 100%;
    height: auto;
}

.domicilio .dom-content .dom_description {
    font-size: 18px;
    font-family: 'Minion-Regular';
}

.domicilio .dom-content .heading .domi-title {
    font-family: 'Minion-Bold';
    font-size: 4rem;
    padding-left: 6rem;
    color: var(--black);
}

.domicilio .dom-content .heading .script-domi {
    font-family: 'Photograph-Signature';
    font-size: 10rem;
    margin-top: -5rem;
    color: var(--palet-1);
}

.footer {
    background: url(../images/logo/logo-transparent.svg) no-repeat, rgba(0, 0, 0, 0.959);
    background-size: contain;
    background-position: right;
    padding: 3rem 9% !important;
}

.footer .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    font-family: 'Poppins-Regular';
    font-weight: bold;
    color: var(--palet-3);
    padding: 1rem 0;
}

.footer .box-container .box a {
    font-size: 1.6rem;
    line-height: 2;
    color: var(--white);
    padding: .5rem 0;
    display: block;
    font-family: 'Poppins-Regular';
}

.footer .box-container .box a i {
    padding-right: .5rem;
    color: var(--palet-3);
}

.footer .box-container .box a:hover {
    color: var(--palet-3);
    font-weight: bolder;
}

.footer .box-container .box p {
    font-size: 1.8rem;
    line-height: 2;
    color: var(--gray);
}

.footer .box-container .box .email {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.footer .credit {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    padding: 0 1rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
}

.footer .credit span {
    color: var(--palet-1);
}

a:link {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

a:visited {
    text-decoration: none
}


/* WHATSAPP BUTTON */

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.nav-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: flex-end;
    width: auto;
    height: auto;
    position: fixed;
    z-index: 8;
    bottom: 0px;
    right: 0px;
    padding: 5px;
    margin: 0px;
}

@media (max-width: 360px) {
    .nav-bottom {
        width: 320px;
    }
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    z-index: 8;
    transition: 0.3s;
    margin: 10px;
    padding: 7px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #77bb4a;
    animation: pulse 1.2s 4s ease 4;
}

.popup-whatsapp {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    height: auto;
    padding: 10px;
    bottom: 85px;
    right: 6px;
    transition: 0.5s;
    border-radius: 10px;
    background-color: #fff;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    animation: slideInRight 0.6s 0s both;
}

.popup-whatsapp>div {
    margin: 5px;
}

.about-us-cards {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--tertiary);
    padding: 12px 32px;
    border-radius: 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}


/* MODAL */

.img-modal {
    height: 3rem;
}

.modal-footer {
    justify-content: space-around;
}

.modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-content {
    border-radius: 2rem !important;
}

.modal-body {
    height: auto;
    max-height: 50vh;
    overflow-y: auto;
}


/* FORM */

.modal input {
    position: relative;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: none;
    padding: 1.125em 0 6px 6px;
    font-size: 1.25em;
    margin: 0px 0px 9px 0px;
    border: 1px solid #dddddd;
    color: #444;
}

.modal input {
    z-index: 99;
    width: 100%;
}

.modal textarea {
    width: 100%;
    height: 6em;
}

.modal label {
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 100;
    top: 0.75em;
    left: 0.375em;
    height: 1.1111em;
    padding: 0 0.375em;
    transition: 0.3s all ease-in-out;
    color: var(--palet-1);
}

.modal input:focus~label {
    z-index: 9999;
}

.modal input:focus {
    box-shadow: 0 0 5px rgba(81, 203, 238, 1);
    border: 1px solid rgba(81, 203, 238, 1);
}

@media (max-width: 680px) {
    .popup-whatsapp p {
        font-size: 0.9em;
    }
}

.popup-whatsapp>.content-whatsapp.-top {
    display: flex;
    flex-direction: column;
}

.popup-whatsapp>.content-whatsapp.-top p {
    color: #585858;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1em;
}

.popup-whatsapp>.content-whatsapp.-bottom {
    display: flex;
    flex-direction: row;
}

.closePopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0px 0px 15px 0px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #f76060;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.closePopup:hover {
    background-color: #f71d1d;
    transition: 0.3s;
}

.send-msPopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0px 0px 0px 5px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.send-msPopup:hover {
    background-color: #f8f8f8;
    transition: 0.3s;
}

.is-active-whatsapp-popup {
    display: flex;
    animation: slideInRight 0.6s 0s both;
}

input.whats-input[type=text] {
    width: 250px;
    height: 40px;
    box-sizing: border-box;
    border: 0px solid #fff;
    border-radius: 20px;
    font-size: 1em;
    background-color: #fff;
    padding: 0px 0px 0px 10px;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    outline: none;
    transition: 0.3s;
}

@media (max-width: 420px) {
    input.whats-input[type=text] {
        width: 225px;
    }
}

input.whats-input::placeholder {
    color: rgba(68, 68, 68, 0.705);
    opacity: 1;
}

input.whats-input[type=text]:focus {
    background-color: #f8f8f8;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    transition: 0.3s;
}

.icon-whatsapp-small {
    width: 24px;
    height: 24px;
}

.icon-whatsapp {
    width: 45px;
    height: 45px;
}

.icon-font-color {
    color: #fff;
}

.icon-font-color--black {
    color: #333;
}


/* END WHATSAPP */

.alert-fixed {
    width: 20vw;
}

.table td,
.table th,
.item-count,
.total-cart,
.total {
    font-size: 1.5rem;
}

.item-count {
    margin-top: 1rem;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: #F1F2F3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.loader-container img {
    height: 150px;
    width: auto;
}

.loader-container.fade-out {
    top: -120%;
}

@media (max-width: 2500px) {
    /* logo {
    width: 6%;
  } */
    /* .header .logo {
    left: 48.2%;
  } */
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    .about {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header .nav a {
        font-size: 2rem;
    }
    .membership-item p {
        font-size: 2rem;
    }
    .membership-item {
        height: 500px;
    }
    .heading .script-photo {
        font-size: 6rem;
    }
    .heading .photo-title {
        font-size: 8rem;
    }
    .image-11 {
        display: none;
    }
    .image-2 {
        visibility: visible;
    }
    .img-1-slideshow {
        background-image: none !important;
    }
    .img-1-slideshow-s {
        background-image: url('../images/banner/banner-1/b1-image-ver.png') !important;
    }
    .img-2-slideshow {
        background-image: none !important;
    }
    .img-2-slideshow-s2 {
        background-image: url('../images/banner/banner-2/b2-image-ver.png') !important;
    }
    .img-3-slideshow {
        background-image: none !important;
    }
    .img-3-slideshow-s {
        background-image: url('../images/banner/banner-3/b3-image-ver.jpg') !important;
    }
    .home-2 {
        flex-wrap: wrap;
    }
    .home-1 .image {
        display: none;
    }
    .home-1 .image-2 {
        display: initial;
    }
    .home-1 .image-2 {
        display: initial;
    }
    .home-2 .image {
        display: initial;
    }
    .home-1 .content img {
        width: 90%;
        padding-left: 1rem;
        /* animation: float 3s linear infinite; */
    }
    .home-2 .content img {
        width: 90%;
        /* padding-left: 1rem; */
        /* animation: float 3s linear infinite; */
    }
    .home-2 .image img {
        width: 80%;
    }
    /* .img-1-slideshow {
    background-position-y: 5rem !important;
  } */
    .footer {
        background-size: cover;
        background-position-x: center;
        background-position-y: center;
    }
    .home-img,
    .home-text {
        padding-top: 0 !important;
    }
    .home {
        flex-direction: column;
    }
    .blogs .box-container .box .image {
        height: 100%;
    }
    .blogs .box-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
        gap: 2rem;
    }
    .header {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }
    .header.active {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }
    .header #menu-btn {
        display: inline-block;
    }
    .header #menu-btn.fa-times {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .header .nav {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    .header .nav.active {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .header .nav a {
        color: var(--dark);
        margin: 1rem 2rem;
    }
    .about .content .img-group {
        flex-direction: column-reverse;
    }
    .img-group-1 {
        margin-top: 23px;
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .bottom-right {
        margin-bottom: 23px;
    }
    .about-info {
        flex-direction: column;
        text-align: center;
        align-content: center;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 9rem 2rem;
    }
    .home {
        grid-template-columns: repeat(auto-fit, minmax(32rem, auto));
    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 768px) {
    .home-3 .image img {
        visibility: hidden;
    }
    /* .img-1-slideshow {
    background-image: none;
  }
  .img-1-slideshow-s {

  } */
    .heading .script-contact {
        font-size: 6rem;
    }
    .heading .script-review {
        font-size: 6rem;
    }
    .home-2 .content img {
        width: 100%;
        padding-right: 2rem;
    }
    .home-2 .image img {
        width: 80%;
    }
    .domicilio .dom-content .dom_description {
        text-align: center;
    }
    .home-text {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 5rem;
        padding-bottom: 4rem;
    }
    .home-img {
        display: flex;
        justify-content: center;
    }
    .home .content h3 {
        font-size: 2.5rem;
    }
    .content .redir-2 {
        width: 80% !important;
    }
    .content .redir-1 {
        width: 80% !important;
    }
    .image-2 img {
        width: 70%;
    }
    .home {
        background: none;
    }
    .home-1 {
        /* background: url(../images/banner-ver.jpg) no-repeat; */
        background-size: cover;
        background-position-x: right;
        gap: 8rem;
    }
    .home-2 {
        /* background: url(../images/banner-ver.jpg) no-repeat; */
        background-size: cover;
        background-position-x: right;
        gap: 8rem;
    }
    .about {
        flex-direction: column;
    }
    .about-info {
        flex-direction: column;
        text-align: center;
        align-content: center;
    }
    .home .content p {
        font-size: 5rem;
    }
    .logo-desing {
        width: 15%;
    }
}

@media (max-width: 450px) {
    /* .content .redir-1 {
        margin-right: 5rem;
    } */
    html {
        font-size: 50%;
    }
    .heading .reviews-title {
        font-size: 6rem;
    }
    .own-script {
        font-size: 6rem;
    }
    .service-box .box .title-services {
        font-size: 4rem;
    }
    .service-box .box .sub-services {
        font-size: 3rem;
    }
    .heading .blog-title {
        font-size: 5rem;
    }
    .about .content .title {
        font-size: 5.7rem;
    }
    .home .content p {
        font-size: 3.5rem;
    }
    .logo-desing {
        width: 18%;
    }
    .heading .title-menu {
        font-size: 5rem;
        margin-top: -1rem;
    }
    .heading .sub-menu {
        font-size: 4.5rem;
    }
}


/*** Header ***/

.owl-carousel-inner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.text-banner {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.text-banner .display-5 {
    margin-top: -2rem;
    margin-bottom: -1rem;
    font-weight: normal;
    font-family: 'Minion-Regular';
    font-size: 5rem;
}

.text-banner .display-4 {
    line-height: 3.5rem;
    margin-top: 10px;
    font-family: 'Minion-Bold';
    font-size: 6rem;
}

.text-script {
    font-family: 'Photograph-Signature';
    font-size: 5rem;
}
@media (max-width: 768px) {
    .text-to-right {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .text-banner{
        align-content: flex-start;
    }
    .text-banner .display-5 {
        margin-bottom: 0px;
    }
    .text-banner .display-4 {
        margin-bottom: -2px;
    }
    .owl-carousel-inner {
        display: flex;
        align-items: center;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 700px !important;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 4rem !important;
        text-align: left !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/img-resources/about-2.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.text-up {
    width: fit-content;
    background-color: var(--secundary);
    border-radius: 2rem;
    padding: 5px;
}

.img-banner-1 {
    display: flex
}

.img-banner-1 .img-banner {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    position: relative !important;
}
