@import url('https://fonts.googleapis.com/css2?family=Arsenal:wght@400;700&family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,600;1,700&display=swap');

:root {
  --color_1: #2326d8;
  --color_2: #2486b7;
  --color_2_dark: #0e5071;
  --color_3: #00276c;
  --bg_gray: #565656;
  --bg_gray_light: #edefee;
}

.parsley-errors-list{
  color: #F00;
  font-size: 12px;
  list-style: none;
  margin: 5px;
  padding: 0px;
  text-align: left;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--bg_gray);
}

.body_int {
  padding-top: 50px;
}

.txt_font2 {
  font-family: 'Arsenal', sans-serif;
  color: var(--bg_gray);
}

* {
  -webkit-transition: .25s all ease;
  -moz-transition: .25s all ease;
  -o-transition: width 1s ease-in-out;
  transition: .25s all ease;
}

.menu_transparent .navbar-toggler { 
  background-color: white;
}
.nav-link {
  font-size: 20px;
  color: white;
  transition: font-size .2s ease-in-out;
}

.menu-color-scrolled .nav-link {
  font-size: 18px;
  color: white;
  transition: font-size .2s ease-in-out;
}

.nav-link:hover {
  color: white;
  background-color: rgba(255,255,255,0.05);
}

.menu_transparent {
  background-color: transparent;
  color: white;
}

@media (max-width: 768px) {
  .menu_transparent.navbar {
    background-color: rgb(35,36,218,.85) !important;
    -webkit-box-shadow: 10px 10px 19px -10px rgba(0,0,0,0.34);
  }
 #logo_nav{
    position: relative !important;
    margin-top: 0px !important;
    width: 60px !important;
  }
}

.menu-color {
  background-color: rgba(255,255,255,.8) !important;
}

.menu-color-scrolled {
  background-color: rgb(35,36,218,.85) !important;
  -webkit-box-shadow: 10px 10px 19px -10px rgba(0,0,0,0.34);
}

.navbar-nav .nav-link:hover::after {
  background-color: #ffffff;
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -2px;
  content: "";
}

#logo_nav {
  position: absolute;
  margin-top: 35vh;
  width: 300px;
}

.logo-color-scrolled {
  display: block;
  margin-top: 0px !important;
  width: 60px !important;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: all .35s ease-in-out;
}

.body_int .nav-link {
  font-size: 18px;
  color: var(--color_1);
  transition: font-size .2s ease-in-out;
}

.body_int .nav-link:hover {
  /* font-size: 20px; */
  color: var(--color_1);
  transition: font-size .2s ease-in-out;
  background-color: rgb(41,90,238,.10);
}

.full_width_image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.bg_color_1, bg_color_2:hover {
  background-color: var(--color_1);
  color: white;
}

.bg_color_2, bg_color_1:hover {
  background-color: var(--color_2);
}

.bg_gray {
  background-color: var(--bg_gray);
}

.bg_gray_light {
  background-color: var(--bg_gray_light);
}

.bg_white {
  background-color: white;
}

.bg_gradient_1 a {
  text-decoration: none;
  color: var(--color_1) !important;
  -webkit-transition: background-color 1s linear;
  -moz-transition: background-color 1s linear;
  -o-transition: background-color 1s linear;
  transition: background-color 1s linear;
  transition: background-color 3s ease-out;
  -webkit-transition: background-color 3s ease-out;
}

.bg_gradient_1 {
  background-color: white;
  border: solid 3px var(--color_1);
  color: var(--color_1) !important;
  -webkit-transition: background-color 1s linear;
  -moz-transition: background-color 1s linear;
  -o-transition: background-color 1s linear;
  transition: background-color 1s linear;
  transition: background-color 3s ease-out;
  -webkit-transition: background-color 3s ease-out;
}

.bg_gradient_1:hover {
  background-color: rgb(20,22,123) !important;
  border: solid 3px transparent;
  background: -webkit-linear-gradient(145deg, rgba(20,22,123,1) 0%, rgba(36,38,212,1) 100%);
  background: linear-gradient(145deg, rgba(20,22,123,1) 0%, rgba(36,38,212,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#14167b",endColorstr="#2426d4",GradientType=1);
  color: white !important;
}

.bg_gradient_1 .txt_gray {
  color: var(--bg_gray);
}

.bg_gradient_1:hover .txt_gray {
  color: white !important;
}

.bg_gradient_1:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.08);
}

.bg_gradient_1:hover a {
  color: white !important;
}

