/**
* Template Name: Maxim
* Template URL: https://bootstrapmade.com/maxim-free-onepage-bootstrap-theme/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'Qwenzy';
  src: url('qwenzy.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Black';
  src: url('jost/Jost-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Bold';
  src: url('jost/Jost-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-ExtraLight';
  src: url('jost/Jost-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Light';
  src: url('jost/Jost-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Medium';
  src: url('jost/Jost-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Regular';
  src: url('jost/Jost-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Thin';
  src: url('jost/Jost-Thin.ttf') format('truetype');
}

body {
  font-family: "Jost-Regular", serif;
  color: #444444;
  background: url("../img/fondo_mov.jpg") center center;
  background-size: cover;
}


a {
  color: #01215A;
  text-decoration: none;
}

a:hover {
  color: #0d46a8;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgba(1, 33, 90, 0.90);
  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: rgba(1, 34, 90, 0.952);
  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;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*height: 70px; */
  transition: all 0.5s;
  z-index: 997;
  background: rgba(1, 33, 90, 0.90);
  border-radius: 50px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  max-height: 120px;
}

@media (max-width: 570px) {
  #header .logo img {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
  }
}

@media (min-width: 520px) {
  #header .logo img {
    margin-left: 60px;
  }
	
  #navbar {
    margin-right: 60px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

@media (max-width: 576px) {
    .navbar {
      margin-right: 0px;
    }
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #062822;
}

.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: #1bac91;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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: rgba(16, 31, 29, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li+li {
  margin: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 20px 20px;
  font-size: 17px;
  color: #21413c;
  font-weight: 600;
}

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

.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: #1bac91;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh);
  background: url("../img/front-page.png") center center;
  background-size: cover;
  position: relative;
  margin-top: 0px;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 300px 0 10px 0;
  font-size: 100px;
  font-weight: 200;
  line-height: 96px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
  margin-top: 40px;
  line-height: 36px;
  font-family: "Jost-Regular", serif;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 12px;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s;
  border-top: 0px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

#hero hr {
  color: #fff; 
  margin-left: 47%; 
  margin-right: 47%;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-top: 0px;
    height: calc(100vh);
    background: url("../img/portada_irys.jpg") center center;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 60px;
    line-height: 75px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 600;
  }
}

@media (max-width: 368px) {
  #hero h1 {
    font-size: 55px;
    line-height: 75px;
    margin: 0px 0 10px 0;
  }
}


/*--------------------------------------------------------------
# Hero General Section
--------------------------------------------------------------*/
#hero-general {
  width: 100%;
  height: calc(100vh);
  background: url("../img/front-page.png") center center;
  background-size: cover;
  position: relative;
  margin-top: 0px;
  padding: 0;
}

#hero-general:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-general .container {
  z-index: 2;
}

#hero-general h2 {
  margin: 0px 0 10px 0;
  font-size: 100px;
  font-weight: 200;
  line-height: 96px;
  color: #fff;
}

#hero-general h1 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
  margin-top: 40px;
  line-height: 36px;
  font-family: "Jost-Regular", serif;
}

#hero-general .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 12px;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s;
  border-top: 0px solid #fff;
  color: #fff;
}

#hero-general .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

#hero-general hr {
  color: #fff; 
  margin-left: 47%; 
  margin-right: 47%;
}

@media (min-width: 1024px) {
  #hero-general {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero-general {
    margin-top: 0px;
    height: calc(100vh);
    background: url("../img/portada_irys.jpg") center center;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  #hero-general h2 {
    font-size: 60px;
    line-height: 75px;
  }

  #hero-general h1 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 600;
  }
}

