@charset "UTF-8";
/* ------------------------------------------------------
@File: Default Styles
@Author: Wace-IT.
@Developed By: Andrea Cadena
------------------------------------------------------- */



/*----------------------------------------------------*/
/*font Variables*/
/*Color Variables*/
/* Bottom to Top key frame*/
@import url(../css/bootstrap.min.css);
@import url(../vendors/flat-icon/flaticon.css);
@import url(../vendors/animate-css/animate.css);
@import url(../vendors/owl-carousel/owl.carousel.min.css);
@import url(../vendors/bootstrap-selector/nice-select.css);
@import url(../vendors/magnify-popup/magnific-popup.css);
@import url(../vendors/bootstrap-selector/nice-select.css);
@import url(../vendors/revolution/css/navigation.css);
@import url("https://fonts.googleapis.com/css?family=Nunito:400,400i,600,700,800|Source+Sans+Pro:400,400i,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");


:root {
  --blue: #1c69b1;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #eb4d4b;
  --orange: #e66228;
  --yellow: #EE5A24;
  --green: #6ab04c;
  --teal: #00cec9;
  --cyan: #1289A7;
  --white: #fff;
  --gray: #ededed;
  --gray-dark: rgba(0, 0, 0, 0.702);
  --primary: #ff6e42;
  --secondary: #6c757d;
  --success: #6ab04c;
  --info: #1289A7;
  --warning: #EE5A24;
  --danger: #eb4d4b;
  --light: #f8f9fa;
  --dark: #1b1b1b;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Poppins";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --gradiente: linear-gradient(359deg, rgba(28, 105, 177, 1) 0%, rgb(63 129 191) 100%);
}

::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #ff5a29;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff6e42;
}

@-webkit-keyframes BottomToTop {
  49% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@-moz-keyframes BottomToTop {
  49% {
    -moz-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes BottomToTop {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

/* Button Style */
.theme_btn {
  color: #fff;
  background: var(--blue);
  text-align: center !important;
  font: 600 16px/50px "Signika";
  display: inline-block;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

/* .tittle p {
  color: var(--blue)!important;
  margin: 0;
  font: 400 23px / 28px "Signika";
  padding: 30px;
} */
.contain {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}



button,
input,
optgroup,
select,
textarea {
  font-family: "Signika";
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Signika";
}

.theme_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--orange);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.theme_btn:hover,
.theme_btn:focus,
.theme_btn.active {
  color: #fff !important;
}

.theme_btn:hover:before,
.theme_btn:focus:before,
.theme_btn.active:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

.no-pad {
  padding: 0;
}

/* Tittle */
.tittle {
  display: block;
  overflow: hidden;
  text-align: center;
}

.tittle img {
  margin-bottom: 30px;
}

.tittle h2 {
  font: 700 60px/61px "Signika" !important;
  color: var(--orange) !important;
  position: relative !important;
  padding-bottom: 20px !important;
  text-shadow: 2px 1px 0px rgba(149, 149, 149, 0.6) !important;
}

.tittle h2:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 56px;
  background: var(--blue);
  margin: 0 auto;
}

.tittle h1 {
  font: 700 60px/61px "Signika" !important;
  color: var(--orange) !important;
  position: relative !important;
  padding-bottom: 20px !important;
  text-shadow: 2px 1px 0px rgba(149, 149, 149, 0.6) !important;
}

.tittle h1:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 56px;
  background: var(--blue);
  margin: 0 auto;
}

.tittle .line-orange:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 56px;
  background: var(--orange) !important;
  margin: 0 auto;
}

.tittle h2 span {
  display: block;
  color: var(--blue);
  text-shadow: 2px 1px 0px rgba(149, 149, 149, 0.6);
}

.tittle3 {
  color: var(--orange);
  text-shadow: 2px 1px 4px rgb(85 62 46);
  font-family: Signika;
  font-weight: 500;
}

.tittle3 h4 {
  font-size: 2.9em !important;
  text-shadow: 2px 1px 4px rgb(85 62 46);
}

.tittle4 {
  font-size: 38px;
  color: var(--blue);
  font-weight: bold;
  line-height: 49px;
  position: relative;
  top: -54px;
  left: -15px;

}

@media (min-width: 300px) {
  .tittle h2 {
    font: 700 30px/39px "Signika" !important;
  }

  .tittle h1 {
    font: 700 30px/39px "Signika" !important;
  }

  .tittle3 {
    font-size: 5em;
  }
}

@media (min-width: 600px) {
  .tittle h2 {
    font: 700 40px/61px "Signika" !important;
  }

  .tittle h1 {
    font: 700 40px/61px "Signika" !important;
  }

  .blog-detail h2 {
    font-size: 27px;
  }

  .tittle3 {
    font-size: 7em;
  }
}

@media (min-width: 900px) {
  .tittle h2 {
    font: 700 60px/59px "Signika" !important;
  }

  .tittle h1 {
    font: 700 60px/59px "Signika" !important;
  }

  .tittle3 {
    font-size: 12em;
  }
}

.tittle.la {
  text-align: right;
}

.tittle.le {
  text-align: left;
}

.tittle.la h2::after {
  margin: 0;
  right: 0;
  text-align: right;
}

/* Preloader */
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/preloader.gif");
}

/*----------------------------------------------------*/
/*Prefix Styles*/
body {
  font-family: "Signika";
  overflow-x: hidden;
  position: static;
  /*Section Fix*/
  /*Ancore*/
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
}

body p {
  color: rgba(0, 0, 0, 0.702);
  margin: 0;
  font: 400 23px/28px "Signika";
  padding: 30px;

}

body ul {
  margin: 0;
  padding: 0;
}

body ul li {
  list-style: none;
}

body section.row,
body header.row,
body footer.row {
  margin: 0;
}


body #success {
  display: none;
}

body #error {
  display: none;
}

body iframe {
  border: none;
}

body i:before {
  margin-left: 0px !important;
}

body a,
body .btn,
body button {
  outline: none;
  transition: all 300ms linear 0s;
}

body a:before,
body a:after,
body .btn:before,
body .btn:after,
body button:before,
body button:after {
  transition: all 300ms linear 0s;
}

body a:focus,
body a:hover,
body .btn:focus,
body .btn:hover,
body button:focus,
body button:hover {
  outline: none;
  text-decoration: none;
  transition: all 300ms linear 0s;
}

/* post_select */
.post_select {
  position: relative;
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: none;
  outline: none;
  font: 400 16px/40px "Signika";
  padding: 0 25px;
  height: auto;
  border-radius: 0;
  color: rgba(0, 0, 0, 0.6);
  min-width: 150px;
  background-color: transparent;
}

.post_select:after {
  display: none;
}

.post_select:before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  font: normal normal normal 16px/40px FontAwesome;
  color: #151515;
}

.post_select .list {
  width: 100%;
  border-radius: 0;
  margin: 0;
  border: 0;
  box-shadow: none;
  outline: none;
  box-shadow: 1px 0px 7px 0px rgba(22, 43, 70, 0.1);
}

.post_select .list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.702);
}

