@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;900&display=swap');

:root{
  --red:#ff3838;
}

*{
  font-family: 'Nunito', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
}

label, p {
  font-size: 14px;
}

input[type=text], input[type=password], input[type=email], input[type=number]{
  height: 36px;
}

*::selection{
  background:var(--red);
  color:#fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body{
  background:#f7f7f7;
}

section{
  padding:2rem 9%;
}

#preloader {
  background-color: white;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
}

#preloader .logo {
  width: 200px;
  left: 50%;
  top: 50%;
}

.heading{
  text-align: center;
  font-size: 3.5rem;
  padding:1rem;
  color:#666;
}

.heading span{
  color:var(--red);
}

.btn{
  display: inline-block;
  padding:.8rem 3rem;
  border:.2rem solid var(--red);
  color:var(--red);
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 1rem;
  background-color: white;
}

.btn::before{
  content: '';
  position: absolute;
  top:0; right: 0;
  width:0%;
  height:100%;
  background:var(--red);
  transition: .3s linear;
  z-index: -1;
}

.btn:hover::before{
  width:100%;
  left: 0;
}

.btn:hover{
  color:#fff;
}

header{
  position: fixed;
  top:0; left: 0; right:0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#fff;
  padding:2rem 9%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

header .logo{
  font-size: 2.5rem;
  font-weight: bolder;
  color:#666;
}

header .logo i{
  padding-right: .5rem;
  color:var(--red);
}

header .navbar a{
  font-size: 2rem;
  margin-left: 2rem;
  color:#666;
}

header .navbar a:hover{
  color:var(--red);
}

#menu-bar{
  font-size: 3rem;
  cursor: pointer;
  color:#666;
  border:.1rem solid #666;
  border-radius: .3rem;
  padding:.5rem 1.5rem;
  display: none;
}

