@media (min-width: 800px) {
  .Desktop {
    display: block;
  }
  .Mobile {
    display: none;
  }
}
@media (max-width: 799px) {
  .Desktop {
    display: none;
  }
  .Mobile {
    display: block;
  }
}
.Banner-Principal {
  position: relative;
  width: 100%;
}
.Banner-Principal video {
  width: 100%;
  z-index: -1;
}
.Banner-Principal .Txt {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
}
.Banner-Principal .Txt p {
  color: #FFF;
  font-family: Encode Sans;
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
  text-align: center;
}
.Banner-Principal .Txt p span {
  font-family: Encode Sans;
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  text-align: center;
}

@media (min-width: 800px) {
  .Video {
    padding: 3rem 0;
  }
}
@media (max-width: 799px) {
  .Video {
    padding: 2rem 0;
  }
}
.Video .Contenedor {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 800px) {
  .Video .Contenedor {
    width: 80%;
  }
}
@media (max-width: 799px) {
  .Video .Contenedor {
    width: 95%;
  }
}
.Video .Contenedor h2 {
  font-family: Encode Sans;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  text-align: center;
  color: #0B347E;
}
@media (min-width: 800px) {
  .Video .Contenedor h2 {
    width: 70%;
    line-height: 37.5px;
  }
}
@media (max-width: 799px) {
  .Video .Contenedor h2 {
    width: 80%;
  }
}
@media (min-width: 800px) {
  .Video .Contenedor video, .Video .Contenedor iframe {
    width: 1080px;
    height: 500px;
  }
}
@media (max-width: 799px) {
  .Video .Contenedor video, .Video .Contenedor iframe {
    width: 100%;
    height: 185px;
  }
}

.Carrusel {
  background: #EFEFEF;
  color: #0B347E;
}
@media (min-width: 800px) {
  .Carrusel {
    padding: 3rem 0;
  }
}
@media (max-width: 799px) {
  .Carrusel {
    padding: 2rem 0;
  }
}
.Carrusel h2 {
  font-family: Encode Sans;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  text-align: center;
}
@media (min-width: 800px) {
  .Carrusel h2 {
    line-height: 37.5px;
  }
}
@media (max-width: 799px) {
  .Carrusel h2 {
    width: 60%;
    margin: auto;
  }
}
.Carrusel p {
  font-family: Encode Sans;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 800px) {
  .Carrusel p {
    line-height: 22.5px;
    font-size: 18px;
  }
}
@media (max-width: 799px) {
  .Carrusel p {
    width: 80%;
    margin: auto;
    font-size: 13px;
  }
}
@media (min-width: 800px) {
  .Carrusel .Slider {
    width: 100%;
    height: 500px;
  }
  .Carrusel .Slider .slick-slide {
    width: 830px;
    transform: scale(0.7);
    transition: all 0.4s ease-in-out;
    padding: 40px 0;
  }
  .Carrusel .Slider .slick-slide.slick-center {
    transform: scale(1);
  }
  .Carrusel .Slider .slick-slide img {
    max-width: 100%;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 5px 15px black;
  }
  .Carrusel .Slider .slick-arrow {
    position: absolute;
    bottom: 0;
    outline: none;
    border: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: Encode Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 17.5px;
    text-align: center;
    color: #0B347E;
  }
  .Carrusel .Slider .slick-arrow.prev {
    left: 35%;
  }
  .Carrusel .Slider .slick-arrow.next {
    right: 35%;
  }
}
@media (max-width: 799px) {
  .Carrusel .Slider {
    margin-top: 2rem;
  }
  .Carrusel .Slider .Slider-Item img {
    margin: auto;
  }
  .Carrusel .Slider .slick-dots {
    bottom: -50px;
  }
  .Carrusel .Slider .slick-dots li {
    margin: 0;
  }
  .Carrusel .Slider .slick-dots li button:before {
    font-size: 45px;
    color: #898989;
  }
}

