/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  width: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #66666a;
  width: 100%;
}

a {
  color: #7C3CAA;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #7C3CAA;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3e9bdd;
  color: #fff;
}
/*--------------------------------------------------------------
# whatsapp
--------------------------------------------------------------*/

.btn-whatsapp{
    display: block;
    width: 70px;
    height: 70px;
    color: #fff;
    position: fixed;
    left: 10px;
    bottom: 16px;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    z-index: 9999999;
    padding-top: 20px;
}

.btn-whatsapp img{
  width: 78%; 
  float: left; 
  text-align: left;}


.btn-whatsapp.w-uno{
  bottom: 82px;

}


@media only screen and (max-width: 768px) { 
  .btn-whatsapp{
    padding-top: 22px; }
  .btn-whatsapp img{float: left; text-align: left;}
  
    }

@media only screen and (max-width: 480px) { 
  .btn-whatsapp{
    padding-top: 29px;}

  .btn-whatsapp img{width: 65%}
    
  .btn-whatsapp.w-uno{
  bottom: 70px;
  }

}

@media only screen and (max-width: 320px) {
 
  .btn-whatsapp{
    padding-top: 40px;
  }

  .btn-whatsapp.w-uno{
  bottom: 55px;
  }

  .btn-whatsapp img{width: 50%; float: left; text-align: left;}

}



