.grid-banner {
    max-width: 1400px;
    width:100%;
    height:100%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 25% 25% 25% 25%;
    grid-template-areas:
      "one one "
      "four five"
      "two six"
      "three three";
    grid-gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
}

.one{
  grid-area: one;
  overflow: hidden;
  position: relative;
  background: black; 
}

.two{
  grid-area: two;
  overflow: hidden;
  position: relative;
  background: black;
}

.three{
  grid-area: three;
  overflow: hidden;
  position: relative;
  background: black;
}

.four{
  grid-area: four;
  overflow: hidden;
  position: relative;
  background: black;
}

.five{
  grid-area: five;
  overflow: hidden;
  position: relative;
  background: black;
}

.six{
  grid-area: six;
  overflow: hidden;
  position: relative;
  background: black;
}

.grid-fig{
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out false;
    -o-transition: all 0.5s ease-in-out false;
    transition: all 0.5s ease-in-out;
    /* opacity: 0.7; */
}

.card-grid:hover .grid-fig {
    background: #000;
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.grid-title{
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out false;
    -o-transition: all 0.5s ease-in-out false;
    transition: all 0.5s ease-in-out;
    color: white;
    text-align: center;
    font-size: 30px!important;
}

.svg-subtitle{
  position: absolute;
  height: auto;
  left: 50%;top: 70%;
  transform: translate(-50%, -50%);
  font-size: 70px!important;
  margin-top: 20px;
}

@media screen and (min-width: 800px){
  .grid-banner {
    max-width: 1368px;
    max-height: 572px;
    width:100%;
    height:100%;
    display: grid;
    grid-template-columns: 20% 20% 32% 28%;
    grid-template-rows: 47% 53%;
    grid-template-areas:
      "one one two three"
      "four five six three";
    grid-gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .svg-subtitle{
    position: absolute;
    height: auto;
    left: 50%;top: 70%;
    transform: translate(-50%, -50%);
    font-size: 70px!important;
    margin-top: 0px;
  }

}

.left {
  float: left;
  width: 65%;
}

.right {
  float: right;
}

.prod-thum{
  /* max-width: 80px;
  min-width: 60px;
  width: 80px;
  max-height: 80px;
  min-height: 60px;
  height: 80px; */
  height: 80px;
  width: 80px;
  object-fit: cover;
}

.svg-title{
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out false;
  -o-transition: all 0.5s ease-in-out false;
  transition: all 0.5s ease-in-out;
}


@media (min-width: 1200px) {
  .container{
      max-width: 970px;
  }
}

p.form-message {
  margin-top: 20px;
}

p.form-message.success {
  color: #2e47b6;
}

p.form-message.error {
  color: #d44545;
}

.modal{
  position: fixed;
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}


.search-box{
  border: #13213a 3px solid;
  /* border-color: #CA0000;
  border-style: solid; */
  border-radius: 50px 0px 0px 50px;
  /* border-left: 50px; */
  border-right: 50px;
}

.search-button{
  border: #13213a 3px solid;
  /* border-color: #CA0000;
  border-style: solid; */
  border-radius: 0px 50px 50px 0px;
  border-left: 50px;
}
.shadow-box{
  border-radius: 50px 50px 50px 50px;
    box-shadow: grey -2px 2px 5px 1px;
}

.iframe-ruta{
  float: none;
  width: 100% !important;
}

@media (min-width: 800px) {
  .iframe-ruta{
    float: left;
    width: 50% !important;
  }
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid transparent;
}
.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid transparent;
}

.carrito{
  font-weight: bold;
}

.carrito, .titulo{
  color: #2C3F58!important;
}

.precio-carrito{
  line-height: 18px;
  font-size: 18px;
}

.carrito-nombre{
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.card-custom-title{
  color: #2D3954;
  font-size: 17px;
  font-family: 'Raleway';
}

.card-custom-price{
  color: #CA0000;
  line-height: 16px;
  font-size: 18px;
  text-transform: capitalize;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.page-subtitle{
  text-transform: none;
  line-height: 1.6;
  font-style: oblique;
  color: grey;
  font-size: 17px!important;
}

.tour-title{
  line-height: 25px;
  font-size: 24px;
  color: #ffffff !important;
  text-transform: capitalize;
  font-weight: 600;
}

.tour-subtitle{
  color: #2C3F58;
  text-transform: capitalize;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 12px;
  font-size: 16px;
}

.tc-card-title{
  color: #2D3954;
  font-size: 17px;
}

.invoice-vew-detail h2 {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 5px;
  font-size: 16px;
}

.invoice-vew-detail h2:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background: #ED4C67;
  left: 0;
  bottom: 0;
}

.btn-black {
  background: #0075A9;
  color: #ffffff;
  border: 1px solid #0075A9;
  border-radius: 10px;
  padding: 5px;
}

.tag-btn{
  color: #ED4C67;
  font-weight: 800;
  line-height: 1.5;
  font-size: 1rem;
}
