@font-face {
  font-family: "poppinsregular";
  /*a name to be used later*/
  src: url("../fonts/poppins-regular.ttf");
  /*URL to font*/
}

@font-face {
  font-family: "breamcatcher";
  /*a name to be used later*/
  src: url("../fonts/breamcatcher.otf");
  /*URL to font*/
}

@font-face {
  font-family: "RifficBold";
  /*a name to be used later*/
  src: url("../fonts/riffic-bold.ttf");
  /*URL to font*/
}

@font-face {
  font-family: "royalty";
  /*a name to be used later*/
  src: url("../fonts/royalty.ttf");
  /*URL to font*/
}

:root {
  --black: #1e1e1e;
  --white: #ffffff;
  --gray: #aaa;
  --animation-curve: cubic-bezier(0.05, 0.07, 0.052, 0.052);
  --palet-1: #5277ba;
  --palet-2: #e8e100;
}

/*** Spinner ***/
#scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
  border-radius: 10px !important;
  background-color: #f5f5f5 !important;
}

#scrollbar::-webkit-scrollbar {
  width: 12px !important;
  background-color: #f5f5f5 !important;
}

#scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
  background-color: #555 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 15px;
  bottom: 15px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}


.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.video {
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.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;
}


/*** Spinner ***/

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner img {
  width: 75px;
  height: 75px;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/

.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
  background-color: var(--palet-1);
}

.btn-primary:hover,
.btn-outline-primary:hover {
  color: var(--palet-2);
  background-color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--black);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/

.shop {
  margin-left: 1.5rem;
}

.sticky-top {
  top: -150px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: absolute;
  padding: 0;
  width: 75px;
  height: auto;
  top: 5px;
  left: 0;
}

.navbar .navbar-brand img {
  border-radius: 0rem !important;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--palet-1);
}

.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: 50px;
    height: 100px;
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .navbar .navbar-nav {
    margin-top: 15px;
    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: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/

.header-carousel-1 .owl-nav {
  position: absolute;
  width: 200px;
  height: 40px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel-1 .owl-nav .owl-prev,
.header-carousel-1 .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel-1 .owl-nav .owl-prev:hover,
.header-carousel-1 .owl-nav .owl-next:hover {
  background: var(--palet-1);
  border-color: var(--palet-1);
}

.header-carousel-1 .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel-1 .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.header-carousel-1 .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 5px;
}

.effects {
  max-width: 100%;
  height: 86vh;
  object-fit: cover;
}

@media (max-width: 768px) {
  .effects {
    height: 40vh;
  }
}

.header-carousel-1 .owl-dot.active {
  background: var(--palet-1);
  border-color: var(--palet-1);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.bi-chevron-left,
.bi-chevron-right {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #d4a702e8;
  color: #1e1e1e;
  text-decoration: none;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 25px;
  margin: 5px;
  padding: 4px 7px;
  background: #1e1e1e;
  display: inline-block;
  cursor: pointer;
  border-radius: 50px;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: var(--white);
  background-color: rgba(49, 49, 49, 0.49);
  font-size: 30px;
  border-radius: 3px;
}
.owl-carousel .owl-next {
  right: -20px;
}
.owl-carousel .nav-button {
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 18rem !important;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 25px;
  margin: 5px;
  padding: 4px 7px;
  background: #1e1e1e;
  display: inline-block;
  cursor: pointer;
  border-radius: 20rem;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: var(--white);
  background-color: rgba(49, 49, 49, 0.49);
  font-size: 30px;
  border-radius: 20rem;
}
.owl-carousel .owl-prev {
  left: -20px;
}
.owl-carousel .nav-button {
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 18rem !important;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/*** Header ***/

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#close-preview {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--light);
}

.display-4,
.read {
  z-index: 8;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: #ffffff;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  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: 30px;
  height: 30px;
  background: #ffffff;
  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 var(--palet-1);
  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;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-caption h5 {
  font-family: "Naveid-Extra-Bold";
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--black);
  border: 15px solid var(--black);
}

@media (max-width: 768px) {
  #header-carousel-1 .carousel-item {
    position: relative;
    min-height: 450px;
  }
  #header-carousel-1 .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-bg {
  position: relative;
  overflow: hidden;
}

.page-header {
  background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(54, 54, 54, 0.479)),
    url(../img/backgrounds-products/background-title.jpg) center center
      no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Section Title ***/

.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--palet-2);
}

.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);
}

/*** Header ***/

.service {
  background: var(--black) url(../images/vectores/patron-5.svg);
  background-repeat: no-repeat;
  z-index: 1;
  background-size: contain;
  background-position-x: right;
  background-position-y: center;
}