@media (max-width: 368px) {
  #hero-general h2 {
    font-size: 55px;
    line-height: 75px;
    margin: 0px 0 10px 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-title h2 {
  font-size: 50px;
  font-weight: 200;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 420px) {
  .section-title h2 {
    font-size: 36px;
    padding-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  /*
  background: 
        radial-gradient(circle at top right, #F9D6DA, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at bottom left, #F9D6DA, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at bottom right, #DCD4F7, rgba(255, 255, 255, 0) 30%);
  */
  
  padding-left: 55px;
  padding-right: 55px;
}

.about h2 {
  font-weight: 200;
  font-size: 50px;
  padding-bottom: 30px;
  color: #01215A;
}

@media (max-width: 368px) {
  .about h2 {
    font-size: 36px;
    padding-bottom: 10px;
  }
}

.about .icon-box {
  margin-top: 44px;
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #01215A;
}

.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #01215A;
}

.about .icon-box p {
  font-size: 15px;
  color: #01215A;
  margin-left: 60px;
}

.about span {
  font-weight: 400;
  font-size: 22px;
  color: #CBA85B;
}

.about hr {
  margin-right: 55%;
  height: 4px; /* Cambiar al grosor deseado */
  border: none; /* Para eliminar el borde predeterminado */
  background-color: #CBA85B; /* Cambiar el color de fondo si es necesario */
}

.about p {
  font-size: 15px;
  color: #01215A;
  text-align: left;
  line-height: 1.5;
}

.about .description {
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 520px) {
  .about p {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .about .description {
    text-align: center;
  }

  .about hr {
    margin-right: 35%;
    margin-left: 35%;
  }
}

@media (min-width: 992px) {
  .about .description {
    padding-left: 50px;
  }
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 50px 0 40px 0;
}

.steps .row {
  overflow: hidden;
}

.steps .content-item {
  padding: 40px;
  border-left: 1px solid #d4e9e6;
  border-bottom: 1px solid #d4e9e6;
  margin: -1px;
}

.steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #1bac91;
}

.steps .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #21413c;
}

.steps .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .steps .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #21413c;
}

.features .nav-link:hover {
  color: #1bac91;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link.active {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-link.active h4 {
  color: #1bac91;
}

.features .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/



.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  line-height: 1.5;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services p {
  color: #01215A;
}

.services hr {
  color: #01215a; 
  margin-left: 47%; 
  margin-right: 47%;
}

.services span {
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 12px;
}

.services h3 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
}

@media (max-width: 368px) {
  .services h3 {
    font-size: 30px;
  }
}

.services .prices-main {
  font-size: 35px;
  font-weight: 700;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  margin-top: 10%;
}

.services .prices-secundary {
  font-size: 15px;
  font-weight: 200;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  margin-top: -18%;
}

@media (max-width: 575px) {
  .services .prices-secundary {
    margin-top: 0px;
  }
}

.services .description-right {
  text-align: right;
  padding-left: 50px;
}

.services .description-left {
  text-align: left;
}

#services-description-left {
  float: right;
  padding-right: 70px;
}

#services-description-right {
  padding-left: 70px;
}

@media (max-width: 768px) {
  #services-description-left {
    float: left;
    padding-right: 0px;
    padding-left: 55px;
  }
  
  #services-description-right {
    padding-left: 55px;
    padding-top: 50px;
  }
}

@media (max-width: 368px) {
  #services-description-left {
    padding-left: 20px;
  }
  
  #services-description-right {
    padding-left: 20px;
  }
}

#services-description-left > h4 {
  font-family: "Jost-Regular", serif;
  color: #1C7CD6;
}

#services-description-right > h4 {
  font-family: "Jost-Regular", serif;
  color: #EB920C;
}

#services-description-left > label, #services-description-right > label {
  padding-top: 25px;
  color: #000;
}

#services-call-info {
  background-image: linear-gradient(to right, #CCAA5F, #01215A);
  padding: 25px;
  padding-left: 200px;
  padding-right: 200px;
  border-radius: 50px;
  font-weight: bold; 
  color: #FFFFFF;
}

@media (max-width: 768px) {
  #services-call-info {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 520px) {
  #services-call-info {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 410px) {
  #services-call-info {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .services .description-right {
    text-align: justify;
    margin-top: -40px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .services .description-right img {
    padding-bottom: 20px;
  }
  
  .services .description-left {
    text-align: justify;
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .services .description-left img {
    padding-bottom: 20px;
  }

  #services {
    margin-top: -60px;
  }
}

