@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    color: #313030;
  }
  
  a {
    color: #26A7DF;
    text-decoration: none;
  }
  
  a:hover {
    color: #26A7DF;
    text-decoration: none;
  }
  
    h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    color: #fff;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #26A7DF;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  .back-to-top:hover {
    background: #000000;
    color: #fff;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  /*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
  #topbar {
    background: #2f3439;
    font-size: 14px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    height: 40px;
  }
  #topbar .contact-info i {
    font-style: normal;
    color: #26A7DF;
  }
  #topbar .contact-info i a, #topbar .contact-info i span {
    padding-left: 5px;
    color: #26A7DF;
  }
  #topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  #topbar .contact-info i a:hover {
    color: #26A7DF;
  }
  #topbar .cta a {
    color: #fff;
    background: #26A7DF;
    padding: 10px 20px;
    display: inline-block;
    transition: 0.3s;
  }
  #topbar .cta a:hover {
    background: #26A7DF;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    background: #21262c;
  }
  #header.header-fixed {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 0;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
  }
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #515f63;
    text-decoration: none;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
  }
  
  .scrolled-offset {
    margin-top: 70px;
  }
  
  #main {
    z-index: 3;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .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: 10px 0 10px 30px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 500;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #26A7DF;
  }
  .navbar .getstarted, .navbar .getstarted:focus {
    background: #26A7DF;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: #fff;
    background: #26A7DF;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #26A7DF;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  /**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fcfdfd;
  font-size: 28px;
  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;
  }
}
@media (max-width: 480px) {
  .img-slider {
    max-width: 610px;
    height: auto;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(35, 39, 43, 0.9);
  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: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #3a4147;
  font-weight: 500;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #26A7DF;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #26A7DF;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

  /*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 2px 3px 3px 3px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #656262;
    background: #f8f8f8;
  }
  .pricing h4 {
    font-size: 30px;
    color: #000000;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
  }
  .pricing h4 sup {
    font-size: 25px;
    top: -15px;
    left: -3px;
  }
  .pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #313030;
    text-align:start;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
  }
  .pricing ul li {
    padding-bottom: 16px;
  }
  .pricing ul i {
    color: #26A7DF;
    font-size: 18px;
    padding-right: 4px;
  }
  .pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
  }
  .pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
  }
  .pricing .btn-buy {
    background: linear-gradient(70deg, #20c3f5, #0057D6);
    display: inline-block;
    padding: 6px 35px 8px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    box-shadow: 0 3px 7px rgba(38, 167, 223, 0.4);
    transition: 0.3s;
  }
  .pricing .btn-buy:hover {
    background: #fff;
    border: 1px solid #26A7DF;
    color: #000;
  }
  .pricing .featured h3 {
    color: #fff;
    font-size: 20px;
    background: linear-gradient(70deg, #20c3f5, #0057D6);
    box-shadow: 0 3px 7px rgba(38, 167, 223, 0.4);
  }
  .pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #feffff;
    color: rgb(5, 5, 5);
  }

  ul li ion-icon {
    color: #26A7DF;
    font-size: 18px;
    margin-right: 2px;
    --ionicon-stroke-width: 64px;
  }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 50px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  height: 200px;
  position: relative;
  background: #fff;
  box-shadow: 2px 3px 3px 3px rgb(0 0 0 / 10%);
  border-radius: 5px;
}
.services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #20c3f5;
}
.services .icon ion-icon {
  color: #feffff;
  font-size: 35px;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}
.services .title {
  font-weight: bolder;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}
.services .title a {
  color: #343a40;
}
.services .icon-box:hover .icon {
  background: #fff;
  border: 2px solid #26A7DF;
}

.services .icon-box:hover .icon ion-icon {
  color: #000;
  font-size: 35px;
}

.services .icon-box:hover .icon i {
  color: #26A7DF;
}
.services .icon-box:hover .title a {
  color: #26A7DF;
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

.section-title .servi{
  margin: 30px 0 30px 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  background: linear-gradient(70deg, #20c3f5, #0057D6);
  color: #fff;
  box-shadow: 0 3px 7px rgba(38, 167, 223, 0.4);
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .subtitulo{
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: normal;
}
.contact .info-box {
  color: #313030;
  box-shadow: 2px 3px 3px 3px rgb(0 0 0 / 10%);
  padding: 20px;
  border-radius: 5px;
}
.contact .info-box ion-icon {
  font-size: 32px;
  color: #fff;
  background: #20c3f5;
  border-radius: 50%;
  padding: 8px;
  float: left;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #656262;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}
.contact .php-email-form {
  box-shadow: 2px 3px 3px 3px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 5px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #20c3f5;
  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 input:focus, .contact .php-email-form textarea:focus {
  border-color: #20c3f5;
}
/* .contact .php-email-form input {
  padding: 10px 15px;
} */

.contact .php-email-form button[type=submit] {
  background: linear-gradient(70deg, #20c3f5, #0057D6);
  border-radius: 5px;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 7px rgba(38, 167, 223, 0.4);
  transition: 0.3s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #fff;
  color: #000;
  border: 1px solid #20c3f5;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nav-pills .nav-link {
  background: #fff;
  color: #20c3f5;
  border: 2px solid #20c3f5;
  border-radius: 10px;
  padding: 10px;
  margin: 5px;
  font-weight: 600;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background: #20c3f5;
  color: #fff;
  border: 2px solid #20c3f5;
  border-radius: 10px;
  font-weight: 600;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #21262c;
  margin-top: 35px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #21262c;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links .inicio {
  font-size: 16px;
  font-weight: 500;
  color: #acacac;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  border-right: 2px solid white;
  padding-right: 10px;
  margin-right: 4px;
}
#footer .footer-top .footer-links .planes {
  font-size: 16px;
  font-weight: 500;
  color: #acacac;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  border-right: 2px solid white;
  padding-right: 10px;
  margin-right: 4px;
}
#footer .footer-top .footer-links .servicios {
  font-size: 16px;
  font-weight: 500;
  color: #acacac;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  border-right: 2px solid white;
  padding-right: 10px;
  margin-right: 4px;
}
#footer .footer-top .footer-links .contratar {
  font-size: 16px;
  font-weight: 500;
  color: #acacac;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links a img {
  width: 15%;
}

@media (max-width: 480px) {
  #footer .footer-top .footer-links a img {
    min-width: 50%;
  }
}

#footer .footer-top .footer-links a:hover {
  text-decoration: none;
  color: #21c0ff;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #c4c4c4;
}
#footer .social-links a {
  font-size: 25px;
  display: inline-block;
  background:#20c3f5;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 45px;
  height: 45px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #26A7DF;
  color: #fff;
  text-decoration: none;
}

#lightSwitch {
  transform: scale(1.8);
}