.Reporte {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 800px) {
  .Reporte {
    padding: 3rem 0;
    margin: 3rem 0;
  }
}
@media (max-width: 799px) {
  .Reporte {
    padding: 2rem 0;
    margin: 2rem 0;
  }
}
.Reporte .Contenedor {
  display: flex;
  width: 90%;
  margin: auto;
}
@media (max-width: 799px) {
  .Reporte .Contenedor {
    flex-direction: column-reverse;
  }
}
.Reporte .Contenedor .Side {
  position: relative;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side {
    padding: 3rem;
    width: 50%;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side {
    width: 100%;
    padding: 2rem 0;
  }
}
.Reporte .Contenedor .Side.Izq {
  display: flex;
  gap: 20px;
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq {
    flex-direction: column;
  }
}
.Reporte .Contenedor .Side.Izq::before {
  content: "";
  position: absolute;
  background: #FFF;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq::before {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 2px;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq::before {
    right: 0;
    top: 0;
    height: 2px;
    width: 100%;
  }
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq .Img-Btn {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq .Img-Btn {
    width: 100%;
    display: grid;
    place-items: center;
  }
}
.Reporte .Contenedor .Side.Izq .Img-Btn img {
  display: block;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq .Img-Btn img {
    width: 100%;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq .Img-Btn img {
    width: 80%;
  }
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq .Img-Btn img {
    margin: 0;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq .Img-Btn img {
    margin: auto;
  }
}
.Reporte .Contenedor .Side.Izq .Img-Btn a {
  background: #FFF;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: Encode Sans;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  color: #0B347E;
  align-self: baseline;
}
.Reporte .Contenedor .Side.Izq .Img-Btn a i {
  margin-right: 10px;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq .Info {
    width: 60%;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq .Info {
    width: 100%;
    display: grid;
    gap: 10px;
  }
}
.Reporte .Contenedor .Side.Izq .Info h2 {
  font-family: Encode Sans;
  font-size: 22px;
  font-weight: 900;
  line-height: 27.5px;
  color: #FFF;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq .Info h2 {
    text-align: left;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq .Info h2 {
    text-align: center;
  }
}
.Reporte .Contenedor .Side.Izq .Info p {
  font-family: Encode Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #FFF;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Izq .Info p {
    text-align: left;
    margin: 0;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Izq .Info p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
}
.Reporte .Contenedor .Side.Izq .Info a {
  background: #FFF;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: Encode Sans;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  color: #0B347E;
}
.Reporte .Contenedor .Side.Izq .Info a i {
  margin-right: 10px;
}
.Reporte .Contenedor .Side.Der h2 {
  font-family: Encode Sans;
  font-size: 22px;
  font-weight: 900;
  line-height: 27.5px;
  color: #FFF;
  text-align: left;
  width: 60%;
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Der h2 {
    text-align: left;
    width: 60%;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Der h2 {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 800px) {
  .Reporte .Contenedor .Side.Der video, .Reporte .Contenedor .Side.Der iframe {
    width: 480px;
    height: 200px;
  }
}
@media (max-width: 799px) {
  .Reporte .Contenedor .Side.Der video, .Reporte .Contenedor .Side.Der iframe {
    width: 100%;
    height: 170px;
  }
}

.Blog {
  background: #EFEFEF;
}
@media (min-width: 800px) {
  .Blog {
    padding: 3rem 0;
    margin-bottom: 3rem;
  }
}
@media (max-width: 799px) {
  .Blog {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
}
.Blog h2 {
  font-family: Encode Sans;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  text-align: center;
  color: #0B347E;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .Blog h2 {
    line-height: 37.5px;
  }
}
.Blog article {
  display: grid;
  height: 100%;
  gap: 10px;
}
.Blog article img {
  width: 250px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.Blog article .Desc-Articulo {
  display: grid;
  gap: 10px;
  padding: 0 15%;
}
.Blog article .Desc-Articulo h1 {
  font-family: Encode Sans;
  font-size: 14px;
  font-weight: 800;
  line-height: 17.43px;
  text-align: center;
  color: #0B347E;
}
.Blog article .Desc-Articulo p {
  font-family: Encode Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  text-align: center;
  color: #0B347E;
}
.Blog article .Desc-Articulo a {
  background: #0B347E;
  padding: 10px 0px;
  width: 140px;
  margin: auto;
  border-radius: 30px;
  font-family: Encode Sans;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  color: #FFF;
}
.Blog .Slider-Blog-Mobile .slick-dots {
  bottom: -50px;
}
.Blog .Slider-Blog-Mobile .slick-dots li {
  margin: 0;
}
.Blog .Slider-Blog-Mobile .slick-dots li button:before {
  font-size: 45px;
  color: #898989;
}

.Colaboradores {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 800px) {
  .Colaboradores {
    padding: 3rem 0;
    margin-bottom: 3rem;
  }
}
@media (max-width: 799px) {
  .Colaboradores {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
}
.Colaboradores h2 {
  font-family: Encode Sans;
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  color: #FFF;
  margin: 0 auto 2rem;
}
@media (min-width: 800px) {
  .Colaboradores h2 {
    width: 38%;
  }
}
@media (max-width: 799px) {
  .Colaboradores h2 {
    width: 80%;
  }
}
.Colaboradores .Slider-Colab {
  width: 70%;
  margin: auto;
}
.Colaboradores .Slider-Colab-Item .Card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.Colaboradores .Slider-Colab-Item .Card p {
  font-family: Encode Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  color: #FFF;
  width: 70%;
  margin: auto;
}
.Colaboradores .Slider-Colab .slick-dots {
  bottom: -50px;
}
.Colaboradores .Slider-Colab .slick-dots li {
  margin: 0;
}
.Colaboradores .Slider-Colab .slick-dots li button:before {
  font-size: 45px;
  color: #FFF;
}

.Sticky-Form {
  background: #0B347E;
  width: 100%;
}
@media (min-width: 800px) {
  .Sticky-Form {
    position: sticky;
    bottom: 0;
  }
}
@media (max-width: 799px) {
  .Sticky-Form {
    position: relative;
  }
}
.Sticky-Form .Contenedor {
  display: flex;
  font-family: Encode Sans;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  padding: 20px 0;
  align-items: center;
  justify-content: center;
}
@media (min-width: 800px) {
  .Sticky-Form .Contenedor {
    line-height: 20px;
    gap: 10%;
  }
}
@media (max-width: 799px) {
  .Sticky-Form .Contenedor {
    gap: 1rem;
    flex-direction: column;
  }
}
@media (min-width: 800px) {
  .Sticky-Form .Contenedor p {
    margin: 0;
  }
}
@media (max-width: 799px) {
  .Sticky-Form .Contenedor p {
    width: 90%;
    margin: auto;
  }
}
.Sticky-Form .Contenedor button {
  background: #FFF;
  color: #0B347E;
  padding: 5px 15px;
  border-radius: 15px;
  font-family: Encode Sans;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  border: none;
}
.Sticky-Form .Pop-Form {
  background: #0B347E;
  color: #FFF;
  border: none;
  width: 100%;
}
@media (min-width: 800px) {
  .Sticky-Form .Pop-Form {
    padding: 3rem;
  }
}
@media (max-width: 799px) {
  .Sticky-Form .Pop-Form {
    padding: 1.5rem;
  }
}
.Sticky-Form .Pop-Form button {
  border: none;
  background: transparent;
  position: absolute;
  top: 10px;
  right: 15px;
}
.Sticky-Form .Pop-Form button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(135deg);
  width: 2px;
  height: 15px;
  background-color: #FFF;
}
.Sticky-Form .Pop-Form button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  width: 2px;
  height: 15px;
  background-color: #FFF;
}
.Sticky-Form .Pop-Form h2 {
  width: 40%;
  margin: auto;
  font-family: Encode Sans;
  text-align: center;
}
@media (min-width: 800px) {
  .Sticky-Form .Pop-Form h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 30px;
  }
}
@media (max-width: 799px) {
  .Sticky-Form .Pop-Form h2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 17.5px;
  }
}
.Sticky-Form .Pop-Form .Form {
  margin: 1.5rem 0;
}
.Sticky-Form .Pop-Form .Form form .Inputs-Grid {
  display: grid;
}
@media (min-width: 800px) {
  .Sticky-Form .Pop-Form .Form form .Inputs-Grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem 10px;
  }
}
@media (max-width: 799px) {
  .Sticky-Form .Pop-Form .Form form .Inputs-Grid {
    gap: 1rem;
  }
}
.Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell input, .Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell select, .Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell textarea {
  width: 100%;
  height: 40px;
  padding: 10px;
  font-family: Lato;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  text-align: left;
  color: #FFF;
  border: 2px solid #FFF;
  background: #0B347E;
  border-radius: 10px;
  overflow: hidden;
  outline: none;
}
.Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell input::-moz-placeholder, .Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell select::-moz-placeholder, .Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell textarea::-moz-placeholder {
  opacity: 1;
  color: #FFF;
}
.Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell input::placeholder, .Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell select::placeholder, .Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell textarea::placeholder {
  opacity: 1;
  color: #FFF;
}
.Sticky-Form .Pop-Form .Form form .Inputs-Grid-Cell textarea {
  resize: none;
}
.Sticky-Form .Pop-Form .Form form .Input-Submit {
  margin: 1rem 0;
  display: grid;
  place-content: center;
}
.Sticky-Form .Pop-Form .Form form .Input-Submit input[type=submit] {
  font-family: Encode Sans;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  color: #0B347E;
  background: #FFF;
  border: none;
  padding: 10px 40px;
  border-radius: 30px;
}

#fixed-contact {
  display: none;
}
/*  //////////////////////////////////////////////////////////////////   */
#carrusel-inner {
  display: none;
}

.Banners {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .Banners img {
    width: 100%;
  }
}
@media (min-width: 901px) {
  .Banners img {
    width: 50%;
  }
}

.Info {
  padding: 4% 15%;
}
.Info h2 {
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
}
.Info p {
  text-align: center;
  font-size: 1.5rem;
}

.Volcanita {
  background-color: rgb(242, 242, 242);
  padding: 2rem 0;
}
.Volcanita h2 {
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
}
.Volcanita .Contenedor {
  display: grid;
  gap: 80px;
  justify-content: center;
}
@media (min-width: 901px) {
  .Volcanita .Contenedor {
    grid-template-columns: repeat(3, 300px);
  }
}
.Volcanita .Contenedor .Card h2 {
  text-align: center;
  font-weight: 900;
  font-size: 1.5rem;
}
.Volcanita .Contenedor .Card p {
  text-align: center;
  font-size: 1.2rem;
}
.Volcanita .Contenedor .Card .Btn {
  padding: 10px 30px;
  font-size: 1.2rem;
  color: white;
  background: grey;
}
.Volcanita .Contenedor .Card:nth-child(1) .Btn {
  background: rgb(2, 71, 130);
}
.Volcanita .Contenedor .Card:nth-child(2) .Btn {
  background: rgb(4, 79, 57);
}
.Volcanita .Contenedor .Card:nth-child(3) .Btn {
  background: rgb(168, 0, 49);
}
.Volcanita .Contenedor .Card:nth-child(4) .Btn {
  background: rgb(212, 129, 1);
}
.Volcanita .Contenedor .Card:nth-child(5) .Btn {
  background: rgb(160, 2, 123);
}
.Volcanita .Contenedor .Card:nth-child(6) .Btn {
  background: rgb(148, 148, 148);
}

.Lista h2 {
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.Lista ul {
  list-style: disc;
  display: flex;
  justify-content: center;
}
@media (min-width: 901px) {
  .Lista ul {
    gap: 100px;
  }
}
@media (max-width: 900px) {
  .Lista ul {
    gap: 20px;
    flex-direction: column;
  }
  .Lista ul li {
    text-align: center;
  }
}

.Video {
  display: flex;
  justify-content: center;
  padding: 30px;
  margin: 2rem 0;
}
@media (max-width: 900px) {
  .Video iframe {
    height: 250px;
    width: 90%;
  }
}
@media (min-width: 901px) {
  .Video iframe {
    height: 500px;
    width: 70%;
  }
}

.Botones h2 {
  color: #013299;
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.Botones .Contacto {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: auto auto 4rem auto;
}
@media (max-width: 900px) {
  .Botones .Contacto {
    flex-direction: column;
    gap: 30px;
  }
}
.Botones .Contacto .Btn {
  background-color: rgb(226, 21, 21);
  color: #FFF;
  padding: 20px 40px;
  border-radius: 30px;
}
.Botones .Tienda {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: auto;
}
@media (max-width: 900px) {
  .Botones .Tienda {
    flex-direction: column;
    gap: 30px;
  }
}
.Botones .Tienda .Btn {
  background-color: rgb(35, 57, 119);
  color: #FFF;
  padding: 20px 40px;
  border-radius: 30px;
}

.Formulario {
  margin-top: 2rem;
}
.Formulario h2 {
  text-align: center;
  font-weight: 900;
  margin-bottom: 4rem;
  color: rgb(68, 68, 68);
}
@media (max-width: 900px) {
  .Formulario h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 901px) {
  .Formulario h2 {
    font-size: 3.5rem;
  }
}
.Formulario h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: rgb(68, 68, 68);
}
@media (max-width: 900px) {
  .Formulario h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 901px) {
  .Formulario h3 {
    font-size: 1.75rem;
  }
}
.Formulario form {
  padding: 10px;
  margin: auto;
  background-color: #013299;
  display: grid;
  gap: 20px;
}
@media (max-width: 900px) {
  .Formulario form {
    width: 90%;
  }
}
@media (min-width: 901px) {
  .Formulario form {
    width: 60%;
  }
}
.Formulario form .Inputs:first-child {
  display: none;
}
.Formulario form .Inputs input, .Formulario form .Inputs select, .Formulario form .Inputs textarea {
  width: 100%;
  border-radius: 10px;
  padding: 10px 10px 10px 20px;
  outline: none;
  border: none;
}
.Formulario form .Inputs input[type=submit] {
  margin-top: 2rem;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  background: rgb(53, 153, 205);
  color: #FFF;
  font-weight: bold;
}
@media (min-width: 901px) {
  .Formulario form .Inputs input[type=submit] {
    width: 15%;
  }
}/*# sourceMappingURL=style.css.map */