/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
 
@import url('https://fonts.googleapis.com/css2?family=Aladin&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {

  --bs-white: #fff;
  --bs-naranja: #DD6031;
  --bs-verde: #018E42;
  --bs-rosa: #CB4DA1;
  --bs-rosa-claro: #FFB5F2;
  --bs-celeste: #42BFDD;
  --bs-mostaza: #DFAA02;
  --bs-fondo: #F9F7F4;
  --texto: #333333;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--texto);
}


a {
  color: var(--bs-celeste);
  text-decoration: none;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', sans-serif;
  color: var(--bs-rosa);
}

h1, h2 {
  font-family: 'Aladin', "Jost", sans-serif;
  letter-spacing: 2px;
}

p, a, span, div{
  font-family: 'Jost', sans-serif;
}

p{
  font-size: 1.2rem;
  text-align: justify;
  color: var(--texto);
}

ul{
  list-style: none;
  text-align: left;
}

/*--------------------------------------------------------------
# coleres de textos
--------------------------------------------------------------*/
.mostaza{
  color: var(--bs-mostaza);
}

.verde{
  color: var(--bs-verde);
}

.naranja{
  color: var(--bs-naranja);
}

.fondo-naranja{
  background-color: var(--bs-naranja)!important;
}

.celeste{
  color: var(--bs-celeste);
}

.rosa{
  color: var(--bs-rosa);
}

.fondo-rosa{
  background-color: var(--bs-rosa)!important;
}


.rosa-claro{
  color: var(--bs-rosa-claro);
}


/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/

.btn-primary:visited{
  background-color: var(--bs-naranja);
  border:  1px solid var(--bs-naranja);
}

.btn-primary{
  background-color: var(--bs-naranja);
  border:  1px solid var(--bs-naranja);
}

.btn-primary:hover{
  background-color: var(--bs-verde);
  border:  1px solid var(--bs-verde);
}


.btn-secondary:visited{
  background-color: white;
  border: 1px solid var(--bs-verde);
  color: var(--bs-verde);
}

.btn-secondary{
  background-color: white;
  border: 1px solid var(--bs-verde);
  color: var(--bs-verde);
}


.btn-secondary:hover{
  background-color: var(--bs-verde);
  border: 1px solid var(--bs-verde);
  color: white;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--bs-celeste);
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -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 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--bs-celeste);
  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: #5ec6ca;
  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: #ffffff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
  height: 120px;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar h1{
  color: var(--texto);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}


#topbar p{
  color: var(--texto);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.titulo-top{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.titulo-top p{
  color: var(--texto);
  font-size: 1.2rem;
  font-weight: 400;

}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

#topbar a img {
  width: 100px;
}

@media screen and (max-width: 992px) {
  #topbar {
  height: 150px;
  padding: 20px 0;
}
  #topbar .logo {
  margin-bottom: 0.5rem;
}
  
  #topbar.topbar-scrolled {
  top: -200px;
}

}

@media screen and (max-width: 768px) {
  #topbar {
  height: 180px;
  }
  #topbar div{
    display: flex;
  }

}

@media screen and (max-width: 576px) {
  #topbar {
  height: 300px;
  padding: 20px 0;
}
  #topbar p{
  text-align: center;
}
  .titulo-top{
   text-align: center;
  }
  #topbar.topbar-scrolled {
  top: -300px;
}
}

@media screen and (max-width: 300px) {
  #topbar {
  height: 400px;
  padding: 20px 0;
}
  #topbar p{
  text-align: center;
}
  .titulo-top{
   text-align: center;
  }
  #topbar.topbar-scrolled {
  top: -200px;
}

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  padding: 0px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: static;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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


/*--------------------------------------------------------------
# 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;
  margin: 0 5px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: #626262;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 700;
}

/**
* borde menu 
*/

.navbar li:nth-child(1) a {
  border-bottom: 4px var(--bs-mostaza) solid;
}

.navbar li:nth-child(2) a {
  border-bottom: 4px var(--bs-verde) solid;
}

.navbar li:nth-child(3) a {
  border-bottom: 4px var(--bs-naranja) solid;
}

