/**
* BIASOFT 
* verion:   v1.0.0
* Author:   @Beres Arias
*/

/*General*/
body {
  font-family: "Lucida Bright, Verdana",  sans-serif;
  color: #1e1e1e;
}

a {
  color: #733af4;
  text-decoration: none;
}

a:hover {
  color: #247DFF;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica", sans-serif;
  font-weight: bold;
}



/*Imagen de Previsualizacion*/
#preloader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #202f49;
}

#preloader:before{
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader{
  10% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/*Boton Top*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #247DFF;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 1s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #733af4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 2;
}



/*Cabecera*/
#header {
  transition: all 1s;
  z-index: 997;
  padding: 8px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: #1e1e1e;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 110px;
}



/*Menu de Navegacion (Escritorio)*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 5px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #247DFF;
}



/*Menu de Navegacion (Móvil)*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #1e1e1e;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 12px;
  background-color: #fff;
  overflow-y: auto;
  transition: 1s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 17px;
  color: #1e1e1e;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #247DFF;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #37517e;
}

/* Sección Principal*/
#home {
  width: 100%;
  height: 80vh;
  background: #212121;
}

#home .container {
  padding-top: 72px;
}

#home h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 650;
  line-height: 56px;
  color: #fff;
}

#home h2 {
  color: #c4d1e6;
  font-size: 26px;
}

#home .animated {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}










@media (max-width: 991px) {
  #home {
    height: 100vh;
    text-align: center;
  }
  #home .animated {
    -webkit-animation: none;
    animation: none;
  }
  #home .home-img {
    padding-top: 30px;
    text-align: center;
  }
  #home .home-img img {
     padding-top: 30px;
    width: 50%;
  }
}

@media (max-width: 768px) {
  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #home h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #home .home-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #home .home-img img {
     padding-top: 30px;
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}



/* Sección Principal*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #ebeef2;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #247DFF;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #212121;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background:#247DFF;
  bottom: 0;
  left: calc(50% - 20px);
}



/*Quienes Somos*/
.about .content h2 {
  font-weight: 600;
  font-size: 26px;
  color: #247DFF ;
}

.about .content p {
  text-align: justify;
  padding: 5px;
}

















/*Logo intermedio*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/logo.png") fixed center center;
  background-size: cover;
  padding: 160px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}


.cta .cta-btn {
  background-color: #247DFF;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Helvetica", sans-serif;
  transition: 0.3s;
  border: 2px solid #247DFF;
}

.cta .cta-btn:hover {
  background:  #733af4;
  border: 2px solid  #733af4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }



}

@media (min-width: 769px){
  .cta .cta-btn-container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

}

























/*Servicios*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.5);
  padding: 50px 30px;
  transition: all ease-in-out 0.5s;
  background: #edeef3;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon span {
  color: #247DFF;
  font-size: 36px;
  transition: 0.5s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color:#247DFF;
  transition: ease-in-out 0.5
  s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-15px);
}

.services  .icon-box:hover h4 a {
  color: #733af4;
}

.services  .icon-box:hover span {
  color: #733af4;
}




/*Nuestro Equipo*/
.team .member {
  position: relative;
  box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 5px;
  background:  #edeef3;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.5s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #247DFF;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}


.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}


.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #247DFF;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #733af4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}





/*PROMOCIONES*/
.pricing {
  background: #edeef3;
}

.pricing .row {
  padding-top: 30px;
  background: #edeef3;
}

.pricing .box {
  padding: 50px 30px;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.5);
  transition: all ease-in-out 0.5s;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h2 {
 
}

.pricing h3 {
  font-weight:    500;
  margin-bottom:  15px;
  font-size:      22px;
  color: #247DFF;
  font-family: "Helvetica", sans-serif;
}

.pricing h4 {
  font-weight:    400;
  margin-bottom:  25px;
  font-size:      48px;
  color: #247DFF;
  font-family: "Helvetica", sans-serif;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #247DFF;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #212121;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #4c4c4c;
}

.pricing ul .na i {
  color: #ff0000;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #247DFF;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Helvetica", sans-serif;
  transition: 0.3s;
  border: 1px solid  #247DFF;
}

.pricing .buy-btn:hover {
  background: #733af4;
  color: #fff;
}

.pricing .featured {
  border-top-color:  #247DFF;
  background: #edeef3;
}

.pricing .featured .buy-btn {
  background:  #247DFF;
  color: #fff;

}

.pricing .featured .buy-btn:hover {
  background: #733af4;
  color: #fff;
  border-color: #733af4;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}





/*Contacto*/
.contact {
    background: #edeef3;
}

.contact .info {
  border-top: 3px solid #247DFF;
  border-bottom: 3px solid #247DFF;
  padding: 30px;
  background: #edeef3;
  width: 100%;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
}

.contact .info i {
  font-size: 20px;
  color: #247DFF;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
   color: #247DFF;
  font-family: "Helvetica", sans-serif;
  background: #edeef3;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #212121;
  background: #edeef3;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background:#edeef3;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #733af4;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background:#733af4;
  color: #fff;
}

.contact .php-email-form {
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  border-top: 3px solid #247DFF;
  border-bottom: 3px solid #247DFF;
  padding: 30px;
  background: #edeef3;
  width: 100%;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #247DFF;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #247DFF;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #733af4;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/*Footer*/

#footer {
  font-size: 14px;
  background: #212121;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #247DFF;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #247DFF;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #247DFF;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #262626;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #733af4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #247DFF;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #733af4;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  padding-left: .5rem;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
