@charset "utf-8";

/* CSS Document */


/******************************

COLOR PALETTE




[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Logo
	3.2 Main Nav
	3.3 Header Side
	3.4 Hamburger
4. Menu
	4.1 Menu Social
	4.2 Menu copyright
5. Home
	5.1 Hero Slider
	5.2 Hero Slider Navigation
6. Hero Boxes
7. Page Section
8. Buttons
9. Popular
10. Register
11. Search
	11.1 Search Form
12. Services
13. Testimonials
14. Events
15. Footer
	15.1 Newsletter
	15.2 Footer Content
	15.3 Footer Copyright


******************************/

.home {
    width: 100%;
    height: 100vh;
}


/*********************************
video
*********************************/

.slide-videos {
    margin-top: 40px;
    height: 300px;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
    width: 5%;
    height: 25%;
    margin: auto;
    background-color: rgb(255, 255, 255);
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    opacity: 1;
    background-color: rgb(26, 26, 26);
    -webkit-transition: all 230ms ease;
    transition: all 230ms ease;
    -moz-transition: all 230ms ease;
    -ms-transition: all 230ms ease;
    -o-transition: all 230ms ease;
}

span.carousel-control-prev-icon {
    opacity: 1;
    background-image: url(../images/Flecha_izquierda_hover.png);
    color: #4d4e4e;
    width: 40px;
    height: 40px;
}

.carousel-control-prev:hover span.carousel-control-prev-icon {
    background-image: url(../images/Flecha_izquierda.png);
    -webkit-transition: all 230ms ease;
    transition: all 230ms ease;
    -moz-transition: all 230ms ease;
    -ms-transition: all 230ms ease;
    -o-transition: all 230ms ease;
}

span.carousel-control-next-icon {
    opacity: 1;
    background-image: url(../images/Flecha_derecha_hover.png);
    color: #4d4e4e;
    width: 40px;
    height: 40px;
}

.carousel-control-next:hover span.carousel-control-next-icon {
    -webkit-transition: all 230ms ease;
    transition: all 230ms ease;
    -moz-transition: all 230ms ease;
    -ms-transition: all 230ms ease;
    -o-transition: all 230ms ease;
    background-image: url(../images/Flecha_derecha.png);
}

.slide-video {
    background-color: #ffb606;
}

.slide-video .titulo {
    color: #1a1a1a;
    padding: 50px;
    padding-bottom: 0px;
}

.slide-video .titulo h1 {
    text-align: center;
    font-size: 30pt;
    color: #ffffff;
}

.slide-video .carousel-inner {
    width: 100%;
    margin: auto;
}

.slide-video .carousel-inner .carousel-item {
    padding: 70px;
}

.slide-video .carousel-inner .col-sm-4 {
    position: static;
}

.video-zoom {
    background-color: #1a1a1a;
    position: static;
    width: 100%;
    height: 250px;
    display: flex;
    margin: auto;
    transition: transform .5s;
}

.video-zoom:focus {
    transform: scale(1.3);
}


/*********************************
8. Buttons	


*********************************/