.navbar li:nth-child(4) a {
  border-bottom: 4px var(--bs-rosa) solid;
}

.navbar li:nth-child(5) a {
  border-bottom: 4px var(--bs-celeste) solid;
}

.navbar li:nth-child(6) a {
  border-bottom: 4px var(--bs-rosa-claro) solid;
}


/**
* hover menu 
*/

.navbar li:nth-child(1) a:hover {
  color: var(--bs-mostaza);
}

.navbar li:nth-child(2) a:hover {
  color: var(--bs-verde);
}

.navbar li:nth-child(3) a:hover {
  color: var(--bs-naranja);
}

.navbar li:nth-child(4) a:hover {
  color: var(--bs-rosa);
}

.navbar li:nth-child(5) a:hover {
  color: var(--bs-celeste);
}

.navbar li:nth-child(6) a:hover {
  color: var(--bs-rosa-claro);
}


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

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: var(--bs-white);
}

.navbar .active{
  padding: 25px 15px 25px 15px;
}


.navbar .cursos-gratis{
  background-color: var(--bs-verde);
  color: var(--bs-white);
}

.navbar .como-funciona{
  background-color: var(--bs-mostaza);
  color: var(--bs-white);
}

.navbar .capacitaciones{
  background-color: var(--bs-naranja);
  color: var(--bs-white);
}            

.navbar .diplomas{
  background-color: var(--bs-rosa);
  color: var(--bs-white);
}

.navbar .servicios{
  background-color: var(--bs-celeste);
  color: var(--bs-white);
}

.navbar .consultas{
  background-color: var(--bs-rosa-claro);
  color: var(--bs-white);
}

.navbar .active:hover{
  color: var(--bs-white);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 18px;
  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;
  text-transform: none;
}

.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: var(--bs-celeste);
}

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

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--bs-celeste);
}

.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: var(--bs-celeste);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  margin-top: 100px;
  width: 100%;
  height: 500px;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#hero .container {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 5rem;
  
}

#hero h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  text-align: center;
}

.carousel-text h2 {
  font-size: 3.5rem!important;
  text-align: center;
}

#hero p {
  margin: 0 auto 30px auto;
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: var(--bs-celeste);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--bs-celeste);
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: var(--bs-celeste);
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 1080px) {

  #hero {
    height: 500px;
    margin-top: 100px;
  }

  #hero p {
    font-size: 1.5rem;
}

  .hero-capacitaciones, 
  .hero-como-funciona, 
  .hero-servicios, 
  .hero-consultas, 
  .hero-diplomas {
    height: 180px!important;
  }

  #hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 2rem;
  }

  #hero .container {
    margin-left: 0px;
    margin-right: 0px;
    padding: 20px 0 0 50px ;
  }

  #hero .carousel-item img{
    width: 350px;
  }
}

@media screen and (max-width: 992px) {
 #hero {
  margin-top: 150px;
  height: 450px;
 }

 #hero .container {
    margin-left: 0px;
    margin-right: 0px;
    padding: 20px 20px 0 0px ;
  }

 #hero h2 {
    font-size: 30px;
    margin-bottom: 0rem;
    padding-left: 15%;
  }
  #hero p{
    padding-left: 15%;
  }
}

@media screen and (max-width: 880px) {
 
 #hero h2 {
    font-size: 30px;
    margin-bottom: 0rem;
    padding-left: 10%;
  }

  #hero p {
    padding-left: 10%;
}
}

@media screen and (max-width: 768px) {
  #hero {
  margin-top: 180px;
  height: 500px;
  }

  #hero h2 {
    font-size: 28px;
    padding-left: 20%;
  }

  #hero p{
    padding-left: 20%;
  }

  .navbar li {
    position: relative;
    margin: 0 5px;
    margin-bottom: 1rem;
  }
  #hero .carousel-item img{
    width: 400px;
  }
}

@media screen and (max-width: 650px) {
  #hero h2 {
    font-size: 28px;
    padding-left: 10%;
  }

  #hero p{
    padding-left: 10%;
  }
}

@media screen and (max-width: 576px) {
  #hero {
  margin-top: 300px;
 }
}