/*----------------------------------------------------*/
/* Header Area */
.header_top_area {
  width: 100%;
  display: block;
  background: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.header_top_area .top_menu li,
.header_top_area .right_menu li {
  display: inline-block;
  padding-left: 18px;
}

.header_top_area .top_menu li:first-child,
.header_top_area .right_menu li:first-child {
  padding-left: 0;
}

.header_top_area .top_menu li a,
.header_top_area .right_menu li a {
  color: white;
  font: 400 16px/60px "Signika";
}

.header_top_area .top_menu li a:hover,
.header_top_area .top_menu li a:focus,
.header_top_area .right_menu li a:hover,
.header_top_area .right_menu li a:focus {
  color: var(--blue);
}

.header_top_area .top_menu li .number,
.header_top_area .right_menu li .number {
  font: 600 24px/60px "Signika";
  color: var(--blue);
  display: flex;
  padding-right: 30px;
}

.header_top_area .top_menu li .number small,
.header_top_area .right_menu li .number small {
  text-transform: uppercase;
  color: #767575;
  font: 400 16px/60px "Signika";
  padding-right: 18px;
}

.header_top_area .right_menu .right_nav {
  float: right;
}

.header_top_area .right_menu .right_nav li {
  padding-left: 27px;
}

.header_top_area .right_menu .right_nav li:first-child {
  padding: 0;
}

.header_top_area .right_menu .right_nav li.dropdown {
  position: relative;
  padding-left: 47px;
}

.header_top_area .right_menu .right_nav li.dropdown .dropdown-menu {
  position: absolute;
  left: 27px;
  display: block;
  transition: all 300ms linear 0s;
  transform: rotateX(-90deg) !important;
  transform-origin: top !important;
}

.header_top_area .right_menu .right_nav li.dropdown .dropdown-menu:before {
  content: "\f0d8";
  font: normal normal normal 30px/1 FontAwesome;
  position: absolute;
  top: -17px;
  left: 15px;
  color: #fff;
}

.header_top_area .right_menu .right_nav li.dropdown .dropdown-menu li {
  display: block;
  padding: 0;
  width: 100%;
}

.header_top_area .right_menu .right_nav li.dropdown:hover .dropdown-menu,
.header_top_area .right_menu .right_nav li.dropdown:focus .dropdown-menu {
  transform: rotateX(0deg) !important;
}

/* Min header area */
.main_header_area {
  display: block;
  width: 100%;
  z-index: 9999;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  background: #ffffffd9;
}

.main_header_area .navbar {
  padding: 0;
  width: 100%;
  display: inline-block;
}

.navbar-brand img {
  width: 15em;
  height: 3em;
}

.gman {
  animation: driftModule 4s linear infinite;
  display: block;
  width: 165px;
  height: 165px;
  position: fixed;
  bottom: 23px;
  right: 100px;
  z-index: 9999999;
  transition: all 100msease;
}


.gman img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

@keyframes driftModule {
  0% {
    transform: translate(0, 0);
  }

  12.5% {
    transform: translate(5px, 5px);
  }

  25% {
    transform: translate(10px, 0px);
  }

  37.5% {
    transform: translate(5px, -5px);
  }

  50% {
    transform: translate(0px, 0px);
  }

  62.5% {
    transform: translate(-5px, 5px);
  }

  75% {
    transform: translate(-10px, 0px);
  }

  87.5% {
    transform: translate(-5px, -5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@media (min-width: 400px) {
  .main_header_area .container {
    max-width: 48em;
    padding: 0;
  }
}

@media (max-width: 500px) {

  .navbar-brand img {
    max-width: 10em;
  }
}

@media (max-width: 991px) {
  .main_header_area {
    top: 0px !important;
  }

  .main_header_area.navbar_fixed {
    top: -70px !important;
  }
}

@media (min-width: 576px) {
  .banner_area.productos .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .main_header_area .container {
    min-width: 100%;
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .main_header_area .container {
    max-width: 1300px;
    padding: 0 65px;
  }
}

@media (max-width: 991px) {
  .main_header_area .navbar .navbar_supported ul li a {
    margin: 0 15px !important;
    color: white !important;
    ;
  }
}

@media (max-width: 400px) {
  .main_header_area {
    top: 0px !important;
    ;
  }
}

@media (max-width: 399px) {
  .main_header_area {
    top: 100px;
  }

  .main_header_area .container {
    min-width: 100%;
    padding: 0;
  }
}

.section.sect {
  padding: 0 !important;
  background: white !important;
}

@media (max-width: 450px) {
  .sect {

   visibility: hidden;
    display: none;
  
  }
  .encuentranos .theme_btn2 {

    padding: 11px!important;
    width: 13em!important;
}
.encuentranos .mapa {
    position: relative;
    width: 100%!important ;
}
}

@media (min-width: 900px) {
  .sect {
    min-height: 74vh;
  }
}

@media (min-width: 1400px) {
  .sect {
    width: 100%;
    min-height: 100vh;
  }
}

video {
  position: absolute;
  left: 0;
  max-width: 100%;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

@media (min-width: 300px) {
  video {
    top: 87px;
    min-height: 17em;
    position: absolute;
    left: 0;
    max-width: 100%;
    z-index: -1;
    object-fit: cover;
  }
}

@media (min-width: 600px) {
  video {
    top: 92px;
    min-height: 26em;
  }
}


@media (min-width: 991px) {
  video {
    top: 0px;
    min-height: 26em;

  }
}

@media (min-width: 1400px) {
  video {
    top: 0px;
    width: 100%;
    max-height: 100vh;

  }
}

.main_header_area .navbar .navbar-brand {
  padding: 0;
  margin: 0;
  padding-top: 14px;
}

.main_header_area .navbar .navbar-brand img+img {
  display: none;
}

.main_header_area .navbar .navbar_supported {
  float: right;
  background: transparent;
  padding: 19px 20px 19px 40px;
}

.main_header_area .navbar .navbar_supported ul {
  width: 100%;
  padding-left: 32px;
}

.main_header_area .navbar .navbar_supported ul li a {
  margin: 0 17px;
  padding: 0;
  color: var(--blue);
  font: 600 18px/50px "Signika";
  position: relative;
}


.nav-link {
  color: var(--blue);

}

.nav-link.active {
  color: var(--orange) !important;
  border-bottom: 3px solid var(--orange) !important;
  line-height: 46px !important;
}

.main_header_area .navbar .navbar_supported ul li a:after {
  display: none;
}

.main_header_area .navbar .navbar_supported ul li.dropdown {
  position: relative;
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu {
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: 1px 0px 7px 0px rgba(22, 43, 70, 0.1);
  /* Sub dropdown */
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu:before {
  content: "\f0d8";
  font: normal normal normal 30px/1 FontAwesome;
  position: absolute;
  top: -17px;
  left: 25px;
  color: #fff;
}

@media (min-width: 991px) {
  .main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -40px;
    min-width: 240px;
    background-color: #fff;
    opacity: 0;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    border-radius: 5px;
  }

  .main_header_area .navbar .navbar_supported {
    padding: 19px 13px 19px 13px;
  }
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu a {
  background-color: transparent;
  font: 400 18px/45px "Signika";
  color: rgba(0, 0, 0, 0.702);
  margin: 0;
  display: block;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu a:after {
  border: 0;
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu a:hover,
.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu a:focus,
.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu a.active {
  color: var(--orange);
  border-left: 4px solid var(--orange);
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown {
  position: relative;
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown a:after {
  border: 0;
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown:after {
  content: "\f103";
  position: absolute;
  top: 0;
  right: 20px;
  font: normal normal normal 15px/48px FontAwesome;
  color: rgba(0, 0, 0, 0.702);
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown .dropdown-menu {
  display: block;
}

.main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown .dropdown-menu:before {
  content: "\f0d9";
  font: normal normal normal 30px/1 FontAwesome;
  color: rgba(0, 0, 0, 0.05);
  top: 7px;
  left: -10px;
}

@media (min-width: 991px) {
  .main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown .dropdown-menu {
    transform: translateZ(0);
    transform: scaleX(0);
    transform-origin: 0 50%;
    position: absolute;
    left: 100%;
    right: auto;
    width: auto;
    top: 0px;
  }
}

@media (min-width: 991px) {

  .main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown:hover .dropdown-menu,
  .main_header_area .navbar .navbar_supported ul li.dropdown .dropdown-menu>.dropdown:focus .dropdown-menu {
    transform: scale(1, 1);
  }
}

@media (min-width: 991px) {

  .main_header_area .navbar .navbar_supported ul li.dropdown:hover .dropdown-menu,
  .main_header_area .navbar .navbar_supported ul li.dropdown:focus .dropdown-menu {
    left: 0px;
    visibility: visible;
    opacity: 1;
  }
}

.main_header_area .navbar .navbar_supported ul li .theme_btn {
  background: var(--orange);
  min-width: 175px;
  display: inherit;
  margin: 0;
  margin-left: 15px;
  color: white;
}

.main_header_area.navbar_fixed {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  transform: translateY(70px);
  transition: transform 500ms ease, background 200ms ease;
  -webkit-transition: transform 500ms ease, background 200ms ease;
}

.main_header_area.navbar_fixed {
  background: var(--blue);
  padding: 0 20px;
}

.main_header_area.navbar_fixed .navbar .navbar_supported ul li a {
  color: white;
}

.navbar-nav .active {
  color: red;
}

.main_header_area.navbar_fixed .header_menu .navbar .navbar-brand {
  padding-top: 4px;
}

.main_header_area.navbar_fixed .header_menu .navbar .navbar-brand img {
  display: none;
}

.main_header_area.navbar_fixed .header_menu .navbar .navbar-brand img+img {
  display: block;
}

.main_header_area.navbar_fixed .header_menu .navbar .navbar_supported {
  padding: 10px 0px;
}

.mha_2 .header_menu {
  background: var(--blue);
}

.header .shape svg {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header .shape svg path {
  fill: #fff;
}

.contador {
  margin: 2% auto;
  text-align: center;
  padding: 13px;
  /* background: #52697d; */
  background: rgb(28, 105, 177);
  background: var(--gradiente);
  color: white;
  border-radius: 25px;
  box-shadow: 11px 12px 12px -8px rgba(179, 179, 179, 1);

}

.contador_area {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .header .shape svg {
    bottom: -15px;
  }
}

@media (max-width: 767.98px) {
  .header .shape svg {
    bottom: 0;
  }
}

@media (min-width: 991px) {
  .mha_2 .header_menu .navbar-brand {
    display: none;
  }

  .mha_2 .header_menu .navbar .navbar_supported {
    float: none;
    padding-left: 10px;
  }

  .mha_2 .header_menu .navbar .navbar_supported .navbar-nav {
    display: block;
  }

  .mha_2 .header_menu .navbar .navbar_supported .navbar-nav li {
    display: inline-block;
  }

  .mha_2 .header_menu .navbar .navbar_supported .navbar-nav li .dropdown-menu li {
    display: block;
  }

  .mha_2 .header_menu .navbar .navbar_supported .navbar-nav .apply_right {
    float: right;
  }
}

/*----------------------------------------------------*/

.banner_area {
  display: block;
  overflow: hidden;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding-top: 580px;
  text-align: left;
}

.banner_area.nosotros {
  display: block;
  overflow: hidden;
  position: relative;
  background: url(../images/banner/5.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
  top: 0em;
  height: calc(95vh);
  padding-top: 310px;
}

.banner_area.nosotros .titulo {
  text-align: justify;
  width: 40em;
}

.banner_area.nosotros h2 {
  font: 400 64px / 65px "Signika";
  color: var(--blue);
  padding-bottom: 30px;
  text-align: center;
  position: static;
  line-height: 1em;

}


.banner_area.nosotros img {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.nosotros .card {
  background: var(--gray);
  height: 17em;
  bottom: 115px;
  width: 44em;
  text-align: center;
  padding: 68px;
  box-shadow: 10px 10px 5px -8px rgba(120, 120, 120, 1);
}



.banner_area:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
  background-color: rgb(4 4 35 / 5%);
}

.theme_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--orange);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.banner_area h3 {
  color: var(--blue);
  font: 400 40px/65px "Signika";
  padding-bottom: 7px;
}

.banner_area h2 {
  font: 700 60px/65px "Signika";
  color: var(--orange);
  padding-bottom: 30px;
  position: relative;
}


.banner_area h2 span {
  color: var(--orange);
}

.banner_area.nosotros h2:after {
  background: none;
}

.banner_area.productos h2:after {
  background: none;
}

.banner_area.productos h2 span {
  font-size: 72px;
}

.banner_area .breadcrumb {
  background-color: transparent;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  padding-top: 120px;
  padding-bottom: 25px;
}

.banner_area .breadcrumb li {
  display: inline-block;
  padding-left: 22px;
  position: relative;
}

.banner_area .breadcrumb li:after {
  content: "-";
  position: absolute;
  color: #fff;
  font: 400 18px/25px "Signika";
  top: 0;
  left: 7px;
}

.banner_area .breadcrumb li:first-child {
  padding: 0;
}

.banner_area .breadcrumb li:first-child:after {
  display: none;
}

.banner_area .breadcrumb li a {
  text-align: center;
  font: 400 18px/1 "Signika";
  color: #fff;
}

.banner_area .breadcrumb li a:hover,
.banner_area .breadcrumb li a:focus,
.banner_area .breadcrumb li a.active {
  color: var(--orange);
}

@media (max-width: 1200px) {
  .banner_area.nosotros .titulo {
    width: 28em;
  }

  .banner_area.nosotros h2 {
    font: 400 41px / 41px "Signika";
  }
}

@media (max-width: 786px) {
  .banner_area.nosotros {
    height: calc(56vh);
    padding-top: 138px;
  }

  .banner_area.nosotros .titulo {
    width: 11em;
  }

  .banner_area.nosotros h2 {
    font: 400 41px / 41px "Signika";
  }
}

/*----------------------------------------------------*/

.section {
  padding-top: 117px !important;
  padding-bottom: 100px !important;
  position: relative;
  z-index: 1;
}

.section:nth-child(even) {
  background: #f5f8fc;

}

.section .section-devider {
  display: block;
  height: 1px;
  margin: 50px 0;
}

.section .section-devider.transparent {
  background-color: transparent;
}

.section.py-sm {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.section.py-lg {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

.section .section-subtitle {
  font-size: calc(19px + (13 - 13) * ((100vw - 320px) / (1200 - 320)));
  font-weight: 500;
  margin-bottom: 0px;
  opacity: .9;
  color: var(--blue);
}

.section .section-title {
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1200 - 320)));
  padding-bottom: 7px;
  font-weight: 600;
}

.section .components-section-title {
  font-size: calc(18px + (23 - 18) * ((100vw - 320px) / (1200 - 320)));
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .section .components-section-title {
    font-size: 23px;
  }
}

.section .section-secondary-title {
  font-size: 17px;
  opacity: .7;
  margin-bottom: 15px;
}

.section.has-overlay {
  position: relative;
}

.section.has-overlay * {
  position: static;
  z-index: 9;
}

.section.has-overlay:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.section.has-img-bg {
  position: relative;
  background: url(../imgs/section.jpg) no-repeat center top fixed;
  background-size: cover;
  color: #fff;
}

.section.has-img-bg * {
  position: relative;
  z-index: 100;
}

.section.has-img-bg:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* nosotros */

.section.section-nosotros {
  padding-top: 250px !important;
}

.section.section-nosotros .tittle {
  text-align: left;
}

.section.section-nosotros p {
  padding: 20px;
  text-align: justify;
}

.video-btn {
  background: var(--secondary);
  height: 3em;
  border-radius: 7px;
}

.carousel-item img {
  max-height: 32em;

}

.carousel-inner {
  text-align: center;
}

.lateral3::after {
  position: absolute;
  background-image: url(../images/lateral3.png);
  width: 100%;
  height: 376px;
  content: '';
  right: 0;
  bottom: -375px;
  z-index: 1;
  background-repeat: no-repeat;

}

.lateral4::after {
  position: absolute;
  background: #e66228;
  width: 30%;
  height: 376px;
  content: '';
  right: 0;
  bottom: 30px;
  z-index: -1;
  background-repeat: no-repeat;
  border-top-right-radius: 15px;
}

.lateral5::after {
  position: absolute;
  background: #e66228;
  width: 30%;
  height: 376px;
  content: '';
  right: 0;
  bottom: 9px;
  z-index: -1;
  background-repeat: no-repeat;
  border-top-right-radius: 15px;
}

.lateral6::after {
  position: absolute;
  background: #e66228;
  width: 30%;
  height: 376px;
  content: '';
  left: 0;
  bottom: 9px;
  z-index: -1;
  background-repeat: no-repeat;
  border-top-left-radius: 15px;
}

.purpose_area.mision {
  margin-top: 136px !important;
  margin-bottom: 136px !important;
}

.btn-primary {
  color: #fff;
  background-color: var(--blue) !important;
  border-color: var(--blue);
  width: 100%;
  border-radius: 19px;
  margin: 4px;
}

.btn-active {
  background-color: var(--orange) !important;
  border-color: var(--orange);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--orange) !important;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).innactive,
.btn-primary:not(:disabled):not(.disabled):innactive,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--blue) !important;
  border-color: #005cbf;
}

.img-visible {
  visibility: visible;
  display: contents;
}

.img-hidden {
  visibility: hidden;
  display: none !important;
}

/* alianzas */

.potential_area {
  display: block;
  overflow: hidden;
  padding-top: 150px;
  background: url(../images/banner/banner5.jpg) !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

.potential_area:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: -1;

}

.potential_area .owl-item {
  max-width: 17em !important;
  background: #ffffff00;
  max-height: 87px;
}

@media (max-width: 500px) {

  .owl-carousel .owl-item img {
    display: block;
    width: 70%;
  }

  .owl-carousel {
    height: 4em;
  }

  .ptl_img {
    width: 80%;
  }

  .potential_area {
    background-attachment: initial !important;
  }
}

.potential_area .tittle {
  padding-bottom: 43px;
}


.potential_area .potential {
  margin-bottom: 30px;
}

.potential_area .potential .ptl_img {
  display: block;
  overflow: hidden;
}

.potential_area .potential .ptl_img img {
  max-width: 100%;
  transition: all 300ms linear 0s;
}

.potential_area .potential .ptl_containt {
  box-shadow: 0px 0px 40px 0px rgba(233, 233, 233, 0.75);
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
}

.potential_area .potential .ptl_containt .heding {
  font: 600 26px/36px "Signika";
  color: var(--orange);
}

.potential_area .potential .ptl_containt .heding:hover,
.potential_area .potential .ptl_containt .heding:focus {
  color: var(--blue);
}

.potential_area .potential .ptl_containt h6 {
  color: #5577b8;
  font: 600 16px/1 "Signika";
  padding: 45px 0;
  padding-top: 35px;
}

.potential_area .potential .ptl_containt .theme_btn {
  line-height: 45px;
  min-width: 156px;
}

.potential_area .potential:hover .ptl_img img,
.potential_area .potential:focus .ptl_img img {
  transform: scale3D(1.2, 1.2, 2);
}




/*----------------------------------------------------*/

/* servicios */
.banner_area.eventos {
  display: block;
  overflow: hidden;
  position: relative;
  background: url(../images/banner/banner6.png) no-repeat center;
  background-size: cover;
  z-index: 1;
  padding-top: 154px;
  text-align: left;
  height: calc(95vh);
}

.banner_area.eventos:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
  background-color: #41455b99;
}

.banner_area.eventos p {
  color: white;
  font-size: 51px;
  position: relative;
  bottom: -300px;
  line-height: 56px;
  text-align: center;
}

.banner_area.eventos p span {
  color: var(--orange);
  font-size: 54px;

}

.eventos .card-right .card-container {
  border: 1px solid var(--blue);
  border-radius: 19px;
  padding: 33px 14px;
  margin: 0 24px 0 0;
  min-height: 30em;
}

.eventos .card-right .texto {
  display: flex;
  margin-top: 5px;
  margin-bottom: 20px;
}

.eventos .card-right h2 {
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 25px;
}

.eventos .card-right .texto p {
  font: 400 16px / 28px "Signika";
  padding: 0px 12px;
  line-height: 22px;

}

.eventos .card-right .texto .linea {
  border-right: 1px solid var(--orange);
  width: 49px;
}

.eventos .theme_btn {
  color: var(--white);
  background: var(--orange) !important;
  text-align: center !important;
  font: 600 18px / 47px "Signika";
  display: inline-block;
  padding: 0 25px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  z-index: 1;
  width: 76%;

}


.card-right .contenedorc {
  height: 9em;
}


.portfolio_area.eventos .portfoli_inner .portfolio_item .portfolio_content {
  background: #ededed;
  padding: 24px 24px;
  text-align: center;
  border-bottom-left-radius: 7%;
  border-bottom-right-radius: 7%;
}

.portfolio_area.eventos .portfoli_inner .portfolio_item .portfolio_content .heding {
  font: 600 24px / 1 "Signika";
  color: var(--white);
  display: block;
  padding: 12px;
  background: var(--blue);
  border-radius: 9px;
  position: relative;
  bottom: 48px;
}

.portfolio_area.eventos .portfoli_inner .portfolio_item p {
  font: 400 20px / 1 "Signika";
  color: var(--gray-dark) !important;
  line-height: 25px;
  height: 12em;
  padding: 4px 6px 0;
  text-align: left;
}

.portfolio_area.productos-detalle {
  padding: 0 !important;
}

/***************** blog *************************/
.portfolio_area.blog .protfoli_filter li:hover a,
.portfolio_area .protfoli_filter li:focus a,
.portfolio_area .protfoli_filter li.active a {
  color: white;
  height: 35px !important;
  background: var(--orange);
  padding: 11px 11px !important;
  border-radius: 8px;
}

.portfolio_area.blog .protfoli_filter {
  border-radius: 0 0 40px 0;
  padding: 0 20px;
  margin-bottom: 8px;
  text-align: left;
  border-top: 1px solid lightgrey;
  margin-top: 40px;
}

.portfolio_area.blog .portfoli_inner .portfolio_content {
  padding: 5px;
  text-align: left;
}

.portfolio_area.blog .portfoli_inner .portfolio_content .heding {
  font: 600 22px / 1 "Signika";
  color: var(--blue);
  display: block;
  padding: 12px;
  border-radius: 9px;
  text-align: left;
}

.portfolio_area.blog .portfoli_inner p {
  font: 400 20px / 1 "Signika";
  color: var(--gray-dark) !important;
  line-height: 25px;
  padding: 4px 6px 0;
  text-align: left;
}

.portfolio_area.blog .portfoli_inner span {
  font: 400 20px / 1 "Signika";
  color: var(--gray-dark) !important;
  line-height: 25px;
  padding: 4px 6px 0;
  text-align: left;
}

.portfolio_area.blog .portfolio_content:hover {
  background: rgb(210, 218, 238);
  color: white;
}

.portfolio_area.productos-detalle {
  padding: 0 !important;
}

.portfolio_area.blog .portfoli_inner .portfolio_item {
  margin-bottom: 5px;
  -webkit-box-shadow: 10px 10px 5px -8px rgba(133, 133, 133, 1);
  -moz-box-shadow: 10px 10px 5px -8px rgba(133, 133, 133, 1);
  box-shadow: 9px 8px 12px -8px rgba(133, 133, 133, 1);
  border-radius: 7%;
}

.portfolio_area.blog .portfoli_inner .portfolio_content img {
  height: 27px
}

.portfolio_area.blog .line {
  border-bottom: 5px solid var(--orange);
  width: 95px;
}

.portfolio_area.blog .line2 {
  border-bottom: 4px solid var(--orange);
  width: 9em;
  margin-left: 21px;
}

.blog-detail h2 {
  color: var(--blue);
  padding-left: 24px;
}

.blog-detail h3 {
  font-size: 22px;
  padding-left: 24px;
  margin-top: 13px;
}

.blog-detail b {
  color: var(--orange)
}


.blog-detail .contenedor-img {

  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.blog-detail a {
  box-shadow: 10px 10px 5px -9px rgba(0, 0, 0, 0.63);
  background: #4e545b57;
  border: 1px solid #8f8f8f;
  margin: 5px;
}

.blog-detail p a {
  box-shadow: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--blue);
  margin: 5px;
  color: var(--blue)
}

.blog-detail label {
  font-size: 20px;
  font-weight: 600;
  padding-left: 3em;
}

.blog-detail .container-img {
  height: 6em;
  text-align: center;
}

.blog-detail .container-img img {
  height: 6em;
  border-radius: 28px;
  box-shadow: 7px 5px 5px 0px rgba(224, 224, 224, 0.75);
}

.blog-detail th {
  font-size: 20px;
  padding-right: 9px;
}

.blog-detail td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.blog-detail tr:nth-child(even) {
  background-color: #dddddd;
}

.blog-detail img {
  height: 19em;
  margin: 1px;
}

.blog-detail .texto-fin {
  font-size: 55px;
  text-align: center !important;
  color: var(--blue);
}

.breadcrumb {
  background-color: transparent;
  display: block;
  margin: 0;
  margin-bottom: 31px;
  padding: 9px 9px 9px 45px;
  border-radius: 0;
  /* padding-top: 8px; */
  /* padding-bottom: 52px; */

}

.breadcrumb li:first-child {
  padding: 0;
}

.breadcrumb li {
  display: inline-block;
  padding-left: 22px;
  position: relative;
}

.breadcrumb li a {
  text-align: center;
  font: 400 18px / 1 "Nunito", sans-serif;
  color: var(--blue);
}

.breadcrumb li a:hover {
  text-align: center;
  font: 400 18px / 1 "Nunito", sans-serif;
  color: var(--orange);
}

.breadcrumb li a.active {
  color: var(--orange);
  font-weight: 700;
}

.breadcrumb li:after {
  content: "-";
  position: absolute;
  color: var(--blue);
  font: 400 18px / 25px "Nunito", sans-serif;
  top: 0;
  left: 7px;
}

.portfolio_area.blog.section-divider {
  background: #ffffff;
}

.portfolio_area.blog ul {
  padding-left: 75px;
  font: 400 19px / 28px "Signika";
}

.portfolio_area.blog ul li {
  list-style: disc;
}

.portfolio_area.blog p {
  text-align: justify;
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

#popup img {
  max-width: 80%;
  max-height: 80%;
}

#popup button {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* slider eventos */



.slideshow-container {
  width: 100%;
  position: relative;
  justify-content: end;
  display: flex;
  max-height: 32em;
  min-height: 30em;

}

.slideshow-container img {
  width: 100%;
  height: 100%;
  border-radius: 27px;

}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.eventos.slider .active {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 6s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px
  }
}

/* fin  eventos */



@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}


.previous_record_area {
  display: block;
  overflow: hidden;
  position: relative;
  padding-top: 120px;
  z-index: 1;
}

.previous_record_area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: var(--blue);
  height: 288px;
  z-index: -1;
}

.previous_record_area .card-content {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  justify-content: center;
}

.previous_record_area .card {
  background: white;
  border-radius: 21px;
  padding: 19px;
  margin: 21px;
  width: 72%;
  box-shadow: 10px 10px 5px -8px rgba(179, 179, 179, 1);
  border: 1px solid var(--blue) !important;

}

.previous_record_area .card-content h2 {
  color: var(--orange);
  margin: 0 21px;
  font-weight: bold;
  font-size: 45px;

}


.previous_record_area:after {
  content: "";
  position: absolute;
  top: 120px;
  right: 5%;
  left: 5%;
  background: #f7f7f7;
  height: 658px;
  z-index: -1;
  width: 90%;
  border-radius: 24px;
}

.previous_record_area .previous_img {
  width: calc(50% - 45px);
  float: left;
  padding-top: 125px;
}

.previous_record_area .previous_img img {
  max-width: 100%;
}

.previous_record_area .previous_right {
  width: calc(50% + 45px);
  float: right;
  padding-top: 72px;

}

.previous_record_area .previous_center {
  width: calc(80%) !important;
  padding-top: 72px;
  margin: auto;

}

.previous_record_area .alons_text {
  padding-left: 30px;
  max-width: 559px;
  padding-bottom: 95px;
}

.previous_record_area .alons_text h2 {
  font: 600 35px/40px "Signika";
  color: #151515;
}

.previous_record_area .alons_text h4 {
  font: 600 20px/30px "Signika";
  color: var(--blue);
  padding-top: 10px;
  padding-bottom: 35px;
}

.previous_record_area .alons_text p {
  font-size: 18px;
  line-height: 32px;
  padding-bottom: 45px;
}

.previous_record_area .alons_text .theme_btn {
  min-width: 207px;
  background: var(--orange);
  margin-top: 30px;
}

.previous_record_area .alons_text .theme_btn:before {
  background: var(--blue);
}

.previous_record_area .projects_done {
  max-width: 655px;
  padding-top: 110px;
  padding-bottom: 60px;

}

.previous_record_area .gm1 img {
  width: 100%;
}

@media (max-width: 786px) {
  .previous_record_area .card {
    width: 100%;
    padding: 13px 5px;
    margin: 2px;
  }
}

.projects_done {

  padding: 44px 0 89px;
  line-height: 30px;
}

.fondo-numeros {
  /* background: url(../images/num5.png); */
  background-size: contain;
  height: 100%;
  background-repeat: no-repeat;

}


.previous_record_area .projects_done .counter_items {
  text-align: center;

}

.counter {
  font-size: 2em;
  font-weight: 300;
}

.counter_items h4 {
  font-size: 20px;
  font-weight: 100;
}

.fz-20 {
  font-size: 20px;
}


.previous_record_area .projects_done .counter_items h4 {
  font: 600 20px/1 "Signika";
  color: var(--blue);
}

.previous_record_area .projects_done .counter_items h2 {
  color: var(--orange);
  font: 700 38px/1 "Signika";
  padding-top: 22px;
}

.pra_2 {
  padding-bottom: 10px;
}

.pra_2 .previous_right {
  width: 80.5%;
}

.pra_2 .previous_right .previous_content {
  float: left;
  display: inline-block;
}

.pra_2 .previous_right .previous_content .alons_text {
  padding-left: 70px;
}

.pra_2 .previous_right .previous_content .alons_text img {
  margin-left: 150px;
  margin-top: -20px;
}

.pra_2 .previous_right .previous_img_2 {
  float: right;
}

.pra_2 .previous_right .previous_img_2 img {
  max-width: 100%;
}

/* purpose_area */
.purpose_area {
  display: block;
  overflow: hidden;
  margin-top: -43px;
}

.purpose_area .tittle_p {
  font: 600 22px/36px "Signika";
  color: var(--blue);
  text-align: center;
  max-width: 965px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.purpose_area .mission {

  display: flex;
  align-items: center;
  top: 20%;
  position: relative;
}

.purpose_area .mission img {
  max-width: 50%;
}

.mision .media-mv {
  border: 2px solid #e66228;
  border-radius: 24px;
  margin: auto;
  box-shadow: 10px 4px 5px -8px rgba(0, 0, 0, 0.75);

}


.purpose_area .mission .media-body b {
  color: var(--orange);
}


.purpose_area .mission .media-body h2 {
  font: 600 25px/40px "Signika";
  color: var(--blue);
  margin-top: -10px;
  padding-top: 10px;
}


.purpose_area .mission .media-body .fast_p {
  padding-top: 23px;
}

.purpose_area .mission .media-body p {
  padding-top: 10px;
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
}

.purpose_area .vision {
  display: block;
  overflow: hidden;
}

.purpose_area .vision h2 {
  font: 600 25px/40px "Signika";
  color: var(--blue);
  padding-top: 60px;
}

.purpose_area .vision p {
  padding: 20px 0 54px;
  font-size: 18px;
  max-width: 940px;
}

.purpose_area .vision img {
  max-width: 100%;
}

.purpose_area video {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  object-fit: cover;
}

/* 
valores */
/*----------------------------------------------------*/
.valores {

  display: block;
  overflow: hidden;
  padding-top: 150px;
  background: rgb(232, 106, 51);
  background: linear-gradient(273deg, rgba(232, 106, 14, 1) 0%, rgb(233 112 56 / 58%) 100%) !important;
  background-size: cover;
  background-attachment: fixed;

}

#valoresgm {

  display: block;
  overflow: hidden;
  padding-top: 150px;
  background: #f5f8fc !important;
  background-size: cover;
  background-attachment: fixed;

}

.valores-banner video {

  position: relative;
  top: 0;
  min-height: 0;

}

.valores:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: -1;

}

.valores .tittle h2 {
  color: var(--white) !important;
  text-shadow: 2px 1px 0px #c1c1c1;
}

.valores .tittle.tittle2 h2 {
  color: var(--orange) !important;

}

@media (max-width: 768px) {
  .valores .tittle {
    position: relative;
    left: 0px !important;
  }
}

.valores .c-white {
  color: white !important;
}

.valores .theme_btn {
  color: var(--orange);
  background: rgba(255, 255, 255, 1.00) !important;
  text-align: center !important;
  font: 600 20px / 50px "Signika";
  display: inline-block;
  padding: 0 59px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  z-index: 1;
}

.valores .images-v {
  text-align: center;
  justify-content: center;
}

.valores .images-v img {
  height: 9em;
}

.valores .card {
  background: rgb(232, 106, 51);
  background: linear-gradient(281deg, rgba(232, 106, 51, 1) 0%, rgba(248, 207, 189, 1) 100%);
  border-radius: 15px;
  padding: 19px;
  margin: auto;
  width: 69%;
}

.valores .cuadros-container {


  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  align-self: flex-start;

  display: flex;
  justify-content: space-around;
}

.valores .cuadros {

  padding: 0;
  text-align: center;
  margin: auto;
}

.theme_btn2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--blue);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.valores .cuadros img {
  background-size: cover;
  width: 100%;
}

.valores .mano {
  text-align: center;
  justify-content: center;
  position: relative;
  top: -415px;
  height: 59px;
  z-index: 3;
}

.valores .mano img {

  height: 19em;

}

.card-container {
  background: white;
  border-radius: 5px;
  padding: 19px;
}

.valores .card-container h2 {
  color: var(--orange);
  font-weight: bold;
}

.valores .card-container b {
  color: var(--blue);
  font-weight: bold;
}

.valores .card-container p {
  padding: 14px;
  color: var(--blue);
}




@keyframes circle-in-hesitate {
  0% {
    clip-path: circle(0%);
  }

  40% {
    clip-path: circle(40%);
  }

  100% {
    clip-path: circle(125%);
  }
}

[transition-style="in:circle:hesitate"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) circle-in-hesitate both;
}



.section.over {
  position: relative;
  z-index: 10;
}

.section .over-inner {
  position: relative;
}

.section .under-inner {
  color: white;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.section .one {
  background-image: url(../images/banner/productos.jpg);
}

.section .two {
  background-image: url(https://unsplash.it/1200/750?image=835);
}

.section .three {
  background-image: url(https://unsplash.it/1200/750?image=1074);
}

.centered {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 10%;
  transform: translateY(-50%);
}

.fixed {
  position: absolute;
  top: -100%;
  left: -100%;
  opacity: 0;
  transition: opacity 100ms linear;
  z-index: 0;
  margin: 0;
}

.locked {
  position: fixed;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 100ms linear;
}


/* cuentanos */

.row-cuentanos {
  display: flex;
  flex-direction: row;

}

.cuentanos .cuentanos-img {
  padding: 0 15em;
  background: url(../images/Logogm-t.png) no-repeat center;
  background-size: contain;
  height: 24em;

}

.cuentanos:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: var(--blue);
  height: 288px;
  z-index: -1;
}

.cuentanos:after {
  content: "";
  position: absolute;
  top: 120px;
  right: 5%;
  left: 5%;
  background: #f7f7f7;
  height: 658px;
  z-index: -1;
  width: 90%;
  border-radius: 24px;
}

@media (max-width: 1200px) {
  .cuentanos .tittle h2 span {
    font: 700 40px/38px "Signika" !important;
    text-align: center !important;
  }

}

@media (max-width: 769px) {
  .cuentanos .cuentanos-img {
    padding: 0;
    height: 14em;
  }

  .cards-cuentanos {
    flex-direction: column !important;

  }

  .cards-cuentanos p {
    height: 3em !important;
  }

  .cuentanos .tittle h2 span {
    font: 700 30px/30px "Signika" !important;

  }

}

.cuentanos .tittle h2 span {
  font-size: 48px;
  text-align: center !important;
  text-shadow: 2px 1px 0px rgba(149, 149, 149, 0.6);
}

.cards-cuentanos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

}

.cards-cuentanos p,
a {
  color: white;

}

.cards-cuentanos p {
  height: 6em;

}

.cards-cuentanos i {
  font-size: 40px;
  position: relative;
  top: 55px;
  left: 113px;

}

.cards-cuentanos .card-blue {
  background: var(--blue);
  color: white;
  border-radius: 10%;
  padding: 80px 27px;
  margin-right: 3px;
  width: 100%;
  box-shadow: 10px 19px 8px -13px rgba(0, 0, 0, 0.5);
  text-align: center;


}

.cards-cuentanos .card-orange {
  background: var(--orange);
  color: white !important;
  border-radius: 10%;
  padding: 80px 38px;
  box-shadow: 10px 19px 8px -13px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;

}

.cards-cuentanos .card-orange:hover {

  cursor: pointer;
}

.theme_btn4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--blue);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;

}

/* reconocimiento */


.cards-reconocimiento {

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--blue);
  border-radius: 21px;
  padding: 43px 38px;
}

.cards-reconocimiento {

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--blue);
  border-radius: 21px;
  padding: 43px 38px;
}

.cards-reconocimiento p {
  color: white;
  font-size: 26px;
  line-height: 39px;

}

.cards-reconocimiento a {
  color: white !important;
  font-size: 26px;
  border: 1px solid white;
  border-radius: 43px;
  padding: 16px 31px;
  position: relative;
  top: 60px;
  font-weight: 600;
}

.cards-reconocimiento h2 {
  color: white;
  font-weight: bold;
  font-size: 44px;
  letter-spacing: 1px;
}

.cards-reconocimiento .texto {
  width: 51%;
  padding: 10px;
}

.card-white {
  background: white;
  border-radius: 15px;
  padding: 43px 38px;
  width: 31em;
  height: 20em;

}

.reconocimientos .tittle {
  text-align: left;
}

/* amigos */



.sec-amigos .theme_btn2 {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0) !important;
  border: 1px solid white;

}