@media (min-width: 1201px) {
  .services .description-left {
    padding-left: 50px;
    padding-right: 120px;
    margin-top: auto;
    margin-bottom: auto;
  }

  img.description {
    padding-left: 100px;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .services .description-left {
    padding-left: 150px;
    padding-right: 150px;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
  }

  img.description {
    padding: 0px;
    padding-bottom: 50px;
    width: 50%;
  }
}

@media (max-width: 520px) {
  .services .description-left {
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 20px;
  }

  img.description {
    padding: 0px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  #services > div:nth-child(1) > div:nth-child(1) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Procedure
--------------------------------------------------------------*/

#procedure-hero {
  width: 80%;
  height: calc(80vh);
  max-height: 350px;
  background: url("../img/procedures/procedure-hero.png") center center;
  background-size: cover;
  position: relative;
  margin-top: 0px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

#procedure-hero h3 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #FFFFFF;
}

@media (max-width: 478px){
  #procedure-hero h3 {
    font-size: 35px;
  }
}

@media (min-width: 479px) and (max-width: 768px){
  #procedure-hero h3 {
    font-size: 45px;
  }
}

@media (min-width: 769px){
  #procedure-hero h3 {
    font-size: 55px;
  }
}

#procedure h2 {
  font-weight: 200;
  font-size: 28px;
  padding-bottom: 30px;
  padding-top: 30px;
  color: #01215A;
}

#procedure p {
  font-size: 15px;
  color: #000000;
  text-align: justify;
  line-height: 1.5;
}

@media (max-width: 520px) {
  #procedure p {
    text-align: center;
  }

  #procedure h2 {
    text-align: center;
  }
}

#procedure div.description.left {
  padding: 60px;
  /*border*/
  border-top: 2px solid #0B337A;
  border-right: 2px solid #0B337A;
  border-bottom: 2px solid #0B337A;
  border-left: 2px solid #0B337A;
  border-bottom-left-radius: 100px; 
  border-top-right-radius: 100px; 
  border-bottom-right-radius: 100px; 
  margin-right: 30px;
  margin-left: auto;
}

#procedure div.description.right {
  padding: 60px;
  /*border*/
  border-top: 2px solid #0B337A;
  border-right: 2px solid #0B337A;
  border-bottom: 2px solid #0B337A;
  border-left: 2px solid #0B337A;
  border-top-left-radius: 100px; 
  border-top-right-radius: 100px; 
  border-bottom-right-radius: 100px;
  margin-left: 30px;
  margin-right: auto;
}

#procedure div.description.center {
  padding: 60px;
  margin-top: 50px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  /*border*/
  border-top: 2px solid #0B337A;
  border-right: 2px solid #0B337A;
  border-bottom: 2px solid #0B337A;
  border-left: 2px solid #0B337A;
  border-bottom-left-radius: 100px; 
  border-top-right-radius: 100px; 
  border-bottom-right-radius: 100px; 
}

#procedure-button-info {
  background-color: #01215A;
  padding: 25px;
  padding-left: 200px;
  padding-right: 200px;
  border-radius: 50px;
  font-weight: bold; 
  color: #FFFFFF;
  display: inline-block;
}

@media (max-width: 992px) {
  #procedure div.description.left {
    padding: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  #procedure div.description.right {
    padding: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  #procedure div.description.center {
    padding: 30px;
  }

  #procedure h2 {
    font-size: 28px;
  }

  #procedure-button-info {
    padding: 25px;
    padding-left: 50px;
    padding-right: 50px;
  }
}



/*--------------------------------------------------------------
# Disqualify
--------------------------------------------------------------*/
#disqualify {
  padding-left: 55px;
  padding-right: 55px;
}

@media (max-width: 420px) {
  #disqualify {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.disqualify .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.disqualify .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.disqualify .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.disqualify .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.disqualify .title a {
  color: #111;
}

.disqualify .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  line-height: 1.5;
}

.disqualify .icon-box-pink .icon i {
  color: #ff689b;
}

.disqualify .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.disqualify .icon-box-green .icon i {
  color: #41cf2e;
}

.disqualify .icon-box-blue .icon i {
  color: #2282ff;
}

.disqualify p {
  color: #01215A;
}

.disqualify hr {
  color: #01215a; 
  margin-left: 47%; 
  margin-right: 47%;
}

.disqualify span {
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 12px;
}

.disqualify h3 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
}

.disqualify .prices-main {
  font-size: 35px;
  font-weight: 200;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  margin-top: 10%;
}

.disqualify .prices-secundary {
  font-size: 15px;
  font-weight: 200;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  margin-top: -18%;
}

@media (min-width: 768px) {
  .disqualify .disqualify-col {
    display: inline-flex;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .disqualify img {
    max-height: 200px;
  }
}

@media (max-width: 991px) {
  #disqualify {
    margin-top: -60px;
  }
}