@media screen and (max-width: 500px) {
  #hero h2 {
    font-size: 28px;
    padding-left: 10px;
  }

  #hero p{
    padding-left: 10px;
    font-size: 22px;
  }
}

@media screen and (max-width: 300px) {
  #hero {
    margin-top: 400px;
   }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0 60px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 20px;
  margin: 0 auto;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
  position: relative;
}


.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-celeste);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title h3 {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: left;
}


.section-title p {
  margin-bottom: 1rem;
  text-align: left;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: var(--bs-celeste);
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--bs-celeste);
  transition: all 0.3s ease-in-out;
}

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

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

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

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--bs-celeste);
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--bs-white);
}

.cta-capacitaciones h2{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--texto);
  font-family: "Jost", sans-serif;
}

.cta-capacitaciones h3 {
  font-weight: 700;
  color: #fffbbb;
  font-family: "Jost", sans-serif;
}

.cta-capacitaciones h3 strong {
  font-weight: 700;
  color: var(--bs-fondo);
  font-family: "Jost", sans-serif;
}


.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: var(--bs-celeste);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--bs-celeste);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.diplomas{
  padding-top: 0;
}

.diplomas div{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.diplomas .carnet{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}

.diplomas div img{
  width: 500px;
  margin-bottom: 1rem;
}

.aclaracion{
  padding-top: 3rem;
}

/*********************************
Formas de pago
*********************************/
.opciones-argentina{
  display: flex;
    flex-direction: column;
    align-items: center;
}

.botoncompra{
    margin-top: 4em;
}
.botoncompra2 .opciones li:first-child {
  margin-right: 2rem;
}

.botoncompra1 .opciones li a {
    width: 13em;
    text-align: center;
}

.botoncompra2.ba{
    margin-top: 2em;
    text-align: center;
}

.botoncompra2{
    margin-top: 1em;
    text-align: center;
}

.botoncompra2 .bold-t{
    font-weight: 700;
}

.botoncompra2 .btn-buy form input[type=image]{
  margin-top: 1.5rem;
}

.botoncompra2 .btn-buy, .botoncompra2 .btn-buy-link{
  background-color: transparent;
    border: 3px solid #77bb00;
    height: 6em;
    width: 16.5em;
    display: inline-block;
    font-size: 20px;
    color: var(--texto);
    font-weight: 700;
}

.botoncompra2 .btn-buy:hover, .botoncompra2 .btn-buy-link:hover {
    background: transparent;
    text-decoration: none;
    border: 8px solid #007700;
}

.btn-buy-link{
  padding-top: 2.5rem;
}

.opciones{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    padding-left: 0;
}



.opciones li a {
  width: 16.5em;
  text-align: center;
}

#precio{
  padding-inline-start: 0px;
}
#precio2{
  padding-inline-start: 0px;
  margin-bottom: 1rem;
}

.tab_panel_faq
{
  margin-top: 51px;
}
.elements_accordions
{
  margin-top: 34px;
}
.accordion_container:not(:last-child)
{
  margin-bottom: 12px;
}
.accordion
{
  width: 100%;
  cursor: auto;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.accordion div
{
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  color: #7C3CAA;
}

.linea{
  padding-bottom: 1em;
  border-bottom: 1px solid #76777a;
}

button:focus {
    outline: 1px dotted;
    outline: none!important;
}

#transferencia .card-body {
   border-top: 1px solid rgba(0,0,0,.125);
   padding-top: 2em;
}

#transferencia .btn-buy {
    background-color: transparent;
    border: 3px
    solid #77bb00;
    height: 6em;
}

#transferencia .opciones li button {
    width: 16.5em;
    text-align: center;
}

#transferencia a {
    text-align: center;
}

.western-union-top {
  margin-top: 4em;
}

.tab_panel_text {
    margin-bottom: 2em;
    margin-top: 2rem;
    background-color: #ffb296;
    padding: 2rem;
}
.accordion .tab_panel_subtitle{
  margin-bottom: 1em;
}
.accordion .card {
  padding-bottom: 0.5em;
}

.accordion .btn-learn-more{
  margin-top: 0;
    font-size: 16PX;
    font-weight: 500;
    height: 50px;
    border-radius: 0;
    border: 1px solid #7C3CAA;
}