.sec-amigos .theme_btn {
  color: var(--orange);
  background: rgba(255, 255, 255, 1.00);
  text-align: center !important;
  font: 600 20px / 26px "Signika" !important;
  display: inline-block;
  padding: 19px;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  width: 20em;
  z-index: 1;
}

.theme_btn3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--blue);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}


.sec-amigos {
  background: linear-gradient(281deg, rgba(232, 106, 51, 1) 0%, rgba(232, 106, 51, 0.8407738095238095) 100%) !important;

}

.sec-amigos h2,
.sec-amigos p {
  color: white !important;

}

.sec-amigos p {
  font-size: 25px;
  width: 100%;
  max-width: 35em;
  margin: auto;

}

/* encuentranos */
.encuentranos {
  content: "";
  display: block;
  overflow: hidden;
  background: url(../images/banner/banner4.jpg) no-repeat center fixed !important;
  background-size: cover !important;
  position: relative;
  z-index: 1;
  padding: 75px;
}

.encuentranos:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: -2;
  background-color: #1c69b173;
}

.cuadros.encuentranos {
  background: none !important;
}

.cuadros.encuentranos:after {

  background-color: #1c69b100 !important;
}

.encuentranos .container {
  display: flex;
  flex-direction: row;
}


@media (max-width: 769px) {
  .encuentranos .container {
    display: flex;
    flex-direction: column;
  }

  .encuentranos h2 {
    font-size: 43px !important;
  }
}