/*--------------------------------------------------------------
# Follow
--------------------------------------------------------------*/
#follow {
  /*
  background: 
        radial-gradient(circle at top right, #fef8f8, rgba(255, 255, 255, 0) 90%),
        radial-gradient(circle at top left, #f2effc, rgba(255, 255, 255, 0) 90%);
  */
}


.follow .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.follow .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.follow .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.follow .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.follow .title a {
  color: #111;
}

.follow .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.follow .icon-box-pink .icon i {
  color: #ff689b;
}

.follow .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.follow .icon-box-green .icon i {
  color: #41cf2e;
}

.follow .icon-box-blue .icon i {
  color: #2282ff;
}

.follow p {
  color: #01215A;
}

.follow hr {
  color: #01215a; 
  margin-left: 47%; 
  margin-right: 47%;
}

#follow > div:nth-child(1) > div:nth-child(1) > span:nth-child(3) {
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 12px;
}

.follow h3 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #01215A;
}

.follow .prices-main {
  font-size: 35px;
  font-weight: 200;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  margin-top: 10%;
}

.follow .prices-secundary {
  font-size: 15px;
  font-weight: 200;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  margin-top: -18%;
}

@media (min-width: 768px) {
  .follow .disqualify-col {
    display: inline-flex;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .follow img {
    max-height: 200px;
  }
}

@media (max-width: 991px) {
  #follow {
    margin-top: -60px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials {
  /*
  background: 
        radial-gradient(circle at top right, #fefbfb, rgba(255, 255, 255, 0) 70%),
        radial-gradient(circle at top left, #f7f5fd, rgba(255, 255, 255, 0) 70%);
  */
}



.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
  background-color: #E4EDFF;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-right-radius: 40px;
  
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #a8d3cc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.swiper-button-next,
.swiper-button-prev {
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
}
.swiper-button-next {
    background-image: url('../img/arrow-right-circle.png');
}
.swiper-button-prev {
    background-image: url('../img/arrow-left-circle.png');
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;  /* Ocultar los iconos predeterminados */
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bac91;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bac91;
}

#testimonials > div:nth-child(1) > div:nth-child(1) > span:nth-child(3) {
  font-size: 15px;
  font-weight: 200;
  color: #01215A;
  margin-bottom: 20px;
  padding-bottom: 0;
  letter-spacing: 12px;
}

.testimonials hr {
  color: #01215a; 
  margin-left: 47%; 
  margin-right: 47%;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #1bac91;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4ae3c6;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bac91;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bac91;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #1bac91;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #97cac2;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1bac91;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
  padding: 30px;
  width: 100%;
}

#contact-hero {
  width: 100%;
  height: calc(80vh);
  max-height: 350px;
  background: url("../img/contact.png") center center;
  background-size: cover;
  position: relative;
  margin-top: 0px;
  padding: 0;
}

@media (max-width: 478px){
  #contact-hero {
    border-radius: 0px;
  }
}

.contact .info i {
  font-size: 20px;
  color: #1bac91;
  float: left;
  width: 44px;
  height: 44px;
  background: #e1f0ee;
  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 0;
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 20px;
  color: #01215A;
}

.contact .info p {
  padding: 0 0 0 0;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 16px;
  color: #01215A;
  font-weight: 700;
}

.contact .info span {
  padding: 0 0 0 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #01215AA3;
}

.contact .info span {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 35px;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  line-height: 2;
}

.contact .info h3 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #FFFFFF;
}

.contact .info hr {
  margin-right: 40%;
  margin-left: 40%;
  margin-top: 40px;
  margin-bottom: 40px;
  height: 4px; /* Cambiar al grosor deseado */
  border: none; /* Para eliminar el borde predeterminado */
  background-color: #01215A; /* Cambiar el color de fondo si es necesario */
}

#contact-hero h4 {
  padding: 0 0 0 0;
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 20px;
  color: #01215A;
}

#contact-hero p {
  padding: 0 0 0 0;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 16px;
  color: #01215A;
  font-weight: 700;
}

#contact-hero span {
  padding: 0 0 0 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #01215AA3;
}

#contact-hero span {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 35px;
  padding-bottom: 0;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 2;
}

#contact-hero h3 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #FFFFFF;
}