.btn-link.focus, .btn-link:focus {
    text-decoration: none;
}

#headingTwo .btn-learn-more{
  margin-top: 0;
    font-size: 16PX;
    font-weight: 500;
    height: 50px;
    border-radius: 0;
}

@media (max-width: 992px){
  .opciones li:first-child {
    margin-left: 3rem;
    margin-bottom: 2rem;
}

.opciones2 li:first-child {
  margin-left: 0rem;
}



}
@media (max-width: 768px) {
  #headingTwo .btn-learn-more{
  margin-top: 0;
    font-size: 16PX;
    font-weight: 500;
    height: 100px;
    border-radius: 0;
    line-height: 1.5;

}
.botoncompra2 .opciones2 li:first-child {
  margin-right: 0rem;
}
.accordion .btn-learn-more{
  margin-top: 0;
    font-size: 16PX;
    font-weight: 500;
    height: 100px;
    border-radius: 0;
    border: 1px solid #7C3CAA;
    line-height: 1.5;

}
}

@media (max-width: 380px) {
  #headingTwo .btn-learn-more{
  margin-top: 0;
    font-size: 16PX;
    font-weight: 500;
    height: 125px;
    border-radius: 0;
    line-height: 1.5;

}
.accordion .btn-learn-more{
  margin-top: 0;
    font-size: 16PX;
    font-weight: 500;
    height: 125px;
    border-radius: 0;
    border: 1px solid #7C3CAA;
    line-height: 1.5;

}
}