.home{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  min-height: 90vh;
  align-items: center;
  background:url(../images/background.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 6px solid black;
}

.home .content{
  flex:1 1 40rem;
  padding-top: 6.5rem;
}

.home .whatsapp {
  display: flex;
  text-align: left;
}

.home .whatsapp img {
  width: 12% !important;
  margin-left: 20px;
  float: right;
}

.home .whatsapp .data {
  text-align: right;
  float: left;
  width: 88%;
  font-size: 2.8rem;
  line-height: 4rem;
  color: #f7f7f7;
  font-weight: 900;
  text-shadow: 1px 1px 14px rgba(44, 44, 44, 0.8);
}

.home .phone {
  float: right;
  width: 88%;
  font-size: 2.8rem;
  line-height: 4rem;
  color: #f7f7f7;
  font-weight: 900;
  text-shadow: 1px 1px 14px rgba(44, 44, 44, 0.8);
}

.home .data-bottom {
  text-align: right;
  width: 600px;
  position: absolute;
  bottom: 100px;
  right: 20px;
}

.home .image{
  flex:1 1 40rem;
}

.home .image img{
  width:100%;
  padding:1rem;
  animation:float 3s linear infinite;
}

.home .social-media {
  width: 600px;
  height: 175px;
  position: absolute;
  background: url(../images/border-left.png) no-repeat;
  top: 0px;
  left: 0px;
  display: flex;
  padding: 20px 0px 0px 30px;
}

.home .social-media a .instagram, .home .social-media a .facebook {
  display: flex;
  background-color: white;
  width: 46px; height: 46px;
  border-radius:50%;
  margin-right: 14px;
  padding:0px;
}

.home .social-media a .instagram img, .home .social-media a .facebook img{
  width: 50%;
  margin-left: 12px;
}

@keyframes float{
  0%, 100%{
    transform: translateY(0rem);
  }
  50%{
    transform: translateY(3rem);
  }
}

.home .content h3{
  font-size: 8rem;
  line-height: 8.2rem;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 14px rgba(70, 70, 70, 0.5);
}

.home .content p{
  font-size: 3rem;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-shadow: 1px 1px 14px rgba(56, 56, 56, 0.5);
  padding:2rem 0;
  text-transform: uppercase;
}

.speciality .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.speciality .box-container .box{
  flex:1 1 30rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border:.1rem solid rgba(0,0,0,.3);
  cursor: pointer;
  border-radius: .5rem;
}

.speciality .box-container .box .image{
  height:100%;
  width:100%;
  object-fit: cover;
  position: absolute;
  top:-100%; left:0;
}

.speciality .box-container .box .content{
  text-align: center;
  background:#fff;
  padding:2rem;
}

.speciality .box-container .box .content img{
  margin:1.5rem 0;
}

.speciality .box-container .box .content h3{
  font-size: 2.5rem;
  color:#333;
}

.speciality .box-container .box .content p{
  font-size: 1.6rem;
  color:#666;
  padding:1rem 0;
}

.speciality .box-container .box:hover .image{
  top:0;
}

.speciality .box-container .box:hover .content{
  transform: translateY(100%);
}

.popular .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.popular .box-container .box{
  padding:2rem;
  background:#fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border:.1rem solid rgba(0,0,0,.3);
  border-radius: .5rem;
  text-align: center;
  flex:1 1 30rem;
  position: relative;
}

.popular .box-container .box img{
  height:25rem;
  object-fit: cover;
  width:100%;
  border-radius: .5rem;
}

.popular .box-container .box .price{
  position: absolute;
  top:3rem; left:3rem;
  background:var(--red);
  color:#fff;
  font-size: 2rem;
  padding:.5rem 1rem;
  border-radius: .5rem;
}

.popular .box-container .box h3{
  color:#333;
  font-size: 2.5rem;
  padding-top: 1rem;
}

.popular .box-container .box .stars i{
  color:gold;
  font-size: 1.7rem;
  padding:1rem .1rem;
}

.steps{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  padding:1rem;
}

.steps .box{
  flex:1 1 25rem;
  padding:1rem;
  text-align: center;
}

.steps .box img{
  border-radius: 50%;
  border:1rem solid #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.steps .box h3{
  font-size: 3rem;
  color:#333;
  padding:1rem;
}

.gallery .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.gallery .box-container .box{
  height:25rem;
  flex:1 1 30rem;
  border:1rem solid #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
}

.gallery .box-container .box img{
  height:100%;
  width:100%;
  object-fit: cover;
}

.gallery .box-container .box .content{
  position: absolute;
  top:-100%; left:0;
  height: 100%;
  width:100%;
  background:rgba(255,255,255,.9);
  padding:2rem;
  padding-top: 5rem;
  text-align: center;
}

.gallery .box-container .box .content h3{
  font-size: 2.5rem;
  color:#333;
}

.gallery .box-container .box .content p{
  font-size: 1.5rem;
  color:#666;
  padding:1rem 0;
}

.gallery .box-container .box:hover .content{
  top:0;
}

.review .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.review .box-container .box{
  text-align: center;
  padding:2rem;
  border:1rem solid #fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
  border-radius: .5rem;
  flex:1 1 30rem;
  background:#333;
  margin-top: 6rem;
}

.review .box-container .box img{
  height: 12rem;
  width:12rem;
  border-radius: 50%;
  border:1rem solid #fff;
  margin-top: -8rem;
  object-fit: cover;
}

.review .box-container .box h3{
  font-size: 2.5rem;
  color:#fff;
  padding:.5rem 0;
}

.review .box-container .box .stars i{
  font-size: 2rem;
  color:var(--red);
  padding:.5rem 0;
}

.review .box-container .box p{
  font-size: 1.5rem;
  color:#eee;
  padding:1rem 0;
}

.order .row{
  padding:2rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  background:#fff;
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  border-radius: .5rem;
}

.order .row .image{
  flex:1 1 30rem;
}

.order .row .image img{
  height: 100%;
  width:100%;
  object-fit: cover;
  border-radius: .5rem;
}

.order .row form{
  flex:1 1 50rem;
  padding:1rem;
}

.order .row form .inputBox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.order .row form .inputBox input, .order .row form textarea{
  padding:1rem;
  margin:1rem 0;
  font-size: 1.7rem;
  color:#333;
  text-transform: none;
  border:.1rem solid rgba(0,0,0,.3);
  border-radius: .5rem;
  width:49%;
}

.order .row form textarea{
  width:100%;
  resize: none;
  height:15rem;
}

.order .row form .btn{
  background:none;
}

.order .row form .btn:hover{
  background:var(--red);
}

.footer{
  background:#000;
  text-align: center;
}

.footer .share{
  display: flex;
  gap:1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .credit{
  padding:2.5rem 1rem;
  color:#fff;
  font-weight: normal;
  font-size: 2rem;
}

.footer .credit span{
  color:var(--red);
}

#scroll-top{
  position: fixed;
  top:-120%;
  right:2rem;
  padding:.5rem 1.5rem;
  font-size: 4rem;
  background:var(--red);
  color:#fff;
  border-radius: .5rem;
  transition: 1s linear;
  z-index: 1000;
}

#scroll-top.active{
  top:calc(100% - 12rem)
}