#secction-contact {
  background-color: #fff; 
  margin-left: 47%; 
  margin-right: 47%;
  height: 4px; /* Cambiar al grosor deseado */
  border: none; /* Para eliminar el borde predeterminado */
}

#contact-hero hr {
  margin-right: 40%;
  margin-left: 40%;
  margin-top: 40px;
  margin-bottom: 40px;
  height: 4px; /* Cambiar al grosor deseado */
  border: none; /* Para eliminar el borde predeterminado */
  background-color: #ffffff; /* Cambiar el color de fondo si es necesario */
}

.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: #333;
  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: #1bac91;
  color: #fff;
}

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

.contact .php-email-form {
  width: 100%;
  padding: 30px;
}

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

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 20;
  box-shadow: none;
  font-size: 14px;
  border-color: #01215A;
  border-width: 2px;
}

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

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

.contact .php-email-form label {
  padding-bottom: 15px;
  font-weight: 600;
  color: #01215A;
}

.contact .php-email-form button[type=submit] {
  background: #01215A;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 45px;
}

@media (min-width: 368px) { 
  .contact .php-email-form button[type=submit] {
    width: 200px;
  }
}

.contact .php-email-form button[type=submit]:hover {
  background: #22d8b6;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.contact span {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 35px;
  padding-bottom: 0;
  color: #01215A;
  letter-spacing: 1px;
  line-height: 2;
}

.contact h3 {
  font-size: 55px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #FFFFFF;
}

@media (min-width: 1200px) {
  #contact-text {
    margin-bottom: -330px;
    margin-top: 100px;
  }
}

@media (max-width: 1200px) {
  #contact-text {
    margin-bottom: -260px;
    margin-top: 0px;
  }
}

@media (max-width: 990px) {
  #contact-text {
    margin-bottom: -230px;
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  #contact-text {
    margin-bottom: -150px;
    margin-top: 0px;
  }

  .contact span {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .contact h3 {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 637px) {
  #contact-text {
    margin-bottom: -150px;
    margin-top: 0px;
  }

  .contact span {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .contact h3 {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 636px) {
  #contact-text {
    margin-bottom: -150px;
    margin-top: 0px;
  }

  .contact span {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .contact h3 {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 574px) {
  #contact-text {
    margin-bottom: -130px;
    margin-top: 0px;
  }

  .contact span {
    font-size: 12px;
    margin-bottom: 18px;
  }
  
  .contact h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 510px) {
  #contact-text {
    margin-bottom: -130px;
    margin-top: 0px;
  }

  .contact span {
    font-size: 10px;
    margin-bottom: 18px;
  }
  
  .contact h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 478px) {
  #contact-text {
    margin-bottom: -150px;
    margin-top: 0px;
  }

  .contact span {
    font-size: 10px;
    
  }
  
  .contact h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 478px){
  #contact-hero h3 {
    font-size: 30px;
  }

  #contact-hero span {
    font-size: 12px;
  }

  #contact-hero hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 479px) and (max-width: 768px){
  #contact-hero h3 {
    font-size: 45px;
  }

  #contact-hero span {
    font-size: 14px;
  }

  #contact-hero hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
}

@media (min-width: 769px){
  #contact-hero h3 {
    font-size: 55px;
  }

  #contact-hero span {
    font-size: 18px;
  }

  #contact-hero hr {
    margin-top: 30px;
    margin-bottom: 30px;
  }

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #01215a;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #01215A;
  border-bottom: 1px solid #01215A;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1c373300;
  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: #01184100;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 30px;
  font-weight: 200;
  color: #fff;
  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: #4ae3c6;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 2;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffffff;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1bac91;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #fafafa;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .footer-top .footer-links .footer-img {
  padding: 15px;
}

@media (max-width: 575px){
  #footer {
    text-align: center;
  }

  #footer .footer-top .footer-links ul li {
    display: flow-root;
  }
}

/*--------------------------------------------------------------
# Formularios
--------------------------------------------------------------*/

#wpforms-58 .wpforms-field-label, #wpforms-160 .wpforms-field-label  {
  font-weight: 600;
  color: #01215A;
}

#wpforms-58 .wpforms-field-large,
#wpforms-58 .wpforms-field-medium, #wpforms-160 .wpforms-field-large,
#wpforms-160 .wpforms-field-medium {
  box-shadow: none;
  font-size: 14px;
  border-color: #01215A;
  border-width: 2px;
  background-color: #0ff0;
}