@media (max-width: 548px) {
  .botoncompra1 .opciones li a {
    width: 100%;
    height: 60px;
    text-align: center;
    vertical-align: middle;
}

  .opciones {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.botoncompra2 .btn-buy {
    height: 7em;
    padding: 10px 32px;

}

}


.accordion .card{
    border: none;
}

.accordion .card .card-header {
  padding: 0!important;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.accordion .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    border-right: 1px solid rgba(0,0,0,.125);
    border-left: 1px solid rgba(0,0,0,.125);
    border-bottom: 1px solid rgba(0,0,0,.125);
    border-radius: 0 0;
}

button:focus{
  outline: none;
}

.accordion_panel
{
  padding-right: 8px;
  padding-left: 38px;
  padding-top: 9px;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.accordion.active + .accordion_panel
{
  margin-bottom: 20px;
}
.accordion_panel p
{
  font-size: 16px;
  font-weight: 400;
  color: #76777a;
  line-height: 1.75;
}
.tab_panel_2
{
    padding-bottom: 10px;
}

.dropdowns
{
  margin-top: 17px;
}
.dropdowns li ul
{
  max-height: 0;
  padding-left: 30px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.dropdowns li
{
  position: relative;
}
.dropdowns li.has_children > .dropdown_item
{
  cursor: pointer;
}
.dropdown_item
{
  padding-top: 26px;
  padding-bottom: 25px;
}
.dropdowns li:not(:last-child) .dropdown_item
{
  border-bottom: solid 1px #e5e5e5;
}
.dropdown_item_title
{
  font-family: 'Raleway', serif;
  font-size: 16px;
  font-weight: 700;
  color: #7C3CAA;
  padding-left: 24px;
}
.dropdown_item_title span
{
  font-size: 18px;
}
.dropdown_item_title::before
{
  position: absolute;
  top: 1px;
  left: 0;
  font-family: 'FontAwesome';
  content: '\f0f6';
  font-size: 18px;
  color: #7C3CAA;
  opacity: 0.65;
}
.has_children > .dropdown_item > .dropdown_item_title::after
{
  position: absolute;
  top: -10px;
  right: 0;
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 30px;
  font-weight: 400;
  color: #7C3CAA;
}
.has_children.active > .dropdown_item > .dropdown_item_title::after
{
  content: '\f107';
}
.dropdown_item_text
{
  margin-top: 10px;
}
.dropdown_item_text p
{
  font-size: 16px;
  font-weight: 400;
  color: #76777a;
  line-height: 1.75;
}
.tab_panel_3
{
  padding-bottom: 42px;
}
.review_rating_container
{
  margin-top: 43px;
}

.comments_container
{
  margin-top: 80px;
}
.comment_item
{
  border-bottom: solid 1px #e5e5e5;
  padding-top: 31px;
  padding-bottom: 16px;
}
.comment_image div
{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.comment_image div img
{
  max-width: 100%;
}
.comment_content
{
  width: 100%;
  padding-left: 20px;
  margin-top: -7px;
}
.comment_author::after
{
  display: inline-block;
  content: '-';
  margin-left: 6px;
}
.comment_author a
{
  font-family: 'Raleway', serif;
  font-size: 18px;
  font-weight: 700;
  color: #7C3CAA;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.comment_author a:hover
{
  color: #14bdee;
}
.comments_container .rating_r
{
  margin-top: 3px;
  margin-left: 5px;
}
.comments_container .rating_r i::before
{
  color: #ffc80a;
}
.comment_text
{
  margin-top: 12px;
}
.comment_extras
{
  margin-top: 13px;
}
.comment_reply
{
  margin-left: 35px;
}
.comment_extra a
{
  font-size: 14px;
  font-weight: 400;
  color: #76777a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.comment_extra a:hover
{
  color: #14bdee;
}
.comment_extra a span
{
  margin-left: 3px;
}
.comment_reply a i
{
  color: #14bdee;
}
.comments_list li ul
{
  padding-left: 99px;
}
.add_comment_container
{
  margin-top: 24px;
}
.add_comment_title
{
  font-family: 'Raleway', serif;
  font-size: 20px;
  font-weight: 700;
  color: #7C3CAA;
}
.add_comment_text
{
  margin-top: 14px;
}
.add_comment_text a
{
  color: #14bdee;
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box h3{
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--bs-mostaza);
  font-weight: 700;
}

.counts .count-box .box-como-funciona-1{
  background-color: var(--bs-naranja);
  padding: 20px;
  color: var(--bs-white);
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1rem;
}

.counts .count-box .box-como-funciona-1 .box-items h3{
  font-size: 1.5rem;
  color: var(--bs-white);
  font-weight: 700;
}

.counts .count-box .box-como-funciona-1 .box-items h4{
  font-size: 1.2rem;
  color: var(--bs-white);
  font-weight: 400;
}

.items-como-funciona{
  padding-left: 3rem;
  margin-top: 1rem;
  list-style: disc;
}


.counts .count-box .box-como-funciona-1 img{
  width: 100%;
}


.counts .count-box i {
  display: block;
  font-size: 30px;
  color: var(--bs-celeste);
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: var(--bs-white);
  background-color: var(--bs-mostaza);
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.counts .count-box p {
  padding: 0 0 1rem 0;
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
}

.counts .count-box .box-como-funciona-2{
  color: var(--texto);
  background-color: #ffedb2;
  justify-content: center;
  padding: 2rem auto;
}

.counts .count-box .box-como-funciona-2 .box-items h4, 
.counts .count-box .box-como-funciona-2 .box-items h3 {
  color: var(--texto);
  text-align: center;
}

.counts .count-box .box-como-funciona-2 .box-items{
  margin: 0 auto;
  width: 500px;
}

.counts .count-box .box-como-funciona-2 .box-items img{
  width: 100%;
  margin: 0 auto 1rem auto;
}

.counts .count-box .box-como-funciona-2 .img-certificado{
  margin: 1rem auto;
  display: flex;
  justify-content: center;
}

.counts .count-box .box-como-funciona-2 .img-certificado img{
  width: 200px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--bs-celeste);
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  transition: 0.5s;
  color: var(--bs-celeste);
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);

 
}

.services .icon img{
  object-fit: cover;
  width: 240px;
  height: 180px;
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: var(--bs-celeste);
  transition: 0.3s;
}

.services .title a:hover {
  color: var(--naranja);
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--bs-celeste);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 18px;
  text-align: center!important;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

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

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

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

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

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

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

.appointment .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;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: var(--bs-celeste);
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

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

.appointment .php-email-form button[type="submit"] {
  background: var(--bs-celeste);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #52c2c6;
}

/*--------------------------------------------------------------
# cursos-gratis
--------------------------------------------------------------*/
.cursos-gratis .nav-tabs {
  border: 0;
}

.cursos-gratis .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.cursos-gratis .nav-link h4 {
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  color: var(--texto);
  text-align: justify;
}

.cursos-gratis .nav-link p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: justify;
}

.cursos-gratis .primer-parrafo, .cursos-gratis h3{
  font-size: 1.4rem;
  text-align: justify;
}

.cursos-gratis .nav-link:hover h4 {
  color: var(--bs-verde);
}

.cursos-gratis .nav-link.active {
  background: #f7fcfc;
  border-color: var(--bs-verde);
}

.cursos-gratis .nav-link.active h4 {
  color: var(--bs-verde);
}

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

.cursos-gratis .tab-pane img {
  float: left;
  max-width: 230px;
  padding: 0 0 15px 0;
}

.cursos-gratis .tab-pane .member {
  display: flex;
  flex-direction: column;
}

.cursos-gratis .tab-pane .member-img img {
  object-fit: cover;
  width: 230px;
  height: 180px;
}

.cursos-gratis .tab-pane .member-img{
  position: relative;
}

.gratis {
    position: absolute;
    left: -15px;
    top: -12px;
    object-fit: contain!important;
    height: 100px!important;
    width: 50%!important;
    opacity: 1;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 992px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: flex-start;
    flex-direction: row!important;
    align-items: flex-end;
  }

  .cursos-gratis .tab-pane img {
    float: left;
    max-width: 340px;
    padding: 0 0 15px 0;
  }
  
  .cursos-gratis .tab-pane .member-img img {
    object-fit: cover;
    width: 340px;
    height: 180px;
  }
}


@media (max-width: 768px) {
  .tab-pane .row>* {
    width: 50%!important;
  }

  .cursos-gratis .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }

}

.cursos-gratis .tab-pane h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bs-verde);
  text-align: left;

}