.loader-container{
  position: fixed;
  top:0; left:0;
  z-index: 10000;
  background:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height:100%;
  width:100%;
}

.loader-container.fade-out{
  top:-120%;
}

.owl-carousel .item {
  width: 400px !important;
  height: 400px !important;
}

.owl-carousel .owl-item img {
  width: 100% !important;
}

.owl-nav button {
  width: 42px !important;
  height: 42px !important;
  background: black !important;
  border-radius: 22px !important;
}

.owl-nav button:hover {
  background: red !important;
}

.owl-carousel .owl-nav {
  position: relative;
  height: 0px;
  top: -180px !important;
  width: 100%;
}

.owl-nav button.owl-next {
  right: 2px !important;
}

.owl-nav button.owl-prev {
  left: 2px !important;
}

.owl-nav button.owl-next span {
  position: absolute;
  font-size: 42px !important;
  bottom: -6px !important;
  left: 15.5px !important;
  color: white;
  outline: none;
}

.owl-nav button.owl-prev span {
  position: absolute;
  font-size: 42px !important;
  bottom: -6px !important;
  left: 13.5px !important;
  color: white;
  outline: none;
}

.recorrido {
  margin-top: 50px;
  text-align: center;
}

.recorrido h3{
  font-size: 3rem;
  color: red;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  padding: 3rem 0;
  text-transform: uppercase;
  margin: 0 auto;
}

#mapa-recorrido {
  margin-top: 6px;
  display: table;
  width: 1050px;
  height: 700px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 800;
  color: #263749;
}

.btn-primary {
  height: 46px;
  font-size: 14px !important;
  border:0px !important;
  background-color: #263749 !important;
  padding:0px 20px !important;
  border-radius: 50px !important;
}


.counter-main {
  width:100%;
  padding: 50px 0px !important;
  background-color: #e2e2e2 !important;
}

.counter-main .counter-div {
  display: inline-block;
  text-align: center;
}

.counter-main .counter-number {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}

.counter-main i {
  width: 100%;
  clear:both;
  font-size: 60px;
}

.counter-main .title {
  color: #828282;
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
}

.onhover:hover {
  cursor: pointer;
}

.titulo{
  text-align: center;
  font-size: 32px;
  line-height: 36px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #ff0037;
}

.titulo-inferior {
  font-size: 22px;
  color: #263749;
  text-align: left;
  font-family:Montserrat;
  font-weight:500;
  font-style:normal;
}

.linea-sur .titulo-inferior {
  display: none !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #ff0037;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top:hover {
  text-decoration: none;
  outline: none;
}