@media (max-width: 500px) {
  .encuentranos h2 {
    font-size: 23px !important;
  }
}

.encuentranos .mapa {

  position: relative;
  width: 50%;
}

.encuentranos h2 {
  color: white;
  font-size: 67px;
  font-weight: 700;

}

.encuentranos .texto {
  margin: auto;

}

.encuentranos .img-fluid {
  min-height: 10em;

}


.encuentranos .BornHS__Input {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  width: 0;
  z-index: -1;
}

.encuentranos .BornHS__Input+.BornHS__Label {
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  height: 15px;
  position: absolute;
  transition: all 300ms ease;
  width: 15px;
  z-index: 2;
  -webkit-animation: sonar 800ms ease-out infinite;
  animation: sonar 800ms ease-out infinite;
}

@media (min-width: 768px) {
  .encuentranos .BornHS__Input+.BornHS__Label {
    height: 15px;
    width: 15px;
  }
}

.encuentranos .BornHS__Input+.BornHS__Label:before,
.encuentranos .BornHS__Input+.BornHS__Label:after {
  background: #fff;
  content: "";
  cursor: pointer;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.encuentranos .BornHS__Input~.BornHS__Overlay {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 3;
}

.encuentranos .BornHS__Input:checked+.BornHS__Label {
  transform: rotate(45deg);
}

.encuentranos .BornHS__Input:checked~.BornHS__Modal__Content {
  opacity: 1;
  visibility: visible;
}

.encuentranos .BornHS__Input:checked~.BornHS__Overlay {
  display: block;
}

.encuentranos.BornHS__Blur figure {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

.encuentranos.BornHS__Blur .BornHS__Input {
  display: none;
}

.encuentranos.BornHS__Blur .BornHS__Input+.BornHS__Label {
  opacity: 0.5;
  pointer-events: none;
}

.encuentranos.BornHS__Blur .BornHS__Input:checked {
  display: inline-block;
}

.encuentranos.BornHS__Blur .BornHS__Input:checked+.BornHS__Label {
  opacity: 1;
  pointer-events: auto;
}



@media (max-width: 768px) {
  .encuentranos .BornHS__Modal__Content {
    bottom: auto !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

}

/*------------------------------------------------*\
  Sonar
\*------------------------------------------------*/
@-webkit-keyframes sonar {
  from {
    box-shadow: 0 0 0 0 var(--orange), 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }

  to {
    box-shadow: 0 0 0 10px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }
}

@keyframes sonar {
  from {
    box-shadow: 0 0 0 0 var(--orange), 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }

  to {
    box-shadow: 0 0 0 10px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }
}

/* cultura */
.cultura img {
  height: calc(100% - 100px);
}

/*----------------------------------------------------*/
.owl-item {
  max-width: 20em !important;
  background: red;
}


.testimonial_area .testimonial .item a,
.testimonial_pages .testimonial .item a {
  font: 700 20px/1 "Signika";
  color: #151515;
  display: block;
  padding-bottom: 55px;
}

.testimonial_area .testimonial .item .client_info,
.testimonial_pages .testimonial .item .client_info {
  background: none;
  border-radius: 0 0 40px 0;
  padding: 60px 40px 70px 45px;
  position: relative;
  transition: all 300ms linear 0s;
}

.testimonial_area .testimonial .item .client_info img,
.testimonial_pages .testimonial .item .client_info img {
  width: auto;
  border-radius: 50%;
  width: 66px;
  height: 66px;
  position: absolute;
  top: -33px;
  left: 0;
}

.testimonial_area .testimonial .item .client_info h4,
.testimonial_pages .testimonial .item .client_info h4 {
  color: #fff;
  font: 600 18px/1 "Signika";
  padding-bottom: 30px;
}

.testimonial_area .testimonial .item .client_info p,
.testimonial_pages .testimonial .item .client_info p {
  color: rgba(255, 255, 255, 0.702);
  font-size: 18px;
}

.testimonial_area .testimonial .item .client_info:hover,
.testimonial_area .testimonial .item .client_info:focus,
.testimonial_area .testimonial .item .client_info.fast_i,
.testimonial_pages .testimonial .item .client_info:hover,
.testimonial_pages .testimonial .item .client_info:focus,
.testimonial_pages .testimonial .item .client_info.fast_i {
  background: none;
}

.testimonial_area .testimonial .item .client_info:hover,
.testimonial_area .testimonial .item .client_info:focus,
.testimonial_area .testimonial .item .client_info.fast_i,
.testimonial_pages .testimonial .item .client_info:hover,
.testimonial_pages .testimonial .item .client_info:focus,
.testimonial_pages .testimonial .item .client_info.fast_i .ta_2 {
  background: none;
}

.testimonial_pages {
  background: #fff;
}

.testimonial_pages .testimonial .item {
  margin-bottom: 70px;
}

.get_started_area {
  display: block;
  overflow: hidden;
  background: url("../images/Logogm.png") no-repeat center fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 110px 0 100px;
  text-align: center;
}

.get_started_area:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: -1;
  background-color: rgba(10, 22, 43, 0.89);
}

.get_started_area h2 {
  font: 600 53px/65px "Signika";
  color: var(--orange);
}

.get_started_area p {
  color: #fff;
  font: 600 19px/32px "Signika";
  padding: 30px 0 75px;
}

.get_started_area .theme_btn {
  min-width: 263px;
  font-size: 18px;
}



/*----------------------------------------------------*/
/* join_conversation */
.join_conversation,
.team_area {
  display: block;
  overflow: hidden;
  padding-top: 0px;
}

.section.join_conversation {
  display: block;
  overflow: hidden;
  padding-top: 140px;
}

.join_conversation,
.team_area {
  padding-top: 4%;
}

.join_conversation .tittle,
.team_area .tittle {
  display: block;
  overflow: hidden;
}

.join_conversation .tittle p,
.team_area .tittle p {
  font: 600 22px/36px "Signika";
  display: inline-block;
  float: left;
  max-width: 870px;
  text-align: left;
}

.join_conversation .tittle .theme_btn,
.team_area .tittle .theme_btn {
  min-width: 250px;
  line-height: 55px;
  overflow: hidden;
  border-radius: 15px;
  float: right;
  margin-top: 5px;
}



/* End join_conversation */

.is-invalid {
  border: 1px solid red !important;
}

/* contactanos  */
.map {
  margin-top: 3em;
}

.map .tittle {
  margin-bottom: 4em;
}

.map .direcciones .tittle {
  margin-bottom: 5px;
}

.map .direcciones .tittle h2 .faq_area .faq_accordion .item .plp {
  padding-right: 90px;
}

.map .direcciones .tittle h2 {
  font: 700 22px "Signika" !important
}

.map .direcciones p {

  text-align: center;
  font-size: 14px;
  padding: 12px 0 0;
  line-height: 19px;
}

.map .direcciones p span {
  color: var(--blue);

}

.map .direcciones p:hover {
  background: rgba(165, 165, 165, 0.212);
  cursor: pointer;
  border-radius: 5px;
}

.map .direcciones span {
  font-weight: bold;
  font-size: 16px;
}

.encuentranos .theme_btn2 {
  background: var(--orange);
  text-align: center !important;
  font: 600 20px / 26px "Signika" !important;
  display: inline-block;
  padding: 19px;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  width: 20em;
  z-index: 1;
  margin-top: 64px;
}

.tabcontent {
  display: none;
  padding: 0;
  border: none;
  max-height: 35em;
  overflow-y: none;
}

.tabcontent.estructura {
  margin: auto;
  padding: 27px;
}

.tabcontent.estructura p {
  text-align: left;
  text-align: left;
  font-size: 25px;
  line-height: 34px;
  padding: 23px;
}

.tabcontent.estructura span {

  color: var(--orange);
  font-weight: bold;
  margin-bottom: 5px;
}

.tabcontent.estructura .est-img {
  margin: auto;
  border: 2px solid var(--blue);
  border-radius: 13px;
  box-shadow: 10px 8px 10px -8px #1c69b1;

}

.tabcontent.estructura img {
  width: 100%;
}

.label-card-encuentranos {
  padding: 11px 12px;
}

.title-card-encuentranos label {
  color: var(--blue);
  font-size: 21px;
  font-weight: 600;
}

.title-card-encuentranos {
  background: #eeeeee;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  max-height: 53px;
  width: 100%;
  margin-left: 0px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 19px);
  padding: 5px 3rem 0 !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 4em !important;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 26px;
  margin-right: 10px;
}

.fa-2x {
  font-size: 25px;
  text-align: center;
  margin-left: 3px;
}

.dropDownSelect2 {
  font-size: 18px;
}

.contact_info .theme_btn {
  color: #fff;
  background: var(--blue) !important;
  text-align: center !important;
  font: 600 16px/50px "Signika";
  display: inline-block;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  z-index: 1;
  width: 32%;
  border: 1px solid var(--blue);
}

/*----------------------------------------------------*/
.portfolio_area {
  display: block;
  overflow: hidden;
  padding: 88px 0 110px;
  background: #f5f8fc;
  ;
}

.portfolio_area .protfoli_filter {
  border-radius: 0 0 40px 0;
  padding: 0 20px;
  margin-bottom: 80px;
  text-align: center;
}

.portfolio_area .protfoli_filter li {
  display: inline-block;
  margin: 0 20px;
}

.portfolio_area .protfoli_filter li a {
  font: 700 20px/77px "Signika";
  color: var(--blue);
  position: relative;
}

.portfolio_area .protfoli_filter li:hover a:after,
.portfolio_area .protfoli_filter li:focus a:after,
.portfolio_area .protfoli_filter li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  border-bottom: 2px solid var(--orange);
  display: block;
  color: white;
}