.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;
}

.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(--dark);
  background: var(--palet-2);
  margin-bottom: 1rem;
  border-radius: 50%;
}

.service-box .box .title-services {
  padding: 1rem 0;
  font-size: 4rem;
  color: var(--white);
  font-family: "RifficBold";
}

.service-box .box .sub-services {
  padding: 1rem 0;
  margin-top: -5rem;
  font-size: 6rem;
  color: var(--palet-2);
  font-family: "royalty";
}

.service-box .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--white);
}

/*========== MENU ==========*/
/*========== MENU ==========*/

.menu {
  background: url(../images/vectores/patron-1.svg),
    url(../images/back-menu.jpg) repeat;
  background-size: 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-color: var(--black);
  border-radius: 2rem;
  -webkit-box-shadow: 0px 16px 34px -3px rgba(48, 48, 48, 0.58);
  -moz-box-shadow: 0px 16px 34px -3px rgba(48, 48, 48, 0.58);
  box-shadow: 0px 16px 34px -3px rgba(48, 48, 48, 0.58); */
  /* padding: .75rem; */
}

.menu__img {
  width: 100% !important;
  height: 320px !important;
  object-fit: fill;
  align-self: center;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.no-cover {
  object-fit: contain !important;
}

.pizza-back {
  background-image: url(../images/menu/pizza_especiales/back-pizza.png);
  background-size: cover;
  background-repeat: no-repeat;
}


.back {
  background-image: url(../images/menu/back.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.add-to-cart {
  font-size: 1.8rem !important;
}

.menu__name {
  font-size: 2.5rem !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  margin-top: 1rem !important;
}

.details {
  justify-content: center;
  margin: 1rem;
}

.text-price {
  background-color: var(--palet-2);
  color: var(--black) !important;
  font-weight: bolder;
  border-radius: 2rem;
}

.menu__preci {
  font-size: 2rem;
  margin: 1rem !important;
  background-color: var(--palet-2);
  color: var(--black) !important;
  border-radius: 2rem;
  text-align: center;
}

.menu__detail {
  font-size: 1.5rem !important;
  color: var(--black) !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: 0.625rem 0.813rem;
  border-radius: 0.5rem 0 0.5rem 0;
}

.owl-filter .btn-menu {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  color: var(--black);
  background: var(--palet-2);
  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,
#customers-testimonials-mini .item,
#customers-testimonials-acom .item,
#customers-testimonials-fast .item,
#customers-testimonials-beb .item,
#customers-testimonials-pll .item,
#customers-testimonials-pai .item,
#customers-testimonials-bro .item,
#customers-testimonials-chi .item,
#customers-testimonials-san .item {
  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,
#customers-testimonials-mini .owl-item.active.center .item,
#customers-testimonials-acom .owl-item.active.center .item,
#customers-testimonials-fast .owl-item.active.center .item,
#customers-testimonials-beb .owl-item.active.center .item,
#customers-testimonials-pll .owl-item.active.center .item,
#customers-testimonials-pai .owl-item.active.center .item,
#customers-testimonials-bro .owl-item.active.center .item,
#customers-testimonials-chi .owl-item.active.center .item,
#customers-testimonials-san .owl-item.active.center .item
 {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.heading .title-script-1 {
  text-align: center;
  font-family: "royalty";
  font-size: 10rem;
  margin-bottom: -4rem;
  font-weight: normal !important;
  color: var(--palet-1);
}

.contact .heading {
  text-align: center;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: white;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--palet-1);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.heading .sub-menu {
  text-align: center;
  font-family: "RifficBold";
  font-size: 3rem;
  margin-top: -2rem;
  color: var(--palet-1);
}

.heading .title-menu {
  text-align: center;
  font-family: "royalty";
  font-size: 6rem;
  color: var(--black);
}

.btn:hover {
  color: white;
  text-decoration: none;
  background-color: #1e1e1e;
}
.btn-contact:hover {
  color: var(--white) !important;
  background: var(--black) !important;
}

.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;
}

.own-script {
  font-family: "royalty";

  font-size: 8rem;
  color: var(--palet-1);
}

.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: -4.5rem;
  font-family: "RifficBold";
  text-transform: uppercase;
  color: var(--black);
}

.about .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--black);
  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 */

.reviews {
  background: var(--black) url(../images/vectores/patron-3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  background-position-x: right;
  background-position-y: center;
}

.heading .reviews-title {
  font-family: "RifficBold";
  font-size: 6rem;
  color: var(--white);
}

.heading .reviews-title-1 {
  font-family: "RifficBold";
  font-size: 6rem;
  color: var(--black);
}

.reviews .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 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: 1.5rem;
  font-family: "RifficBold";
  text-transform: uppercase;
  color: var(--white);
}

.reviews .box-container .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--white);
  padding: 1rem 0;
}