.Nuevo {
    padding: 10px;
    background: transparent;
    border: solid 2px #ffb606;
    color: #ffb606;
    font-size: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.button {
    cursor: pointer;
}

.button:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.button a {
    font-size: 14px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.button_1 {
    width: 202px;
    height: 48px;
}


/*********************************
8.5 Milestones
*********************************/

.milestones {
    width: 100%;
}

.milestones_container {
    width: 100%;
    padding-top: 118px;
    padding-bottom: 107px;
}

.milestones_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.milestone {
    width: 100%;
}

.milestone_icon {
    display: inline-block;
    width: 70px;
    height: 70px;
}

.milestone_icon img {
    width: 100%;
}

.milestone_counter {
    font-size: 70px;
    font-weight: 500;
    color: #ffb606;
    line-height: 1;
    margin-top: 41px;
}

.milestone_text {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 3px;
}


/*********************************
9. Popular
*********************************/

.popular {
    padding-top: 25px;
}

.course_boxes {
    margin-top: 10px;
}

.card {
    display: block;
    border: none;
}

.card-img-top {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-transition: all 230ms ease;
    transition: all 230ms ease;
    -moz-transition: all 230ms ease;
    -ms-transition: all 230ms ease;
    -o-transition: all 230ms ease;
}

.container_texto_encima {
    position: relative;
    display: inline-block;
    background-color: #1a1a1a;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.container_texto_encima:hover {
    -webkit-box-shadow: 10px 10px 30px 2px rgba(0, 0, 0, 0.47);
    box-shadow: 10px 10px 30px 2px rgba(0, 0, 0, 0.47);
}

.container_texto_encima:hover>.texto_encima {
    opacity: 1;
}

.container_texto_encima:hover>.card-img-top {
    opacity: 0.2;
}

.texto_encima {
    color: #ffffff;
    position: absolute;
    top: 25%;
    text-align: center;
    left: 10px;
    right: 10px;
    opacity: 0;
    -webkit-transition: all 230ms ease;
    transition: all 230ms ease;
    -moz-transition: all 230ms ease;
    -ms-transition: all 230ms ease;
    -o-transition: all 230ms ease;
}

.card-body {
    padding-top: 55px;
    background: #f8f9fb;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.card-title a {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}

.card-title a:hover {
    color: #a5a5a5;
}

.card-text {
    font-size: 14px;
    font-weight: 500;
    color: #a5a5a5;
    margin-top: -12px;
}

.price_box {
    text-align: center;
    width: 100%;
    height: 67px;
    background: #ffb606;
    margin-top: 41px;
    padding: 0;
}

.course_author_image {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
}

.course_author_name {
    text-align: right;
    font-size: 23px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 7px;
    margin: auto;
}

.course_author_name span {
    color: #a5a5a5;
}

.course_price {
    width: 67px;
    height: 67px;
    background: #ffb606;
    margin-left: auto;
}

.course_price span {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-top: 7px;
}


/*********************************
10. Register
*********************************/

.register {
    width: 100%;
    background-color: #1a1a1a;
}

.register_section {
    width: 100%;
    background: #179b00;
    padding-top: 156px;
    padding-bottom: 161px;
}

.register_content {
    width: 522px;
}

.register_title {
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.63;
}

.register_title:last-child {
    margin-bottom: 0px;
}

.register_title span {
    color: #1a1a1a;
}

.register_text {
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 32px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 0px;
}

.register_button {
    width: 202px;
    height: 48px;
    background-color: #ffb606;
    font-size: 14px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 30px;
    margin-top: 65px;
    color: #FFFFFF;
}

.register_button a {
    color: #FFFFFF;
}


/*********************************
11. Search
*********************************/

.search_section {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.search_content {
    width: 522px;
}

.search_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.8;
}

.search_title {
    color: #1a1a1a;
}


/*********************************
11.1 Search Form
*********************************/

.search_form {
    margin-top: 57px;
}

.input_field {
    width: 100%;
    height: 42px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: solid 2px #FFFFFF;
    padding-left: 25px;
    margin-bottom: 24px;
}

input:last-of-type {
    margin-bottom: 0px;
}

.input_field:focus {
    outline: none !important;
    border: solid 2px #ffb606;
}

.search_submit_button {
    width: 100%;
    height: 48px;
    background: #ffb606;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 28px;
    border: none;
    cursor: pointer;
}

.search_submit_button:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.search_submit_button:focus {
    outline: solid 2px #FFFFFF;
}


/*********************************
12. Services
*********************************/

.services {
    padding-bottom: 76px;
    background-color: #1a1a1a;
}

.services .section_title h1 {
    color: #FFFFFF;
}

.services_row {
    margin-top: 65px;
}

.service_item {
    margin-bottom: 41px;
}

.service_item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 13px;
    display: inline-block;
}

.service_item p {
    font-size: 14px;
    font-weight: 500;
    color: #a5a5a5;
    max-width: 100%;
    margin-bottom: 0px;
}

.icon_container {
    height: 41px;
    width: auto;
    margin-bottom: 30px;
}

.icon_container img {
    height: 100%;
}


/*********************************
13. Testimonials
*********************************/

.testimonials {
    width: 100%;
    background: #1a1a1a;
}

.testimonials_background_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonials_background {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.43;
}

.testimonials .section_title h1 {
    color: #FFFFFF;
}

.testimonials_slider_container {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 56px;
}

.testimonials_item {
    width: 100%;
    padding-bottom: 75px;
}

.quote {
    font-size: 36px;
    color: #ffb606;
}

.testimonials_text {
    color: #FFFFFF;
    margin-bottom: 0px;
}

.testimonial_user {
    margin-top: 43px;
}

.testimonial_image {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial_image img {
    width: 100%;
    height: auto;
}

.testimonial_name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f6af03;
    margin-top: 21px;
}

.testimonial_title {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 6px;
}

.testimonials_slider .owl-dots {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
}

.testimonials_slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    border: solid 2px #FFFFFF;
    background: transparent !important;
}

.testimonials_slider .owl-dot.active span {
    width: 16px !important;
    height: 16px !important;
    border: none;
    background: #ffb606 !important;
}


/*********************************
14. Events
*********************************/

.event_items {
    margin-top: 68px;
}

.event_item {
    margin-bottom: 56px;
}

.event_item:last-child {
    margin-bottom: 0px;
}

.event_date {
    width: 131px;
    height: 131px;
    border: solid 2px #ffb606;
    margin-bottom: 18px;
}

.event_day {
    font-size: 48px;
    font-weight: 700;
    color: #ffb606;
    margin-bottom: 1px;
    line-height: 1;
}

.event_month {
    font-size: 16px;
    font-weight: 700;
    color: #ffb606;
}

.event_name a {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
}

.event_name a:hover {
    color: #ffb606;
}

.event_location {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 2px;
}

.event_content p {
    font-weight: 500;
    color: #a5a5a5;
    margin-top: 21px;
    margin-bottom: 13px;
}

.event_image img {
    width: 100%;
}


/*********************************
15. Footer
*********************************/

.footer {
    width: 100%;
    padding-top: 86px;
    background: #1a1a1a;
}

.footer .section_title h1 {
    color: #FFFFFF;
}


/*********************************
15.1 Newsletter
*********************************/

.newsletter {
    padding-bottom: 85px;
    border-bottom: solid 2px #4d4e4e;
}

.newsletter_form_container {
    width: 60%;
    margin-top: 48px;
}

.newsletter_email {
    width: calc(100% - 164px);
    height: 42px;
    border: none;
    padding-left: 27px;
    font-weight: 500;
    color: #1a1a1a;
}

.newsletter_email:focus {
    outline: solid 2px #ffb606;
}

.newsletter_submit_btn {
    width: 164px;
    height: 42px;
    border: none;
    background: #ffb606;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.newsletter_submit_btn:focus {
    border: solid 2px #FFFFFF;
}


/*********************************
Contador de Visitas
*********************************/

.contador-visitas {
    background-color: #1a1a1a;
    width: 100%;
    text-align: center;
    color: #ffffff;
    display: block;
    position: relative;
    border-top: #ffb606 solid 5px;
    border-bottom: #ffb606 solid 5px;
}

.contador-visitas h2 {
    padding-top: 12px;
}

.contador-visitas h1 {
    font-size: 72px;
    margin: 0;
}

.contador-visitas .milestone_counter_visitas {
    font-size: 80px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-top: 5px;
    padding-bottom: 11px;
    display: inline-block;
}

.contador-visitas span {
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
}


/*********************************
15.2 Footer Content
*********************************/

.footer_content {
    padding-top: 80px;
    padding-bottom: 60px;
    border-bottom: solid 2px #4d4e4e;
}

.footer_content .logo_container {
    padding-left: 0px;
}

.footer_content .logo span {
    color: #FFFFFF;
}

.footer_about_text {
    margin-top: 24px;
    margin-bottom: 0px;
    padding-right: 20px;
}

.footer_column_title {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    padding-top: 15px;
}

.footer_column_content {
    margin-top: 32px;
}

.footer_list_item {
    margin-bottom: 11px;
}

.footer_list_item a {
    font-size: 14px;
    color: #a5a5a5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_list_item a:hover {
    color: #ffb606;
}

.footer_contact_item {
    font-size: 14px;
    font-weight: 400;
    color: #a5a5a5;
    margin-bottom: 22px;
}

.footer_contact_item:last-child {
    margin-bottom: 0px;
}

.footer_contact_icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.footer_contact_icon img {
    width: 100%;
}


/*********************************
15.3 Footer Copyright
*********************************/

.Plataformas-img {
    width: 270px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer_bar {
    padding-top: 19px;
    padding-bottom: 19px;
}

.footer_social .menu_social_item a i {
    color: #FFFFFF;
}

.footer_social .menu_social_item a i:hover {
    color: #ffb606;
}

.footer_social .menu_social_item:last-child {
    margin-right: 0px;
}

.logo-footer-svg {
    width: 50%;
    height: 50%;
    display: inline-block;
}

.logo-footer-svg img {
    margin: 5%;
}

.button_contenedor_verde {
    width: 202px;
    height: 48px;
    background-color: #ffb606;
    display: inline-block;
    margin-left: 30px;
}

.bannerAniversario {
    background-color: #ffb606;
}

.bannerAniversario img {
    width: 70%;
    display: flex;
    margin: auto;
}


/* estilos de botón para regresar arriba */

.simplescrollup__button {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    transition: 1s all;
    z-index: 10000;
}

.simplescrollup__button--show {
    transform: translateX(350px);
}

.simplescrollup__button--hide {
    transform: translateX(500px);
}

.boton_arriba {
    width: 13%;
}