/* CSS for Paquetería LA CORA Website developed by Alonso Garcia @alonsogarciamx powered by Rotbit (www.rotbit.com) @rotbitmx */

/* Created 11 JUN 2022 */

/* Last update 16 JUL 2022 */

/*
      1. FONTS
      2. NAVBAR - MENU
      3. GENERAL
      4. FONDOS
      5. BOTONES
      6. INDEX
      7. FOOTER
      8. NOSOTROS
      7. PRODUCTOS
      8. SERVICIOS
      9. CONTACTO
      AVISO
      OTROS

      Colors
      Degraded  -   #b616ea 0%,#ea167a 50%,#f34500 100%
      Primary   -   #dd9a01 
      Secondary -   #a87603
*/


/* ---- 1. FONTS ---- */
.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.montserrat-semibold {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* ---- 2. NAVBAR - MENU ---- */
.navbar-toggle .icon-bar:nth-of-type(3) {
  top: 1px;
}

.navbar-toggle .icon-bar:nth-of-type(4) {
  top: 2px;
}

.navbar-toggle .icon-bar {
      position: relative;
      transition: all 200ms ease-in-out;
}

.navbar-toggle.active .icon-bar:nth-of-type(2) {
      top: 6px;
      transform: rotate(45deg);
}

.navbar-toggle.active .icon-bar:nth-of-type(3) {
      background-color: transparent;
}

.navbar-toggle.active .icon-bar:nth-of-type(4) {
      top: -6px;
      transform: rotate(-45deg);
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: rgba(0,0,0,0);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.navbar-inverse .navbar-nav > li > a {
  color: #fff;  
} 

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse {
	background: linear-gradient(90deg, #b616ea 0%,#ea167a 50%,#f34500 100%);
	border-color: #fff;
  border-bottom-width: 0px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
} 

.navbar-brand img {
  height: 64px;
}

.btn-rastrea {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 10px 15px;
  margin-top: 18px;
  margin-left: 10px;
  border-radius: 8px;
  color: #f34500;
}

.btn-rastrea:hover,
.btn-rastrea:focus,
.btn-rastrea:active {
  background-color: #000;
  color: #fff;
}

.whatsapp {
  position:fixed;
  width:70px;
  height:70px;
  bottom:35px;
  right:35px;
  background-color:#25d366;
  color:#fff;
  border-radius:35px;
  text-align:center;
  font-size:35px;
  z-index:100;
}

.whatsapp-icon {
  margin-top: 17px;
}

@media only screen and (max-width: 768px) {
  .btn-rastrea {
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

/* ---- 3. GENERAL ---- */
body {
  padding-top: 70px;
  padding-bottom: 0px;
  color: #000;
}

section {
    padding-top:50px;
    padding-bottom:50px;
    overflow:auto;
}

p {
  font-family: 'Open Sans', sans-serif;
  line-height: 2;
  font-size: 15px;
}

a {
  color: #f34500;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 15px;
}

.text-highlight {
  background: linear-gradient(45deg, #f34500 0%,#ea167a 50%,#b616ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flex-container {
  display: flex;
  align-items:center;
  flex-direction: row;
}

@media (max-width: 1024px) {
  .flex-container {
    flex-direction: column;
  }
}


/* ---- 4. FONDOS ---- */
.bg-gris-claro {
  background-color: #f5f5f5;
}

.bg-morado {
  background-color: #b616ea;
  color: #fff;
}

.bg-rosa {
  background-color: #ea167a;
  color: #fff;
}

.bg-naranja {
  background-color: #f34500;
  color: #fff;
}

.bg-negro {
  background-color: #000;
  color: #fff;
}

.bg-degradado {
  background: linear-gradient(45deg,#f34500 0%,#ea167a 50%,#b616ea 100%);
  color: #fff;
}

.bg-degradado-90 {
  background-image: linear-gradient(90deg,#b616ea  0%,#ea167a 50%,#f34500 100%);
  background-position: center;
  color: #fff;
}

/* ---- 5. BOTONES ---- */
.btn {
  border-radius: 8px;
  margin-right: 10px;
}

.btn-morado {
  background-color: #b616ea;
  color: #fff;
}

.btn-morado:hover,
.btn-morado:focus,
.btn-morado:active {
  background-color: #000;
  color: #fff;
}

.btn-rosa {
  background-color: #ea167a;
  color: #fff;
}

.btn-rosa:hover,
.btn-rosa:focus,
.btn-rosa:active {
  background-color: #000;
  color: #fff;
}

.btn-naranja {
  background-color: #f34500;
  color: #fff;
}

.btn-naranja:hover,
.btn-naranja:focus,
.btn-naranja:active {
  background-color: #000;
  color: #fff;
}

.btn-blanco {
  background-color: #fff;
  color: #000;
}

.btn-blanco:hover,
.btn-blanco:focus,
.btn-blanco:active {
  background-color: #000;
  color: #fff;
}

.btn-naranja-outline {
  background-color: none;
  border: 1px solid #f34500;
  color: #f34500;
}

.btn-naranja-outline:hover,
.btn-naranja-outline:focus,
.btn-naranja-outline:active {
  background-color: #f34500;
  color: #fff;
}


/* ---- 6. INDEX ---- */
.cover {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 70%), url('../img/cover.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 0px;
}

.cover-texto {
  padding:0px 30px 100px 30px;
}

.cover h1,
.cover h2 {
  font-weight: 700;
}


.in-infografia h2,
.in-infografia h4 {
  font-weight: 700;
  margin: 5px;
}

.in-tipo-servicio {
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px #ddd;
}

.in-tipo-servicio h2 {
  margin-top: 2px;
  font-weight: 700;
}

.in-tipo-servicio-head {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding-bottom: 10px;
}

.in-tipo-servicio-info {
  padding: 10px 13px 30px 13px;
}

.in-seguridad h1 {
  font-weight: 700;
}

.in-seguridad a {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .cover {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 90%), url('../img/cover.jpg');
  }

  .cover-texto {
    text-align: center;
    padding-bottom: 20px;
  }

  .cover-imagen img {
    max-width: 450px;
  }

  .in-seguridad h1 {
    text-align: center;
  }
}

/* ---- 7. FOOTER ---- */
footer {
  color: #bbb;
}

footer a {
  color: #bbb;
}

footer .footer-above a:hover,
footer .footer-above a:focus,
footer .footer-above a:active {
  text-decoration-thickness: 0px;
  text-underline-offset: 4px;
}

footer .footer-above {
  padding-top: 50px;
  background-color: #050505;
}

footer .footer-col {
  margin-bottom: 50px;
}

footer .footer-below {
  padding: 20px 0;
  background-color: #000;
}

footer .g-maps a {
  text-decoration: underline;
  text-decoration-thickness: 0px;
  text-underline-offset: 4px;
}

footer .footer-below a {
  color: #fff;
  text-decoration: underline;
}

footer .footer-below a:hover,
footer .footer-below a:focus,
footer .footer-below a:active {
  color: #f34500;
}


@media only screen and (max-width: 1024px) {
  footer .footer-above {
    text-align: center;
  }
}

/* ---- 8. NOSOTROS ---- */
.nosotros-banner {
  background-image: url('../img/nosotros/cover-nosotros.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  filter: grayscale(100%);
}

.nosotros-banner h1 {
  font-weight: 700;
  text-shadow: 4px 4px #000;
}

.nosotros-mision-vision h4 {
  font-weight: 700;
}

.nosotros-mision {
  padding: 10px 20px;
  border: 2px #b616ea solid;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.nosotros-mision i {
  color: #b616ea;
}

.nosotros-vision {
  padding: 10px 20px;
  border: 2px #ea167a solid;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.nosotros-vision i {
  color: #ea167a;
}

.nosotros-year {
  padding: 10px 20px;
  border: 2px #f34500 solid;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.nosotros-year i {
  color: #f34500;
}

.nosotros-equipo h1 {
  font-weight: 700;
  text-align: left;
}


.nosotros-resenas-clientes {
  padding-right: 0px;
  margin-bottom: 30px;
}

.nosotros-resenas-texto {
  padding: 0px 0px;
}

.nosotros-resenas-texto h1 {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .nosotros-resenas-clientes {
    flex: 0 0 0;
  }

  .nosotros-resenas-texto {
    flex: 0 0 0;
    text-align: center;
  }
}

/* ---- 9. CONTACTO ---- */
.contacto {
  padding-top: 20px;
}

.contact-order {
  text-align: left;
}


#google-container {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #e7eaf0;
}

@media only screen and (min-width: 768px) {
  #google-container {
    height: 300px;
  }
}
@media only screen and (min-width: 1170px) {
  #google-container {
    height: 600px;
  }
}

#cd-google-map {
  position: relative;
}
#cd-google-map address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  background-color: rgba(15, 33, 71, 0.9);
  color: white;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  #cd-google-map address {
    font-size: 15px;
    font-size: 0.9375rem;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: rgba(255, 102, 0, 0.9);
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../img/google-maps/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  background-color: #ff6600;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out {
    margin-left: 50px;
  }
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in {
    margin-top: 50px;
  }
}

#cd-zoom-out {
  background-position: 50% -32px;
}