.portfolio_area .protfoli_filter li:hover a,
.portfolio_area .protfoli_filter li:focus a,
.portfolio_area .protfoli_filter li.active a {
  color: white;
  height: 43px;
  background: var(--orange);
  padding: 14px 35px;
  border-radius: 8px;
}



.portfolio_area .portfoli_inner .portfolio_item {
  margin-bottom: 30px;
  -webkit-box-shadow: 10px 10px 5px -8px rgba(133, 133, 133, 1);
  -moz-box-shadow: 10px 10px 5px -8px rgba(133, 133, 133, 1);
  box-shadow: 9px 8px 12px -8px rgba(133, 133, 133, 1);
  border-radius: 7%;
}

.portfolio_area .portfoli_inner .portfolio_item .portfolio_img {
  display: block;
  overflow: hidden;
}

.portfolio_area .portfoli_inner .portfolio_item .portfolio_img img {
  max-width: 100%;
  transition: all 300ms linear 0s;
  border-top-left-radius: 7%;
  border-top-right-radius: 7%;

}

.portfolio_area .portfoli_inner .portfolio_item .portfolio_content {
  background: var(--gradiente);
  padding: 24px 24px;
  text-align: center;
  border-bottom-left-radius: 7%;
  border-bottom-right-radius: 7%;
}

.portfolio_area .portfoli_inner .portfolio_item .portfolio_content .heding {
  font: 600 24px/1 "Signika";
  color: var(--white);
  display: block;
  padding-bottom: 2px;
}

.portfolio_area .portfoli_inner .portfolio_item .portfolio_content .heding:hover,
.portfolio_area .portfoli_inner .portfolio_item .portfolio_content .heding:focus {
  color: var(--white);
}

.portfolio_area .portfoli_inner .portfolio_item p {
  font: 400 17px / 1 "Signika";
  color: var(--white) !important;
  line-height: 25px;
  height: 12em;
  padding: 4px 6px 0;
  text-align: center;


}

.portfolio_area .theme_btn {
  background: var(--orange);
  color: var(--white);
  text-align: center !important;
  font: 600 20px / 40px "Signika";
  padding: 0 59px;
  border-radius: 28px;
  z-index: 1;
}

.theme_btn5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #df8862;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}


.portfolio_area .portfoli_inner .portfolio_item .portfolio_content .learn_more:hover,
.portfolio_area .portfoli_inner .portfolio_item .portfolio_content .learn_more:focus {
  color: var(--orange);
}

.portfolio_area .portfoli_inner .portfolio_item:hover .portfolio_img img,
.portfolio_area .portfoli_inner .portfolio_item:focus .portfolio_img img {
  transform: scale3D(1.2, 1.2, 2);
}

