@charset "UTF-8";
@import url("https://use.typekit.net/yoj6upd.css");
/* iphone 3 */
/* iphone 4 */
/* iphone 5 */
/* iphone 6, 6s, 7, 8 */
/* iphone 6+, 6s+, 7+, 8+ */
/* iphone X , XS, 11 Pro, 12 Mini */
/* iphone 12, 12 Pro */
/* iphone XR, 11 */
/* iphone XS Max, 11 Pro Max */
/* iphone 12 Pro Max */
@font-face {
  font-family: laptop;
  src: url(../font/computer-icons.ttf);
}
* {
  margin: 0;
}

:root {
  --ff1: trade-gothic-next, sans-serif;
  --ff2:trade-gothic-next-compressed, sans-serif;
  --cp:#176e12;
  --cs:#dc8209;
  --ct:#15e70a;
}

html {
  font-size: 100%;
}

body {
  background: #0a2a4e;
  background: linear-gradient(197deg, #15e70a 3%, #176e12 37%, #2a3f0e 25%, #041425 100%);
  background-attachment: fixed;
}

.swal2-html-container {
  text-align: left !important;
}
.swal2-html-container li {
  list-style: none;
}
.swal2-html-container li:before {
  content: "";
  font-family: "FontAwesome";
  color: var(--cs);
  position: absolute;
  margin-left: -26px;
}
@media only screen and (max-device-width: 420px) {
  .swal2-html-container li:before {
    margin-right: 5px;
  }
}

.swal2-styled.swal2-confirm {
  background-color: var(--cp) !important;
}

.swal2-styled.swal2-cancel {
  background-color: white !important;
  border: 1px solid grey !important;
  color: gray !important;
}

.swal2-icon {
  width: 3em !important;
  height: 3em !important;
  margin: 1.5em auto 0.2em !important;
}

.swal2-icon .swal2-icon-content {
  font-size: 2.75em !important;
}

.swal2-title {
  padding: 0.2em 1em 0 !important;
}

main {
  max-width: 950px;
  margin: 0 auto;
  background-color: #f8f8f8;
  font-family: var(--ff1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 5px 8px 20px 10px #04084857;
}
@media only screen and (min-device-width: 1200px) {
  main {
    margin-top: 5px;
  }
}
main h1, main h2 {
  margin: 0;
  font-family: var(--ff1);
}
main .btnBase {
  width: 60%;
  height: auto;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 1.3em;
  font-weight: 800;
  background: transparent;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}
@media only screen and (max-device-width: 420px) {
  main .btnBase {
    width: 90%;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  main .btnBase {
    width: 90%;
  }
}
main .btn-1 {
  border: none;
  background: #fb2175;
  background: linear-gradient(0deg, #fb2175 0%, #ea4c89 100%);
  color: #fff;
  overflow: hidden;
}
main .btn-1:hover {
  text-decoration: none;
  color: #fff;
  transform: scale(1.1);
}
main .btn-1:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.322);
  animation: shiny-btn1 3s ease-in-out infinite;
}
main .btn-1:hover {
  opacity: 0.9;
}
@keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
main .header {
  font-family: var(--ff1);
}
main .header .header_barTop {
  background-color: black;
  color: white;
  padding: 10px 0;
}
main .header .header_barTop h2 {
  text-align: center;
  font-size: 2em;
}
main .header hgroup h1 {
  font-size: 3em;
  text-align: center;
  line-height: 46px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  word-spacing: -4px;
}
@media only screen and (max-device-width: 420px) {
  main .header hgroup h1 {
    line-height: 43px;
    margin-bottom: 18px;
  }
}
main .header hgroup h1 span {
  color: var(--cp);
  font-weight: 800;
}
main .header .header_barBottom {
  background-color: var(--ct);
  padding: 5px;
}
main .header .header_barBottom h2 {
  text-align: center;
  color: #08461a;
  font-weight: 800;
  font-size: calc(100%*2);
}
main .header .header_cont_video {
  margin: 5px 0;
  width: 100%;
}
main .header .header_cont_video video {
  display: block;
  margin: 0 auto;
  width: calc(100%/1.9);
  height: calc(100%/3);
}
@media only screen and (max-device-width: 420px) {
  main .header .header_cont_video video {
    width: calc(100%/1);
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  main .header .header_cont_video video {
    width: calc(100%/1);
  }
}
@media only screen and (min-device-width: 1440px) {
  main .header .header_cont_video video {
    width: calc(100%/1.2);
  }
}
main .header .header_bajada p {
  text-align: center;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 4px;
}
@media only screen and (max-device-width: 420px) {
  main .header .header_bajada p {
    font-size: 1.2em;
  }
}
main .header .btnBase {
  width: 60%;
  height: auto;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 1.3em;
  font-weight: 800;
  background: transparent;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}
@media only screen and (max-device-width: 420px) {
  main .header .btnBase {
    width: 90%;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  main .header .btnBase {
    width: 90%;
  }
}
main .header .btn-1 {
  border: none;
  background: #fb2175;
  background: linear-gradient(0deg, #fb2175 0%, #ea4c89 100%);
  color: #fff;
  overflow: hidden;
}
main .header .btn-1:hover {
  text-decoration: none;
  color: #fff;
  transform: scale(1.1);
}
main .header .btn-1:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.322);
  animation: shiny-btn1 3s ease-in-out infinite;
}
main .header .btn-1:hover {
  opacity: 0.9;
}
@keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
main .contenido {
  padding: 12px 70px;
}
@media only screen and (max-device-width: 420px) {
  main .contenido {
    padding: 12px 10px;
  }
}
main .contenido h2 {
  text-align: center;
  font-family: var(--ff1);
  font-size: 2em;
  font-weight: 800;
  line-height: 1em;
  margin: 28px 0;
  padding: 0 40px;
}
@media only screen and (max-device-width: 420px) {
  main .contenido h2 {
    padding: 0 9px;
  }
}
main .contenido p, main .contenido li {
  font-size: 1.3em;
  line-height: 1.5em;
  margin-bottom: 14px;
}
main .contenido li {
  list-style: none;
}
main .contenido li:before {
  content: "";
  font-family: "FontAwesome";
  color: var(--cs);
  position: absolute;
  margin-left: -26px;
}
@media only screen and (max-device-width: 420px) {
  main .contenido li:before {
    margin-right: 5px;
  }
}
main .contenido .img_fecha {
  width: 138px;
  float: right;
  margin-top: -77px;
  transition: 0.5s ease-in-out;
}
main .contenido .img_fecha:hover {
  transform: scale(1.1);
}
main .contenido .lista_destacada li {
  transition: 0.4s ease-in-out;
  width: fit-content;
}
main .contenido .lista_destacada li:hover {
  background-color: #2a3f0e;
  color: white;
  width: fit-content;
  padding: 3px;
  transform: scale(1.05);
}
main .contenido .destacado {
  margin: 12px 0;
}
main .contenido .destacado .row {
  display: flex;
  align-content: center;
  align-items: center;
  background-color: #e3f0db;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 6px 6px 20px 0px #00000052;
  border: 1px solid #ffffffa6;
}
@media only screen and (max-device-width: 420px) {
  main .contenido .destacado .row {
    flex-direction: column;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  main .contenido .destacado .row {
    flex-direction: column;
  }
}
main .contenido .destacado .row div {
  width: 50%;
}
@media only screen and (max-device-width: 620px) {
  main .contenido .destacado .row div {
    width: 100%;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  main .contenido .destacado .row div {
    width: 100%;
  }
}
main .contenido .destacado .row div:last-child {
  background: #0a2a4e;
  background: linear-gradient(197deg, #15e70a 3%, #176e12 37%, #2a3f0e 25%, #041425 100%);
  overflow: hidden;
}
main .contenido .destacado .row div:last-child:hover img {
  transform: scale(1.1);
}
main .contenido .destacado .row div:last-child img {
  transition: 0.6s ease-in-out;
  width: 100%;
}
main .contenido .destacado2 .row {
  background-color: #d9dfce;
  margin: 12px 0;
  border-radius: 17px;
}
main .contenido .destacado2 .row .col-md-2 {
  padding: 18px 10px;
}
main .contenido .destacado2 .row .col-md-9 {
  border-left: 1px solid #033a11;
  padding: 23px 10px;
}
main .contenido .destacado2 i {
  font-size: 4em;
  text-align: center;
  display: block;
  margin: 23px auto;
}
main .contenido .destacado2 .laptop {
  font-family: laptop;
  font-size: 4em;
  text-align: center;
  display: block;
}
main .contenido .destacado2 p {
  font-weight: 700;
}
main .shadow-effect {
  background: #fff;
  padding: 20px;
  min-width: 280px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
main #customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
main .testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: var(--cs);
  padding: 9px 35px;
  border-radius: 12px;
  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);
}
main #customers-testimonials .item {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.2;
  -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;
}
main #customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
main .owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 50px;
  margin: 0 auto 17px;
}
main #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
main #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--ct);
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
main #customers-testimonials.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
main #customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
main #customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: var(--ct);
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}
main footer {
  margin: 0 auto;
  margin-bottom: 38px;
  padding: 50px 0 0px;
  font-size: 12px;
  background: var(--color-one);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #272727;
  min-height: 163px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main footer .cont_footer {
  display: flex;
  flex-direction: row;
  width: 63%;
}
@media only screen and (max-device-width: 820px) {
  main footer .cont_footer {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  main footer .cont_footer {
    flex-direction: column;
    align-items: center;
  }
}
main footer .cont_footer .footer_img {
  width: 49%;
  display: flex;
  align-items: center;
  padding: 0 19px;
}
@media only screen and (max-device-width: 420px) {
  main footer .cont_footer .footer_img {
    width: 65%;
    margin-bottom: 28px;
  }
}
main footer .cont_footer img {
  width: 100%;
}
main footer .txt {
  width: 50%;
}
@media only screen and (max-device-width: 420px) {
  main footer .txt {
    width: 80%;
    text-align: center;
  }
}
main footer ul, main footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=style.css.map */