.bg_gradient_hr {
  background-color: rgb(20,22,123) !important;
  background: -webkit-linear-gradient(145deg, rgba(20,22,123,1) 0%, rgba(36,38,212,1) 100%);
  background: linear-gradient(145deg, rgba(20,22,123,1) 0%, rgba(36,38,212,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#14167b",endColorstr="#2426d4",GradientType=1);
  color: white !important;
}

.bg_int {
  padding-top: 5px;
  background-image: url(../../assets/img/forma-03.png), url(../../assets/img/forma-04.png);
  background-size: contain;
  background-attachment: fixed;
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
}

.txt_white {
  color: white;
}

.txt_color_1 {
  color: var(--color_1);
}

.txt_color_2 {
  color: var(--color_2);
}

button a, button a:hover {
  color: white;
  text-decoration: none !important;
}

.bg_hero_home {
  background-repeat: no-repeat;
  position: relative;
  background-image: url("../../assets/img/img-header.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  height: 100vh;
}

.bg_hero_qsomos {
  background-repeat: no-repeat;
  background-image: url("../../assets/img/header-nosotros.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
  height: 80vh;
  padding-top: 150px;
  padding-bottom: 110px;
}

.bg_hero_servicios1 {
  background-repeat: no-repeat;
  background-image: url("../../assets/img/header-servicios.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
  height: 80vh;
  padding-top: 150px;
  padding-bottom: 110px;
}

.bg_hero_servicios_int {
  background-repeat: no-repeat;
  background-image: url("../../assets/img/header-servicios-interna.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  width: 100%;
  height: 80vh;
  padding-top: 150px;
  padding-bottom: 110px;
}

.text_hero_home {
  padding-top: 50vh;
  transform: translateY(-5vh);
  z-index: 2;
  position: inherit;
}

.hero_home_side2 {
  background-image: url(../../assets/img/img-header-bg01.png);
  background-position: center left;
  width: 40vw !important;
  max-width: 790px;
  right: 0;
  height: 100vh;
  position: absolute;
  opacity: 1;
  z-index: 1;
}

.hero_home_side3 {
  background-image: url("../../assets/img/img-header-bg02.png");
  background-position: bottom right;
  width: 40vw;
  max-width: 790px;
  left: 0;
  height: 100vh;
  position: absolute;
  opacity: 1;
  z-index: 1;
}

.bg_home2 {
  background-attachment: fixed;
  background-image: url("../../assets/img/img-01.jpg");
  background-size: cover;
  background-position: top right !important;
}

@media (min-width: 300px) {
  .bg_home2 {
    background-attachment: fixed;
    background-image: url("../../assets/img/img-01.jpg");
    background-size: cover;
    background-position: top center;
  }
}

.bg_home_servicios {
  background-image: url("../../assets/img/forma-02.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.bg_home_aliados {
  background-attachment: fixed;
  background-image: url("../../assets/img/img-02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_home_slogan {
  position: relative;
  background-image: url("../../assets/img/abanico.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  min-height: 530px;
}

.bg_home_slogan_img {
  background-image: url("../../assets/img/chica.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 30vw;
  max-width: 350px;
  right: 0;
  bottom: 0;
  height: 60vh;
  position: absolute;
  z-index: 1;
}

.bg_home_slogan h1 {
  margin-top: 31px;
  font-size: 4.5em;
}

.bg_home_slogan h2 {
  margin-top: 300px;
  font-size: 2em;
}

.bg_footer_contacto {
  background-image: url("../../assets/img/img-contacto.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bg_footer {
  background-image: url("../../assets/img/img-footer.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}

footer a.brand {
  color: #ffffff;
  text-decoration: none;
  opacity: .2;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.bg_transparent {
  background-color: rgba(255,255,255,0.25);
}

.border_qsomos {
  border-left: 3px var(--color_2) solid;
  padding-left: 20px;
}

.border_qsomos2 {
  border-right: 3px var(--color_2) solid;
  padding-right: 20px;
}

.container_hr_bullets {
  line-height: 0px !important;
}

.container_hr_bullets i {
  padding: 5px 2px;
  font-size: 0.5em !important;
}

.icos_redes_float {
  position: fixed;
  width: 60px;
  height: auto;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 100;
  color: var(--color_2);
  transform: translate(0%, -0%);
}

.icos_redes_float a {
  color: var(--color_2);
}

.icos_redes_float a:hover {
  color: var(--color_2_dark);
}

.icos_redes_float i {
  font-size: 32px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid var(--color_2);
  padding: 10px;
}

.container_image_card {
  position: relative;
}

.content_hover_card {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container_image_card {
  overflow: hidden !important;
}

.container_image_card:hover img {
  filter: brightness(30%);
  overflow: hidden !important;
  transform: scale(1.2);
}

.container_image_card:hover .content_hover_card {
  opacity: 1;
}

.btn_more_left:hover {
  transform: scale(1.05);
  margin-left: 20px;
}

.btn_more:hover {
  transform: scale(1.2);
}

.img_animation:hover {
  transform: scale(1.2);
}

.bullets_color_1 li::marker {
  font-size: 25px;
  color: var(--color_1);
}

.bullets_color_1 li {
  vertical-align: middle;
  margin-top: -5px;
}

.map_norte {
  right: 25vw;
  top: 9%;
}

.map_centro {
  right: 10vw;
  top: 32%;
}

.map_sur {
  left: 22vw;
  bottom: -3%;
}

.img_blog_int {
  width: 100%;
    height: 300px;
    object-fit: cover;
}