.portfolio_area .pi_2 .portfolio_item .portfolio_img {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.portfolio_area .pi_2 .portfolio_item .portfolio_img i:before {
  color: var(--orange);
  font-size: 44px;
  position: absolute;
  left: -100%;
  top: 20px;
  z-index: 2;
  transition: all 300ms linear 0s;
}

.portfolio_area .pi_2 .portfolio_item .portfolio_img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.502);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio_area .pi_2 .portfolio_item .portfolio_content {
  border: 1px solid #ebebeb;
  background-color: transparent;
  transition: all 300ms linear 0s;
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_img i:before,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_img i:before {
  left: 20px;
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_img:after,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_img:after {
  transform-origin: left center;
  transform: scale(1, 1);
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_img .hover,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_img .hover {
  opacity: 1;
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_content,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_content {
  border-color: var(--blue);
  background: var(--blue);
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_content .heding,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_content .heding {
  color: #fff;
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_content .heding:hover,
.portfolio_area .pi_2 .portfolio_item:hover .portfolio_content .heding:focus,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_content .heding:hover,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_content .heding:focus {
  color: var(--orange);
}

.portfolio_area .pi_2 .portfolio_item:hover .portfolio_content p,
.portfolio_area .pi_2 .portfolio_item:focus .portfolio_content p {
  color: rgba(255, 255, 255, 0.702);
}

.portfolio_area .pi_3 .portfolio_item .portfolio_img i:before {
  color: #fff;
}

.portfolio_area .pi_3 .portfolio_item .portfolio_img:after {
  background-color: rgba(43, 103, 201, 0.769);
}

.portfolio_area .pi_3 .portfolio_item .hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 1;
  transition: all 300ms linear 0s;
  opacity: 0;
}

.portfolio_area .pi_3 .portfolio_item .hover a {
  font: 600 32px/1 "Signika";
  color: #fff;
  max-width: 380px;
}

.portfolio_area .pi_3 .portfolio_item .hover a span {
  color: rgba(255, 255, 255, 0.902);
  font: 400 18px/28px "Signika";
  padding-top: 30px;
  display: block;
}

.protfolio_details {
  display: block;
  overflow: hidden;
  padding: 150px 0;
}

.protfolio_details .d_tittle {
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
}

.protfolio_details .d_tittle h2 {
  font: 700 40px/48px "Signika";
  color: var(--blue);
  max-width: 800px;
  float: left;
}

.protfolio_details .d_tittle h2 span {
  color: var(--orange);
}

.protfolio_details .d_tittle .theme_btn {
  min-width: 196px;
  background: var(--orange);
  float: right;
  margin-top: 10px;
}

.protfolio_details .d_tittle .theme_btn:before {
  background: var(--blue);
}

.protfolio_details img {
  max-width: 100%;
  margin-top: 30px;
}

.protfolio_details p {
  font-size: 18px;
  line-height: 36px;
  padding-top: 25px;
}

.protfolio_details .heding_p {
  font: 600 25px/36px "Signika";
  color: #010101;
  padding-top: 70px;
  padding-bottom: 15px;
}

.protfolio_details .tag_area {
  padding-top: 40px;
}

.protfolio_details .tag_area h4 {
  font: 600 14px/40px "Signika";
  color: #5b5a5a;
}

.protfolio_details .tag_area h4 b {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.protfolio_details .tag_area p {
  line-height: 40px;
  padding-top: 70px;
}

.protfolio_details .tag_area .social_share {
  padding: 35px 0 80px;
  display: block;
  text-align: right;
}

.protfolio_details .tag_area .social_share li {
  display: inline-block;
  padding-left: 37px;
}

.protfolio_details .tag_area .social_share li:first-child {
  padding: 0;
}

.protfolio_details .tag_area .social_share li a {
  font-size: 25px;
  color: #909090;
}

.protfolio_details .tag_area .social_share li a:hover,
.protfolio_details .tag_area .social_share li a:focus {
  color: var(--orange);
}

.protfolio_details .next_post {
  display: block;
  overflow: hidden;
  padding-top: 20px;
}

.protfolio_details .next_post .theme_btn {
  float: left;
  width: 50%;
  border-radius: 0;
  font: 400 22px/75px "Signika";
}

.protfolio_details .next_post .next {
  background: var(--orange);
}

.protfolio_details .next_post .next:before {
  background: var(--blue);
}


.contact_info {
  display: block;
  overflow: hidden;
  padding: 150px 0 130px;
}

.contact_info .info {
  display: block;
  overflow: hidden;
  background: var(--blue);
  border-radius: 0 0 40px 0;
  text-align: center;
  padding: 35px 20px;
}

.contact_info .info i:before {
  color: #fff;
  font-size: 66px;
  margin-bottom: 10px;
  display: block;
}

.contact_info .info h6 {
  color: #fff;
  font: 400 18px/40px "Signika";
}

.contact_info .info h6 a {
  color: #fff;
}

.contact_info .mail {
  background: var(--orange);
}

.contact_info .placeholder {
  background: #6099f7;
}

/*----------------------------------------------------*/
/* Footer Home pages */
.footer_area {
  display: block !important;
  overflow: hidden;
  background: linear-gradient(-145deg, #1c69b1 0%, #03213f 100%) !important;
  padding-top: 120px;
  padding-bottom: 40px;
}

.footer_area .footer_inner .footer_logo {
  margin-bottom: 50px;
}

.footer_area .footer_inner .footer_logo img {
  max-width: 100%;
}

.footer_area .footer_inner .footer_logo p {
  font: 400 16px/30px "Signika";
  color: #fff;
  padding: 40px 0 50px;
}

.footer_area .footer_inner .footer_logo p a {
  color: #fff;
}

.footer_area .footer_inner .footer_logo p a:hover,
.footer_area .footer_inner .footer_logo p a:focus {
  color: var(--orange) !important;
  cursor: pointer;

}

.footer_area .footer_inner .footer_logo .footer_social li {
  display: inline-block;
  transform: rotate(45deg);
  background: var(--orange);
  margin-right: 37px;
  transition: all 300ms linear 0s;
}

.footer_area .footer_inner .footer_logo .footer_social li:last-child {
  margin: 0;
}

.footer_area .footer_inner .footer_logo .footer_social li a {
  height: 47px;
  width: 47px;
  text-align: center;
  color: #fff;
  display: block;
  font: normal normal normal 18px/47px FontAwesome;
  transform: rotate(-45deg);
}

.footer_area .footer_inner .footer_logo .footer_social li:hover,
.footer_area .footer_inner .footer_logo .footer_social li:focus {
  background: var(--blue);
}

.footer_area .footer_inner .footer_logo .footer_social li:hover a,
.footer_area .footer_inner .footer_logo .footer_social li:focus a {
  color: #fff;
}

.footer_area .footer_inner .footer_widget {
  padding-bottom: 50px;
  height: 20em;
}

.footer_area .footer_inner .footer_widget h4 {
  font: 700 21px/1 "Signika";
  color: #fff;
  padding-bottom: 0px;
  padding-top: 7px;
}

.footer_area .footer_inner .footer_widget .footer_nav li a {
  font: 600 18px/40px "Signika";
  color: #ffd9ac;
}

.footer_area .footer_inner .footer_widget .footer_nav li a:hover,
.footer_area .footer_inner .footer_widget .footer_nav li a:focus {
  color: #fff;
}

@media (max-width: 700px) {
  .footer_area .footer_inner .footer_widget {
    height: auto;
  }
}

.fa_2 {
  background: #252d3a;
}

.fa_2 .footer_inner .footer_logo .footer_social li {
  background: #3a424f;
}

.fa_2 .footer_inner .footer_widget .footer_nav li a {
  color: #919295;
}

/* End Footer Home pages */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 15px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  background: var(--orange);
  border: 0;
  box-shadow: none;
  z-index: 999;
  color: #fff;
}

.scroll-top:hover,
.scroll-top:focus {
  background: #ce8506;
}

.call-us {
  position: fixed;
  left: 16px;
  bottom: 32px;
  height: 64px;
  width: 238px;
  cursor: pointer;
  background: var(--white);
  border: 2px solid var(--orange);
  box-shadow: none;
  z-index: 999;
  color: #fff;
  box-shadow: 5px 9px 5px -8px rgb(24 24 107);
  border-radius: 40px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.call-us p {
  color: var(--orange) !important;
  font-size: 27px;
  padding: 10px;
  text-align: center;
  line-height: 20px;
}

@media (max-width: 576px) {
  .call-us {
    position: fixed;
    left: 16px;
    bottom: 32px;
    height: 50px;
    width: 200px;
    cursor: pointer;
    background: var(--white);
    border: 2px solid var(--orange);
    box-shadow: none;
    z-index: 999;
    color: #fff;
    box-shadow: 5px 9px 5px -8px rgb(24 24 107);
    border-radius: 40px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .call-us p {
    color: var(--orange) !important;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    line-height: 20px;
  }

  .gman {

    bottom: 72px;
    right: 26px;

  }
}

/* HTML: <div class="loader"></div> */
.loader {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  text-align: end;
}

@-moz-keyframes parpadeo {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@-webkit-keyframes parpadeo {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@keyframes parpadeo {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

/* somos somos */

.lateral1::after {
  position: absolute;
  background-image: url(../images/lateral1.png);
  width: 28px;
  height: 429px;
  content: '';
  left: 0;
  bottom: -270px;
  z-index: 1;
  background-repeat: no-repeat;
}

.lateral2::after {
  position: absolute;
  background-image: url(../images/lateral2.png);
  width: 216px;
  height: 429px;
  content: '';
  right: 0;
  bottom: -86em;
  z-index: 1;
  background-repeat: no-repeat;
}

.fondo-numeros .num {
  position: relative;
  top: -93px;
  text-align: right;
  height: 1em;
}

.fondo-numeros .to {
  position: relative;
  left: -33px;
}



@media (max-width: 576px) {
  .fondo-numeros .num {
    position: relative;
    top: -65px;
    text-align: center;
    height: 1em;
  }

  .fondo-numeros .to {
    position: relative;
    left: -50px;
    bottom: 17px;
    text-align: end;
  }

  .tittle4 {
    position: static;
    left: -15px;
    text-align: center;
    font-size: 24px;
    line-height: 0px;

  }

  .contador {
    margin: 1% auto;
    width: 67%;
  }

  .counter {
    font-size: 1em;
    font-weight: 300;
  }

  .section.productos-index {
    padding-top: 10px !important;
  }

  .valores .cuadros img {
    background-size: cover;
    width: 63%;
  }

  .slider-container {
    margin-top: 0px !important;
  }

  .banner_area.productos {
    height: calc(77vh);
  }
}

@media (max-width: 785px) {
  #productos .slider-container {
    margin-top: 0px !important;
  }

  #productos .slider-container {
    height: 20rem !important;
  }
}

.quienes {
  background: white !important;
  padding-bottom: 0 !important;
}

.quienes:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  right: 82%;
  background: var(--blue);
  height: 917px;
  z-index: -1;
  bottom: 33px;

}

.quienes:after {
  content: "";
  position: absolute;
  top: 120px;
  right: 5%;
  left: 5%;
  background: #f7f7f7;
  height: 724px;
  z-index: -1;
  width: 90%;
  border-radius: 24px;
}

.quienes2:before {
  content: "";
  position: absolute;
  left: 39%;
  top: 0px;
  right: 41%;
  background: var(--orange);
  height: 917px;
  z-index: -1;
  bottom: 33px;
}


.quienes .numeros {
  margin-top: 24px;

}

.quienes.card {
  border: 0px solid rgba(0, 0, 0, 0.125) !important;
}

.quienes.card img {
  width: 25%;
  margin: auto 30px;
  ;
}

.quienes.card .card-title {
  font-size: 32px;
  margin: auto 4px;
  color: #3f3f3f;
  text-shadow: #52697d 5px 4px 7px;
}

.quienes .card-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
  box-shadow: 11px 9px 12px -8px rgba(186, 186, 186, 0.75);
  border-left: 4.5px solid #1c5487;
  border-bottom-left-radius: 51px 53px;
  border-bottom-left-radius: 51px 53px;
  border-bottom: 4px solid #ff6e42;
  display: flex;
}

.quienes.card .card-body:hover {
  background: rgba(252, 127, 89, 0.096);
  ;
  cursor: pointer;

}

.quienes.card .card-body .card-title:hover {
  font-size: 32px;
  margin: auto 4px;
  color: var(--orange);

}

.card {
  border: 0px solid rgba(0, 0, 0, 0.125) !important;
}

@media (max-width: 576px) {
  .quienes {
    padding-bottom: 5px !important;
  }
}

/* quienes fin  */
.btn-cotiza {
  background: var(--orange);
  text-align: center;
  border-radius: 50px;
  color: white;
  padding: 14px;
  position: relative;
  bottom: 129px;
  width: 14em;
  margin: auto;
}


/*----------------------------------------------------*/

@media (max-width: 1199px) {
  .main_header_area .navbar .navbar_supported {
    padding-left: 0;
  }

  .main_header_area .navbar .navbar_supported ul {
    padding-left: 0;
  }

  .main_header_area .navbar .navbar_supported ul li a {
    margin: 0 15px;
  }

  .main_header_area .navbar .navbar_supported ul li .theme_btn {
    margin-left: 10px;
  }

  .footer_area .footer_inner .footer_widget {
    padding-left: 15px;
  }

  .hta_2 .top_menu li .number {
    font-size: 16px;
    padding-right: 0;
  }

  .hta_2 .top_menu li .number small {
    font-size: 16px;
  }

  .hta_2 .right_menu .right_nav li {
    padding-left: 20px;
  }

  .potential_area .potential .ptl_containt .heding {
    font-size: 18px;
  }

  .subscirbe_area .subscirbe_inner h2 {
    font-size: 20px;
  }

  .afa_2 .achieve_inner .personal_tittle .theme_btn {
    float: none;
    margin-top: 30px;
  }

  .pra_2 .previous_right {
    width: 100%;
  }

  .pra_2:after {
    width: 100%;
  }

  .eligibility_criteria_area .eligibility_criteria {
    padding-left: 15px;
  }

  .portfolio_area .protfoli_filter li a {
    font-size: 16px;
    line-height: 40px;
  }

  .portfolio_area .protfoli_filter li:hover a:after,
  .portfolio_area .protfoli_filter li:focus a:after,
  .portfolio_area .protfoli_filter li.active a:after {
    bottom: -9px;
  }

  .blog_single .bg_text {
    background-size: cover;
  }

  .blog_single .bg_text p {
    float: none;
  }

  .blog_single .bg_text .theme_btn {
    float: none;
    margin: 0 auto;
    margin-top: 20px;
    width: 160px;
    display: block;
    overflow: hidden;
  }

  .map_from_area {
    padding-bottom: 70px;
  }

  .map_from_area .map_area {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }

  .map_from_area .contact_inner {
    width: 100%;
    padding: 0 15px;
    padding-top: 80px;
  }
}

@media (max-width: 991px) {

  .header_top_area .top_menu li .number,
  .header_top_area .right_menu li .number {
    font-size: 18px;
    padding: 0;
  }

  .main_header_area {
    top: 80px;
  }

  .main_header_area .header_menu {
    background: var(--blue);
    padding: 10px 20px;
  }

  .main_header_area .header_menu .navbar {
    width: 100%;
  }

  .main_header_area .header_menu .navbar .navbar-brand {
    padding-top: 0;
  }

  .main_header_area .header_menu .navbar .navbar-brand img {
    display: none;
  }

  .main_header_area .header_menu .navbar .navbar-brand img+img {
    display: block;
  }

  .main_header_area .header_menu .navbar .navbar-toggler {
    font-size: 30px;
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 50px;
    float: right;
    padding-left: 30px;
  }

  .main_header_area .header_menu .navbar .navbar_supported {
    float: none;
    padding: 0;
    padding-bottom: 10px;
  }

  .main_header_area .header_menu .navbar .navbar-nav {
    margin: 0;
    margin-top: 2px;
    border: 1px solid rgba(225, 225, 225, 0.2);
    max-height: 335px;
    overflow-y: auto;
    padding-left: 0 !important;
  }

  .main_header_area .header_menu .navbar .navbar-nav li {
    border-bottom: 1px solid rgba(225, 225, 225, 0.2);
  }

  .main_header_area .header_menu .navbar .navbar-nav li:last-child {
    border: 0;
  }

  .main_header_area .header_menu .navbar .navbar-nav li a {
    line-height: 45px !important;
    margin: 0 20px !important;
  }

  .main_header_area .header_menu .navbar .navbar-nav li a:after {
    display: none;
  }

  .main_header_area .header_menu .navbar .navbar-nav li .theme_btn {
    margin: 0 !important;
    border-radius: 0;
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown {
    position: relative;
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown:after {
    content: "\f103";
    position: absolute;
    top: 0;
    right: 20px;
    font: normal normal normal 15px/48px FontAwesome;
    color: #fff;
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu {
    background-color: transparent;
    border: 0;
    border-top: 1px solid rgba(225, 225, 225, 0.2);
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu:before {
    display: none;
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu li a {
    border: 0;
    color: #fff;
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu li a:hover,
  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu li a:focus,
  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu li a.active {
    color: #fff;
    border: 0;
  }

  .main_header_area .header_menu .navbar .navbar-nav li.dropdown .dropdown-menu .dropdown:after {
    display: none;
  }

  .main_header_area .header_menu .navbar .navbar-nav li .theme_btn {
    margin: 0 !important;
    border-radius: 0;
    padding: 0;
    background: var(--orange) !important;
    width: 13em;
  }

  .footer_area .footer_inner .footer_logo .footer_social li {
    margin-right: 20px;
  }

  .hta_2 {
    padding-top: 0;
  }

  .hta_2 .hidden-md {
    display: none;
  }



  .text-primary {
    color: #ff6e42 !important;
  }

  .font-weight-bold {
    font-weight: 700 !important;
  }

  .previous_record_area .previous_img {
    float: none;
    width: 100%;
    padding-top: 0;
  }

  .previous_record_area .previous_right {
    float: none;
    width: 100%;
    padding-top: 50px;
  }

  .previous_record_area:after {
    display: none;
  }

  .previous_record_area .alons_text {
    padding-bottom: 20px;
  }

  .potential_area .potential {
    max-width: 270px;
    margin: 0 auto 30px;
  }

  .getting_loan_area .loan-card {
    padding-left: 15px;
    padding-bottom: 80px;
    padding-top: 30px;
  }

  .getting_loan_area .loan-card img {
    max-width: 100%;
  }

  .latest_news_area .tittle .theme_btn {
    float: none;
    margin-top: 30px;
  }

  .subscirbe_area .subscirbe_inner h2 {
    text-align: center;
  }

  .pra_2 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .pra_2:before {
    height: 129px;
  }

  .pra_2 .previous_right {
    padding-top: 0;
  }

  .pra_2 .previous_right .previous_content .alons_text {
    padding-left: 15px;
  }

  .pra_2 .previous_right .previous_img_2 {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }

  .purpose_area {
    padding-top: 50px;
  }

  .purpose_area .mission {
    display: block;
  }

  .purpose_area .mission .media-body {
    padding-left: 0;
    padding-top: 50px;
  }

  @media (max-width: 991px) {
    .purpose_area {
      padding-top: 0;
    }
  }

  .join_conversation .conversation .item,
  .team_area .conversation .item {
    height: auto !important;
  }

  .services_details {
    padding-top: 100px;
  }

  .services_details h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .services_details h2 .theme_btn {
    float: none;
    margin-top: 20px;
    display: block;
    width: 175px;
  }

  .services_details .features_b h3 {
    font-size: 25px;
    line-height: 35px;
  }

  .eligibility_criteria_area .eligibility_criteria {
    width: 100%;
    padding-bottom: 0;
  }

  .eligibility_criteria_area .eligibility_criteria .eligibility {
    float: none;
  }

  .eligibility_criteria_area .required_approval_area {
    padding-left: 15px;
    width: 100%;
    float: none;
    padding-top: 50px;
    display: block;
    overflow: hidden;
  }

  .holidaying {
    margin-top: 50px;
  }

  .types_loan_area .nav_tabs {
    padding-bottom: 0;
  }

  .types_loan_area .nav_tabs li {
    margin-bottom: 10px;
  }

  .types_loan_area .tab-content .pr_0 {
    padding-bottom: 30px;
  }

  .protfolio_details .d_tittle .theme_btn {
    float: none;
    margin-top: 20px;
  }

  .required_documents .table-responsive {
    padding-left: 0;
  }

  .blog_rightsidebar {
    padding-top: 80px;
  }

  .blog_area .blog_items .blog_heding {
    font-size: 20px;
    line-height: 35px;
  }

  .blog_single h2 {
    font-size: 20px;
    line-height: 35px;
  }

  .contact_info .info {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .header_top_area {
    padding: 10px 0;
    position: relative;
  }

  .header_top_area .top_menu,
  .header_top_area .right_menu {
    text-align: center;
  }

  .header_top_area .top_menu li a,
  .header_top_area .right_menu li a {
    line-height: 30px;
  }

  .header_top_area .top_menu li .number,
  .header_top_area .right_menu li .number {
    line-height: 30px;
  }

  .header_top_area .top_menu li .number small,
  .header_top_area .right_menu li .number small {
    line-height: 30px;
  }

  .header_top_area .top_menu .right_nav,
  .header_top_area .right_menu .right_nav {
    float: none;
    padding-top: 10px;
  }

  .header_top_area .top_menu .right_nav li.dropdown,
  .header_top_area .right_menu .right_nav li.dropdown {
    padding-right: 0;
  }

  .header_top_area .top_menu .right_nav li.dropdown .dropdown-menu,
  .header_top_area .right_menu .right_nav li.dropdown .dropdown-menu {
    left: 20px !important;
  }

  .main_header_area {
    top: 100px;
  }

  .hta_2 {
    background: var(--blue);
  }



  .previous_record_area .projects_done .counter_items {
    margin-bottom: 40px;
  }

  .potential_area {
    padding-top: 80px;
  }

  .testimonial_area {
    padding-bottom: 80px;
  }

  .easy_cash_area {
    padding: 100px 0;
  }

  .get_started_area h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .get_started_area p {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .latest_news_area {
    padding-bottom: 20px;
  }

  .latest_news_area .latest_news {
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .subscirbe_area .subscirbe_inner {
    padding: 80px 0;
  }

  .afa_2 .achieve_inner .personal_tittle p {
    font-size: 20px;
    line-height: 35px;
  }

  .gla_2 {
    padding-top: 100px;
  }

  .banner_area {
    padding-top: 220px;
  }

  .banner_area h2 {
    font-size: 30px;
    line-height: 45px;
    padding-bottom: 10px;
  }

  .banner_area h2:after {
    width: 100px;
  }

  .holidaying {
    padding: 40px 15px;
  }

  .holidaying p {
    font-size: 18px;
    line-height: 30px;
  }

  .portfolio_area .pi_3 .portfolio_item .hover a {
    font-size: 20px;
  }

  .portfolio_area .pi_3 .portfolio_item .hover a span {
    padding-top: 5px;
  }

  .portfolio_area .pi_2 .portfolio_item .portfolio_img i:before {
    top: 10px;
  }

  .portfolio_area .portfoli_inner .portfolio_item {
    max-width: 370px;
    margin: 0 auto 30px;
  }

  .protfolio_details .d_tittle h2 {
    font-size: 20px;
    line-height: 35px;
  }

  .protfolio_details .heding_p {
    font-size: 18px;
    line-height: 30px;
  }

  .how_it_work .step_m {
    display: block;
    padding: 30px 20px 40px;
  }

  .how_it_work .step_m .media-body {
    padding-left: 0;
    padding-top: 30px;
  }

  .required_documents .table {
    width: 700px;
  }

  .get_loan_area {
    padding: 30px 20px;
  }

  .get_loan_area p {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 20px;
  }

  .testimonial_pages {
    padding-bottom: 50px;
  }

  .team_area {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .team_area .conversation .item {
    max-width: 370px;
    margin: 0 auto 40px;
    width: auto;
  }

  .faq_area .faq_accordion {
    padding: 40px 15px;
  }

  .faq_area .faq_accordion .item a {
    font-size: 16px;
    line-height: 30px;
    padding-left: 60px;
  }

  .blog_area {
    padding-top: 100px;
  }

  .mision .btn-primary {
    color: #fff;
    background-color: var(--blue) !important;
    border-color: var(--blue);
    width: 48%;
    border-radius: 19px;
    margin: 4px;
  }

  .tabcontent.estructura img {
    width: 52%;
    height: 99%;
    text-align: center;
  }

  .tabcontent.estructura .est-img {
    text-align: center;
  }

  .tabcontent.estructura p {
    font-size: 21px;
    line-height: 21px;
  }

  .slideshow-container {
    min-height: 17em;
  }

  .portfolio_area .protfoli_filter li {
    display: inline-block;
    margin: 0 8px;
  }

  .noticias .card-left img {
    height: 16em;
    border-radius: 25px;
    width: 100%;
  }

  .noticias .card-left {
    margin-bottom: 10px !important;
  }
}


@media (max-width: 575px) {
  .main_slider_area #main_slider .get_started_btn .theme_btn {
    min-width: 130px;
    line-height: 40px !important;
    font-size: 14px;
  }


  .easy_cash_area .your_results {
    padding: 30px 20px;
  }

  .easy_cash_area .your_results .paid h4 {
    width: 100%;
    border-bottom: 1px solid #ececec;
  }

  .easy_cash_area .your_results .paid .ra {
    padding-left: 0;
  }

  .easy_cash_area .your_results .progres_area {
    width: 60%;
  }

  .easy_cash_area .your_results .pa_2 {
    width: 40%;
  }

  .pra_2 .previous_right .previous_content .alons_text img {
    margin-left: 0;
    margin-top: 20px;
    display: block;
  }

  .banner_area h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .purpose_area .mission .media-body h2 {
    font-size: 20px;
  }

  .join_conversation .tittle .theme_btn,
  .team_area .tittle .theme_btn {
    float: left;
    margin-top: 30px;
  }

  .accordion_area .faq_accordion .item .heding {
    font-size: 16px;
    font-weight: 400;
    padding: 15px 20px;
    padding-right: 30px;
  }

  .protfolio_details .next_post .theme_btn {
    font-size: 16px;
  }


}

@media (max-width: 525px) {
  .mision .btn-primary {
    width: 47% !important;
  }
}

@media (max-width: 400px) {
  .main_header_area {
    top: auto;
  }

  .hta_2 {
    border-bottom: 1px solid #fff;
  }

  .application_process .step_item {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .header_top_area .right_menu .right_nav li.dropdown {
    padding-left: 20px;
  }
}

/*----------------------------------------------------*/
/*All CSS call*/
/* Bootstrap CSS */
/* Icon CSS */
/* Extra Plugins CSS */
/* Rev slider css */
/* Font family link */

/*# sourceMappingURL=style.css.map */


.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 60vh 0;
}

.rellax-container {
  height: 30vmin;
  width: 30vmin;
  position: relative;
  background: #ccc;
  margin: 0 2vmin;
  box-shadow: inset 0 .5rem 4rem -1rem rgba(0, 0, 0, .8),
    0 -119px 0 #fff,
    0 -120px 0 #888,
    0 119px 0 #fff,
    0 120px 0 #888;
}



#slider {
  width: 100%;
  height: 108vmin;
  position: relative;
  overflow: hidden;

}

#content-images-slider {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.image-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.image-slider4 {
  display: block;
  overflow: hidden;
  position: relative;
  background: url(../images/slider-4.png) no-repeat center;
  background-size: cover;
  z-index: 1;
  padding-top: 580px;
  text-align: left;
  top: 9em;
  height: calc(100vh);
}

#slider-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5em;
  background: linear-gradient(0deg, rgba(166, 166, 166, 1) 0%, rgba(255, 255, 255, 1) 32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#content {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}

.text-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
}



@keyframes circle-in-hesitate {
  0% {
    clip-path: circle(0%);
  }

  40% {
    clip-path: circle(40%);
  }

  100% {
    clip-path: circle(125%);
  }
}

[transition-style="in:circle:hesitate"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) circle-in-hesitate both;
}

.parallax {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.parallax img {
  width: 100%;
  bottom: 0;
  height: 100%;
}

.parallax .mano {
  position: relative;
  width: 30%;
  top: 25%;
  bottom: 0;
}

p .titulo-p {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 4rem;
}

@keyframes wipe-in-left {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:left"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) wipe-in-left both;
}

@keyframes wipe-cinematic-in {
  0% {
    clip-path: inset(100% 0 100% 0);
  }

  30%,
  70% {
    clip-path: inset(10% 0 10% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:cinematic"] {
  animation-name: wipe-cinematic-in;
}


@-webkit-keyframes aparecer {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes aparecer {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


/* boton flotante */

@keyframes pop-in {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pop-out {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}



.speed-dial {
  text-align: center;
  display: inline-block;
}

.speed-dial a,
.speed-dial a:hover,
.speed-dial a:active,
.speed-dial a:visited,
.speed-dial a:focus {
  color: #fafafa;


}

.speed-dial .toggle {
  display: inline-block;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 32px;
  line-height: 75px;
  margin: 8px 0;
  position: fixed;
  right: 30px;
  bottom: 80px;
  cursor: pointer;
  background: var(--blue);
  border: 0;
  box-shadow: none;
  z-index: 999;
  color: #fff;

}

.ejemplo {
  background: red;
  height: 30em;
  width: 30em;
}

/* .speed-dial:hover .dials a {
  animation: pop-in 0.3s ease both;
} */
.speed-dial .dials {

  margin: 0;
  padding: 6px;
  list-style: none;
  position: fixed;
  right: 0px;
  bottom: 335px;
  background: var(--blue);
  border-bottom-left-radius: 11px;
  border-top-left-radius: 11px;
  z-index: 999;
}

.speed-dial .dials a {
  display: inline-block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 33px;
  margin: 8px 0;

}

.fa-share-alt:before {
  font-size: 18px;
  color: white;
  position: relative;
  bottom: 17px;
}

.bg-buttons {
  background-color: transparent;
}



.bg-share {
  background-color: #15B897;
}

.bg-buttons.bg-linkedin:hover {
  background-color: #000000;
}

.bg-buttons.bg-instagram:hover {
  background: linear-gradient(to right,
      #833ab4, #fd1d1d, #fcb045)
}

.bg-buttons.bg-whatsapp:hover {
  background-color: #37f747;
}

.bg-buttons.bg-flickr:hover {
  background: linear-gradient(90deg, #ef85b2, #e16fc1, #c462d7, #8c5ff0);
}

.bg-buttons.bg-facebook:hover {
  background: linear-gradient(90deg, #3f0db6, #2f2db3, #0b0d7a, #3901b1);
}

.bg-buttons.bg-tiktok:hover {
  background: linear-gradient(90deg, #0a0a0a, #1a1a1b, #212124, #080808);
}

.bg-buttons.bg-youtube:hover {
  background: linear-gradient(90deg, #fc4646, #f81414, #f50901, #ff0606);
}

/* imagen zoom */
.contenedor-zoom {
  height: 253em;
}

.sectiones {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.section-mano {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.sectiones-zoom {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: auto;
  width: 90%;
}

.image-zoom {
  height: 95vh;
  position: fixed;
  width: 98%;
  top: 0%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  filter: blur(0px);
  opacity: 0;
  transition: filter 0.1s ease, opacity 0.2s ease;
}

.images {
  height: 80vh;
  position: fixed;
  width: 100%;
  top: 13%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  filter: blur(0px);
  opacity: 0;
  transition: filter 0.8s ease, opacity 0.8s ease;
}


.image.zoom {
  background-size: cover;
}

.sectiones-zoom.active .image-zoom {
  opacity: 1;

}

.sectiones.active .images {
  opacity: 1;

}

/* servicios */
.banner_area.servicios {
  display: block;
  overflow: hidden;
  position: relative;
  background: url(../images/banner/banner7.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
  padding-top: 154px;
  text-align: left;
  height: calc(95vh);
}

.banner_area.servicios:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
  background-color: #00000038;
}

.banner_area.servicios p {

  margin: auto;
  color: white;
  text-align: center;
  font-size: 49px;
  line-height: 60px;
  margin-top: 7em;
  width: 100%;
}

.banner_area.servicios p span {


  color: var(--orange);
  font-size: 55px;


}

.section-servicios .texto {
  background: var(--blue);
  border-radius: 15px;
  margin: auto;
  padding: 40px 5px;
  border: 1px solid grey;
  box-shadow: -12px 9px 10px -2px rgba(219, 219, 219, 1);
  height: 26em;
}

.section-servicios .texto-r {
  background: var(--blue);
  border-radius: 15px;
  margin: auto;
  padding: 17px 5px;
  border: 1px solid grey;
  box-shadow: 14px 10px 0px -4px rgba(219, 219, 219, 1);
  max-height: 26em;
}

.section-servicios .texto-fin {
  font-size: 55px;
  margin-top: 175px;
  text-align: center;
  color: var(--blue)
}



.section-servicios img {
  width: 100%;
  border-radius: 13px;
}

.section-servicios .titulo {
  text-align: center;
  color: var(--white) !important;
  font: 400 35px / 0px "Signika";
  font-weight: bold;
}

.section-servicios p {
  color: var(--white);
  font-size: 20px;
}


.section-servicios p b {
  font-weight: 700;
}

.section-servicios .theme_btn {
  color: #fff;
  background: #e66228 !important;
  font: 600 19px / 48px "Signika";

}

@media (max-width: 500px) {
  .banner_area.servicios p {
    line-height: 30px;
    margin-top: 2em;
    width: 96%;
    font-size: 26px;
  }

  #productos .slider {
    height: 79% !important;
    perspective: 4500px !important;
  }

}

@media (max-width: 786px) {
  .section-servicios .titulo {
    font: 400 35px / 27px "Signika";
    padding-bottom: 0;
  }

  .section-servicios p {
    font-size: 18px;
  }

  .section-servicios .texto-fin {
    font-size: 36px;
    margin-top: 100px;
  }

  .banner_area.servicios {
    height: calc(56vh);
  }

  .banner_area.servicios p {
    font-size: 36px;
    line-height: 44px;
    margin-top: -1em;
    width: 96%;
  }

  .productos2 p {
    font: 400 18px / 20px "Signika";
  }

  #productos .slider {
    height: 79% !important;
    perspective: 4500px !important;
  }
}



/* productos */
#productos {
  position: relative;
  z-index: 9;
  width: 100%;
  /* opacity: 0; */
  visibility: hidden;

}

.oculto {
  opacity: 0;
}

.no-oculto {
  opacity: 1;
}

.productos2 {
  position: relative;
  z-index: 9;
  top: -83px !important;

}

.productos3 {
  position: relative;
  z-index: 9;
  transform: scale(1, 1) !important;
}

.normal {

  transition: all 0.5s ease;
  visibility: hidden;
  transform: scale(1.4, 1.5);
  opacity: 0;
}

.top {

  transition: all 0.9s ease;
  transform: scale(1, 1);
  visibility: visible !important;
  opacity: 1;

}



.productos2:after {
  content: "";
  position: absolute;
  top: 120px;
  right: 5%;
  left: 5%;
  background: #ffffff;
  height: 799px;
  z-index: -1;
  width: 100%;

}


.banner_area.productos {
  position: relative;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font: inherit;
  height: 100vh;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0px;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font: inherit;
  width: 100%;
  overflow: hidden;
  height: 100%;
}


.parallax-content {
  position: relative;
  box-sizing: border-box;
  margin: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  font: inherit;
  padding-top: var(--website-navigation-height);
  overflow: hidden;
  min-height: 100vh;
}

.parallax-content-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  overflow: hidden;
  height: 100%;
}

.parallax-content .img1 {
  position: absolute !important;
  left: 49% !important;
  transform-origin: center bottom;
  transform: translateX(-50%);
  transition-duration: 0ms;


}

@media (max-width: 500px) {
  #productos .slide img {
    height: 12em !important;
    width: 9em !important;
    border-radius: 10px;
  }

  .productos .container {
    padding: 0;
  }

  .productos2:after {
    right: 0;
    left: 0;

  }

  .productos2 {
    top: -113px !important;
  }

  #productos .slide {

    top: 69%;
    left: 50%;

  }

  #productos .slider-container {
    height: 17rem !important;
  }

}

@media (min-width: 786px) {
  .parallax-content .img1 {
    transform: translate(-50%, 2px) scale(1.75);
    width: calc(90vh);
    height: calc(59vh);
  }

  .cuadrado-parallax {
    align-self: center;
  }

  .cuadrado-parallax .cuadrado-img-contenedor-i2 {
    height: calc(52vh);
    width: calc(80.6063vh);
    transform: translateX(-21%) translateY(-14%) scale(2, 2);
  }

  #productos .slider-container {
    margin-top: 0px !important;
  }

  .productos2 {
    top: -113px !important;
  }
}


.img2 {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font: inherit;
  max-width: 100%;
  background-size: cover;
  height: 100vh;
}

@media screen and (max-width: 785px) {
  .parallax-content .img1 {
    height: calc(53vh);
    width: calc(80.6063vh);
    transform: translateX(-51%) translateY(-2%) scale(1, 1) !important;
  }

  .cuadrado-parallax .cuadrado-img-contenedor-i2 {
    height: calc(52vh);
    width: calc(80.6063vh);
    transform: translateX(-35%) translateY(-29%) scale(1, 1) !important
  }

  .banner_area.productos h2 {
    font: 400 30px / 65px "Signika" !important;
    top: -131px !important;
  }

  #productos .slider-buttons {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    position: relative;
    top: 41px;
  }

  #productos .slide img {
    height: 12em !important;
    width: 9em !important;
    border-radius: 10px;
  }

  .cuadrado-parallax {
    width: calc(27.6063vh) !important;
    height: calc(37vh) !important;

  }

  .top {
    top: -35em;
  }

  .productos .container {
    padding: 0;
  }

  .portfolio_area {

    padding: 60px 0 110px;

  }

  .parallax-container {
    height: 63vh !important;
  }

  .parallax-content {
    min-height: 63vh !important;
  }


  .img2 {
    height: 63vh !important;
  }

  .parallax-content-2 {

    max-height: 63vh;
  }

  .contenedor-cuadrado {
    min-height: max(5vh, 350px);
  }

  .contenedor-cuadrado-parallax {

    width: calc(27.6063vh) !important;
    height: calc(37vh) !important;

  }

}

.parallax-container {
  left: 0px;
  position: absolute;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font: inherit;
  width: 100%;
  overflow: hidden;
  height: 100%;

}

@media screen and (min-width: 786px) {
  .parallax-content {
    min-height: 100vh;
  }

  .contenedor-cuadrado {
    min-height: max(100vh, 530px);
  }

}

@media screen and (max-width: 1023px) {
  #productos .slide {
    width: clamp(9rem, 11rem, 9rem) !important;
    height: clamp(15rem, 15rem, 25rem) !important;
  }

  #productos .slide img {
    height: 16em !important;
    width: 12em !important;
    border-radius: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .parallax-content {
    min-height: 100vh;

  }


}



.contenedor-cuadrado {
  transition-timing-function: cubic-bezier(0.35, 0, 0, 1);
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition-duration: 0ms;
  transition-delay: 100ms;
  box-sizing: border-box;
  margin: 0px;
  padding-right: 0px;
  padding-left: 0px;
  font: inherit;
  padding-bottom: var(--rui-space-s48);
  padding-top: var(--rui-space-s48);
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

@media screen and (min-width: 1024px) {
  .contenedor-cuadrado {
    min-height: max(100vh, 530px);
  }
}

@media screen and (min-width: 1280px) {
  .contenedor-cuadrado {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.contenedor-cuadrado-parallax {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font: inherit;
  border-top-left-radius: calc(2.5vh);
  border-top-right-radius: calc(2.5vh);
  transition-timing-function: cubic-bezier(0.35, 0, 0, 1);
  position: absolute;
  transition-property: transform;
  bottom: 0px;
  left: 50%;
  width: calc(49.6063vh);
  height: calc(70vh);
  transform-origin: center bottom;
  background: #ffffff;
  transform: translateX(-50%) scale(1);

  transition: all 0.2s ease;

}

.cuadrado-parallax-int2 {
  box-sizing: border-box;
  margin: 0px;
  padding-right: 0px;
  padding-left: 0px;
  font: inherit;
  padding-bottom: 3rem;
  padding-top: 3rem;
  width: 100%;

}

.cuadrado-parallax-int {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 100%;
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 0px;
  font: inherit;
  margin-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  max-width: 1000px;

}

@media screen and (min-width: 1024px) {
  .cuadrado-parallax-int {
    margin-top: 80px;
    margin-bottom: 80px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.cuadrado-parallax {
  transition-timing-function: cubic-bezier(0.35, 0, 0, 1);
  position: absolute;
  /* transition-property: transform; */
  bottom: 0px;
  left: 50%;
  width: calc(49.6063vh);
  height: calc(70vh);
  transform-origin: center bottom;
  background: white;

  transition-duration: 0ms;
  transition-delay: 0.2ms;
  border-top-left-radius: calc(2.5vh);
  border-top-right-radius: calc(2.5vh);
  border: 2px solid white;
  display: block;
  overflow: hidden;
  box-sizing: content-box;
  transform: translateX(-50%) scale(1);
}



.cuadrado-parallax .cuadrado-img-contenedor-i1 {
  position: absolute;
  inset: 0px;
  z-index: 0;
  border-radius: calc(2.5vh);
}

.cuadrado-parallax .cuadrado-img-contenedor-i2 {
  position: absolute;
  inset: 0px;
  z-index: 0;
  border-radius: calc(2.5vh);

}

@media screen and (min-width: 1024px) {
  .cuadrado-parallax .cuadrado-img-contenedor-i2 {
    height: calc(52vh);
    width: calc(80.6063vh);
    transform: translateX(-21%) translateY(-14%) scale(2, 2);
  }

  .cuadrado-parallax .cuadrado-img-contenedor-i1 {
    height: calc(70vh);
    width: calc(49.6063vh);
  }
}


@keyframes show {
  from {
    opacity: 0;
    scale: 10%;
  }

  to {
    opacity: 1;
    scale: 100%;
  }
}

.cuadrado {
  view-timeline-name: --reveal;
  animation-name: show;
  animation-fill-mode: both;
  animation-range: entry 25% cover 50%;
  margin: auto;
  text-align: center;

}



.banner_area.productos h2 {
  font: 362 54px / 65px "Signika";
  color: var(--white);
  padding-bottom: 30px;
  text-align: center;
  position: relative;
  top: 151px;
  z-index: 1;
  line-height: 61px;
}

.banner_area.productos:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
  background-color: transparent;
}

#productos .slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: clamp(22rem, 90%, 70rem);
  height: 25rem;
  margin: 0 auto;
}

#productos .slider {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  perspective: 500px;
}

#productos .slide {
  width: 18%;
  height: clamp(15rem, 15rem, 25rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--borderClr);
  transition: 0.5s;
  background: var(--bg);
  transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
  transition-duration: 0.35s;
  transition-delay: 0.25s;

}


#productos .slide img {
  height: 14em;
  width: 12em;
  border-radius: 10px;
}

#productos .slide span {
  position: absolute;
  border-radius: inherit;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  background-image: var(--txtBg);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  color: transparent;
}

#productos .slider-buttons {
  display: flex;
  gap: 1.5rem;
  z-index: 1;
  margin-top: 42px;
  margin-bottom: -2px;
}

#productos .slider-buttons button {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

#productos .slider-buttons button::before {
  content: '';
  width: 80%;
  height: 80%;
  background: white;
  position: absolute;
  border-radius: inherit;
  transition: .3s;
  opacity: .5;
}

#productos .slider-buttons button:hover::before {
  opacity: 1;
}

#productos .slider-buttons button:nth-of-type(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.29 5.707a1 1 0 0 0-1.415 0L7.988 10.6a2 2 0 0 0 0 2.828l4.89 4.89a1 1 0 0 0 1.415-1.414l-4.186-4.185a1 1 0 0 1 0-1.415l4.182-4.182a1 1 0 0 0 0-1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.29 5.707a1 1 0 0 0-1.415 0L7.988 10.6a2 2 0 0 0 0 2.828l4.89 4.89a1 1 0 0 0 1.415-1.414l-4.186-4.185a1 1 0 0 1 0-1.415l4.182-4.182a1 1 0 0 0 0-1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
}

#productos .slider-buttons button:nth-of-type(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.71 18.293a1 1 0 0 0 1.415 0l4.887-4.892a2 2 0 0 0 0-2.828l-4.89-4.89a1 1 0 0 0-1.415 1.414l4.186 4.185a1 1 0 0 1 0 1.415L9.71 16.879a1 1 0 0 0 0 1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.71 18.293a1 1 0 0 0 1.415 0l4.887-4.892a2 2 0 0 0 0-2.828l-4.89-4.89a1 1 0 0 0-1.415 1.414l4.186 4.185a1 1 0 0 1 0 1.415L9.71 16.879a1 1 0 0 0 0 1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
}


@media (max-width: 800px) {
  #productos .slider-container {
    gap: 0;
  }

  #productos .slide {
    width: clamp(4rem, 6rem, 25rem);
    height: clamp(6rem, 8rem, 27rem);
  }

  #productos .slide span {
    font-size: 1.6rem;
  }

}

@media (max-width: 785px) {
  .productos2:after {
    width: 100%;
    left: 0;
    right: 0;
  }

  .banner_area.productos {
    height: calc(63vh);
  }

  .banner_area.productos h2 {
    font: 400 35px / 65px "Signika";
  }
}

@media (max-width: 785px) {
  .banner_area.productos h2 {
    font: 400 35px / 41px "Signika";
  }
}

.productos-index .img-container {
  background-color: rgb(0, 0, 0);
  border-radius: 20px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  margin-left: 8px;
  position: relative;
  align-self: flex-start;
  border: 2px solid #e1e4e7
}

.productos-index img {
  box-sizing: border-box;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 0px;
  font: inherit;
  width: 100%;
  height: 100%;
  grid-area: media;

}

.productos-index .theme_btn {
  background: var(--orange);
  color: var(--white);
  text-align: center !important;
  font: 600 20px / 50px "Signika";

  padding: 0 59px;

  border-radius: 28px;
  z-index: 1;
}


#productos .tittle {
  margin: 45px auto 0;
}

#productos .theme_btn {
  background: var(--orange);
  color: var(--white);
  text-align: center !important;
  font: 600 20px / 50px "Signika";
  display: inline-block;
  padding: 0 59px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  z-index: 1;
}

.productos .card {
  background: var(--gray);
  height: 17em;
  bottom: 115px;
  width: 44em;
  text-align: center;
  padding: 68px;
  box-shadow: 10px 10px 5px -8px rgba(120, 120, 120, 1);
}

/***** terminos *****/
.terminos p {
  font-size: 18px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.terminos p span {
  font-size: 20px;
  color: var(--blue);
}

.terminos ul {
  margin-left: 71px;
  margin-top: 11px;

}

/* gman */
.banner_area.gman-banner {
  display: block;
  background-color: var(--blue);
  padding-top: 0%;
  height: calc(100vh);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.banner_area.gman-banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: -1;
  background-color: #41455b00;
}

.banner_area.gman-banner .gman-container {
  background: white;
  border-radius: 15px;
  padding: 5em 5em;
  width: 70%;


}

.banner_area.gman-banner .gman-container .logo img {
  height: 4em;
  margin: 0px 0px 17px;

}

.banner_area.gman-banner .gman-container p {
  color: var(--blue);
  border-left: 4px solid var(--blue);
  font-size: 32px;
  line-height: 40px;
}

.banner_area.gman-banner .gman-container span {
  color: var(--orange);
  font-size: 32px;
}

.banner_area.gman-banner .gman-container .info a {
  color: var(--blue);
  font-size: 22px;
}

.banner_area.gman-banner .gman-container .info span {
  color: var(--orange);
  font-size: 22px;
}

.banner_area.gman-banner .gman-container .button-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
  margin: 34px auto;
}

.banner_area.gman-banner .gman-container .gman-img {
  text-align: center;
}

.banner_area.gman-banner .gman-container .gman-img img {
  height: 100%;
  width: 31em;
  max-height: 30em;
}

.banner_area.gman-banner .gman-container .theme_btn {
  border-radius: 37px;
  z-index: 1;
  font-size: 22px;
  color: white;
  background: var(--orange);
}

@media (max-width: 1200px) {
  .banner_area.gman-banner .gman-container {
    margin: 6em 7em;
    padding: 5em 5em;
  }
}

@media (max-width: 900px) {

  .banner_area.gman-banner {
    padding-top: 50%;
  }

  .banner_area.gman-banner .gman-container {
    width: 100%;
  }

  .banner_area.gman-banner .gman-container .gman-img img {
    width: 20em;
  }
}

@media (max-width: 450px) {
  .banner_area.gman-banner {
    padding-top: 0%;

  }

  .banner_area.gman-banner .gman-container {
    margin: 2em 0em;
    padding: 2em 2em;
  }

  .banner_area.gman-banner .gman-container .gman-img img {
    height: 100%;
    width: 100%;
    max-height: 50em;
  }

  .banner_area.gman-banner {
    height: auto;

  }
}

/* efectos */

@keyframes wipe-in-right {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:right"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) wipe-in-right both;
  --transition__duration: 3s;
  --transition__easing: ease-in-out;

}

@keyframes wipe-cinematic-in {
  0% {
    clip-path: inset(100% 0 100% 0);
  }

  30%,
  70% {
    clip-path: inset(10% 0 10% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:cinematic"] {
  animation-name: wipe-cinematic-in;
  --transition__duration: 3s;
  --transition__easing: ease-in-out;
}

@keyframes circle-in-center {
  from {
    clip-path: circle(0%);
  }

  to {
    clip-path: circle(125%);
  }
}

[transition-style="in:circle:center"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) circle-in-center both;
  --transition__duration: 3s;
  --transition__easing: ease-in-out;
}


#consentBox {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9999999;
}

#consentBox.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

::selection {
  color: #fff;
  background: #229a0f;
}

#consentContent p {
  /* color: #858585; */
  margin: 10px 0 0px 0;
  font-size: 18px;
  text-align: left;
}

#consentContent .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.consentButton,
.rejectButton {
  padding: 12px 30px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consentButton {
  background: var(--blue);
  margin-right: 10px;
}


#consentBox img {
  max-width: 100%;
}

#consentBox a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}

#consentHeader {
  font-size: 31px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--blue)
}


.blog_area {
  display: block;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 140px;
}

.blog_area .blog_items .blog_heding {
  font: 600 36px/42px "Nunito", sans-serif;
  color: #101010;
  display: block;
  padding-bottom: 40px;
  margin-top: 60px;
}

.blog_area .blog_items .blog_heding:hover,
.blog_area .blog_items .blog_heding:focus {
  color: #2759ab;
}

.blog_area .blog_items img {
  max-width: 100%;
}

.blog_area .blog_items h6 {
  font: 400 18px/30px "Source Sans Pro", sans-serif;
  color: #101010;
  padding-top: 40px;
}

.blog_area .blog_items h6 a {
  color: #101010;
  padding: 0 10px;
}

.blog_area .blog_items h6 a:hover,
.blog_area .blog_items h6 a:focus {
  color: #2759ab;
}

.blog_area .blog_items p {
  font-size: 18px;
  line-height: 30px;
  padding-top: 40px;
  padding-bottom: 30px;
}

.blog_area .blog_items .read_more {
  font: 600 18px/25px "Nunito", sans-serif;
  display: inline-block;
  color: #044192;
  border-bottom: 1px solid #2759ab;
}

.blog_area .blog_items .read_more:hover,
.blog_area .blog_items .read_more:focus {
  color: #f59019;
  border-color: #f59019;
}

.pagination_area {
  margin-top: 70px;
}

.pagination_area .pagination li {
  margin-right: 17px;
}

.pagination_area .pagination li a {
  font: 600 18px/52px "Nunito", sans-serif;
  color: #2759ab;
  padding: 0;
  border: 2px solid #ecebeb;
  border-radius: 0;
  min-width: 56px;
  text-align: center;
  border-radius: 0 !important;
}

.pagination_area .pagination li a i {
  font-size: 14px;
  position: relative;
  top: -4px;
}

.pagination_area .pagination li a:hover,
.pagination_area .pagination li a:focus,
.pagination_area .pagination li a.active {
  background: #2759ab;
  color: #fff;
}