.back-to-top i:hover {
  background: #ff0037;
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.back-to-top::before, .back-to-top::after {
  text-decoration: none !important;
  outline: none !important;
}

.mt-pagination {
  clear:both;
  padding: 0px;
  font: 700 16px/20px "Montserrat", sans-serif;
  display: table;
  text-align: center;
  width:100%;
}

.mt-pagination ul {
  width: auto;
  display: table;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.mt-pagination ul li, .admin #gallery .mt-pagination ul li {
  width: 32px !important;
  height: 32px !important;
  padding: 0 3px;
  vertical-align: top;
  border: none !important;
  background: transparent !important;
}

.mt-pagination ul a {
  color: #bababa;
  display: block;
  padding: 5px 10px;
  background: #f6f6f6;
  -moz-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mt-pagination ul a:hover {
  color: #fff;
  background: #eb7500;
  text-decoration: none;
  cursor: pointer;
}

.bootstrap-tagsinput {
  display: inline-block;
  vertical-align: middle;
  border-width: 1px;
  border-style: solid;
  border-radius: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background: none;
  width: 100%;
  height: 40px;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 200;
  padding: 0px 33px 0px 0px;
  border: #c1c1c1 1px dashed;
  color: #000;
}

.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 0;
  width: auto;
  max-width: inherit;
}

.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: white;
  background: #000;
  border-radius: 21px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 16px;
  height:38px;
  display: -webkit-inline-box;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.alert {
  background-color: #ff0037 !important;
  font-size: 14px !important;
  color: white !important;
  border-radius: 12px !important;
  border: 0px !important;
}

.alert .text-info {
  color: white !important;
}

/* media queries  */
@media(max-width:991px){

  html{
    font-size: 55%;
  }

  header{
    padding:2rem;
  }

  section{
    padding:2rem;
  }

}

@media(max-width:768px){

  .order .row form .inputBox input{
    width:100%;
  }

  .home {
    display: table;
    flex-wrap: unset;
    gap: unset;
    height: 576px;
    align-items: center;
    background: url(../images/background.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 6px solid black;
  }

  .home .content p {
    max-width: 320px;
    font-size: 3rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-shadow: 1px 1px 14px rgba(56, 56, 56, 0.5);
    padding: 2rem 0;
    text-transform: uppercase;
  }

  .home .social-media {
    width: 360px;
    height: 175px;
    position: absolute;
    background: url(../images/border-left.png) no-repeat;
    background-size: contain;
    top: 0px;
    left: 0px;
    display: flex;
    padding: 20px 0px 0px 30px;
  }

  .home .content {
    flex: 1 1 40rem;
    padding: 8rem 1rem 0rem;
    width: 100%;
    display: table;
    clear: both;
  }

  .home .content h3 {
    font-size: 5rem;
    line-height: 5.2rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-shadow: 1px 1px 14px rgba(70, 70, 70, 0.5);
}

  .owl-carousel .item {
    width: 299px !important;
    height: 299px !important;
  }

  #flyers, #recorrido {
    width: 100%;
    overflow: hidden;
  }

  .home .data-bottom {
    text-align: left;
    width: 100%;
    position: relative;
    display: inline-block;
    bottom: unset;
    right: unset;
    margin-top: 20px;
  }

  .home .whatsapp .data {
      position: absolute; 
      text-align: left;
      float: left;
      width: calc(100% - 65px);
      font-size: 1.95rem;
      line-height: 3rem;
      color: #f7f7f7;
      font-weight: 900;
      margin-left: 65px;
      text-shadow: 1px 1px 14px rgba(44, 44, 44, 0.8);
  }

  .home .whatsapp img {
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    margin-left: 0;
    float: left;
  }

  .home .phone {
    clear: both;
    width: 100%;
    font-size: 3.1rem;
    line-height: 4rem;
    color: #f7f7f7;
    font-weight: 900;
    text-shadow: 1px 1px 14px rgba(44, 44, 44, 0.8);
    margin-top:65px;
}

}