/*--------------------------------------------------------------
# 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 #7C3CAA;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  color: #7C3CAA;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 70px;
}
.titulologo {
  font-size: 12px;
  display: inline-block;
  line-height: 20px;
  padding-top: 15px;
  vertical-align: middle;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 14px 0 14px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #9D77B3;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #7C3CAA;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
  transition: 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #9D77B3;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #7C3CAA;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}


.nav-menu .right ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
  transition: 0.3s;
  border-radius: 5px;
      right: 0; left: auto;

}

.nav-menu #idioma ul {
  left: 9px;
  top: calc(100% + 0px);
  z-index: 99;
  padding: 10px 0;
  
}

.nav-menu #idioma li{
  min-width: 60px;
  position: relative;
}

#idioma img {
  height:  1.5em;
}


@media (min-width: 992px) {
  .nav-menu.menu-idiomas {
    display: none!important;
  }
  
}

@media (max-width: 992px) {
  .nav-menu.menu-idiomas {
    display: block!important;
  }

  .nav-menu.menu-idiomas {
    position: fixed;
    right: 65px;
    top: 19px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }

  .nav-menu #idiomas {
    display: none!important;
  }
  
}


@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}



/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #9D77B3;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #9D77B3;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #7C3CAA;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(10, 38, 58, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: relative;
  background: url("../img/4.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 72px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 25px #7C3CAA, 0 0 5px #7C3CAA;

}

#hero h2 {
  color: #F4D678;
  margin: 10px 0 0 0;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  font-size: 22px;
}

#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#hero .icon-box .title a {
  color: #9D77B3;
  transition: 0.3s;
}

#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #7C3CAA;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #7C3CAA;
}

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

@media (max-width: 992px), (max-height: 500) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  padding-bottom: 30px;
}
#about.about {
  padding-top: 70px;
 padding-bottom:  30px;
}
#about.about h3 {
  font-weight: 700;
  font-size: 24px;
  color: #9D77B3;
}

#about-video {
 padding:  0px;
}

#about-video .m-dz{
  padding: 10px 20px 20px 35px;
  padding-right: 35px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.margin-mari{
  margin-top: 0px!important;
}

@media (max-width: 992px) {
  .about-video .sub-m-d{
    text-align: center;
  }
  #about-video.about-video img {
    vertical-align: middle;
    padding-top: 0px!important;
}
}


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



#about-video.about-video img{
  vertical-align: middle;
}


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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #7C3CAA;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

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

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #7C3CAA;
  line-height: 1;
}

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

.btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #7C3CAA;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #7C3CAA;
}

.btn-learn-more:hover {
  background: #7C3CAA;
  color: #fff;
  text-decoration: none;
}

.btn-buy {
  background-color: #77bb00;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  color: #ffffff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
}

.btn-buy:hover {
  background: #007700;
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #9D77B3;
  text-align: center;
  margin-top: 1rem;
}

.about-video .content h4 {
  font-weight: 700;
  font-size: 18px;
  color: #9D77B3;
  text-align: center;
}

.about-video .content .destacado {
  font-weight: 700;
  font-size: 18px;
  color: #9D77B3;
  text-align: center;
  font-weight: 400;
}

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

.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about-video .content ul i {
  font-size: 24px;
  color: #7C3CAA;
  position: absolute;
  left: 0;
  top: -2px;
}

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



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  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 15px 15px;
  padding: 20px;
  background: #FFF8E3;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #7C3CAA !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 10px 20px 20px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.services .icon-box p {
  text-align: left;
}

.services .flex-curso{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
      align-content: center;

}

.img-curso img{
  float: left;
  width: 20%;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.subtitulo-curso{
   text-align: center;
   background-color: #FFF8E3;
   padding: 1rem;
}

.box-acordeones{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.card-grid .tab_panel {
 padding-bottom: 0;
 padding-top: 0;
}

.card-grid .tab_panel_text:last-child{
  margin-bottom: 0;
}

.services .curso-margin{
      margin-top: 25px!important;
}

.direccion img {
    vertical-align: middle;
    border-style: none;
    width: 80%;
    margin: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #9D77B3;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #9D77B3;
  background-size: cover;
  padding: 60px 0;
}

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

.cta p {
  color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

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

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #9D77B3;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .phone:hover i {
  background: #7C3CAA;
  color: #fff;
}

.contact .styleform {
  width: 100%;
  background: #fff;
}

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

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

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

.contact .styleform .error-message br + br {
  margin-top: 25px;
}

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

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

.contact .styleform .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 .styleform input, .contact .styleform textarea, .contact .styleform select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .styleform input:focus, .contact .styleform textarea:focus, .contact .styleform select:focus {
  border-color: #7C3CAA;
}

.contact .styleform input, .contact .styleform select {
  height: 44px;
}

.contact .styleform textarea {
  padding: 10px 12px;
}

.contact .styleform button[type="submit"] {
  background: #7C3CAA;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .styleform button[type="submit"]:hover {
  background: #3194db;
}

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

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

@media (max-width: 530px) {

 #carnet{
  display: block!important;
    margin-bottom: 30px;
    padding-top: 10px;

 }
 #carnet img{
  padding: 0px 10px 20px 10px;
  padding-bottom: 20px;
 }

}

@media (max-width: 992px) {
  #contact .section-title {
    padding-bottom: 0px!important;
}
.img-curso img {
  float: left;
  width: 50%;
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
}

}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #FFF8E3;
  min-height: 40px;
  margin-top: 80px;
  padding-top: 30px;
}

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

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

.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: #1a5e90;
  content: "/";
}

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #66666a;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  margin-top: 80px;
}
#footer .footer-top .social-links {
  padding-top: 20px!important;
  margin-left: 30px!important;
}

#footer .footer-top .footer-contact .social-oculto {
  display: none;
}

#footer .footer-top .footer-contact .logo-athta {
  max-width: 73%;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

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

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

#footer .credits {
  text-align: center;
  padding-top: 40px;
  font-size: 13px;
  color: #66666a;
}

#footer .credits a {
  font-size: 13px;
  color: #7C3CAA;
}


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

#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}

#footer p, #footer div{
  text-align: center;

}

@media (max-width: 1200px) {
  #footer .social-links a{
  width: 30px;
  height: 30px;

}
}

@media (max-width: 992px) {
  

#footer .footer-top .footer-contact .social-links.social-oculto {
  display: block;
  padding-top: 20px!important;
  margin-left: 20px!important;
}

.copyright {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

#footer .footer-top .social {
  display: none;
}

#footer .footer-top .footer-contact .logocetran {
  padding-right: 55px;
}


  #footer .footer-contact .logo img{
    max-height: 200px;
    align-items: left;
}
 #footer .footer-contact a i{
    padding-bottom: 5px; 
    margin-bottom: 5px;
}

#footer .logo2 img {
  padding-top: 15px;
  height: 190px;
}
}

@media (max-width: 770px) {

  #footer .logo2 img{
    height: 96%;
    padding-left: 0px;
    padding-top: 0px; 
}
  #footer .social-links {
  padding-top: 30px!important;
}


}

@media (max-width: 770px) {
  #footer .logocetran{
    padding-right: 35px;

}
}

@media (max-width: 700px) {

 #footer .credits {
  text-align: center;
  margin-bottom: 50px;
  font-size: 13px;
  color: #66666a;
}
}

#pagos{
  padding: 0px;
}


#mercadopago{
  margin-bottom: 50px;

}