.wpforms-submit-container {
  text-align: center;
}

#wpforms-submit-58, #wpforms-submit-160 {
  background: #01215A;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 45px;
}

@media (min-width: 368px) {
  #wpforms-submit-58, #wpforms-submit-160 {
    width: 200px;
  }
}

@media (max-width: 576px) {
  #wpforms-58-field_1-container, #wpforms-160-field_1-container {
    width: 85%;
    padding-left: 15px;
  }

  #wpforms-58-field_2-container, #wpforms-160-field_2-container {
    width: 80%;
  }

  #wpforms-58-field_3-container, #wpforms-160-field_3-container {
    width: 80%;
  }
}

/*Fondo de pagina*/
/*
@media (min-width: 1200px) {
  #about {
    background: 
          radial-gradient(circle at top left, #F9D6DA, rgba(255, 255, 255, 0) 30%),
          radial-gradient(circle at center bottom , #f2effc, rgba(255, 255, 255, 0) 40%);
  }

  #services {
    background: 
          radial-gradient(circle at center top , #f2effc, rgba(255, 255, 255, 0) 40%);
  }

  #disqualify {
    background: 
          radial-gradient(circle at top right, #F9D6DA, rgba(255, 255, 255, 0) 70%),
          radial-gradient(circle at top left, #DCD4F7, rgba(255, 255, 255, 0) 90%);
  }

  #follow {
    background: 
          radial-gradient(circle at top right, #fef8f8, rgba(255, 255, 255, 0) 90%),
          radial-gradient(circle at top left, #f2effc, rgba(255, 255, 255, 0) 90%);
  }

  #testimonials {
    background: 
          radial-gradient(circle at top right, #fefbfb, rgba(255, 255, 255, 0) 70%),
          radial-gradient(circle at top left, #f7f5fd, rgba(255, 255, 255, 0) 70%);
  }

  #contact {
    background: 
          radial-gradient(circle at bottom right, #f3dede, rgba(253, 247, 247, 0) 60%),
          radial-gradient(circle at bottom left, #e2daf7, rgba(247, 233, 233, 0) 60%);
  }
}


@media (max-width: 1199px) {
  #about {
    background: 
          radial-gradient(circle at top right, #F9D6DA, rgba(255, 255, 255, 0) 30%);
          radial-gradient(circle at bottom left, #F9D6DA, rgba(255, 255, 255, 0) 30%),
          radial-gradient(circle at bottom right, #DCD4F7, rgba(255, 255, 255, 0) 30%);
  }

  #services {
    background: 
          radial-gradient(circle at bottom left, #DCD4F7, rgba(255, 255, 255, 0) 30%),
          radial-gradient(circle at bottom right, #F9D6DA, rgba(255, 255, 255, 0) 30%),
          radial-gradient(circle at top left, #F9D6DA, rgba(255, 255, 255, 0) 10%),
          radial-gradient(circle at top right, #DCD4F7, rgba(255, 255, 255, 0) 10%),
          radial-gradient(circle at center left, #DCD4F7, rgba(255, 255, 255, 0) 20%),
          radial-gradient(circle at center right, #F9D6DA, rgba(255, 255, 255, 0) 50%);
  }

  #disqualify {
    background: 
          radial-gradient(circle at top right, #F9D6DA, rgba(255, 255, 255, 0) 70%),
          radial-gradient(circle at top left, #DCD4F7, rgba(255, 255, 255, 0) 90%);
  }

  #follow {
    background: 
          radial-gradient(circle at top right, #fef8f8, rgba(255, 255, 255, 0) 90%),
          radial-gradient(circle at top left, #f2effc, rgba(255, 255, 255, 0) 90%);
  }

  #testimonials {
    background: 
          radial-gradient(circle at top right, #fefbfb, rgba(255, 255, 255, 0) 70%),
          radial-gradient(circle at top left, #f7f5fd, rgba(255, 255, 255, 0) 70%);
  }

  #contact {
    background: 
          radial-gradient(circle at bottom right, #f3dede, rgba(253, 247, 247, 0) 60%),
          radial-gradient(circle at bottom left, #e2daf7, rgba(247, 233, 233, 0) 60%);
  }
}
*/

