@charset "utf-8";
/* CSS Document */
.headlanding {
  background: rgb(12, 77, 149);
  background: linear-gradient(0deg, rgba(12, 77, 149, 1) 0%, rgba(55, 124, 200, 1) 100%);
  min-height: 660px;
}
main {
  overflow: hidden;
}
.whatsapp2{
	background: #25d366;
	color: #fff;
	display: block;
	padding: 8px 15px;
	text-align: center;
	border-radius: 10px;
	border: 2px solid #fff;
	font-size: 22px;
	margin-top: 10px;
}
.whatsapp2:hover{
	color:#fff;
	background: #28a958;
	text-decoration:none;
}
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}
.whatsapp-icon {
  margin-top: 13px;
}
.box {
  align-self: flex-end;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
.circles {
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: linear;
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
#tiempo{
  background:#7ba303;
  margin:10px auto;
  padding:10px 20px;
  border-radius:15px;
  color: #fff;
  font-weight:600;
}
#titulo{
  color:#0f417a;
}
.btn-success {
  color: #fff;
  background-color: #7ba303;
  border-color: #7ba303;
  padding: 10px 0;
  font-size: 18px;
  border-radius: 25px;
  font-weight: 500;
}
.btn-primary {
  color: #fff;
  background-color: #0f417a;
  border-color: #0f417a;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 25px;
}
.form-control:focus {
  color: #495057;
  background-color: rgba(0, 123, 255, 0.1);
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.linegreen {
  width: 250px;
  height: 5px;
  background: #7ba303;
  /* margin-top: 20px; */
  margin: auto;
}
.overhead {
  overflow: hidden;
  background: url("../img/bg.png") no-repeat bottom center;
  background-size: cover;
  min-height: inherit;
  position: absolute;
  width: 100%;
}
.bg-dark {
  background: #367bc7 !important;
}
.formularioami {
  position: absolute;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .12), 0 9px 8px 0 rgba(0, 0, 0, .11);
  /* margin-bottom: 60px; */
  /* z-index: 99999; */
}
.formularioami .form-check{
  
margin: 15px 0;
}
.formularioami .form-check-label{
  font-weight: 500;
  font-size: 14px;
}
@-webkit-keyframes formularioami {
  15% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  65% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  80% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes formularioami {
  15% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  65% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  80% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.formularioami:hover {
  -webkit-animation: formularioami 1s ease;
  animation: formularioami 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.formularioami h2 {}
.formularioami b {
  color: #205EA3;
}
.formularioami .nav-tabs li {
  width: 48%;
  padding-bottom: 10px;
}
.contact-us .btn-link {
  color: #fff;
  padding: 7px 0;
  display: inline-block;
}
.contact-us .btn-link:hover {
  text-decoration: none;
  color: #18151c;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 50%;
}
.btn-info {
  color: #6c757d;
  background-color: #e9ecef;
  border-color: #adb5bd;
}
.btn-info:hover {
  color: #fff;
  background-color: #195fa5;
  border-color: #195fa5;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #195fa5;
  border-color: #195fa5;
  box-shadow: none;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #195fa5;
  border-color: #195fa5;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: none;
}
.info {
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .12), 0 9px 8px 0 rgba(0, 0, 0, .11);
  padding: 60px 50px;
  max-width: 70%;
  margin: auto;
  background: #fff;
  border-radius: 10px;
}
.f_error input {
  border: 1px solid #cd0816;
}
.f_error .error {
  color: #cd0816;
}
.info .box {
  margin: 30px;
}
.info .box img {
  float: left;
  padding: 10px;
}
.info .box p {
  text-align: left;
}
b {
  color: #205ea3;
}
.ft-social h4 {
  color: #205ea3;
  margin-bottom: 30px;
  font-weight: 700;
}
.ft-social a {
  width: 25%;
  display: inline-block;
  text-align: center;
  color: #BFB2B2;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.ft-social a:hover {
  color: #205ea3;
}
.ft-social i {
  font-size: 3rem;
}
.ft-social span {
  display: block;
}
.contact {
  padding: 60px 0;
}
.contact .calltoaction {
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .12), 0 9px 8px 0 rgba(0, 0, 0, .11);
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.contact .calltoaction:hover {
  -webkit-box-shadow: 0 8px 30px rgba(18, 8, 81, .2);
  box-shadow: 0 8px 30px rgba(18, 8, 81, .2);
}
footer {
  background: #0F417A;
  padding: 15px 0 7px 0;
  color: #fff;
  font-size: 14px;
}
footer p {
  margin-bottom: 0;
}
footer a {
  color: #dae0e5 !important;
  text-decoration: none;
  font-weight: 500;
}
.blue {
  background: #0F417A;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.blue .cifra {
  padding: 60px 0;
}
.blue h3 {
  margin: 0;
}
.blue h2 {
  font-weight: 700;
  font-size: 2.2rem;
}
.red {
  background: #7E0B13 url("../img/elements.png") no-repeat center top;
  background-size: auto;
  padding: 90px 0;
  color: #fff;
}
.red h2 {
  margin-bottom: 30px
}
.red h2 b {
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
}
.red p {
  font-weight: 600;
  font-size: 18px;
}
.redborder {
  background: url("../img/bg-red.png")no-repeat center bottom;
  background-size: auto;
  padding: 60px 0;
}
.redborder h2 {
  color: #7BA303;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 2.5rem;
}
.redborder h3 {
  color: #2d67a8;
  margin: 0;
}
.redborder p.txt {
  margin-bottom: 50px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  /* width: 100px; */
  display: block;
  /* margin: auto; */
}
.tooltip-ami {
  background: #fff;
  margin: 10px 0;
  color: #000;
  padding: 15px 20px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 18px;
  min-height: 60px;
  transition: all 0.3s ease 0s;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .12), 0 9px 8px 0 rgba(0, 0, 0, .11);
  display: flex;
  cursor: context-menu;
}
.tooltip-ami i {
  color: #7ba303;
  width: 50px;
  display: block;
  font-size: 30px;
  z-index: 9;
}
.tooltip-ami:hover, .tooltip-ami:hover::before {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.tooltip-ami:hover::before {
  border-width: 0 0 5px 5px;
  border-color: transparent transparent;
}
.tooltip-ami:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 7px;
  border-width: 0 0 20px 30px;
  border-style: solid;
  border-color: transparent #ffffff;
  display: block;
  width: 0;
  transform: skewX(60deg);
  z-index: 0;
  transition: all 0.3s ease 0s;
}
/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  .info {
    max-width: 100%;
  }
  .red .mt-5 {
    padding: 90px 10px 90px 35px;
  }
  .ft-social {
    text-align: center;
    margin-bottom: 40px
  }
  .navbar-dark .navbar-brand img {
    width: 90%;
    float: left;
  }
  .info .box img {
    float: none;
  }
  .info .box p {
    text-align: center;
  }
  .formularioami {
    position: relative;
    z-index: 9;
  }
  .form:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 350px;
    background-color: #ffffff;
  }
  .navbar-toggler {
    right: 20px;
    position: absolute;
  }
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {}
/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  .overhead { /* margin-top: 80px; */ height: 700px;
  }
}