.heading h3 {
  text-align: center;
}

.heading .title-script {
  text-align: center;
  font-family: "royalty";
  font-size: 10rem;
  margin-bottom: -4rem;
  color: var(--palet-2);
  font-weight: normal !important;
}

.reviews .box-container .box .stars {
  padding-top: 0.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: 5rem;
  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(--black);
  color: var(--palet-2);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact .row .form .icons-container .icons h3 {
  padding: 1rem 0;
  font-size: 3.5rem;
  font-family: "breamcatcher";
  text-transform: uppercase;
  color: var(--black);
}

.contact .row .form .icons-container .icons p {
  font-size: 1.8rem;
  line-height: 2;
  color: var(--black);
}

.heading .blog-title {
  text-align: center;
  font-family: "poppinsregular";
  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: 1.5rem;
  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;
}

.footer {
  background: url(../images/vectores/patron-4.svg),
    rgba(0, 0, 0, 0.986) no-repeat;
  background-size: contain;
  background-position: center;
  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;
  color: var(--white);
  padding: 1rem 0;
}

.footer .box-container .box a {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--gray);
  padding: 0.5rem 0;
  display: block;
}

.footer .box-container .box a i {
  padding-right: 0.5rem;
  color: var(--palet-2);
}

.footer .box-container .box a:hover {
  color: var(--palet-2);
}

.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 a {
  color: var(--palet-2);
}

.footer .credit a:hover {
  color: var(--palet-1);
}

.footer .credit span {
  color: var(--palet-2);
}

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 */

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.loader-container img {
  height: 291px;
  width: 441px;
}

.loader-container.fade-out {
  top: -120%;
}

.alert-fixed {
  width: 20vw;
}

.table td,
.table th,
.item-count,
.total-cart,
.total {
  font-size: 1.5rem;
}

.item-count {
  margin-top: 1rem;
}

@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) {
  .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) {
  .service {
    background: none;
  }

  .header-bg {
    height: 50vh !important;
  }

  .service-1 {
    background-repeat-y: repeat !important;
    background-repeat-x: no-repeat !important;
    background-size: contain !important;
    background-position-x: center;
    background: var(--black) url(../images/vectores/patron-5-ver.svg);
  }
  .reviews {
    background: none;
  }

  .btn {
    font-size: 1.8rem;
  }

  .reviews-1 {
    background-repeat-y: repeat !important;
    background-repeat-x: no-repeat !important;
    background-size: contain !important;
    background-position-x: center;
    background: var(--black) url(../images/vectores/patron-3-ver.svg);
  }
  .home-text {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
  }

  .home-img {
    display: flex;
    justify-content: center;
  }

  /* .home {
    background: none;
    grid-template-columns: repeat(auto-fit, minmax(22rem, auto));
  }

  .home:before {
    align-items: end;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(22rem, auto));
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    min-height: 100vh;
    background-repeat-y: no-repeat !important;
    background-repeat-x: no-repeat !important;
    display: grid;
    align-items: center;
    background-size: cover !important;
    background-position: center;
    justify-items: center;
    background: url(../images/banner-ver.jpg) 0 0;
  } */

  .home .content h3 {
    font-size: 2.5rem;
  }

  .about {
    flex-direction: column;
  }

  .about-info {
    flex-direction: column;
    text-align: center;
    align-content: center;
  }

  .home .content p {
    font-size: 5rem;
  }

  .logo-desing {
    width: 10%;
  }

  .heading .sub-menu {
    margin-top: -3rem;
    font-size: 5rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .heading .reviews-title {
    font-size: 4rem;
  }
  .own-script {
    font-size: 8rem;
  }

  .service-box .box .title-services {
    font-size: 4rem;
  }

  .service-box .box .sub-services {
    font-size: 7rem;
  }

  .heading .blog-title {
    font-size: 5rem;
  }

  .about .content .title {
    font-size: 5.7rem;
  }

  .home .content p {
    font-size: 3.5rem;
  }

  .logo-desing {
    width: 13%;
  }

  .heading .title-menu {
    font-size: 6.8rem;
  }

  .heading .sub-menu {
    font-size: 3.3rem;
  }
}

/*# sourceMappingURL=style.css.map */