.member-info .collapsed.question{
  margin-bottom: 1rem;
}

.member-info .collapsed.question i, .bi-chevron-up::before {
  padding-left: 4px;
}

.bi-chevron-down::before{
  font-weight: 600!important;
  color: var(--bs-verde);
}

.bi-chevron-up::before {
  font-weight: 600!important;
  color: var(--bs-naranja);
}

.cursos-gratis .tab-pane p {
  color: #262626;
  font-weight: 600;
}

.cursos-gratis .tab-pane p:last-child {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
}

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

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

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: left;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
  width: 100%;
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .member .member-img .img-capacitaciones {
  object-fit: cover;
  width: 100%;
  height: 180px;
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a i {
  line-height: 0;
}

.doctors .member .social a:hover {
  color: var(--bs-celeste);
}

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

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info ul {
  padding: 5px 5px;
}

.doctors .member .member-info ul li {
  margin-left: 1.2rem;
}

.doctors .member .member-info ul li p {
  position: relative;
}

.doctors .member .member-info ul li p i {
  margin-right: 0.7rem;
  color: var(--bs-verde);
  position: absolute;
  top: 0rem;
  left: -1.4rem;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
  color: var(--bs-naranja);
}

.doctors .member .member-info span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #aaaaaa;
  margin-top: 0.8rem;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 18px;
  line-height: 20px;
  color: #777777;
  margin-bottom: 0.5rem;
  text-align: left;
}

.doctors .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
  font-family: "Jost", sans-serif;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--bs-celeste);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.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 input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 18px;
  font-family: "Jost", sans-serif;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--bs-celeste);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form option, .contact .php-email-form label{
  color: #777777;
  font-size: 18px;
  font-family: "Jost", sans-serif;
  padding-bottom: 0.5rem;
}

.contact .php-email-form option, .contact .php-email-form select{
  color: #777777;
  font-size: 18px;
  font-family: "Jost", sans-serif;
}

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

.contact .php-email-form button[type="submit"] {
  background: var(--bs-celeste);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-family: "Jost", sans-serif;
}

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

@-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 {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 18px;
}

#footer .footer-top {
  background: #f6f6f6;
  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: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
}

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

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

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



@media (min-width: 992px){
  .container, .container-lg, .container-md, .container-sm {
      max-width: 1000px!important;
  }
  
  }

  @media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1140px!important;
    }
    
    }